feat: add ko language (#3619)

This commit is contained in:
Ryan Cohen
2023-09-19 10:29:53 +09:00
committed by GitHub
parent c484810f96
commit 92507359b4
2 changed files with 7 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ export type AvailableLocale =
| 'hu'
| 'it'
| 'ja'
| 'ko'
| 'lt'
| 'nb-NO'
| 'nl'
@@ -125,6 +126,10 @@ export const availableLanguages: AvailableLanguageObject = {
code: 'ja',
display: '日本語',
},
ko: {
code: 'ko',
display: '한국어',
},
'zh-TW': {
code: 'zh-TW',
display: '繁體中文',

View File

@@ -50,6 +50,8 @@ const loadLocaleData = (locale: AvailableLocale): Promise<any> => {
return import('../i18n/locale/it.json');
case 'ja':
return import('../i18n/locale/ja.json');
case 'ko':
return import('../i18n/locale/ko.json');
case 'lt':
return import('../i18n/locale/lt.json');
case 'nb-NO':