Files
TREK/shared/src/i18n/tr/common.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

56 lines
1.7 KiB
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 common: TranslationStrings = {
'common.save': 'Kaydet',
'common.showMore': 'Daha fazla göster',
'common.showLess': 'Daha az göster',
'common.cancel': 'İptal',
'common.clear': 'Temizle',
'common.delete': 'Sil',
'common.edit': 'Düzenle',
'common.add': 'Ekle',
'common.loading': 'Yükleniyor...',
'common.import': 'İçe aktar',
'common.select': 'Seç',
'common.selectAll': 'Tümünü seç',
'common.deselectAll': 'Seçimi kaldır',
'common.error': 'Hata',
'common.unknownError': 'Bilinmeyen hata',
'common.tooManyAttempts':
'Çok fazla deneme. Lütfen daha sonra tekrar deneyin.',
'common.back': 'Geri',
'common.all': 'Tümü',
'common.close': 'Kapat',
'common.open': 'Aç',
'common.upload': 'Yükle',
'common.search': 'Ara',
'common.confirm': 'Onayla',
'common.ok': 'Tamam',
'common.yes': 'Evet',
'common.no': 'Hayır',
'common.or': 'veya',
'common.none': 'Yok',
'common.date': 'Tarih',
'common.rename': 'Yeniden adlandır',
'common.discardChanges': 'Değişiklikleri iptal et',
'common.discard': 'Vazgeç',
'common.name': 'Ad',
'common.email': 'E-posta',
'common.password': 'Şifre',
'common.saving': 'Kaydediliyor...',
'common.justNow': 'az önce',
'common.hoursAgo': '{count} sa. önce',
'common.daysAgo': '{count} gün önce',
'common.saved': 'Kaydedildi',
'common.update': 'Güncelle',
'common.change': 'Değiştir',
'common.uploading': 'Yükleniyor…',
'common.backToPlanning': 'Planlamaya dön',
'common.reset': 'Sıfırla',
'common.expand': 'Genişlet',
'common.collapse': 'Daralt',
'common.copy': 'Kopyala',
'common.copied': 'Kopyalandı',
};
export default common;