i18n: add translations for 30 locales from Quartz v4

This commit is contained in:
saberzero1 2026-04-04 02:04:48 +02:00
parent a9bcedb081
commit 8a6a46eeac
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

14
src/i18n/locales/nl-NL.ts Normal file
View 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
View 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: {},
};