mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-20 13: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
23 lines
866 B
TypeScript
23 lines
866 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const inspector: TranslationStrings = {
|
|
'inspector.opened': 'Otevřeno',
|
|
'inspector.closed': 'Zavřeno',
|
|
'inspector.openingHours': 'Otevírací doba',
|
|
'inspector.showHours': 'Zobrazit otevírací dobu',
|
|
'inspector.files': 'Soubory',
|
|
'inspector.filesCount': '{count} souborů',
|
|
'inspector.removeFromDay': 'Odebrat ze dne',
|
|
'inspector.remove': 'Odstranit',
|
|
'inspector.addToDay': 'Přidat ke dni',
|
|
'inspector.confirmedRes': 'Potvrzená rezervace',
|
|
'inspector.pendingRes': 'Čekající rezervace',
|
|
'inspector.google': 'Otevřít v Google Mapách',
|
|
'inspector.website': 'Otevřít webové stránky',
|
|
'inspector.addRes': 'Rezervace',
|
|
'inspector.editRes': 'Upravit rezervaci',
|
|
'inspector.participants': 'Účastníci',
|
|
'inspector.trackStats': 'Data trasy',
|
|
};
|
|
export default inspector;
|