translation setup
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
import i18n from 'i18next'
|
||||||
|
import { initReactI18next } from 'react-i18next'
|
||||||
|
import LanguageDetector from 'i18next-browser-languagedetector'
|
||||||
|
import en from './locales/en.json'
|
||||||
|
|
||||||
|
i18n
|
||||||
|
.use(LanguageDetector)
|
||||||
|
.use(initReactI18next)
|
||||||
|
.init({
|
||||||
|
resources: { en: { translation: en } },
|
||||||
|
fallbackLng: 'en',
|
||||||
|
interpolation: { escapeValue: false },
|
||||||
|
})
|
||||||
|
|
||||||
|
export default i18n
|
||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user