diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-28 13:03:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-28 13:03:54 -0800 |
commit | 6e7098e456abde1387b3b427195d7268e07f83a3 (patch) | |
tree | 9161046c0feb5930c6d72388d01d369aac1497aa /src/locale/i18n.web.ts | |
parent | f0532865ce1d5decc39cca6eeeea0d61ebd8d63d (diff) | |
download | voidsky-6e7098e456abde1387b3b427195d7268e07f83a3.tar.zst |
Disable spanish translation until it's more thoroughly reviewed (#2362)
* Disable spanish translation until it's more thoroughly reviewed * missed a line
Diffstat (limited to 'src/locale/i18n.web.ts')
-rw-r--r-- | src/locale/i18n.web.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts index 734f6a0de..bf6f6e196 100644 --- a/src/locale/i18n.web.ts +++ b/src/locale/i18n.web.ts @@ -29,10 +29,11 @@ export async function dynamicActivate(locale: AppLanguage) { // mod = await import(`./locales/de/messages`) // break // } - case AppLanguage.es: { - mod = await import(`./locales/es/messages`) - break - } + // DISABLED until this translation is more thoroughly reviewed -prf + // case AppLanguage.es: { + // mod = await import(`./locales/es/messages`) + // break + // } default: { mod = await import(`./locales/en/messages`) break |