From ed4a55b4b6e1d28092b17c66b9e5696217fd9ceb Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 23 Mar 2022 12:32:18 +0100 Subject: [PATCH] Add fallbackRootWithEmptyString when languages have empty strings Signed-off-by: Thomas Citharel --- js/src/utils/i18n.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/js/src/utils/i18n.ts b/js/src/utils/i18n.ts index ff4a5764..06c213b4 100644 --- a/js/src/utils/i18n.ts +++ b/js/src/utils/i18n.ts @@ -49,6 +49,7 @@ export const i18n = new VueI18n({ fallbackLocale: DEFAULT_LOCALE, formatFallbackMessages: true, pluralizationRules, + fallbackRootWithEmptyString: true, }); console.debug("set VueI18n with default locale", DEFAULT_LOCALE);