i18n: add translations for 30 locales from Quartz v4

This commit is contained in:
saberzero1 2026-04-04 02:04:53 +02:00
parent 8a6a46eeac
commit f2e07080a9
No known key found for this signature in database
2 changed files with 26 additions and 0 deletions

13
src/i18n/locales/pt-BR.ts Normal file
View 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
View 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: {},
};