mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 11:56:23 +00:00
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
|
import i18n from "i18next";
|
||
|
import LanguageDetector from "i18next-browser-languagedetector";
|
||
|
import { initReactI18next } from "react-i18next";
|
||
|
import HttpApi from 'i18next-http-backend';
|
||
|
|
||
|
import translationEN from "../locales/en.json";
|
||
|
import translationES from "../locales/es.json";
|
||
|
import translationDE from "../locales/de.json";
|
||
|
import translationRU from "../locales/ru.json";
|
||
|
import translationZH from "../locales/zh.json";
|
||
|
|
||
|
i18n
|
||
|
.use(HttpApi)
|
||
|
.use(LanguageDetector)
|
||
|
.use(initReactI18next)
|
||
|
.init({
|
||
|
resources: {
|
||
|
en: {translations: translationEN},
|
||
|
es: {translations: translationES},
|
||
|
ru: {translations: translationRU},
|
||
|
de: {translations: translationDE},
|
||
|
zh: {translations: translationZH},
|
||
|
},
|
||
|
|
||
|
fallbackLng: "en",
|
||
|
debug: true,
|
||
|
|
||
|
// have a common namespace used around the full app
|
||
|
ns: ["translations"],
|
||
|
defaultNS: "translations",
|
||
|
|
||
|
keySeparator: false, // we use content as keys
|
||
|
|
||
|
interpolation: {
|
||
|
escapeValue: false,
|
||
|
formatSeparator: ","
|
||
|
},
|
||
|
|
||
|
react: {
|
||
|
wait: true,
|
||
|
useSuspense: false,
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default i18n;
|