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
fr-FR.ts
hu-HU.ts
it-IT.ts
ja-JP.ts
ko-KR.ts
nl-NL.ts
pl-PL.ts
pt-BR.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
.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
* Add homepage link with internationalization * Construct pathname from baseUrl config value * More robust URL manipulation * Add Farsi (#1133) * Fix bad rebase
85 lines
2.1 KiB
TypeScript
85 lines
2.1 KiB
TypeScript
import { Translation } from "./definition"
|
|
|
|
export default {
|
|
propertyDefaults: {
|
|
title: "Sem título",
|
|
description: "Sem descrição",
|
|
},
|
|
components: {
|
|
callout: {
|
|
note: "Nota",
|
|
abstract: "Abstrato",
|
|
info: "Info",
|
|
todo: "Pendência",
|
|
tip: "Dica",
|
|
success: "Sucesso",
|
|
question: "Pergunta",
|
|
warning: "Aviso",
|
|
failure: "Falha",
|
|
danger: "Perigo",
|
|
bug: "Bug",
|
|
example: "Exemplo",
|
|
quote: "Citação",
|
|
},
|
|
backlinks: {
|
|
title: "Backlinks",
|
|
noBacklinksFound: "Sem backlinks encontrados",
|
|
},
|
|
themeToggle: {
|
|
lightMode: "Tema claro",
|
|
darkMode: "Tema escuro",
|
|
},
|
|
explorer: {
|
|
title: "Explorador",
|
|
},
|
|
footer: {
|
|
createdWith: "Criado com",
|
|
},
|
|
graph: {
|
|
title: "Visão de gráfico",
|
|
},
|
|
recentNotes: {
|
|
title: "Notas recentes",
|
|
seeRemainingMore: ({ remaining }) => `Veja mais ${remaining} →`,
|
|
},
|
|
transcludes: {
|
|
transcludeOf: ({ targetSlug }) => `Transcrever de ${targetSlug}`,
|
|
linkToOriginal: "Link ao original",
|
|
},
|
|
search: {
|
|
title: "Pesquisar",
|
|
searchBarPlaceholder: "Pesquisar por algo",
|
|
},
|
|
tableOfContents: {
|
|
title: "Sumário",
|
|
},
|
|
contentMeta: {
|
|
readingTime: ({ minutes }) => `Leitura de ${minutes} min`,
|
|
},
|
|
},
|
|
pages: {
|
|
rss: {
|
|
recentNotes: "Notas recentes",
|
|
lastFewNotes: ({ count }) => `Últimas ${count} notas`,
|
|
},
|
|
error: {
|
|
title: "Não encontrado",
|
|
notFound: "Esta página é privada ou não existe.",
|
|
home: "Retornar a página inicial",
|
|
},
|
|
folderContent: {
|
|
folder: "Arquivo",
|
|
itemsUnderFolder: ({ count }) =>
|
|
count === 1 ? "1 item neste arquivo." : `${count} items neste arquivo.`,
|
|
},
|
|
tagContent: {
|
|
tag: "Tag",
|
|
tagIndex: "Sumário de Tags",
|
|
itemsUnderTag: ({ count }) =>
|
|
count === 1 ? "1 item com esta tag." : `${count} items com esta tag.`,
|
|
showingFirst: ({ count }) => `Mostrando as ${count} primeiras tags.`,
|
|
totalTags: ({ count }) => `Encontradas ${count} tags.`,
|
|
},
|
|
},
|
|
} as const satisfies Translation
|