diff options
author | Claudiu Cristea <clau.cristea@gmail.com> | 2024-12-19 01:24:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-18 15:24:38 -0800 |
commit | afd338b0f36e439b21084378676a900ffe32572e (patch) | |
tree | 4b3fdd21aa4ef4cdd2640d96dd5c9d976a1053dc /src/locale/i18n.web.ts | |
parent | 2d1a5e71ab0b3c615699edc1a9cfdfb4a8a29dfd (diff) | |
download | voidsky-afd338b0f36e439b21084378676a900ffe32572e.tar.zst |
Romanian localization (#6456)
* Empty * First pass * More colloquial Romanian * Add Romanian lanaguage * Romanian specfic plural with 3 variants * Adjustments * Chat > Conversație * Keep code alphabetical order * Update messages.po * Add 'ro' to app.config.js * Regenerate and finish RO * Update messages.po * Fixing a previous wrong conflict resolution * Adapt after #6742 Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --------- Co-authored-by: Alex <alextec70@outlook.com> Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
Diffstat (limited to 'src/locale/i18n.web.ts')
-rw-r--r-- | src/locale/i18n.web.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts index 211333c4d..c74d11ad5 100644 --- a/src/locale/i18n.web.ts +++ b/src/locale/i18n.web.ts @@ -88,6 +88,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/pt-BR/messages`) break } + case AppLanguage.ro: { + mod = await import(`./locales/ro/messages`) + break + } case AppLanguage.ru: { mod = await import(`./locales/ru/messages`) break |