mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 13:21:46 +00:00
8bda980028
Fill in the remaining ~2100 UI strings in shared/src/i18n/tr so Turkish matches the English catalog. Brand names, URLs, and technical placeholders are left untranslated by design.
21 lines
600 B
TypeScript
21 lines
600 B
TypeScript
import type { TranslationStrings } from '../types';
|
||
|
||
const nav: TranslationStrings = {
|
||
'nav.trip': 'Seyahat',
|
||
'nav.share': 'Paylaş',
|
||
'nav.settings': 'Ayarlar',
|
||
'nav.admin': 'Yönetici',
|
||
'nav.logout': 'Çıkış yap',
|
||
'nav.lightMode': 'Açık Tema',
|
||
'nav.darkMode': 'Koyu Tema',
|
||
'nav.autoMode': 'Otomatik Tema',
|
||
'nav.administrator': 'Yönetici',
|
||
'nav.myTrips': 'Seyahatlerim',
|
||
'nav.profile': 'Profil',
|
||
'nav.bottomSettings': 'Ayarlar',
|
||
'nav.bottomAdmin': 'Yönetici Ayarları',
|
||
'nav.bottomLogout': 'Çıkış',
|
||
'nav.bottomAdminBadge': 'Yönetici',
|
||
};
|
||
export default nav;
|