namingConvention change

This commit is contained in:
Kausha.Shah 2019-09-27 13:00:12 +05:30
parent bbe14f4386
commit f3187cc439
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ import { initReactI18next } from 'react-i18next';
import LanguageDetector from 'i18next-browser-languagedetector'; import LanguageDetector from 'i18next-browser-languagedetector';
import translationEN from './locales/en.json'; import translationEN from './locales/en.json';
import translationDE from './locales/de.json'; import translationDE from './locales/de.json';
import translationSP from './locales/sp.json'; import translationES from './locales/es.json';
import Config from './config'; import Config from './config';
const resources = { const resources = {
@ -13,8 +13,8 @@ const resources = {
de: { de: {
translation: translationDE, translation: translationDE,
}, },
sp: { es: {
translation: translationSP translation: translationES
} }
}; };