Spaces:
Sleeping
Sleeping
File size: 2,013 Bytes
cb43fbd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | import type { TranslationStrings } from '../types';
const notifications: TranslationStrings = {
'notifications.title': 'Bildirimler',
'notifications.markAllRead': 'Tümünü okundu işaretle',
'notifications.deleteAll': 'Tümünü sil',
'notifications.showAll': 'Tüm bildirimleri göster',
'notifications.empty': 'Bildirim yok',
'notifications.emptyDescription': "You're all caught up!",
'notifications.all': 'Tümü',
'notifications.unreadOnly': 'Okunmamış',
'notifications.markRead': 'Okundu işaretle',
'notifications.markUnread': 'Okunmadı işaretle',
'notifications.delete': 'Sil',
'notifications.system': 'Sistem',
'notifications.synologySessionCleared.title':
'Synology Photos bağlantısı kesildi',
'notifications.synologySessionCleared.text':
"Sunucunuz veya hesabınız değişti — bağlantıyı test etmek için Ayarlar'a gidin.",
'notifications.versionAvailable.title': 'Güncelleme Mevcut',
'notifications.versionAvailable.text': 'TREK {version} artık kullanılabilir.',
'notifications.versionAvailable.button': 'Ayrıntıları Görüntüle',
'notifications.test.title': '{actor} Kaynaklı test bildirimi',
'notifications.test.text': 'Bu basit bir test bildirimidir.',
'notifications.test.booleanTitle': '{actor} onayınızı istiyor',
'notifications.test.booleanText':
'Bu bir test boolean bildirimidir. Aşağıdan bir eylem seçin.',
'notifications.test.accept': 'Onayla',
'notifications.test.decline': 'Reddet',
'notifications.test.navigateTitle': 'Bir şeye göz atın',
'notifications.test.navigateText': 'Bu bir test navigasyon bildirimidir.',
'notifications.test.goThere': 'Git',
'notifications.test.adminTitle': 'Yönetici yayını',
'notifications.test.adminText':
'{actor} tüm yöneticilere test bildirimi gönderdi.',
'notifications.test.tripTitle': '{actor} seyahatinizde bir şey paylaştı',
'notifications.test.tripText': '"{trip}" seyahati için test bildirimi.',
};
export default notifications;
|