diff --git a/src/i18n/locales/pt-BR.ts b/src/i18n/locales/pt-BR.ts new file mode 100644 index 0000000..d20f230 --- /dev/null +++ b/src/i18n/locales/pt-BR.ts @@ -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: {}, +}; diff --git a/src/i18n/locales/ro-RO.ts b/src/i18n/locales/ro-RO.ts new file mode 100644 index 0000000..498ab8a --- /dev/null +++ b/src/i18n/locales/ro-RO.ts @@ -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: {}, +};