From 424d88e7b838a52ed47605cd8dcb34efba8e3982 Mon Sep 17 00:00:00 2001 From: Alberto Xamin Date: Thu, 16 May 2024 22:33:40 +0100 Subject: [PATCH] Update index.js --- frontend/src/i18n/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/i18n/index.js b/frontend/src/i18n/index.js index 3a20a4c..0325499 100644 --- a/frontend/src/i18n/index.js +++ b/frontend/src/i18n/index.js @@ -1,6 +1,7 @@ import it from './it.json' import en from './en.json' import cs from './cs.json' +import fr from './fr.json' export const defaultLocale = 'it' @@ -9,5 +10,6 @@ export const fallbackLocale = 'en' export const languages = { it: it, en: en, - cs: cs -} \ No newline at end of file + cs: cs, + fr: fr, +}