mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 22:31:46 +00:00
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
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user