Skip to content

Commit

Permalink
Fix i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
pitgrap committed Feb 7, 2024
1 parent 0093b41 commit fe3cc1c
Showing 1 changed file with 25 additions and 22 deletions.
47 changes: 25 additions & 22 deletions apps/spark/src/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
import { use, init } from "i18next";
import i18next from "i18next";
import { initReactI18next } from "react-i18next";

import Backend from "i18next-http-backend";
import LanguageDetector from "i18next-browser-languagedetector";

// load translation using http -> see /public/locales (i.e. https://github.com/i18next/react-i18next/tree/master/example/react/public/locales)
// learn more: https://github.com/i18next/i18next-http-backend
use(Backend);
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languageDetector
use(LanguageDetector);
// pass the i18n instance to react-i18next.
use(initReactI18next);
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
await init({
fallbackLng: "en",
debug: false,
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
},
react: {
bindI18n: false,
useSuspense: false,
},
});
// eslint-disable-next-line import/no-named-as-default-member
i18next
// load translation using http -> see /public/locales (i.e. https://github.com/i18next/react-i18next/tree/master/example/react/public/locales)
// learn more: https://github.com/i18next/i18next-http-backend
.use(Backend)
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
fallbackLng: "en",
debug: false,
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
},
react: {
bindI18n: false,
useSuspense: false,
},
});

0 comments on commit fe3cc1c

Please sign in to comment.