Release v0.2.10: Update package-lock.json and CI config
This commit is contained in:
29
pwa/src/i18n/index.ts
Normal file
29
pwa/src/i18n/index.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import i18n from 'i18next'
|
||||
import { initReactI18next } from 'react-i18next'
|
||||
import LanguageDetector from 'i18next-browser-languagedetector'
|
||||
|
||||
import en from './locales/en.json'
|
||||
import es from './locales/es.json'
|
||||
|
||||
const resources = {
|
||||
en: { translation: en },
|
||||
es: { translation: es }
|
||||
}
|
||||
|
||||
i18n
|
||||
.use(LanguageDetector)
|
||||
.use(initReactI18next)
|
||||
.init({
|
||||
resources,
|
||||
fallbackLng: 'en',
|
||||
supportedLngs: ['en', 'es'],
|
||||
interpolation: {
|
||||
escapeValue: false // React already escapes
|
||||
},
|
||||
detection: {
|
||||
order: ['localStorage', 'navigator'],
|
||||
caches: ['localStorage']
|
||||
}
|
||||
})
|
||||
|
||||
export default i18n
|
||||
Reference in New Issue
Block a user