2018-03-29 12:47:52 +00:00
|
|
|
import i18next from 'i18next'
|
|
|
|
import queryString from 'query-string'
|
2019-02-08 11:45:14 +00:00
|
|
|
import { initReactI18next } from 'react-i18next'
|
2018-03-29 12:47:52 +00:00
|
|
|
import enTranslations from './locales/en.yaml'
|
2019-05-14 11:34:48 +00:00
|
|
|
import {
|
|
|
|
getFromSessionStorage,
|
|
|
|
getIframeOption,
|
|
|
|
parseDataAttributes,
|
|
|
|
setToSessionStorage
|
|
|
|
} from './utils'
|
2018-06-18 10:12:08 +00:00
|
|
|
|
2018-04-24 16:30:16 +00:00
|
|
|
let lang =
|
|
|
|
getIframeOption('lang') ||
|
|
|
|
queryString.parse(location.search)['lang'] ||
|
2018-06-18 10:12:08 +00:00
|
|
|
parseDataAttributes(getFromSessionStorage('lang')) ||
|
2018-04-05 16:01:03 +00:00
|
|
|
'fr'
|
|
|
|
|
2018-06-18 10:12:08 +00:00
|
|
|
setToSessionStorage('lang', lang)
|
2019-02-08 11:45:14 +00:00
|
|
|
i18next.use(initReactI18next).init(
|
2018-04-04 10:10:34 +00:00
|
|
|
{
|
2018-03-29 12:47:52 +00:00
|
|
|
lng: lang,
|
|
|
|
resources: {
|
2018-04-04 10:10:34 +00:00
|
|
|
en: {
|
|
|
|
translation: enTranslations
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(err, t) => {
|
2018-07-18 13:14:55 +00:00
|
|
|
console && console.error('Error from i18n load', err, t) //eslint-disable-line no-console
|
2018-04-04 10:10:34 +00:00
|
|
|
}
|
|
|
|
)
|
2018-03-29 12:47:52 +00:00
|
|
|
|
2018-11-09 11:36:29 +00:00
|
|
|
export default i18next
|