mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-13 17:11:32 +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
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
.node-version
.npmrc
.prettierignore
.prettierrc
CODE_OF_CONDUCT.md
Dockerfile
LICENSE.txt
README.md
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
quartz.layout.ts
tsconfig.json
85 lines
2.2 KiB
TypeScript
85 lines
2.2 KiB
TypeScript
import { Translation } from "./definition"
|
||
|
||
export default {
|
||
propertyDefaults: {
|
||
title: "İsimsiz",
|
||
description: "Herhangi bir açıklama eklenmedi",
|
||
},
|
||
components: {
|
||
callout: {
|
||
note: "Not",
|
||
abstract: "Özet",
|
||
info: "Bilgi",
|
||
todo: "Yapılacaklar",
|
||
tip: "İpucu",
|
||
success: "Başarılı",
|
||
question: "Soru",
|
||
warning: "Uyarı",
|
||
failure: "Başarısız",
|
||
danger: "Tehlike",
|
||
bug: "Hata",
|
||
example: "Örnek",
|
||
quote: "Alıntı",
|
||
},
|
||
backlinks: {
|
||
title: "Backlinkler",
|
||
noBacklinksFound: "Backlink bulunamadı",
|
||
},
|
||
themeToggle: {
|
||
lightMode: "Açık mod",
|
||
darkMode: "Koyu mod",
|
||
},
|
||
explorer: {
|
||
title: "Gezgin",
|
||
},
|
||
footer: {
|
||
createdWith: "Şununla oluşturuldu",
|
||
},
|
||
graph: {
|
||
title: "Grafik Görünümü",
|
||
},
|
||
recentNotes: {
|
||
title: "Son Notlar",
|
||
seeRemainingMore: ({ remaining }) => `${remaining} tane daha gör →`,
|
||
},
|
||
transcludes: {
|
||
transcludeOf: ({ targetSlug }) => `${targetSlug} sayfasından alıntı`,
|
||
linkToOriginal: "Orijinal bağlantı",
|
||
},
|
||
search: {
|
||
title: "Arama",
|
||
searchBarPlaceholder: "Bir şey arayın",
|
||
},
|
||
tableOfContents: {
|
||
title: "İçindekiler",
|
||
},
|
||
contentMeta: {
|
||
readingTime: ({ minutes }) => `${minutes} dakika okuma süresi`,
|
||
},
|
||
},
|
||
pages: {
|
||
rss: {
|
||
recentNotes: "Son notlar",
|
||
lastFewNotes: ({ count }) => `Son ${count} not`,
|
||
},
|
||
error: {
|
||
title: "Bulunamadı",
|
||
notFound: "Bu sayfa ya özel ya da mevcut değil.",
|
||
home: "Anasayfaya geri dön",
|
||
},
|
||
folderContent: {
|
||
folder: "Klasör",
|
||
itemsUnderFolder: ({ count }) =>
|
||
count === 1 ? "Bu klasör altında 1 öğe." : `Bu klasör altındaki ${count} öğe.`,
|
||
},
|
||
tagContent: {
|
||
tag: "Etiket",
|
||
tagIndex: "Etiket Sırası",
|
||
itemsUnderTag: ({ count }) =>
|
||
count === 1 ? "Bu etikete sahip 1 öğe." : `Bu etiket altındaki ${count} öğe.`,
|
||
showingFirst: ({ count }) => `İlk ${count} etiket gösteriliyor.`,
|
||
totalTags: ({ count }) => `Toplam ${count} adet etiket bulundu.`,
|
||
},
|
||
},
|
||
} as const satisfies Translation
|