18 lines
341 B
TypeScript
Raw Normal View History

2022-03-12 23:07:45 +08:00
import i18n from "i18next";
import { initReactI18next } from "react-i18next";
2022-08-06 02:35:11 +08:00
import en from "@/locales/en.json";
import zh from "@/locales/zh.json";
2022-03-12 23:07:45 +08:00
const resources = {
en: { translation: en },
zh: { translation: zh },
};
i18n.use(initReactI18next).init({
resources,
lng: "en",
interpolation: {
escapeValue: false,
},
});