i18n: add translations for 30 locales from Quartz v4

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

10
src/i18n/locales/fr-FR.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "Dossier",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "1 élément sous ce dossier." : `${count} éléments sous ce dossier.`,
},
},
components: {},
};

10
src/i18n/locales/he-IL.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "תיקייה",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "פריט אחד תחת תיקייה זו." : `${count} פריטים תחת תיקייה זו.`,
},
},
components: {},
};