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
bc2b0ab751
commit
f9b037fce8
2 changed files with 24 additions and 0 deletions
14
src/i18n/locales/lt-LT.ts
Normal file
14
src/i18n/locales/lt-LT.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
export default {
|
||||
pages: {
|
||||
folderContent: {
|
||||
folder: "Aplankas",
|
||||
itemsUnderFolder: ({ count }: { count: number }) =>
|
||||
count === 1
|
||||
? "1 elementas šiame aplanke."
|
||||
: count < 10
|
||||
? `${count} elementai šiame aplanke.`
|
||||
: `${count} elementų šiame aplanke.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
10
src/i18n/locales/nb-NO.ts
Normal file
10
src/i18n/locales/nb-NO.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export default {
|
||||
pages: {
|
||||
folderContent: {
|
||||
folder: "Mappe",
|
||||
itemsUnderFolder: ({ count }: { count: number }) =>
|
||||
count === 1 ? "1 gjenstand i denne mappen." : `${count} gjenstander i denne mappen.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
Loading…
Reference in a new issue