mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-20 22:01:45 +00:00
17264ef745
* feat(i18n): add Greek translation (#1061) * 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. * chore: prettier + lint * chore: enforce prettier & lint on shared package --------- Co-authored-by: Dimitris Kafetzis <39215021+Dkafetzis@users.noreply.github.com> Co-authored-by: Ahmet Yılmaz <70577707+sharkpaw@users.noreply.github.com>
46 lines
2.3 KiB
TypeScript
46 lines
2.3 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
||
|
||
const notif: TranslationStrings = {
|
||
'notif.test.title': '[Test] Bildirim',
|
||
'notif.test.simple.text': 'Bu basit bir test bildirimidir.',
|
||
'notif.test.boolean.text': 'Bu test bildirimini kabul ediyor musunuz?',
|
||
'notif.test.navigate.text': 'Gösterge paneline gitmek için aşağıya tıklayın.',
|
||
'notif.trip_invite.title': 'Seyahat Daveti',
|
||
'notif.trip_invite.text': '{actor} sizi {trip} seyahatine davet etti',
|
||
'notif.booking_change.title': 'Rezervasyon Güncellendi',
|
||
'notif.booking_change.text':
|
||
'{actor}, {trip} içindeki bir rezervasyonu güncelledi',
|
||
'notif.trip_reminder.title': 'Seyahat Hatırlatıcısı',
|
||
'notif.trip_reminder.text': '{trip} Seyahatiniz yaklaşıyor!',
|
||
'notif.todo_due.title': 'Yapılacak vadesi',
|
||
'notif.todo_due.text': '{trip} içindeki {todo} — son tarih: {due}',
|
||
'notif.vacay_invite.title': 'Vacay Birleştirme Daveti',
|
||
'notif.vacay_invite.text':
|
||
'{actor} tatil planlarını birleştirmeniz için sizi davet etti',
|
||
'notif.photos_shared.title': 'Fotoğraflar Paylaşıldı',
|
||
'notif.photos_shared.text':
|
||
'{actor}, {trip} içinde {count} fotoğraf paylaştı',
|
||
'notif.collab_message.title': 'Yeni Mesaj',
|
||
'notif.collab_message.text': '{actor}, {trip} içinde mesaj gönderdi',
|
||
'notif.packing_tagged.title': 'Paket listesi ataması',
|
||
'notif.packing_tagged.text':
|
||
'{actor} sizi {trip} içinde {category} kategorisine atadı',
|
||
'notif.version_available.title': 'Yeni Sürüm Mevcut',
|
||
'notif.version_available.text': 'TREK {version} artık kullanılabilir',
|
||
'notif.action.view_trip': 'Seyahati Görüntüle',
|
||
'notif.action.view_collab': 'Mesajları Görüntüle',
|
||
'notif.action.view_packing': 'Paket listesini görüntüle',
|
||
'notif.action.view_photos': 'Fotoğrafları Görüntüle',
|
||
'notif.action.view_vacay': "Vacay'ı Görüntüle",
|
||
'notif.action.view_admin': 'Yöneticiye git',
|
||
'notif.action.view': 'Görüntüle',
|
||
'notif.action.accept': 'Kabul et',
|
||
'notif.action.decline': 'Reddet',
|
||
'notif.generic.title': 'Bildirim',
|
||
'notif.generic.text': 'Yeni bir bildiriminiz var',
|
||
'notif.dev.unknown_event.title': '[GEL] Bilinmeyen Olay',
|
||
'notif.dev.unknown_event.text':
|
||
'"{event}" olay türü EVENT_NOTIFICATION_CONFIG içinde kayıtlı değil',
|
||
};
|
||
export default notif;
|