mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
Adds HTML title elements to templates that extend either `base.html`, `portico.html` or `portico_signup.html`, and that are not website portico landing pages that will use the `PAGE_TITLE` variable to set the HTML title element (see following commit in series). Also, updates some templates for missing translation tags. As a general rule, we want the title element (and page content) translated. Exceptions that are updated in this commit are templates used in the development environment, analytics templates that are used by staff and templates related to Zephyr.
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("Update required") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="error_page">
|
|
<div class="container">
|
|
<div class="row-fluid">
|
|
<img src="/static/images/errors/400art.svg" alt=""/>
|
|
<div class="errorbox config-error">
|
|
<div class="errorcontent">
|
|
<h1 class="lead">{{ _('Update required') }}</h1>
|
|
<p>
|
|
{% trans %}
|
|
You are using old version of the Zulip desktop
|
|
app that is no longer supported.
|
|
{% endtrans %}
|
|
</p>
|
|
|
|
{% if auto_update_broken %}
|
|
<p>
|
|
{% trans %}
|
|
The auto-update feature in this old version of
|
|
Zulip desktop app no longer works.
|
|
{% endtrans %}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<p>
|
|
<a href="https://zulip.com/apps" target="_blank" rel="noopener noreferrer">
|
|
{{ _("Download the latest release.") }}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|