blob: 5aa4d6f7122e42730bbc54ff08462c4372e5204b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import moment from 'moment';
const languages = {
de: { translation: require('./lang/de.json') },
en: { translation: require('./lang/en.json') },
it: { translation: require('./lang/it.json') }
};
const detectedLocale = window.jitsiNodeAPI.getLocale();
i18n
.use(initReactI18next)
.init({
resources: languages,
lng: detectedLocale,
fallbackLng: 'en',
interpolation: {
escapeValue: false // not needed for react as it escapes by default
}
});
moment.locale(detectedLocale);
export default i18n;
|