File size: 2,330 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
41
42
43
44
45
46
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;