Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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];
};