From 4f94e032779e6fb36b0e560a64523e1f88cf2895 Mon Sep 17 00:00:00 2001 From: Jehian <166832786+send0moka@users.noreply.github.com> Date: Tue, 29 Jul 2025 09:30:50 +0700 Subject: [PATCH] Create id.ts --- src/i18n/languages/id.ts | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/i18n/languages/id.ts diff --git a/src/i18n/languages/id.ts b/src/i18n/languages/id.ts new file mode 100644 index 00000000..9143ed54 --- /dev/null +++ b/src/i18n/languages/id.ts @@ -0,0 +1,38 @@ +import Key from "../i18nKey"; +import type { Translation } from "../translation"; + +export const id: Translation = { + [Key.home]: "Beranda", + [Key.about]: "Tentang", + [Key.archive]: "Arsip", + [Key.search]: "Cari", + + [Key.tags]: "Tag", + [Key.categories]: "Kategori", + [Key.recentPosts]: "Postingan Terbaru", + + [Key.comments]: "Komentar", + + [Key.untitled]: "Tanpa Judul", + [Key.uncategorized]: "Tanpa Kategori", + [Key.noTags]: "Tanpa Tag", + + [Key.wordCount]: "kata", + [Key.wordsCount]: "kata", + [Key.minuteCount]: "menit", + [Key.minutesCount]: "menit", + [Key.postCount]: "postingan", + [Key.postsCount]: "postingan", + + [Key.themeColor]: "Warna Tema", + + [Key.lightMode]: "Terang", + [Key.darkMode]: "Gelap", + [Key.systemMode]: "Sistem", + + [Key.more]: "Lainnya", + + [Key.author]: "Penulis", + [Key.publishedAt]: "Diterbitkan pada", + [Key.license]: "Lisensi", +};