mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-13 09:01:34 +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
* fix(readermode): Translations and a new icon for ReaderMode * Formatted * Replaced icon
88 lines
2.3 KiB
TypeScript
88 lines
2.3 KiB
TypeScript
import { Translation } from "./definition"
|
|
|
|
export default {
|
|
propertyDefaults: {
|
|
title: "Bez nazwy",
|
|
description: "Brak opisu",
|
|
},
|
|
components: {
|
|
callout: {
|
|
note: "Notatka",
|
|
abstract: "Streszczenie",
|
|
info: "informacja",
|
|
todo: "Do zrobienia",
|
|
tip: "Wskazówka",
|
|
success: "Zrobione",
|
|
question: "Pytanie",
|
|
warning: "Ostrzeżenie",
|
|
failure: "Usterka",
|
|
danger: "Niebiezpieczeństwo",
|
|
bug: "Błąd w kodzie",
|
|
example: "Przykład",
|
|
quote: "Cytat",
|
|
},
|
|
backlinks: {
|
|
title: "Odnośniki zwrotne",
|
|
noBacklinksFound: "Brak połączeń zwrotnych",
|
|
},
|
|
themeToggle: {
|
|
lightMode: "Trzyb jasny",
|
|
darkMode: "Tryb ciemny",
|
|
},
|
|
readerMode: {
|
|
title: "Tryb czytania",
|
|
},
|
|
explorer: {
|
|
title: "Przeglądaj",
|
|
},
|
|
footer: {
|
|
createdWith: "Stworzone z użyciem",
|
|
},
|
|
graph: {
|
|
title: "Graf",
|
|
},
|
|
recentNotes: {
|
|
title: "Najnowsze notatki",
|
|
seeRemainingMore: ({ remaining }) => `Zobacz ${remaining} nastepnych →`,
|
|
},
|
|
transcludes: {
|
|
transcludeOf: ({ targetSlug }) => `Osadzone ${targetSlug}`,
|
|
linkToOriginal: "Łącze do oryginału",
|
|
},
|
|
search: {
|
|
title: "Szukaj",
|
|
searchBarPlaceholder: "Search for something",
|
|
},
|
|
tableOfContents: {
|
|
title: "Spis treści",
|
|
},
|
|
contentMeta: {
|
|
readingTime: ({ minutes }) => `${minutes} min. czytania `,
|
|
},
|
|
},
|
|
pages: {
|
|
rss: {
|
|
recentNotes: "Najnowsze notatki",
|
|
lastFewNotes: ({ count }) => `Ostatnie ${count} notatek`,
|
|
},
|
|
error: {
|
|
title: "Nie znaleziono",
|
|
notFound: "Ta strona jest prywatna lub nie istnieje.",
|
|
home: "Powrót do strony głównej",
|
|
},
|
|
folderContent: {
|
|
folder: "Folder",
|
|
itemsUnderFolder: ({ count }) =>
|
|
count === 1 ? "W tym folderze jest 1 element." : `Elementów w folderze: ${count}.`,
|
|
},
|
|
tagContent: {
|
|
tag: "Znacznik",
|
|
tagIndex: "Spis znaczników",
|
|
itemsUnderTag: ({ count }) =>
|
|
count === 1 ? "Oznaczony 1 element." : `Elementów z tym znacznikiem: ${count}.`,
|
|
showingFirst: ({ count }) => `Pokazuje ${count} pierwszych znaczników.`,
|
|
totalTags: ({ count }) => `Znalezionych wszystkich znaczników: ${count}.`,
|
|
},
|
|
},
|
|
} as const satisfies Translation
|