mirror of
https://github.com/uetchy/namae.git
synced 2025-07-02 14:20:03 +09:00
26 lines
802 B
JavaScript
26 lines
802 B
JavaScript
|
import i18n from 'i18next'
|
||
|
import Backend from 'i18next-xhr-backend'
|
||
|
import LanguageDetector from 'i18next-browser-languagedetector'
|
||
|
import { initReactI18next } from 'react-i18next'
|
||
|
|
||
|
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(initReactI18next)
|
||
|
// init i18next
|
||
|
// for all options read: https://www.i18next.com/overview/configuration-options
|
||
|
.init({
|
||
|
fallbackLng: 'en',
|
||
|
debug: false,
|
||
|
interpolation: {
|
||
|
escapeValue: false, // not needed for react as it escapes by default
|
||
|
},
|
||
|
})
|
||
|
|
||
|
export default i18n
|