i18n: add translations for 30 locales from Quartz v4

This commit is contained in:
saberzero1 2026-04-04 02:01:38 +02:00
parent 614978f73b
commit 5b31e28e21
No known key found for this signature in database
2 changed files with 20 additions and 0 deletions

10
src/i18n/locales/tr-TR.ts Normal file
View 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
View file

@ -0,0 +1,10 @@
export default {
pages: {
folderContent: {
folder: "Тека",
itemsUnderFolder: ({ count }: { count: number }) =>
count === 1 ? "У цій теці 1 елемент." : `Елементів у цій теці: ${count}.`,
},
},
components: {},
};