more template translation for bug 1157947
1 parent cd5ca61 commit 63c0665e74774b6b652b0350b51dca308f52ebeb
@Sumana Harihareswara Sumana Harihareswara authored on 9 Jan 2015
Showing 2 changed files
View
2
■■■
src/postorius/templates/postorius/lists/confirm_delete.html
{% load i18n %}
{% load nav_helpers %}
 
{% block main %}
{% list_nav 'list_delete' 'Delete List' %}
{% list_nav 'list_delete' {% trans "Delete List" %} %}
 
<p>{% trans "Are you sure you want to permanently delete this list?" %}</p>
<p>{% trans "All settings and membership data will be lost!" %}</p>
<form action="{{submit_url}}" method="post"> {% csrf_token %}
View
12
src/postorius/templates/postorius/login.html
{% load staticfiles %}
{% block main %}
 
<div id="container">
<p><strong>Login with username and password or with Mozilla Persona</strong></p>
<p><strong>{% trans "Login with username and password or with Mozilla Persona" %}</strong></p>
 
<div class="mm_login">
<form action="" method="post" class="login mm_clear well"> {% csrf_token %}
{{ form.as_p }}
<div class="mm_login_b">
<form method="post" action="{% url 'socialauth_complete' "browserid" %}"> {% csrf_token %}
<input type="hidden" name="assertion" value="" />
<a rel="nofollow" id="browserid" href="#"><img src="{% static 'postorius/img/sign_in_blue.png' %}" alt="Login using BrowserID" /></a>
<a rel="nofollow" id="browserid" href="#"><img src="{% static 'postorius/img/sign_in_blue.png' %}" alt="{% trans 'Login using BrowserID' %}" /></a>
</form>
<p>Mozilla Persona is an easy way to sign into multiple websites, while
<p>{% trans "Mozilla Persona is an easy way to sign into multiple websites, while
still controlling your personal data. For more information <a
href="http://www.mozilla.org/en-US/persona">see the mozilla website</a>.</p>
<noscript><p class="text-error">Mozilla Persona requires the use of
JavaScript.</p></noscript>
href='http://www.mozilla.org/en-US/persona'>see the mozilla website</a>" %}.</p>
<noscript><p class="text-error">{% trans "Mozilla Persona requires the use of
JavaScript." %}</p></noscript>
</div>
<div style="clear:both">
</div>
</div>