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

@ -6,13 +6,14 @@ interface Language {
export enum AppLanguage {
en = 'en',
hi = 'hi',
ja = 'ja',
fr = 'fr',
// DISABLED until this translation is fixed -prf
// de = 'de',
// DISABLED until this translation is more thoroughly reviewed -prf
// es = 'es',
fr = 'fr',
hi = 'hi',
ja = 'ja',
ko = 'ko',
}
interface AppLanguageConfig {
@ -22,13 +23,14 @@ interface AppLanguageConfig {
export const APP_LANGUAGES: AppLanguageConfig[] = [
{code2: AppLanguage.en, name: 'English'},
{code2: AppLanguage.hi, name: 'हिंदी'},
{code2: AppLanguage.ja, name: '日本語'},
{code2: AppLanguage.fr, name: 'Français'},
// DISABLED until this translation is fixed -prf
// {code2: AppLanguage.de, name: 'Deutsch'},
// DISABLED until this translation is more thoroughly reviewed -prf
// {code2: AppLanguage.es, name: 'Español'},
{code2: AppLanguage.fr, name: 'Français'},
{code2: AppLanguage.hi, name: 'हिंदी'},
{code2: AppLanguage.ja, name: '日本語'},
{code2: AppLanguage.ko, name: '한국어'},
]
export const LANGUAGES: Language[] = [