diff options
author | Max Ignatenko <gelraen.ua@gmail.com> | 2024-01-03 20:22:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 01:52:55 +0530 |
commit | 401b3401c70a8bc9074904e922cded1986309bd6 (patch) | |
tree | ea9f9f28c19792d0122587f4c3c682f554604612 /src/locale/i18n.web.ts | |
parent | 1f38e9b197fcdc54409bfd346a1bbee67eac8a89 (diff) | |
download | voidsky-401b3401c70a8bc9074904e922cded1986309bd6.tar.zst |
Add Ukrainian localization (#2336)
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 e98dcafae..1fb9c2d70 100644 --- a/src/locale/i18n.web.ts +++ b/src/locale/i18n.web.ts @@ -41,6 +41,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/pt-BR/messages`) break } + case AppLanguage.uk: { + mod = await import(`./locales/uk/messages`) + break + } default: { mod = await import(`./locales/en/messages`) break |