Files
TREK/shared/src/i18n/cs/inspector.ts
T
Julien G. 126f2df21b chore: move i18n to shared package (#1066)
* chore: move i18n to shared package

* chore: move server translations to shared package and apply linter and prettier on entire shared package
2026-05-26 20:27:29 +02:00

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;