From b98acb802c1a5bf5e29f2576cacbb2aa8fb68482 Mon Sep 17 00:00:00 2001 From: Kieran Date: Thu, 9 Feb 2023 13:10:13 +0000 Subject: [PATCH] import fr --- src/IntlProvider.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/IntlProvider.tsx b/src/IntlProvider.tsx index d39c34364..18e085273 100644 --- a/src/IntlProvider.tsx +++ b/src/IntlProvider.tsx @@ -4,6 +4,7 @@ import enMessages from "translations/en.json"; import esMessages from "translations/es.json"; import zhMessages from "translations/zh.json"; import jaMessages from "translations/ja.json"; +import frMessages from "translations/fr.json"; const DEFAULT_LOCALE = "en-US"; @@ -19,6 +20,8 @@ const getMessages = (locale: string) => { return zhMessages; case "ja": return jaMessages; + case "fr": + return frMessages; default: return enMessages; }