mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-29 07:39:56 +00:00
23 lines
445 B
TypeScript
23 lines
445 B
TypeScript
import i18n from "i18next";
|
|
import { initReactI18next } from "react-i18next";
|
|
import LanguageDetector from "i18next-browser-languagedetector";
|
|
|
|
import resources from "./locales";
|
|
|
|
i18n
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
resources,
|
|
fallbackLng: "zh",
|
|
debug: true,
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
backend: {
|
|
loadPath: "/locales/{{lng}}.json",
|
|
},
|
|
});
|
|
|
|
export default i18n;
|