index.ts 342 B

12345678910111213141516
  1. import i18n from "i18next"
  2. import { initReactI18next } from "react-i18next"
  3. import en from "./en.json"
  4. import zh from "./zh.json"
  5. i18n.use(initReactI18next).init({
  6. resources: {
  7. en: { translation: en },
  8. zh: { translation: zh },
  9. },
  10. lng: "zh",
  11. fallbackLng: "en",
  12. interpolation: { escapeValue: false },
  13. })
  14. export default i18n