From 53f55ad1238c256f9dfc83ef4413e6717080544e Mon Sep 17 00:00:00 2001 From: Candid Dauth Date: Mon, 30 Sep 2024 17:12:44 +0200 Subject: [PATCH] Fix French language support --- utils/src/i18n-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/src/i18n-utils.ts b/utils/src/i18n-utils.ts index c5fc1837..ae55d4e6 100644 --- a/utils/src/i18n-utils.ts +++ b/utils/src/i18n-utils.ts @@ -2,7 +2,7 @@ import { Units } from "facilmap-types"; import i18next, { type CustomPluginOptions, type Module, type Newable, type i18n } from "i18next"; import LanguageDetector from "i18next-browser-languagedetector"; -export const LANGUAGES = ["en", "de", "es", "nb-NO", "ru", "zh-Hant"]; +export const LANGUAGES = ["en", "de", "es", "fr", "nb-NO", "ru", "zh-Hant"]; export const DEFAULT_LANGUAGE = "en";