mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-22 14:51:45 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const common: TranslationStrings = {
|
|
'common.save': 'Mentés',
|
|
'common.showMore': 'Továbbiak',
|
|
'common.showLess': 'Kevesebb',
|
|
'common.cancel': 'Mégse',
|
|
'common.clear': 'Törlés',
|
|
'common.delete': 'Törlés',
|
|
'common.edit': 'Szerkesztés',
|
|
'common.add': 'Hozzáadás',
|
|
'common.loading': 'Betöltés...',
|
|
'common.import': 'Importálás',
|
|
'common.select': 'Kiválaszt',
|
|
'common.selectAll': 'Mindet kiválaszt',
|
|
'common.deselectAll': 'Összes kijelölés megszüntetése',
|
|
'common.error': 'Hiba',
|
|
'common.unknownError': 'Ismeretlen hiba',
|
|
'common.tooManyAttempts':
|
|
'Túl sok próbálkozás. Kérjük, próbálja újra később.',
|
|
'common.back': 'Vissza',
|
|
'common.all': 'Összes',
|
|
'common.close': 'Bezárás',
|
|
'common.open': 'Megnyitás',
|
|
'common.upload': 'Feltöltés',
|
|
'common.search': 'Keresés',
|
|
'common.confirm': 'Megerősítés',
|
|
'common.ok': 'OK',
|
|
'common.yes': 'Igen',
|
|
'common.no': 'Nem',
|
|
'common.or': 'vagy',
|
|
'common.none': 'Nincs',
|
|
'common.date': 'Dátum',
|
|
'common.rename': 'Átnevezés',
|
|
'common.discardChanges': 'Változtatások elvetése',
|
|
'common.discard': 'Elveti',
|
|
'common.name': 'Név',
|
|
'common.email': 'E-mail',
|
|
'common.password': 'Jelszó',
|
|
'common.saving': 'Mentés...',
|
|
'common.expand': 'Kibontás',
|
|
'common.collapse': 'Összecsukás',
|
|
'common.saved': 'Mentve',
|
|
'common.update': 'Frissítés',
|
|
'common.change': 'Módosítás',
|
|
'common.uploading': 'Feltöltés…',
|
|
'common.backToPlanning': 'Vissza a tervezéshez',
|
|
'common.reset': 'Visszaállítás',
|
|
'common.copy': 'Másolás',
|
|
'common.copied': 'Másolva',
|
|
'common.justNow': 'az imént',
|
|
'common.hoursAgo': '{count} órája',
|
|
'common.daysAgo': '{count} napja',
|
|
};
|
|
export default common;
|