mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-18 15:00:39 +02:00

* add i18next lib add some translations * add translations * fix font-family * fix pin versions
22 lines
462 B
TypeScript
22 lines
462 B
TypeScript
import i18n from "i18next";
|
|
import { initReactI18next } from "react-i18next";
|
|
|
|
import Backend from "i18next-xhr-backend";
|
|
import LanguageDetector from "i18next-browser-languagedetector";
|
|
|
|
i18n
|
|
.use(Backend)
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
backend: {
|
|
loadPath: "./locales/{{lng}}/translation.json"
|
|
},
|
|
lng: "en",
|
|
fallbackLng: "en",
|
|
debug: false,
|
|
react: { useSuspense: false }
|
|
});
|
|
|
|
export default i18n;
|