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
9718780d31
commit
0ea6ec66d4
2 changed files with 19 additions and 0 deletions
10
src/i18n/locales/it-IT.ts
Normal file
10
src/i18n/locales/it-IT.ts
Normal 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: {},
|
||||
};
|
||||
9
src/i18n/locales/ja-JP.ts
Normal file
9
src/i18n/locales/ja-JP.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
export default {
|
||||
pages: {
|
||||
folderContent: {
|
||||
folder: "フォルダ",
|
||||
itemsUnderFolder: ({ count }: { count: number }) => `${count}件のページ`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
Loading…
Reference in a new issue