Bump i18next from 20.6.1 to 21.8.14

This commit is contained in:
Sofiya Tepikin
2022-07-24 09:33:29 +00:00
parent d61a074480
commit af63daf604
3 changed files with 36 additions and 27 deletions
+10 -11
View File
@@ -1,28 +1,27 @@
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import i18n from 'i18next'
import { initReactI18next } from 'react-i18next'
// translation files
import en from './en.json';
import en from './en.json'
const resources = {
en: { translation: en },
};
en: { translation: en },
}
i18n
i18n
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
compatibilityJSON: 'v3', // TODO: migrate json to v4 and afterwards remove it
resources,
fallbackLng: 'en',
debug: true,
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
}
});
},
})
export default i18n;
export default i18n