File size: 3,254 Bytes
48f8f0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import type { TranslationStrings } from '../types';

const collab: TranslationStrings = {
  'collab.tabs.chat': 'Chat',
  'collab.tabs.notes': 'Catatan',
  'collab.tabs.polls': 'Polling',
  'collab.whatsNext.title': 'Berikutnya',
  'collab.whatsNext.today': 'Hari ini',
  'collab.whatsNext.tomorrow': 'Besok',
  'collab.whatsNext.empty': 'Tidak ada aktivitas mendatang',
  'collab.whatsNext.until': 'sampai',
  'collab.whatsNext.emptyHint': 'Aktivitas dengan waktu akan muncul di sini',
  'collab.chat.send': 'Kirim',
  'collab.chat.placeholder': 'Ketik pesan...',
  'collab.chat.empty': 'Mulai percakapan',
  'collab.chat.emptyHint': 'Pesan dibagikan kepada semua anggota perjalanan',
  'collab.chat.emptyDesc':
    'Bagikan ide, rencana, dan update dengan grup perjalananmu',
  'collab.chat.today': 'Hari ini',
  'collab.chat.yesterday': 'Kemarin',
  'collab.chat.deletedMessage': 'menghapus pesan',
  'collab.chat.reply': 'Balas',
  'collab.chat.loadMore': 'Muat pesan lebih lama',
  'collab.chat.justNow': 'baru saja',
  'collab.chat.minutesAgo': '{n}m lalu',
  'collab.chat.hoursAgo': '{n}j lalu',
  'collab.notes.title': 'Catatan',
  'collab.notes.new': 'Catatan Baru',
  'collab.notes.empty': 'Belum ada catatan',
  'collab.notes.emptyHint': 'Mulai catat ide dan rencana',
  'collab.notes.all': 'Semua',
  'collab.notes.titlePlaceholder': 'Judul catatan',
  'collab.notes.contentPlaceholder': 'Tulis sesuatu...',
  'collab.notes.categoryPlaceholder': 'Kategori',
  'collab.notes.newCategory': 'Kategori baru...',
  'collab.notes.category': 'Kategori',
  'collab.notes.noCategory': 'Tanpa kategori',
  'collab.notes.color': 'Warna',
  'collab.notes.save': 'Simpan',
  'collab.notes.cancel': 'Batal',
  'collab.notes.edit': 'Edit',
  'collab.notes.delete': 'Hapus',
  'collab.notes.confirmDeleteTitle': 'Hapus catatan?',
  'collab.notes.confirmDeleteBody': 'Catatan ini akan dihapus secara permanen.',
  'collab.notes.pin': 'Sematkan',
  'collab.notes.unpin': 'Lepas sematan',
  'collab.notes.daysAgo': '{n}h lalu',
  'collab.notes.categorySettings': 'Kelola Kategori',
  'collab.notes.create': 'Buat',
  'collab.notes.website': 'Website',
  'collab.notes.websitePlaceholder': 'https://...',
  'collab.notes.attachFiles': 'Lampirkan file',
  'collab.notes.noCategoriesYet': 'Belum ada kategori',
  'collab.notes.emptyDesc': 'Buat catatan untuk memulai',
  'collab.polls.title': 'Polling',
  'collab.polls.new': 'Polling Baru',
  'collab.polls.empty': 'Belum ada polling',
  'collab.polls.emptyHint': 'Tanyakan ke grup dan voting bersama',
  'collab.polls.question': 'Pertanyaan',
  'collab.polls.questionPlaceholder': 'Apa yang harus kita lakukan?',
  'collab.polls.addOption': '+ Tambah pilihan',
  'collab.polls.optionPlaceholder': 'Pilihan {n}',
  'collab.polls.create': 'Buat Polling',
  'collab.polls.close': 'Tutup',
  'collab.polls.closed': 'Ditutup',
  'collab.polls.votes': '{n} suara',
  'collab.polls.vote': '{n} suara',
  'collab.polls.multipleChoice': 'Pilihan ganda',
  'collab.polls.multiChoice': 'Pilihan ganda',
  'collab.polls.deadline': 'Tenggat waktu',
  'collab.polls.option': 'Pilihan',
  'collab.polls.options': 'Pilihan',
  'collab.polls.delete': 'Hapus',
  'collab.polls.closedSection': 'Ditutup',
};
export default collab;