mirror of
https://github.com/zulip/zulip.git
synced 2025-11-22 23:43:38 +00:00
Ever since we started bundling the app with webpack, there’s been less and less overlap between our ‘static’ directory (files belonging to the frontend app) and Django’s interpretation of the ‘static’ directory (files served directly to the web). Split the app out to its own ‘web’ directory outside of ‘static’, and remove all the custom collectstatic --ignore rules. This makes it much clearer what’s actually being served to the web, and what’s being bundled by webpack. It also shrinks the release tarball by 3%. Signed-off-by: Anders Kaseorg <anders@zulip.com>
28 lines
1.0 KiB
Handlebars
28 lines
1.0 KiB
Handlebars
<p>
|
|
{{#tr}}
|
|
A language is marked as 100% translated only if every string in the web, desktop,
|
|
and mobile apps is translated, including administrative UI and error messages.
|
|
{{/tr}}
|
|
</p>
|
|
<p>
|
|
{{#tr}}
|
|
Zulip's translations are contributed by our amazing community of volunteer
|
|
translators. If you'd like to help, see the
|
|
<z-link>Zulip translation guidelines</z-link>.
|
|
{{#*inline "z-link"}}<a target="_blank" rel="noopener noreferrer" href="https://zulip.readthedocs.io/en/latest/translating/translating.html">{{> @partial-block}}</a>{{/inline}}
|
|
{{/tr}}
|
|
</p>
|
|
<div class="default_language_modal_table">
|
|
{{#each language_list}}
|
|
<div class="language_block">
|
|
<a class="language" data-code="{{this.code}}" data-name="{{this.name}}">
|
|
{{#if this.selected}}
|
|
<b>{{this.name_with_percent}}</b>
|
|
{{else}}
|
|
{{this.name_with_percent}}
|
|
{{/if}}
|
|
</a>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|