Files
zulip/web/templates/default_language_modal.hbs
Anders Kaseorg c1675913a2 web: Move web app to ‘web’ directory.
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>
2023-02-23 16:04:17 -08:00

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>