mirror of
https://github.com/quartz-community/content-meta.git
synced 2026-07-22 02:50:23 +00:00
i18n: add translations for 30 locales from Quartz v4
This commit is contained in:
parent
f70088a6c0
commit
9d2a4e238f
2 changed files with 15 additions and 0 deletions
7
src/i18n/locales/pt-BR.ts
Normal file
7
src/i18n/locales/pt-BR.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
export default {
|
||||
components: {
|
||||
contentMeta: {
|
||||
readingTime: ({ minutes }: { minutes: number }) => `Leitura de ${minutes} min`,
|
||||
},
|
||||
},
|
||||
};
|
||||
8
src/i18n/locales/ro-RO.ts
Normal file
8
src/i18n/locales/ro-RO.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export default {
|
||||
components: {
|
||||
contentMeta: {
|
||||
readingTime: ({ minutes }: { minutes: number }) =>
|
||||
minutes == 1 ? `lectură de 1 minut` : `lectură de ${minutes} minute`,
|
||||
},
|
||||
},
|
||||
};
|
||||
Loading…
Reference in a new issue