i18n: add translations for 30 locales from Quartz v4

This commit is contained in:
saberzero1 2026-04-04 02:01:33 +02:00
parent f9b037fce8
commit 6359cb8b62
No known key found for this signature in database
2 changed files with 20 additions and 0 deletions

10
src/i18n/locales/nl-NL.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "Map",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "1 item in deze map." : `${count} items in deze map.`,
},
},
components: {},
};

10
src/i18n/locales/pl-PL.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "Folder",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "W tym folderze jest 1 element." : `Elementów w folderze: ${count}.`,
},
},
components: {},
};