diff --git a/src/App.js b/src/App.js index 2ff1265..911dae0 100644 --- a/src/App.js +++ b/src/App.js @@ -20,7 +20,7 @@ function App() { } } - wait(500); + wait(200); return ( diff --git a/src/core/i18n/i18n.js b/src/core/i18n/i18n.js index f79e793..abbb48a 100644 --- a/src/core/i18n/i18n.js +++ b/src/core/i18n/i18n.js @@ -9,12 +9,11 @@ i18n .use(LanguageDetector) .init({ fallbackLng: "en", - debug: true, interpolation: { escapeValue: false // react already safes from xss } }); - i18n.changeLanguage('de'); // For now to control the language... Later on, not necessary... + i18n.changeLanguage('en'); // For now to control the language... Later on, not necessary... export default i18n; \ No newline at end of file