From dd4a6cb221e8f8f720e8cc099bd6427ee73eee3c Mon Sep 17 00:00:00 2001 From: Alan Friedman Date: Fri, 11 Dec 2020 16:15:48 -0500 Subject: [PATCH] Add Turkish language to config (#190) * Update index.js * Update index.js * Update index.js * Resolve conflict * Update settings snapshot Co-authored-by: lilcsz <43272857+lilcsz@users.noreply.github.com> --- .../Settings/__snapshots__/Settings.test.js.snap | 10 ++++++++++ client/src/components/Settings/index.js | 1 + client/src/i18n/index.js | 2 ++ 3 files changed, 13 insertions(+) diff --git a/client/src/components/Settings/__snapshots__/Settings.test.js.snap b/client/src/components/Settings/__snapshots__/Settings.test.js.snap index 369c326..c7070fc 100644 --- a/client/src/components/Settings/__snapshots__/Settings.test.js.snap +++ b/client/src/components/Settings/__snapshots__/Settings.test.js.snap @@ -122,6 +122,11 @@ exports[`Settings component should display 1`] = ` > 日本語 + @@ -303,6 +308,11 @@ exports[`Settings component should display 2`] = ` > 日本語 + diff --git a/client/src/components/Settings/index.js b/client/src/components/Settings/index.js index 8600b9b..6703954 100644 --- a/client/src/components/Settings/index.js +++ b/client/src/components/Settings/index.js @@ -105,6 +105,7 @@ class Settings extends Component { + diff --git a/client/src/i18n/index.js b/client/src/i18n/index.js index 26fd2ac..93684a0 100755 --- a/client/src/i18n/index.js +++ b/client/src/i18n/index.js @@ -8,6 +8,7 @@ import nl from './nl'; import ru from './ru'; import esAR from './es-AR'; import ja from './ja'; +import tr from './tr'; const languagesMap = { en, @@ -20,6 +21,7 @@ const languagesMap = { ru, esAR, ja, + tr, }; /**