2018-04-19 04:40:26 +02:00
|
|
|
<div id="default_language_modal" class="modal hide modal-bg fade" tabindex="-1" role="dialog"
|
2018-04-05 08:38:46 +02:00
|
|
|
aria-labelledby="default_language_modal_label" aria-hidden="true">
|
2017-04-29 15:04:59 +02:00
|
|
|
<div class="modal-header">
|
2017-08-23 00:58:22 +02:00
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
|
2017-04-29 15:04:59 +02:00
|
|
|
<h3 id="default_language_modal_label">{{t "Select default language" }}</h3>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<p>
|
|
|
|
The following is a few of the languages we have started to
|
|
|
|
support or are hoping to support in the near future. We would
|
|
|
|
love help translating; if you're interested in helping, make an
|
|
|
|
account at <a href='https://www.transifex.com/zulip/zulip/'>
|
|
|
|
https://www.transifex.com/zulip/zulip/</a>, and sign up for a
|
|
|
|
language! You can also request any language we don't currently
|
|
|
|
have. It only takes a few hours to translate the most important
|
|
|
|
parts of the app.
|
|
|
|
</p>
|
|
|
|
<div>
|
|
|
|
<table>
|
|
|
|
{{#each page_params.language_list_dbl_col}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a class="language" data-code="{{this.first.code}}" data-name="{{this.first.name}}">
|
|
|
|
{{#if this.first.selected}}
|
|
|
|
<b>{{this.first.percent}}</b>
|
|
|
|
{{else}}
|
|
|
|
{{this.first.percent}}
|
|
|
|
{{/if}}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a class="language" data-code="{{this.second.code}}" data-name="{{this.second.name}}">
|
|
|
|
{{#if this.second.selected}}
|
|
|
|
<b>{{this.second.percent}}</b>
|
|
|
|
{{else}}
|
|
|
|
{{this.second.percent}}
|
|
|
|
{{/if}}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2017-07-07 17:30:22 +02:00
|
|
|
<button class="btn btn-primary" data-dismiss="modal">{{t "Close" }}</button>
|
2017-04-29 15:04:59 +02:00
|
|
|
</div>
|
|
|
|
</div>
|