22 lines
439 B
JavaScript
22 lines
439 B
JavaScript
|
|
import i18n from 'i18next';
|
||
|
|
import { initReactI18next } from 'react-i18next';
|
||
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
||
|
|
|
||
|
|
import enTranslation from './locales/en.json';
|
||
|
|
|
||
|
|
i18n
|
||
|
|
.use(LanguageDetector)
|
||
|
|
.use(initReactI18next)
|
||
|
|
.init({
|
||
|
|
resources: {
|
||
|
|
en: {
|
||
|
|
translation: enTranslation
|
||
|
|
}
|
||
|
|
},
|
||
|
|
fallbackLng: 'en',
|
||
|
|
interpolation: {
|
||
|
|
escapeValue: false
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
export default i18n;
|