blob: 099df2d798008bd533cd28c2f72f446c76d57622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import i18n from 'i18next';
import translations from '../../app/locales/en_US/translation.json';
i18n
.init({
lng: 'en',
resources: {
en: {
translation: translations
}
}
});
export default i18n;
|