返回 CodeWhale
chrome.ts
根目录 / web / lib / i18n / dictionaries / id / chrome.ts
1 import type { ChromeDict } from "../types";
2
3 /**
4 * Indonesian chrome dictionary.
5 *
6 * Terminology follows the TUI locale pack (`crates/tui/locales/id.json`):
7 * "penyedia" (provider), "izin" / "postur izin" (permission posture),
8 * "penalaran" (reasoning), "repositori", "tanda terima" (receipt). The mode
9 * names (Plan / Act / Operate) and permission postures (Ask / Auto-Review /
10 * Full Access) stay literal there and stay literal here.
11 *
12 * Secondary nav labels pair the Indonesian primary with a short English
13 * companion — the masthead's bilingual device, minus the Han seals, which
14 * belong to the English edition.
15 */
16 export const chrome: ChromeDict = {
17 navDocs: "Dokumentasi",
18 navStart: "Mulai",
19 navInstall: "Instal",
20 navFaq: "Tanya jawab",
21 navCommunity: "Komunitas",
22 navContribute: "Kontribusi",
23
24 navDocsSecondary: "Docs",
25 navStartSecondary: "Start",
26 navInstallSecondary: "Install",
27 navFaqSecondary: "FAQ",
28 navCommunitySecondary: "Community",
29 navContributeSecondary: "Contribute",
30
31 skipToContent: "Lewati ke konten utama",
32
33
34 navPrimaryAria: "Navigasi utama",
35 navHomeAria: "Beranda Codewhale",
36
37 installCta: "Instal →",
38
39 wordmarkSeal: "深",
40 wordmarkTag: "model apa pun, lokal dulu",
41
42 issueLabel: "Edisi {date}",
43 dateLocale: "id-ID",
44
45 starsAria: "Bintang GitHub",
46 githubFallback: "GitHub",
47
48 tickerLiveLabel: "Langsung",
49 tickerLiveTag: "LIVE",
50 tickerMerged: "digabungkan",
51 tickerOpened: "dibuka",
52 tickerClosed: "ditutup",
53 tickerReleased: "dirilis",
54 tickerFirstContribution: "kontribusi pertama",
55 tickerBy: "oleh {handle}",
56 tickerAria: "Aktivitas terbaru repositori",
57
58 traceLabel: "jejak penalaran",
59 traceTabsAria: "Cuplikan sesi",
60
61 menuOpen: "Buka menu",
62 menuClose: "Tutup menu",
63
64 themeAuto: "otomatis",
65 themeLight: "terang",
66 themeDark: "gelap",
67 themeAria: "Tema dokumentasi: {mode} (klik untuk mengganti)",
68 themeTitle: "Tema dokumentasi · otomatis / terang / gelap",
69
70 footerTagline:
71 "Menyelam ke laut dalam agar Anda tidak perlu melakukannya — dokumentasi, kode sumber, dan komunitas untuk runtime sumber terbuka.",
72 footerProduct: "Produk",
73 footerProject: "Proyek",
74 footerDocs: "Dokumentasi",
75 footerGuide: "Panduan memulai",
76 footerInstall: "Instalasi",
77 footerModels: "Model",
78 footerRuntime: "Runtime",
79 footerFaq: "Tanya jawab",
80 footerIssues: "Issues",
81 footerContribute: "Kontribusi",
82 footerLicense: "Lisensi MIT",
83 footerCanonicalSource: "Sumber kanonis: ",
84 footerReleases: " · Rilis: ",
85 footerReleasesLink: "Rilis GitHub",
86 footerSecurity: "Keamanan",
87
88 switcherLabel: "Bahasa",
89 switcherSwitchTo: "Beralih ke {label}",
90 partialBadge: "(sebagian)",
91 };
92
92 lines TYPESCRIPT