21 lines
406 B
JavaScript
21 lines
406 B
JavaScript
import i18n from "i18next";
|
|
import { initReactI18next } from "react-i18next";
|
|
|
|
import en from "./locales/en.json";
|
|
import zh from "./locales/zh.json";
|
|
|
|
i18n
|
|
.use(initReactI18next)
|
|
.init({
|
|
resources: {
|
|
en: { translation: en },
|
|
zh: { translation: zh }
|
|
},
|
|
lng: "en", // default
|
|
fallbackLng: "en",
|
|
interpolation: {
|
|
escapeValue: false
|
|
}
|
|
});
|
|
|
|
export default i18n;
|