Files
TREK/shared/src/i18n/tr/nav.ts
T
Ahmet Yılmaz 8bda980028 i18n: complete Turkish (tr) translation (#1075)
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.
2026-05-27 17:31:37 +02:00

21 lines
600 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;