Add Korean localization (#2395)

* Create messages.po

* Add Korean localization
This commit is contained in:
Minseo Lee
2024-01-03 20:34:21 +09:00
committed by GitHub
parent d4bb64c1e6
commit ffd08570a5
6 changed files with 3334 additions and 40 deletions
+8 -6
View File
@@ -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
}