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
fe5c7e56ab
commit
5d0ef5e57d
2 changed files with 20 additions and 0 deletions
10
src/i18n/locales/fr-FR.ts
Normal file
10
src/i18n/locales/fr-FR.ts
Normal 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
10
src/i18n/locales/he-IL.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export default {
|
||||
pages: {
|
||||
folderContent: {
|
||||
folder: "תיקייה",
|
||||
itemsUnderFolder: ({ count }: { count: number }) =>
|
||||
count === 1 ? "פריט אחד תחת תיקייה זו." : `${count} פריטים תחת תיקייה זו.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
Loading…
Reference in a new issue