diff --git a/internal/api/locale.go b/internal/api/locale.go
index 4ba5621c8..265d51f5e 100644
--- a/internal/api/locale.go
+++ b/internal/api/locale.go
@@ -25,6 +25,7 @@ var matcher = language.NewMatcher([]language.Tag{
language.MustParse("tr-TR"),
language.MustParse("da-DK"),
language.MustParse("pl-PL"),
+ language.MustParse("ko-KR"),
})
// newCollator parses a locale into a collator
diff --git a/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx b/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx
index 985a68e1d..ecbf9e639 100644
--- a/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx
+++ b/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx
@@ -98,6 +98,7 @@ export const SettingsInterfacePanel: React.FC = () => {
+
diff --git a/ui/v2.5/src/locales/index.ts b/ui/v2.5/src/locales/index.ts
index 601683da3..0b03b1a64 100644
--- a/ui/v2.5/src/locales/index.ts
+++ b/ui/v2.5/src/locales/index.ts
@@ -16,6 +16,7 @@ import trTR from "./tr-TR.json";
import jaJP from "./ja-JP.json";
import plPL from "./pl-PL.json";
import daDK from "./da-DK.json";
+import koKR from "./ko-KR.json";
export default {
deDE,
@@ -36,4 +37,5 @@ export default {
jaJP,
plPL,
daDK,
+ koKR,
};