Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | import i18n from 'i18next'; import LanguageDetector from 'i18next-browser-languagedetector'; import { initReactI18next } from 'react-i18next'; import ChainedBackend from 'i18next-chained-backend'; import HttpBackend from 'i18next-http-backend'; import LocalStorageBackend from 'i18next-localstorage-backend'; i18n .use(ChainedBackend) .use(LanguageDetector) .use(initReactI18next) .init({ fallbackLng: 'en', supportedLngs: ['en'], debug: false, ns: ['common'], defaultNS: 'common', interpolation: { escapeValue: false, }, detection: { order: ['localStorage', 'navigator', 'htmlTag'], caches: ['localStorage'], }, backend: { backends: [LocalStorageBackend, HttpBackend], backendOptions: [ { expirationTime: 7 * 24 * 60 * 60 * 1000, prefix: 'i18next_res_', }, { loadPath: '/i18/{{lng}}/{{ns}}.json', }, ], }, }); export default i18n; |