You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import i18n from "i18next";
|
|
import { initReactI18next } from "react-i18next";
|
|
|
|
// the translations
|
|
// (tip move them in a JSON file and import them,
|
|
// or even better, manage them separated from your code: https://react.i18next.com/guides/multiple-translation-files)
|
|
const resources = {
|
|
en: {
|
|
translation: {
|
|
"Welcome to React": "Welcome to React and react-i18next",
|
|
"Lean Game Server": "Lean Game Server translated"
|
|
|
|
}
|
|
},
|
|
fr: {
|
|
translation: {
|
|
"Welcome to React": "Bienvenue à React et react-i18next",
|
|
"Lean Game Server": "Lean Game Server French"
|
|
}
|
|
}
|
|
};
|
|
|
|
i18n
|
|
.use(initReactI18next) // passes i18n down to react-i18next
|
|
.init({
|
|
resources,
|
|
lng: "en", // language to use, more information here: https://www.i18next.com/overview/configuration-options#languages-namespaces-resources
|
|
// you can use the i18n.changeLanguage function to change the language manually: https://www.i18next.com/overview/api#changelanguage
|
|
// if you're using a language detector, do not define the lng option
|
|
|
|
interpolation: {
|
|
escapeValue: false // react already safes from xss
|
|
}
|
|
});
|
|
|
|
export default i18n;
|