mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-14 01:21:38 +00:00
.github
content
docs
quartz
cli
components
i18n
locales
ar-SA.ts
ca-ES.ts
cs-CZ.ts
de-DE.ts
definition.ts
en-GB.ts
en-US.ts
es-ES.ts
fa-IR.ts
fi-FI.ts
fr-FR.ts
hu-HU.ts
id-ID.ts
it-IT.ts
ja-JP.ts
ko-KR.ts
lt-LT.ts
nb-NO.ts
nl-NL.ts
pl-PL.ts
pt-BR.ts
ro-RO.ts
ru-RU.ts
th-TH.ts
tr-TR.ts
uk-UA.ts
vi-VN.ts
zh-CN.ts
zh-TW.ts
index.ts
plugins
processors
static
styles
util
bootstrap-cli.mjs
bootstrap-worker.mjs
build.ts
cfg.ts
worker.ts
.gitattributes
.gitignore
.gitlab-ci.yml
.gitmodules
.node-version
.npmrc
.prettierignore
.prettierrc
CODE_OF_CONDUCT.md
Dockerfile
LICENSE.txt
README.md
bun.lock
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
quartz.layout.ts
tsconfig.json
88 lines
2.2 KiB
TypeScript
88 lines
2.2 KiB
TypeScript
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
|