i18n: add translations for 30 locales from Quartz v4

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

14
src/i18n/locales/lt-LT.ts Normal file
View file

@ -0,0 +1,14 @@
export default {
pages: {
folderContent: {
folder: "Aplankas",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1
? "1 elementas šiame aplanke."
: count < 10
? `${count} elementai šiame aplanke.`
: `${count} elementų šiame aplanke.`,
},
},
components: {},
};

10
src/i18n/locales/nb-NO.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "Mappe",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "1 gjenstand i denne mappen." : `${count} gjenstander i denne mappen.`,
},
},
components: {},
};