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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 3334 additions and 40 deletions

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
}