mirror of
https://github.com/zulip/zulip.git
synced 2025-10-22 20:42:14 +00:00
This commit replaces occurrences of realm_uri with realm_url in "context_processors.py" and related templates. With by-hand translation updates for German (also updated in Transifex) to avoid breaking the i18n system tests that use some modified strings. Co-authored-by: Junyao Chen <junyao.chen@socitydao.org>
26 lines
962 B
HTML
26 lines
962 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("No licenses available") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
<div class="app portico-page">
|
|
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
|
|
<div class="inline-block">
|
|
<div class="get-started">
|
|
<h1>{{ _("Organization cannot accept new members right now") }}</h1>
|
|
</div>
|
|
<div class="white-box">
|
|
<p>
|
|
{% trans %}New members cannot currently join <a href="{{ realm_url }}">{{ realm_name }}</a> because all Zulip Cloud licenses are in use.{% endtrans %}
|
|
</p>
|
|
<p>
|
|
{{ _("Please contact the person who invited you and ask them to increase the number of licenses, then try again.") }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|