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
78
79
80
81
82
83
84
85
86
87
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "Tanpa Judul",
| description: "Tidak ada deskripsi",
| },
| components: {
| callout: {
| note: "Catatan",
| abstract: "Abstrak",
| info: "Info",
| todo: "Daftar Tugas",
| tip: "Tips",
| success: "Berhasil",
| question: "Pertanyaan",
| warning: "Peringatan",
| failure: "Gagal",
| danger: "Bahaya",
| bug: "Bug",
| example: "Contoh",
| quote: "Kutipan",
| },
| backlinks: {
| title: "Tautan Balik",
| noBacklinksFound: "Tidak ada tautan balik ditemukan",
| },
| themeToggle: {
| lightMode: "Mode Terang",
| darkMode: "Mode Gelap",
| },
| readerMode: {
| title: "Mode Pembaca",
| },
| explorer: {
| title: "Penjelajah",
| },
| footer: {
| createdWith: "Dibuat dengan",
| },
| graph: {
| title: "Tampilan Grafik",
| },
| recentNotes: {
| title: "Catatan Terbaru",
| seeRemainingMore: ({ remaining }) => `Lihat ${remaining} lagi →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `Transklusi dari ${targetSlug}`,
| linkToOriginal: "Tautan ke asli",
| },
| search: {
| title: "Cari",
| searchBarPlaceholder: "Cari sesuatu",
| },
| tableOfContents: {
| title: "Daftar Isi",
| },
| contentMeta: {
| readingTime: ({ minutes }) => `${minutes} menit baca`,
| },
| },
| pages: {
| rss: {
| recentNotes: "Catatan terbaru",
| lastFewNotes: ({ count }) => `${count} catatan terakhir`,
| },
| error: {
| title: "Tidak Ditemukan",
| notFound: "Halaman ini bersifat privat atau tidak ada.",
| home: "Kembali ke Beranda",
| },
| folderContent: {
| folder: "Folder",
| itemsUnderFolder: ({ count }) =>
| count === 1 ? "1 item di bawah folder ini." : `${count} item di bawah folder ini.`,
| },
| tagContent: {
| tag: "Tag",
| tagIndex: "Indeks Tag",
| itemsUnderTag: ({ count }) =>
| count === 1 ? "1 item dengan tag ini." : `${count} item dengan tag ini.`,
| showingFirst: ({ count }) => `Menampilkan ${count} tag pertama.`,
| totalTags: ({ count }) => `Ditemukan total ${count} tag.`,
| },
| },
| } as const satisfies Translation
|
|