From 4868ac824ee2321d3564236ffac018ed183b6e7c Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 21 Nov 2023 22:14:15 +0100 Subject: [PATCH] feat(i18n): add Slovene language for selection in the ui --- src/i18n/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/index.ts b/src/i18n/index.ts index 77547a8bc..9ab9cbb53 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -20,6 +20,7 @@ export const SUPPORTED_LOCALES = { 'ja-JP': '日本語', 'hu-HU': 'Magyar', 'ar-SA': 'اَلْعَرَبِيَّةُ', + 'sl-SI': 'Slovenščina', } as const export type SupportedLocale = keyof typeof SUPPORTED_LOCALES