Skip to content

Commit

Permalink
Add Turkish language to config (#190)
Browse files Browse the repository at this point in the history
* Update index.js

* Update index.js

* Update index.js

* Resolve conflict

* Update settings snapshot

Co-authored-by: lilcsz <43272857+lilcsz@users.noreply.github.com>
  • Loading branch information
alanfriedman and jinxx0 committed Dec 11, 2020
1 parent 86c2011 commit dd4a6cb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions client/src/components/Settings/__snapshots__/Settings.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@ exports[`Settings component should display 1`] = `
>
日本語
</option>
<option
value="tr"
>
Türkçe
</option>
</select>
</div>
</section>
Expand Down Expand Up @@ -303,6 +308,11 @@ exports[`Settings component should display 2`] = `
>
日本語
</option>
<option
value="tr"
>
Türkçe
</option>
</select>
</div>
</section>
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Settings/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ class Settings extends Component {
<option value="ru">Русский</option>
<option value="zhCN">中文</option>
<option value="ja">日本語</option>
<option value="tr">Türkçe</option>
</select>
</div>
</section>
Expand Down
2 changes: 2 additions & 0 deletions client/src/i18n/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -20,6 +21,7 @@ const languagesMap = {
ru,
esAR,
ja,
tr,
};

/**
Expand Down

0 comments on commit dd4a6cb

Please sign in to comment.