From b9717f504d7021f5991b1c194ba14ff890ab32af Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 17 Oct 2023 18:44:08 +0200 Subject: [PATCH] feat(i18n): add arabic to list of selectable languages --- src/i18n/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/index.ts b/src/i18n/index.ts index d6a6c42aa2..ce83ea4bc8 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -19,6 +19,7 @@ export const SUPPORTED_LOCALES = { 'da-DK': 'Dansk', 'ja-JP': '日本語', 'hu-HU': 'Magyar', + 'ar-SA': 'اَلْعَرَبِيَّةُ', } as const export type SupportedLocale = keyof typeof SUPPORTED_LOCALES