* 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>
This commit is contained in:
Julien G.
2026-05-27 17:53:55 +02:00
committed by GitHub
parent 4ff4435f8b
commit 17264ef745
87 changed files with 5177 additions and 2243 deletions
+39 -35
View File
@@ -1,41 +1,45 @@
import type { TranslationStrings } from '../types';
const notif: TranslationStrings = {
'notif.test.title': '[Test] Notification',
'notif.test.simple.text': 'This is a simple test notification.',
'notif.test.boolean.text': 'Do you accept this test notification?',
'notif.test.navigate.text': 'Click below to navigate to the dashboard.',
'notif.trip_invite.title': 'Trip Invitation',
'notif.trip_invite.text': '{actor} invited you to {trip}',
'notif.booking_change.title': 'Booking Updated',
'notif.booking_change.text': '{actor} updated a booking in {trip}',
'notif.trip_reminder.title': 'Trip Reminder',
'notif.trip_reminder.text': 'Your trip {trip} is coming up soon!',
'notif.todo_due.title': 'To-do due',
'notif.todo_due.text': '{todo} in {trip} is due on {due}',
'notif.vacay_invite.title': 'Vacay Fusion Invite',
'notif.vacay_invite.text': '{actor} invited you to fuse vacation plans',
'notif.photos_shared.title': 'Photos Shared',
'notif.photos_shared.text': '{actor} shared {count} photo(s) in {trip}',
'notif.collab_message.title': 'New Message',
'notif.collab_message.text': '{actor} sent a message in {trip}',
'notif.packing_tagged.title': 'Packing Assignment',
'notif.packing_tagged.text': '{actor} assigned you to {category} in {trip}',
'notif.version_available.title': 'New Version Available',
'notif.version_available.text': 'TREK {version} is now available',
'notif.action.view_trip': 'View Trip',
'notif.action.view_collab': 'View Messages',
'notif.action.view_packing': 'View Packing',
'notif.action.view_photos': 'View Photos',
'notif.action.view_vacay': 'View Vacay',
'notif.action.view_admin': 'Go to Admin',
'notif.action.view': 'View',
'notif.action.accept': 'Accept',
'notif.action.decline': 'Decline',
'notif.generic.title': 'Notification',
'notif.generic.text': 'You have a new notification',
'notif.dev.unknown_event.title': '[DEV] Unknown Event',
'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 type "{event}" is not registered in EVENT_NOTIFICATION_CONFIG',
'"{event}" olay türü EVENT_NOTIFICATION_CONFIG içinde kayıtlı değil',
};
export default notif;