Add support for another language: Korean (#20099) (#20921)

Co-authored-by: dasomel <dasomell@gmail.com>
This commit is contained in:
Sriharsha Chintalapani 2025-04-22 16:33:06 -06:00 committed by GitHub
parent efa65579d4
commit 4e222c78c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1118 additions and 1116 deletions

View File

@ -32,6 +32,7 @@ import zhCN from '../../locale/languages/zh-cn.json';
export enum SupportedLocales { export enum SupportedLocales {
English = 'en-US', English = 'en-US',
= 'ko-KR',
Français = 'fr-FR', Français = 'fr-FR',
= 'zh-CN', = 'zh-CN',
= 'ja-JP', = 'ja-JP',
@ -60,6 +61,7 @@ export const getInitOptions = (): InitOptions => {
supportedLngs: Object.values(SupportedLocales), supportedLngs: Object.values(SupportedLocales),
resources: { resources: {
'en-US': { translation: enUS }, 'en-US': { translation: enUS },
'ko-KR': { translation: koKR },
'fr-FR': { translation: frFR }, 'fr-FR': { translation: frFR },
'zh-CN': { translation: zhCN }, 'zh-CN': { translation: zhCN },
'ja-JP': { translation: jaJP }, 'ja-JP': { translation: jaJP },