mirror of
https://github.com/quartz-community/tag-page.git
synced 2026-07-22 02:50:25 +00:00
i18n: add translations for 30 locales from Quartz v4
This commit is contained in:
parent
8a6a46eeac
commit
f2e07080a9
2 changed files with 26 additions and 0 deletions
13
src/i18n/locales/pt-BR.ts
Normal file
13
src/i18n/locales/pt-BR.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
export default {
|
||||
pages: {
|
||||
tagContent: {
|
||||
tag: "Tag",
|
||||
tagIndex: "Sumário de Tags",
|
||||
itemsUnderTag: ({ count }) =>
|
||||
count === 1 ? "1 item com esta tag." : `${count} items com esta tag.`,
|
||||
showingFirst: ({ count }) => `Mostrando as ${count} primeiras tags.`,
|
||||
totalTags: ({ count }) => `Encontradas ${count} tags.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
13
src/i18n/locales/ro-RO.ts
Normal file
13
src/i18n/locales/ro-RO.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
export default {
|
||||
pages: {
|
||||
tagContent: {
|
||||
tag: "Etichetă",
|
||||
tagIndex: "Indexul etichetelor",
|
||||
itemsUnderTag: ({ count }) =>
|
||||
count === 1 ? "1 articol cu această etichetă." : `${count} articole cu această etichetă.`,
|
||||
showingFirst: ({ count }) => `Se afișează primele ${count} etichete.`,
|
||||
totalTags: ({ count }) => `Au fost găsite ${count} etichete în total.`,
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
};
|
||||
Loading…
Reference in a new issue