mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-20 03:16:23 +00:00
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:
parent
86c2011f11
commit
dd4a6cb221
@ -122,6 +122,11 @@ exports[`Settings component should display 1`] = `
|
|||||||
>
|
>
|
||||||
日本語
|
日本語
|
||||||
</option>
|
</option>
|
||||||
|
<option
|
||||||
|
value="tr"
|
||||||
|
>
|
||||||
|
Türkçe
|
||||||
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@ -303,6 +308,11 @@ exports[`Settings component should display 2`] = `
|
|||||||
>
|
>
|
||||||
日本語
|
日本語
|
||||||
</option>
|
</option>
|
||||||
|
<option
|
||||||
|
value="tr"
|
||||||
|
>
|
||||||
|
Türkçe
|
||||||
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@ -105,6 +105,7 @@ class Settings extends Component {
|
|||||||
<option value="ru">Русский</option>
|
<option value="ru">Русский</option>
|
||||||
<option value="zhCN">中文</option>
|
<option value="zhCN">中文</option>
|
||||||
<option value="ja">日本語</option>
|
<option value="ja">日本語</option>
|
||||||
|
<option value="tr">Türkçe</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@ -8,6 +8,7 @@ import nl from './nl';
|
|||||||
import ru from './ru';
|
import ru from './ru';
|
||||||
import esAR from './es-AR';
|
import esAR from './es-AR';
|
||||||
import ja from './ja';
|
import ja from './ja';
|
||||||
|
import tr from './tr';
|
||||||
|
|
||||||
const languagesMap = {
|
const languagesMap = {
|
||||||
en,
|
en,
|
||||||
@ -20,6 +21,7 @@ const languagesMap = {
|
|||||||
ru,
|
ru,
|
||||||
esAR,
|
esAR,
|
||||||
ja,
|
ja,
|
||||||
|
tr,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user