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>
This commit is contained in:
Alan Friedman 2020-12-11 16:15:48 -05:00 committed by GitHub
parent 86c2011f11
commit dd4a6cb221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View File

@ -122,6 +122,11 @@ exports[`Settings component should display 1`] = `
>
日本語
</option>
<option
value="tr"
>
Türkçe
</option>
</select>
</div>
</section>
@ -303,6 +308,11 @@ exports[`Settings component should display 2`] = `
>
日本語
</option>
<option
value="tr"
>
Türkçe
</option>
</select>
</div>
</section>

View File

@ -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>

View File

@ -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,
};
/**