Skip to content
Snippets Groups Projects
Commit f9bd3d88 authored by nicolas's avatar nicolas Committed by GitHub
Browse files

Adding French locale to mastodon.jsx

parent 115ce905
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ import { IntlProvider, addLocaleData } from 'react-intl';
import en from 'react-intl/locale-data/en';
import de from 'react-intl/locale-data/de';
import es from 'react-intl/locale-data/es';
import fr from 'react-intl/locale-data/fr';
import getMessagesForLocale from '../locales';
const store = configureStore();
......@@ -46,7 +47,7 @@ const browserHistory = useRouterHistory(createBrowserHistory)({
basename: '/web'
});
addLocaleData([...en, ...de, ...es]);
addLocaleData([...en, ...de, ...es, ...fr]);
const Mastodon = React.createClass({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment