Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions frontend/src/app/setting/general.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ export default function GeneralPage() {
<SelectItem value="ja">
{t("general.language.options.ja")}
</SelectItem>
<SelectItem value="ko">
{t("general.language.options.ko")}
</SelectItem>
</SelectContent>
</Select>
</Field>
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/i18n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { initReactI18next } from "react-i18next";

import en from "@/i18n/locales/en.json";
import ja from "@/i18n/locales/ja.json";
import ko from "@/i18n/locales/ko.json";
import zhCN from "@/i18n/locales/zh_CN.json";
import zhTW from "@/i18n/locales/zh_TW.json";
import { DEFAULT_LANGUAGE, useSettingsStore } from "@/store/settings-store";
Expand All @@ -11,6 +12,7 @@ const resources = Object.fromEntries(
[
["en", en],
["ja", ja],
["ko", ko],
["zh_CN", zhCN],
["zh_TW", zhTW],
].map(([locale, translation]) => [locale, { translation }]),
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"en": "English (United States)",
"zh_CN": "简体中文",
"zh_TW": "繁體中文",
"ja": "日本語"
"ja": "日本語",
"ko": "한국어"
}
},
"theme": {
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/i18n/locales/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"en": "English (United States)",
"zh_CN": "简体中文",
"zh_TW": "繁體中文",
"ja": "日本語"
"ja": "日本語",
"ko": "한국어"
}
},
"theme": {
Expand Down
Loading