1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/assets/javascripts/components/locales/index.jsx
nicolas 5e33445c5f Update index.jsx
Forgot to add `fr` here.
2016-11-24 20:12:16 +01:00

15 lines
223 B
JavaScript

import en from './en';
import de from './de';
import es from './es';
import fr from './fr';
const locales = {
en,
de,
es,
fr
};
export default function getMessagesForLocale (locale) {
return locales[locale];
};