i18n: add translations for 30 locales from Quartz v4

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

10
src/i18n/locales/it-IT.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "Cartella",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "1 oggetto in questa cartella." : `${count} oggetti in questa cartella.`,
},
},
components: {},
};

View file

@ -0,0 +1,9 @@
export default {
pages: {
folderContent: {
folder: "フォルダ",
itemsUnderFolder: ({ count }: { count: number }) => `${count}件のページ`,
},
},
components: {},
};