Files
DataClaw/frontend/src/i18n/config.ts
T
2026-03-21 21:26:57 +08:00

23 lines
506 B
TypeScript

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