2019-08-03 13:36:29 +09:00
|
|
|
import i18n from 'i18next'
|
2019-08-08 21:34:06 +09:00
|
|
|
import Backend from 'i18next-chained-backend'
|
|
|
|
import LocalStorageBackend from 'i18next-localstorage-backend'
|
|
|
|
import XHR from 'i18next-xhr-backend'
|
2019-08-03 13:36:29 +09:00
|
|
|
import LanguageDetector from 'i18next-browser-languagedetector'
|
|
|
|
import { initReactI18next } from 'react-i18next'
|
|
|
|
|
|
|
|
i18n
|
|
|
|
.use(Backend)
|
|
|
|
.use(LanguageDetector)
|
|
|
|
.use(initReactI18next)
|
|
|
|
.init({
|
2019-08-08 21:34:06 +09:00
|
|
|
backend: {
|
|
|
|
backends: [LocalStorageBackend, XHR],
|
|
|
|
backendOptions: [],
|
|
|
|
},
|
2019-08-03 13:36:29 +09:00
|
|
|
fallbackLng: 'en',
|
|
|
|
debug: false,
|
|
|
|
interpolation: {
|
|
|
|
escapeValue: false, // not needed for react as it escapes by default
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
export default i18n
|