mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-07 04:03:46 +08:00
29 lines
677 B
TypeScript
29 lines
677 B
TypeScript
import i18n from "i18next";
|
|
import { initReactI18next } from "react-i18next";
|
|
import en from "@/locales/en.json";
|
|
import ru from "@/locales/ru.json";
|
|
import zh from "@/locales/zh.json";
|
|
import fa from "@/locales/fa.json";
|
|
import tt from "@/locales/tt.json";
|
|
import id from "@/locales/id.json";
|
|
import ar from "@/locales/ar.json";
|
|
|
|
const resources = {
|
|
en: { translation: en },
|
|
ru: { translation: ru },
|
|
zh: { translation: zh },
|
|
fa: { translation: fa },
|
|
tt: { translation: tt },
|
|
id: { translation: id },
|
|
ar: { translation: ar },
|
|
};
|
|
|
|
i18n.use(initReactI18next).init({
|
|
resources,
|
|
lng: "en",
|
|
fallbackLng: "en",
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
});
|