i18n: add translations for 30 locales from Quartz v4

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

10
src/i18n/locales/ar-SA.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "مجلد",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "يوجد عنصر واحد فقط تحت هذا المجلد" : `يوجد ${count} عناصر تحت هذا المجلد.`,
},
},
components: {},
};

10
src/i18n/locales/ca-ES.ts Normal file
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "Carpeta",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "1 article en aquesta carpeta." : `${count} articles en esta carpeta.`,
},
},
components: {},
};