12345678910111213141516171819202122 |
- import i18n from 'i18next'
- import { reactI18nextModule } from 'react-i18next'
-
- i18n
- .use(reactI18nextModule)
- .init({
- fallbackLng: 'fr',
- // have a common namespace used around the full app
- ns: ['translation'], // namespace
- defaultNS: 'translation',
- debug: true,
- // interpolation: {
- // escapeValue: false, // not needed for react!!
- // },
- react: {
- wait: true
- },
- resources: {} // init with empty resources, they will come from frontend in app constructor
- })
-
- export default i18n
|