From b0c111dba3f5d9e4dd64affd685fd384b86afdc9 Mon Sep 17 00:00:00 2001 From: Laurynas Gadliauskas Date: Thu, 6 Feb 2025 10:34:01 +0200 Subject: [PATCH] fix: Adjust i18n fallback locale (#56) --- frontend/src/i18n/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/i18n/index.ts b/frontend/src/i18n/index.ts index 83f76ca7..18d0c6ad 100644 --- a/frontend/src/i18n/index.ts +++ b/frontend/src/i18n/index.ts @@ -93,7 +93,7 @@ export const rtlLanguages = ["ar_AR"]; export const i18n = createI18n({ locale: detectLocale(), - fallbackLocale: "en", + fallbackLocale: "en_GB", messages, // expose i18n.global for outside components legacy: true,