2020-09-03 05:23:34 -04:00
|
|
|
import i18n from 'i18next'
|
|
|
|
import { initReactI18next } from 'react-i18next'
|
|
|
|
|
|
|
|
const LANG = window.i18n.currentLangCode
|
|
|
|
|
|
|
|
// Since we are rendering React from Angular, the initialisation is
|
|
|
|
// synchronous on page load (but hidden behind the loading screen). This
|
|
|
|
// means that translations must be initialised without any actual
|
2021-01-21 07:21:28 -05:00
|
|
|
// translation strings, and load those manually ourselves later
|
2020-09-03 05:23:34 -04:00
|
|
|
|
|
|
|
i18n.use(initReactI18next).init({
|
|
|
|
lng: LANG,
|
|
|
|
|
|
|
|
react: {
|
|
|
|
// Since we are manually waiting on the translations data to
|
|
|
|
// load, we don't need to use Suspense
|
2021-01-21 07:21:28 -05:00
|
|
|
useSuspense: false,
|
|
|
|
|
|
|
|
// Trigger a re-render when a language is added. Since we load the
|
|
|
|
// translation strings asynchronously, we need to trigger a re-render once
|
|
|
|
// they've loaded
|
2021-04-27 03:52:58 -04:00
|
|
|
bindI18nStore: 'added',
|
2020-09-03 05:23:34 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
interpolation: {
|
|
|
|
// We use the legacy v1 JSON format, so configure interpolator to use
|
|
|
|
// underscores instead of curly braces
|
|
|
|
prefix: '__',
|
|
|
|
suffix: '__',
|
|
|
|
unescapeSuffix: 'HTML',
|
|
|
|
|
|
|
|
// Disable nesting in interpolated values, preventing user input
|
|
|
|
// injection via another nested value
|
2021-03-25 06:11:31 -04:00
|
|
|
skipOnVariables: true,
|
|
|
|
|
|
|
|
defaultVariables: {
|
2021-04-27 03:52:58 -04:00
|
|
|
appName: window.ExposedSettings.appName,
|
|
|
|
},
|
|
|
|
},
|
2020-09-03 05:23:34 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
// The webpackChunkName here will name this chunk (and thus the requested
|
|
|
|
// script) according to the file name. See https://webpack.js.org/api/module-methods/#magic-comments
|
|
|
|
// for details
|
2020-12-15 05:23:54 -05:00
|
|
|
const localesPromise = import(
|
|
|
|
/* webpackChunkName: "[request]" */ `../../locales/${LANG}.json`
|
|
|
|
).then(lang => {
|
|
|
|
i18n.addResourceBundle(LANG, 'translation', lang)
|
|
|
|
})
|
2020-09-03 05:23:34 -04:00
|
|
|
|
|
|
|
export default localesPromise
|