Web.Client: deleted unsused i18n config and translation files

This commit is contained in:
Daniil Senkiv 2019-09-03 12:42:16 +03:00
parent 3d8fcde7bc
commit 347ec412b2
5 changed files with 1 additions and 49 deletions

View File

@ -1,9 +0,0 @@
{
"LoadingProcessing": "Loading...",
"LoginButton": "Sign In",
"Password": "Password",
"RegistrationEmailWatermark": "Your registration email",
"Profile": "Profile",
"LogoutButton": "Sign Out",
"AboutCompanyTitle": "About this program"
}

View File

@ -1,3 +0,0 @@
{
"ResourceNotFound": "Sorry, the resource cannot be found."
}

View File

@ -1,5 +0,0 @@
{
"Profile": "Профиль",
"LogoutButton": "Выйти",
"AboutCompanyTitle": "О программе"
}

View File

@ -7,7 +7,7 @@ import { PrivateRoute } from "./helpers/privateRoute";
import { Error404 } from "./components/pages/Error";
const Home = lazy(() => import("./components/pages/Home"));
const About = lazy(() => import("./components/pages/About/About"));
const About = lazy(() => import("./components/pages/About"));
const App = () => {
return (

View File

@ -1,31 +0,0 @@
import i18n from 'i18next';
import Backend from 'i18next-xhr-backend';
//import LanguageDetector from 'i18next-browser-languagedetector';
import { initReactI18next } from 'react-i18next';
i18n
// load translation using xhr -> see /public/locales
// learn more: https://github.com/i18next/i18next-xhr-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({
lng: "ru",
fallbackLng: 'en',
debug: true,
ns: ['translation', 'Resource'],
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
},
react: {
useSuspense: false
}
});
export default i18n;