mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 06:11: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
21 lines
628 B
TypeScript
21 lines
628 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const nav: TranslationStrings = {
|
|
'nav.trip': 'Viaggio',
|
|
'nav.share': 'Condividi',
|
|
'nav.settings': 'Impostazioni',
|
|
'nav.admin': 'Amministrazione',
|
|
'nav.logout': 'Esci',
|
|
'nav.lightMode': 'Modalità chiara',
|
|
'nav.darkMode': 'Modalità scura',
|
|
'nav.autoMode': 'Modalità automatica',
|
|
'nav.administrator': 'Amministratore',
|
|
'nav.myTrips': 'I miei viaggi',
|
|
'nav.profile': 'Profilo',
|
|
'nav.bottomSettings': 'Impostazioni',
|
|
'nav.bottomAdmin': 'Amministrazione',
|
|
'nav.bottomLogout': 'Disconnetti',
|
|
'nav.bottomAdminBadge': 'Admin',
|
|
};
|
|
export default nav;
|