aidxnCC/app/i18n.ts
2025-03-26 23:27:51 -04:00

21 lines
433 B
TypeScript

import i18n from 'i18next'
import { initReactI18next } from 'react-i18next'
import LanguageDetector from 'i18next-browser-languagedetector'
import enUS from '../public/locales/en-US.json'
i18n
.use(LanguageDetector)
.use(initReactI18next)
.init({
resources: {
'en-US': {
translation: enUS
}
},
fallbackLng: 'en-US',
interpolation: {
escapeValue: false
}
});
export default i18n