mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-14 17:41:36 +00:00
.github
content
docs
quartz
cli
components
i18n
locales
ar-SA.ts
de-DE.ts
definition.ts
en-US.ts
es-ES.ts
fr-FR.ts
it-IT.ts
ja-JP.ts
ko-KR.ts
nl-NL.ts
ro-RO.ts
ru-RU.ts
uk-UA.ts
vi-VN.ts
zh-CN.ts
index.ts
plugins
processors
static
styles
util
bootstrap-cli.mjs
bootstrap-worker.mjs
build.ts
cfg.ts
depgraph.test.ts
depgraph.ts
worker.ts
.gitattributes
.gitignore
.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
84 lines
2.1 KiB
TypeScript
84 lines
2.1 KiB
TypeScript
import { Translation } from "./definition"
|
|
|
|
export default {
|
|
propertyDefaults: {
|
|
title: "Senza titolo",
|
|
description: "Nessuna descrizione",
|
|
},
|
|
components: {
|
|
callout: {
|
|
note: "Nota",
|
|
abstract: "Astratto",
|
|
info: "Info",
|
|
todo: "Da fare",
|
|
tip: "Consiglio",
|
|
success: "Completato",
|
|
question: "Domanda",
|
|
warning: "Attenzione",
|
|
failure: "Errore",
|
|
danger: "Pericolo",
|
|
bug: "Bug",
|
|
example: "Esempio",
|
|
quote: "Citazione",
|
|
},
|
|
backlinks: {
|
|
title: "Link entranti",
|
|
noBacklinksFound: "Nessun link entrante",
|
|
},
|
|
themeToggle: {
|
|
lightMode: "Tema chiaro",
|
|
darkMode: "Tema scuro",
|
|
},
|
|
explorer: {
|
|
title: "Esplora",
|
|
},
|
|
footer: {
|
|
createdWith: "Creato con",
|
|
},
|
|
graph: {
|
|
title: "Vista grafico",
|
|
},
|
|
recentNotes: {
|
|
title: "Note recenti",
|
|
seeRemainingMore: ({ remaining }) => `Vedi ${remaining} altro →`,
|
|
},
|
|
transcludes: {
|
|
transcludeOf: ({ targetSlug }) => `Transclusione di ${targetSlug}`,
|
|
linkToOriginal: "Link all'originale",
|
|
},
|
|
search: {
|
|
title: "Cerca",
|
|
searchBarPlaceholder: "Cerca qualcosa",
|
|
},
|
|
tableOfContents: {
|
|
title: "Tabella dei contenuti",
|
|
},
|
|
contentMeta: {
|
|
readingTime: ({ minutes }) => `${minutes} minuti`,
|
|
},
|
|
},
|
|
pages: {
|
|
rss: {
|
|
recentNotes: "Note recenti",
|
|
lastFewNotes: ({ count }) => `Ultime ${count} note`,
|
|
},
|
|
error: {
|
|
title: "Non trovato",
|
|
notFound: "Questa pagina è privata o non esiste.",
|
|
},
|
|
folderContent: {
|
|
folder: "Cartella",
|
|
itemsUnderFolder: ({ count }) =>
|
|
count === 1 ? "1 oggetto in questa cartella." : `${count} oggetti in questa cartella.`,
|
|
},
|
|
tagContent: {
|
|
tag: "Etichetta",
|
|
tagIndex: "Indice etichette",
|
|
itemsUnderTag: ({ count }) =>
|
|
count === 1 ? "1 oggetto con questa etichetta." : `${count} oggetti con questa etichetta.`,
|
|
showingFirst: ({ count }) => `Prime ${count} etichette.`,
|
|
totalTags: ({ count }) => `Trovate ${count} etichette totali.`,
|
|
},
|
|
},
|
|
} as const satisfies Translation
|