forked from zulip/zulip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mark strings for translation in templates/zerver
In order to enable internationalization support in Zulip, and to use Django internationalization tools, all strings in Zulip frontend needs to be marked for translation.
- Loading branch information
Showing
32 changed files
with
388 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
{% load i18n %} | ||
<div class="modal hide" id="bankruptcy" tabindex="-1" role="dialog" | ||
aria-labelledby="bankruptcy-label" aria-hidden="true"> | ||
|
||
<div class="modal-header"> | ||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | ||
<h3 id="bankruptcy-label">Welcome back</h3> | ||
<h3 id="bankruptcy-label">{% trans 'Welcome back' %}</h3> | ||
</div> | ||
|
||
<div id="bankruptcy-unread-count"></div> | ||
|
||
<div class="modal-footer"> | ||
<button id="yes-bankrupt" class="bankruptcy_button btn btn-primary" | ||
aria-hidden="true">Yes, please!</button> | ||
aria-hidden="true">{% trans 'Yes, please!' %}</button> | ||
<button id="no-bankrupt" class="bankruptcy_button btn btn-default" | ||
data-dismiss="modal" aria-hidden="true">No, I'll catch up.</button> | ||
data-dismiss="modal" aria-hidden="true">{% trans "No, I'll catch up" %}.</button> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{% extends "zerver/portico.html" %} | ||
|
||
{% load i18n %} | ||
{% block portico_content %} | ||
|
||
<h3>Closed realm</h3> | ||
<h3>{% trans 'Closed realm' %}</h3> | ||
|
||
<p>Hi there! Thank you for your interest in Zulip.</p> | ||
<p>{% trans 'Hi there! Thank you for your interest in Zulip' %}.</p> | ||
|
||
<p>The organization you are trying to join, {{ closed_domain_name }}, only allows users with e-mail addresses within the organization. Please ask for a new invite to an appropriate e-mail address.</p> | ||
<p>{% blocktrans %}The organization you are trying to join, {{ closed_domain_name }}, only allows users with e-mail addresses within the organization. Please ask for a new invite to an appropriate e-mail address{% endblocktrans %}.</p> | ||
|
||
{% endblock %} |
Oops, something went wrong.