From a9f5b22a131991dd8d65c05755c3b34565d9f26c Mon Sep 17 00:00:00 2001 From: Martin Salles Date: Sun, 3 Dec 2023 11:35:06 +0100 Subject: [PATCH] EN is the new default locale --- src/utils/i18n.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/i18n.js b/src/utils/i18n.js index 55afbb6..07673fd 100644 --- a/src/utils/i18n.js +++ b/src/utils/i18n.js @@ -9,7 +9,7 @@ const i18n = new I18n({ fr, }); -i18n.defaultLocale = 'fr'; +i18n.defaultLocale = 'en'; i18n.locale = Localization.locale; i18n.fallbacks = true; i18n.enableFallback = true;