mirror of
https://github.com/quartz-community/tag-page.git
synced 2026-07-22 02:50:25 +00:00
i18n: add translations for 30 locales from Quartz v4
This commit is contained in:
parent
a9bcedb081
commit
8a6a46eeac
2 changed files with 27 additions and 0 deletions
14
src/i18n/locales/nl-NL.ts
Normal file
14
src/i18n/locales/nl-NL.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
export default {
|
||||
pages: {
|
||||
tagContent: {
|
||||
tag: "Label",
|
||||
tagIndex: "Label-index",
|
||||
itemsUnderTag: ({ count }: { count: number }) =>
|
||||
count === 1 ? "1 item met dit label." : `${count} items met dit label.`,
|
||||
showingFirst: ({ count }: { count: number }) =>
|
||||
count === 1 ? "Eerste label tonen." : `Eerste ${count} labels tonen.`,
|
||||
totalTags: ({ count }: { count: number }) => `${count} labels gevonden.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
13
src/i18n/locales/pl-PL.ts
Normal file
13
src/i18n/locales/pl-PL.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
export default {
|
||||
pages: {
|
||||
tagContent: {
|
||||
tag: "Znacznik",
|
||||
tagIndex: "Spis znaczników",
|
||||
itemsUnderTag: ({ count }: { count: number }) =>
|
||||
count === 1 ? "Oznaczony 1 element." : `Elementów z tym znacznikiem: ${count}.`,
|
||||
showingFirst: ({ count }: { count: number }) => `Pokazuje ${count} pierwszych znaczników.`,
|
||||
totalTags: ({ count }: { count: number }) => `Znalezionych wszystkich znaczników: ${count}.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
Loading…
Reference in a new issue