-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Korean language support to the application. This includes translating the necessary UI elements and adding Korean to the supported language list.
- Loading branch information
Showing
3 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import option from "@/assets/locale/ko/option.json"; | ||
import playground from "@/assets/locale/ko/playground.json"; | ||
import common from "@/assets/locale/ko/common.json"; | ||
import sidepanel from "@/assets/locale/ko/sidepanel.json"; | ||
import settings from "@/assets/locale/ko/settings.json"; | ||
import knowledge from "@/assets/locale/ko/knowledge.json"; | ||
import chrome from "@/assets/locale/ko/chrome.json"; | ||
import openai from "@/assets/locale/ko/openai.json"; | ||
|
||
export const ko = { | ||
option, | ||
playground, | ||
common, | ||
sidepanel, | ||
settings, | ||
knowledge, | ||
chrome, | ||
openai | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,5 +55,9 @@ export const supportLanguage = [ | |
{ | ||
value: "sv", | ||
label: "Svenska" | ||
}, | ||
{ | ||
value: "ko", | ||
label: "한국어" | ||
} | ||
] |