From a1733a1b728720910f1900b18a292c5489b5781d Mon Sep 17 00:00:00 2001 From: unpredictable-error Date: Thu, 26 Sep 2019 22:23:19 +0300 Subject: [PATCH] mapped in i18n.js --- src/i18n.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/i18n.js b/src/i18n.js index 393dd03..b3f1104 100644 --- a/src/i18n.js +++ b/src/i18n.js @@ -3,6 +3,7 @@ import { initReactI18next } from 'react-i18next'; import LanguageDetector from 'i18next-browser-languagedetector'; import translationEN from './locales/en.json'; import translationDE from './locales/de.json'; +import translationRU from './locales/ru.json'; import Config from './config'; const resources = { @@ -12,6 +13,8 @@ const resources = { de: { translation: translationDE, }, + ru: { + translation: translationRU, }; i18n