From 42cd250a92c89ab665f6290efcfce62398a4975c Mon Sep 17 00:00:00 2001 From: Donkie Date: Tue, 17 Oct 2023 17:40:58 +0200 Subject: [PATCH] Added Ukrainian to i18n.ts --- client/src/i18n.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/client/src/i18n.ts b/client/src/i18n.ts index 10a8296..589c3cf 100644 --- a/client/src/i18n.ts +++ b/client/src/i18n.ts @@ -75,7 +75,12 @@ export const languages: { [key: string]: Language } = { countryCode: "it", fullCode: "it-IT", }, -} + ["uk"]: { + name: "Українська", + countryCode: "ua", + fullCode: "uk-UA", + }, +}; i18n .use(Backend)