1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-02 14:20:03 +09:00
namae/web/src/i18n.js

25 lines
631 B
JavaScript
Raw Normal View History

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