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; }