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
614978f73b
commit
5b31e28e21
2 changed files with 20 additions and 0 deletions
10
src/i18n/locales/tr-TR.ts
Normal file
10
src/i18n/locales/tr-TR.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export default {
|
||||
pages: {
|
||||
folderContent: {
|
||||
folder: "Klasör",
|
||||
itemsUnderFolder: ({ count }: { count: number }) =>
|
||||
count === 1 ? "Bu klasör altında 1 öğe." : `Bu klasör altındaki ${count} öğe.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
10
src/i18n/locales/uk-UA.ts
Normal file
10
src/i18n/locales/uk-UA.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export default {
|
||||
pages: {
|
||||
folderContent: {
|
||||
folder: "Тека",
|
||||
itemsUnderFolder: ({ count }: { count: number }) =>
|
||||
count === 1 ? "У цій теці 1 елемент." : `Елементів у цій теці: ${count}.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
Loading…
Reference in a new issue