mirror of
https://github.com/quartz-community/folder-page.git
synced 2026-07-22 02:50:24 +00:00
i18n: add translations for 30 locales from Quartz v4
This commit is contained in:
parent
6090bd8bab
commit
deb1f09851
2 changed files with 20 additions and 0 deletions
10
src/i18n/locales/ar-SA.ts
Normal file
10
src/i18n/locales/ar-SA.ts
Normal 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
10
src/i18n/locales/ca-ES.ts
Normal 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: {},
|
||||
};
|
||||
Loading…
Reference in a new issue