2019-04-15 19:56:40 +03:00
|
|
|
import i18n from 'i18next'
|
|
|
|
import Backend from 'i18next-xhr-backend'
|
|
|
|
import LanguageDetector from 'i18next-browser-languagedetector'
|
|
|
|
import { reactI18nextModule } from 'react-i18next'
|
2018-12-29 08:36:49 +03:00
|
|
|
|
|
|
|
const resources = {
|
|
|
|
loadPath: `./locales/{{lng}}.json`
|
|
|
|
}
|
|
|
|
|
|
|
|
i18n
|
|
|
|
// load translation using xhr -> see /public/locales
|
|
|
|
// learn more: https://github.com/i18next/i18next-xhr-backend
|
|
|
|
.use(Backend)
|
|
|
|
// detect user language
|
|
|
|
// learn more: https://github.com/i18next/i18next-browser-languageDetector
|
|
|
|
.use(LanguageDetector)
|
|
|
|
// pass the i18n instance to react-i18next.
|
|
|
|
.use(reactI18nextModule)
|
|
|
|
// init i18next
|
|
|
|
// for all options read: https://www.i18next.com/overview/configuration-options
|
|
|
|
.init({
|
|
|
|
backend: resources,
|
2019-04-15 19:56:40 +03:00
|
|
|
fallbackLng: 'en',
|
2018-12-29 08:36:49 +03:00
|
|
|
|
|
|
|
keySeparator: false,
|
|
|
|
|
|
|
|
interpolation: {
|
|
|
|
escapeValue: false
|
|
|
|
}
|
2019-04-15 19:56:40 +03:00
|
|
|
})
|
2018-12-29 08:36:49 +03:00
|
|
|
|
2019-04-15 19:56:40 +03:00
|
|
|
export default i18n
|