From c4c6a3f9c0d69642e5cbcc460b0cbda2fb745101 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Wed, 19 Oct 2022 22:40:55 +0000 Subject: [PATCH] Add Ukrainian language option --- .../Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx | 1 + ui/v2.5/src/locales/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx b/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx index 05e92458c..10f7178e5 100644 --- a/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx +++ b/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx @@ -110,6 +110,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 bf6fd19b4..23387cbd6 100644 --- a/ui/v2.5/src/locales/index.ts +++ b/ui/v2.5/src/locales/index.ts @@ -18,6 +18,7 @@ export const localeLoader = { plPL: () => import("./pl-PL.json"), daDK: () => import("./da-DK.json"), koKR: () => import("./ko-KR.json"), + ukUA: () => import("./uk-UA.json"), // eslint-disable-next-line @typescript-eslint/no-explicit-any } as { [key: string]: any };