diff options
Diffstat (limited to 'src/locale/helpers.ts')
-rw-r--r-- | src/locale/helpers.ts | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts index ef09e5e68..cdb5514b5 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -110,18 +110,20 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { switch (lang) { case 'en': return AppLanguage.en - case 'hi': - return AppLanguage.hi - case 'ja': - return AppLanguage.ja - case 'fr': - return AppLanguage.fr // DISABLED until this translation is fixed -prf // case 'de': // return AppLanguage.de // DISABLED until this translation is more thoroughly reviewed -prf // case 'es': // return AppLanguage.es + case 'fr': + return AppLanguage.fr + case 'hi': + return AppLanguage.hi + case 'ja': + return AppLanguage.ja + case 'ko': + return AppLanguage.ko default: continue } |