Merge lp:~sumanah/postorius/bug-1157947 into lp:postorius

Proposed by Sumana Harihareswara
Status: Merged
Merged at revision: 191
Proposed branch: lp:~sumanah/postorius/bug-1157947
Merge into: lp:postorius
Diff against target: 477 lines (+63/-63)
15 files modified
src/postorius/templates/postorius/lists/confirm_delete.html (+1/-1)
src/postorius/templates/postorius/lists/held_messages.html (+1/-1)
src/postorius/templates/postorius/lists/mass_subscribe.html (+1/-1)
src/postorius/templates/postorius/lists/memberoptions.html (+6/-6)
src/postorius/templates/postorius/lists/members.html (+5/-5)
src/postorius/templates/postorius/lists/metrics.html (+1/-1)
src/postorius/templates/postorius/lists/settings.html (+3/-3)
src/postorius/templates/postorius/lists/summary.html (+3/-3)
src/postorius/templates/postorius/login.html (+6/-6)
src/postorius/templates/postorius/site_settings.html (+1/-1)
src/postorius/templates/postorius/user_address_activation_sent.html (+1/-1)
src/postorius/templates/postorius/user_address_preferences.html (+13/-13)
src/postorius/templates/postorius/user_mailmansettings.html (+14/-14)
src/postorius/templates/postorius/user_settings.html (+5/-5)
src/postorius/templates/postorius/user_subscription_preferences.html (+2/-2)
To merge this branch: bzr merge lp:~sumanah/postorius/bug-1157947
Reviewer Review Type Date Requested Status
Florian Fuchs Approve
Terri Pending
Review via email: mp+245979@code.launchpad.net

Description of the change

This branch fixes bug # 1157947 by finding all user-visible occurrences of hard-coded English strings in the src/postorius/templates/postorius/ directory and templatizing them as follows:

  {% trans 'English message' %}

(In this branch I also made three very trivial grammar, spelling, and capitalization fixes to the templates.)

Templates I inspected (in many cases no change was needed):

base_ajax.html
base.html
confirm_dialog.html
domain_confirm_delete.html
domain_index.html
domain_new.html
errors/
    generic.html
lists/
    confirm_delete.html
    confirm_remove_role.html
    held_messages.html
    index.html
    mass_subscribe.html
    memberoptions.html
    members.html
    metrics.html
    new.html
    settings.html
    subscribe.html
    subscriptions.html
    summary.html
    unsubscribe.html
login.html
menu/
    general.html
    info.html
    list_nav.html
    maintanance.html
    mm_user_nav.html
    settings_nav.html
    subscriptions.html
    user_nav.html
    user_options.html
    users_nav.html
more_info_display.html
site_settings.html
user_address_activation.html
user_address_activation_link.html
user_address_activation_sent.html
user_address_preferences.html
user_mailmansettings.html
user_profile.html
user_settings.html
user_subscription_preferences.html
user_subscriptions.html
user_tasks.html

To post a comment you must log in.
Revision history for this message
Florian Fuchs (flo-fuchs) wrote :

Hi Sumana,

thanks so much for all the template fixes! I just merged them into the main branch (Rev. 191).

Just one little thing: The untransated string in the "{% list nav ... %} calls were correct (these string are translated in the list_nav template tag.

Thank you very much again! Now on to your next merge proposal...

Florian

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/postorius/templates/postorius/lists/confirm_delete.html'
--- src/postorius/templates/postorius/lists/confirm_delete.html 2013-05-31 02:21:03 +0000
+++ src/postorius/templates/postorius/lists/confirm_delete.html 2015-01-09 16:16:31 +0000
@@ -4,7 +4,7 @@
4{% load nav_helpers %}4{% load nav_helpers %}
55
6{% block main %}6{% block main %}
7 {% list_nav 'list_delete' 'Delete List' %}7 {% list_nav 'list_delete' {% trans "Delete List" %} %}
88
9 <p>{% trans "Are you sure you want to permanently delete this list?" %}</p>9 <p>{% trans "Are you sure you want to permanently delete this list?" %}</p>
10 <p>{% trans "All settings and membership data will be lost!" %}</p>10 <p>{% trans "All settings and membership data will be lost!" %}</p>
1111
=== modified file 'src/postorius/templates/postorius/lists/held_messages.html'
--- src/postorius/templates/postorius/lists/held_messages.html 2013-05-31 02:21:03 +0000
+++ src/postorius/templates/postorius/lists/held_messages.html 2015-01-09 16:16:31 +0000
@@ -6,7 +6,7 @@
6{% block body_class %}list_summary{% endblock %}6{% block body_class %}list_summary{% endblock %}
77
8{% block main %}8{% block main %}
9 {% list_nav 'list_held_messages' 'Held Messages' %}9 {% list_nav 'list_held_messages' {% trans "Held Messages" %} %}
1010
11 <table class="table table-bordered table-striped">11 <table class="table table-bordered table-striped">
12 <thead>12 <thead>
1313
=== modified file 'src/postorius/templates/postorius/lists/mass_subscribe.html'
--- src/postorius/templates/postorius/lists/mass_subscribe.html 2013-05-31 02:21:03 +0000
+++ src/postorius/templates/postorius/lists/mass_subscribe.html 2015-01-09 16:16:31 +0000
@@ -4,7 +4,7 @@
4{% load nav_helpers %}4{% load nav_helpers %}
55
6{% block main %}6{% block main %}
7 {% list_nav 'mass_subscribe' 'Mass Subscription' %}7 {% list_nav 'mass_subscribe' {% trans "Mass Subscription" %} %}
88
9 <form action="{% url 'mass_subscribe' list.fqdn_listname %}" method="post" class="well"> {% csrf_token %}9 <form action="{% url 'mass_subscribe' list.fqdn_listname %}" method="post" class="well"> {% csrf_token %}
10 {{ form.as_p }}10 {{ form.as_p }}
1111
=== modified file 'src/postorius/templates/postorius/lists/memberoptions.html'
--- src/postorius/templates/postorius/lists/memberoptions.html 2014-04-22 12:49:50 +0000
+++ src/postorius/templates/postorius/lists/memberoptions.html 2015-01-09 16:16:31 +0000
@@ -27,7 +27,7 @@
27 <td>27 <td>
28 <p>{% trans 'Mail Delivery:' %} </p>28 <p>{% trans 'Mail Delivery:' %} </p>
29 </p>29 </p>
30 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.delivery_status.help_text }}30 [<span class="more_info"><a href="#" target="_blank">{% trans "More info" %}</a><span>{{ settingsform.delivery_status.help_text }}
31 </span></span>] </p> 31 </span></span>] </p>
32 </td>32 </td>
33 <td> {{settingsform.delivery_status }} </td>33 <td> {{settingsform.delivery_status }} </td>
@@ -36,7 +36,7 @@
36 <td>36 <td>
37 <p>{% trans 'Mode of Delivery:' %}</p>37 <p>{% trans 'Mode of Delivery:' %}</p>
38 <p>38 <p>
39 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.delivery_mode.help_text }}39 [<span class="more_info"><a href="#" target="_blank">{% trans "More info" %}</a><span>{{ settingsform.delivery_mode.help_text }}
40 </span></span>] </p>40 </span></span>] </p>
41 </td>41 </td>
42 <td> {{settingsform.delivery_mode }} </td>42 <td> {{settingsform.delivery_mode }} </td>
@@ -45,7 +45,7 @@
45 <td>45 <td>
46 <p>{% trans 'Receive own posts to the list?' %}</p>46 <p>{% trans 'Receive own posts to the list?' %}</p>
47 <p>47 <p>
48 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.receive_own_postings.help_text }}48 [<span class="more_info"><a href="#" target="_blank">{% trans "More info" %}</a><span>{{ settingsform.receive_own_postings.help_text }}
49 </span></span>] </p>49 </span></span>] </p>
50 </td>50 </td>
51 <td> {{settingsform.receive_own_postings }} </td>51 <td> {{settingsform.receive_own_postings }} </td>
@@ -54,7 +54,7 @@
54 <td>54 <td>
55 <p>{% trans 'Receive acknowledgement mails?' %}</p>55 <p>{% trans 'Receive acknowledgement mails?' %}</p>
56 </p>56 </p>
57 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.acknowledge_posts.help_text }}57 [<span class="more_info"><a href="#" target="_blank">{% trans "More info" %}</a><span>{{ settingsform.acknowledge_posts.help_text }}
58 </span></span>] </p>58 </span></span>] </p>
59 </td>59 </td>
60 <td> {{settingsform.acknowledge_posts }} </td>60 <td> {{settingsform.acknowledge_posts }} </td>
@@ -63,7 +63,7 @@
63 <td>63 <td>
64 <p>{% trans 'Conceal address from the subscriber list?' %}</p>64 <p>{% trans 'Conceal address from the subscriber list?' %}</p>
65 </p>65 </p>
66 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.hide_address.help_text }}66 [<span class="more_info"><a href="#" target="_blank">{% trans "More info" %}</a><span>{{ settingsform.hide_address.help_text }}
67 </span></span>] </p>67 </span></span>] </p>
68 </td>68 </td>
69 <td> {{settingsform.hide_address }} </td>69 <td> {{settingsform.hide_address }} </td>
@@ -71,7 +71,7 @@
71 <tr>71 <tr>
72 <td>72 <td>
73 <p>{% trans 'Avoid duplicate copies of messages? ' %}</p>73 <p>{% trans 'Avoid duplicate copies of messages? ' %}</p>
74 </p> [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.receive_list_copy.help_text }}74 </p> [<span class="more_info"><a href="#" target="_blank">{% trans "More info" %}</a><span>{{ settingsform.receive_list_copy.help_text }}
75 </span></span>] </p>75 </span></span>] </p>
76 </td>76 </td>
77 <td> {{settingsform.receive_list_copy }} </td>77 <td> {{settingsform.receive_list_copy }} </td>
7878
=== modified file 'src/postorius/templates/postorius/lists/members.html'
--- src/postorius/templates/postorius/lists/members.html 2014-04-22 12:49:50 +0000
+++ src/postorius/templates/postorius/lists/members.html 2015-01-09 16:16:31 +0000
@@ -4,7 +4,7 @@
4{% load nav_helpers %}4{% load nav_helpers %}
55
6{% block main %}6{% block main %}
7 {% list_nav 'list_members' 'List Members' %}7 {% list_nav 'list_members' {% trans "List Members" %} %}
88
9 <h2>{% trans "Owners" %}</h2>9 <h2>{% trans "Owners" %}</h2>
1010
@@ -12,7 +12,7 @@
12 <form action="{% url 'list_members' list.fqdn_listname %}" method="POST" class="form-inline">{% csrf_token %}12 <form action="{% url 'list_members' list.fqdn_listname %}" method="POST" class="form-inline">{% csrf_token %}
13 <label for="id_email">{% trans 'Email Address' %}</label>13 <label for="id_email">{% trans 'Email Address' %}</label>
14 {{ owner_form.owner_email }}14 {{ owner_form.owner_email }}
15 <button type="submit" class="btn">Add Owner</button>15 <button type="submit" class="btn">{% trans 'Add Owner' %}</button>
16 </form>16 </form>
17 <table class="table table-bordered table-striped">17 <table class="table table-bordered table-striped">
18 <thead>18 <thead>
@@ -26,7 +26,7 @@
26 <tr>26 <tr>
27 <td>{{ member }}</td>27 <td>{{ member }}</td>
28 <td>28 <td>
29 <a href="{% url 'remove_role' list.fqdn_listname 'owner' member %}" class="btn btn-mini btn-danger">Delete</a>29 <a href="{% url 'remove_role' list.fqdn_listname 'owner' member %}" class="btn btn-mini btn-danger">{% trans 'Delete' %}</a>
30 </td>30 </td>
31 </tr>31 </tr>
32 {% endfor %}32 {% endfor %}
@@ -38,7 +38,7 @@
38 <form action="{% url 'list_members' list.fqdn_listname %}" method="POST" class="form-inline">{% csrf_token %}38 <form action="{% url 'list_members' list.fqdn_listname %}" method="POST" class="form-inline">{% csrf_token %}
39 <label for="bla">{% trans 'Email Address' %}</label>39 <label for="bla">{% trans 'Email Address' %}</label>
40 {{ moderator_form.moderator_email }}40 {{ moderator_form.moderator_email }}
41 <button type="submit" class="btn">Add Moderator</button>41 <button type="submit" class="btn">{% trans 'Add Moderator' %}</button>
42 </form>42 </form>
4343
44 <table class="table table-bordered table-striped">44 <table class="table table-bordered table-striped">
@@ -53,7 +53,7 @@
53 <tr>53 <tr>
54 <td>{{ member }}</td>54 <td>{{ member }}</td>
55 <td>55 <td>
56 <a href="{% url 'remove_role' list.fqdn_listname 'moderator' member %}" class="btn btn-mini btn-danger">Delete</a>56 <a href="{% url 'remove_role' list.fqdn_listname 'moderator' member %}" class="btn btn-mini btn-danger">{% trans 'Delete' %}</a>
57 </td>57 </td>
58 </tr>58 </tr>
59 {% endfor %}59 {% endfor %}
6060
=== modified file 'src/postorius/templates/postorius/lists/metrics.html'
--- src/postorius/templates/postorius/lists/metrics.html 2013-05-31 02:21:03 +0000
+++ src/postorius/templates/postorius/lists/metrics.html 2015-01-09 16:16:31 +0000
@@ -4,7 +4,7 @@
4{% load nav_helpers %}4{% load nav_helpers %}
55
6{% block main %}6{% block main %}
7 {% list_nav 'list_metrics' 'Metrics' %}7 {% list_nav 'list_metrics' {% trans 'Metrics' %} %}
88
9 <table class="table table-bordered table-striped mm_userData">9 <table class="table table-bordered table-striped mm_userData">
10 <tbody>10 <tbody>
1111
=== modified file 'src/postorius/templates/postorius/lists/settings.html'
--- src/postorius/templates/postorius/lists/settings.html 2014-04-14 19:54:42 +0000
+++ src/postorius/templates/postorius/lists/settings.html 2015-01-09 16:16:31 +0000
@@ -5,7 +5,7 @@
55
6{% block main %}6{% block main %}
7 {% if message %}<p class="alert">{{ message }}</p>{% endif %}7 {% if message %}<p class="alert">{{ message }}</p>{% endif %}
8 {% list_nav 'list_settings' 'Settings' %}8 {% list_nav 'list_settings' {% trans 'Settings' %} %}
9 <ul class="nav nav-tabs">9 <ul class="nav nav-tabs">
10 {% for section in form_sections %}10 {% for section in form_sections %}
11 <li {% if section.0 == visible_section %}class="active"{% endif %}><a href="{% url 'list_settings' fqdn_listname=list.fqdn_listname visible_section=section.0 visible_option=None %}">{{section.0}}</a></li>11 <li {% if section.0 == visible_section %}class="active"{% endif %}><a href="{% url 'list_settings' fqdn_listname=list.fqdn_listname visible_section=section.0 visible_option=None %}">{{section.0}}</a></li>
@@ -20,12 +20,12 @@
20 <tr><td>20 <tr><td>
21 {{ field.errors }}21 {{ field.errors }}
22 {{ field.label_tag }} <br />22 {{ field.label_tag }} <br />
23 [<span class="more_info"><a href="{% url 'more_info_tab' formid='list_settings' helpid=field.name %}" target="_blank">More info</a><span>{{ field.help_text }}23 [<span class="more_info"><a href="{% url 'more_info_tab' formid='list_settings' helpid=field.name %}" target="_blank">{% trans "More info" %}</a><span>{{ field.help_text }}
24 </span></span>]24 </span></span>]
25 </td><td>{{ field }}</td></tr>25 </td><td>{{ field }}</td></tr>
26 {% endfor %}26 {% endfor %}
27 <tr><td colspan="2">27 <tr><td colspan="2">
28 <button class="btn btn-primary" type="submit">{%trans "Save changes" %}</button>28 <button class="btn btn-primary" type="submit">{% trans "Save changes" %}</button>
29 </td></tr>29 </td></tr>
30 </form>30 </form>
31 </table>31 </table>
3232
=== modified file 'src/postorius/templates/postorius/lists/summary.html'
--- src/postorius/templates/postorius/lists/summary.html 2014-03-21 14:22:57 +0000
+++ src/postorius/templates/postorius/lists/summary.html 2015-01-09 16:16:31 +0000
@@ -17,7 +17,7 @@
17 17
18 {% if user.is_authenticated %}18 {% if user.is_authenticated %}
19 {% if userSubscribed %}19 {% if userSubscribed %}
20 <a href="{% url 'list_unsubscribe' list.fqdn_listname user.email %}" class="btn btn-danger">Unsubscribe</a>20 <a href="{% url 'list_unsubscribe' list.fqdn_listname user.email %}" class="btn btn-danger">{% trans "Unsubscribe" %}</a>
21 {% else %}21 {% else %}
22 <h2>{% trans 'Subscribe to this list' %}</h2>22 <h2>{% trans 'Subscribe to this list' %}</h2>
23 <form action="{% url 'list_subscribe' list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %}23 <form action="{% url 'list_subscribe' list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %}
@@ -26,7 +26,7 @@
26 </form>26 </form>
27 {% endif %}27 {% endif %}
28 {% else %}28 {% else %}
29 <p>To subscribe or unsubscribe this list you have to be logged in.</p>29 <p>{% trans "To subscribe to or unsubscribe from this list you have to be logged in." %}</p>
30 <p><a href="{% url 'user_login' %}"class="btn btn-primary">Log In</a></p>30 <p><a href="{% url 'user_login' %}"class="btn btn-primary">{% trans "Log In" %}</a></p>
31 {% endif %}31 {% endif %}
32{% endblock %}32{% endblock %}
3333
=== modified file 'src/postorius/templates/postorius/login.html'
--- src/postorius/templates/postorius/login.html 2014-04-14 15:25:26 +0000
+++ src/postorius/templates/postorius/login.html 2015-01-09 16:16:31 +0000
@@ -5,7 +5,7 @@
5{% block main %}5{% block main %}
66
7<div id="container">7<div id="container">
8 <p><strong>Login with username and password or with Mozilla Persona</strong></p>8 <p><strong>{% trans "Login with username and password or with Mozilla Persona" %}</strong></p>
99
10 <div class="mm_login">10 <div class="mm_login">
11 <form action="" method="post" class="login mm_clear well"> {% csrf_token %}11 <form action="" method="post" class="login mm_clear well"> {% csrf_token %}
@@ -19,13 +19,13 @@
19 <div class="mm_login_b"> 19 <div class="mm_login_b">
20 <form method="post" action="{% url 'socialauth_complete' "browserid" %}"> {% csrf_token %}20 <form method="post" action="{% url 'socialauth_complete' "browserid" %}"> {% csrf_token %}
21 <input type="hidden" name="assertion" value="" />21 <input type="hidden" name="assertion" value="" />
22 <a rel="nofollow" id="browserid" href="#"><img src="{% static 'postorius/img/sign_in_blue.png' %}" alt="Login using BrowserID" /></a>22 <a rel="nofollow" id="browserid" href="#"><img src="{% static 'postorius/img/sign_in_blue.png' %}" alt="{% trans 'Login using BrowserID' %}" /></a>
23 </form>23 </form>
24 <p>Mozilla Persona is an easy way to sign into multiple websites, while24 <p>{% trans "Mozilla Persona is an easy way to sign into multiple websites, while
25still controlling your personal data. For more information <a25still controlling your personal data. For more information <a
26href="http://www.mozilla.org/en-US/persona">see the mozilla website</a>.</p>26href='http://www.mozilla.org/en-US/persona'>see the Mozilla website</a>" %}.</p>
27 <noscript><p class="text-error">Mozilla Persona requires the use of27 <noscript><p class="text-error">{% trans "Mozilla Persona requires the use of
28JavaScript.</p></noscript>28JavaScript." %}</p></noscript>
29 </div>29 </div>
30<div style="clear:both">30<div style="clear:both">
31</div>31</div>
3232
=== modified file 'src/postorius/templates/postorius/site_settings.html'
--- src/postorius/templates/postorius/site_settings.html 2013-05-31 02:21:03 +0000
+++ src/postorius/templates/postorius/site_settings.html 2015-01-09 16:16:31 +0000
@@ -3,5 +3,5 @@
33
4{% block main %}4{% block main %}
5 {% include 'postorius/menu/settings_nav.html' %}5 {% include 'postorius/menu/settings_nav.html' %}
6 <h1>General Settings</h1>6 <h1>{% trans "General Settings" %}</h1>
7{% endblock main %}7{% endblock main %}
88
=== modified file 'src/postorius/templates/postorius/user_address_activation_sent.html'
--- src/postorius/templates/postorius/user_address_activation_sent.html 2014-04-17 22:05:24 +0000
+++ src/postorius/templates/postorius/user_address_activation_sent.html 2015-01-09 16:16:31 +0000
@@ -5,6 +5,6 @@
5{% include 'postorius/menu/user_nav.html' %}5{% include 'postorius/menu/user_nav.html' %}
66
7 <h1>{% trans 'Email address activation sent' %}</h1>7 <h1>{% trans 'Email address activation sent' %}</h1>
8 <p>A confirmation link has been sent to the email address you submitted. Please check your email account an click on the confirmation link to add this address for your account.</p>8 <p>{% trans "A confirmation link has been sent to the email address you submitted. Please check your email account and click on the confirmation link to add this address for your account." %}</p>
9{% endblock main %}9{% endblock main %}
1010
1111
=== modified file 'src/postorius/templates/postorius/user_address_preferences.html'
--- src/postorius/templates/postorius/user_address_preferences.html 2013-10-22 18:52:15 +0000
+++ src/postorius/templates/postorius/user_address_preferences.html 2015-01-09 16:16:31 +0000
@@ -21,7 +21,7 @@
21 <table class="table table-bordered table-striped" border = "2">21 <table class="table table-bordered table-striped" border = "2">
22 <thead>22 <thead>
23 <tr>23 <tr>
24 <th> Preferences </th>24 <th> {% trans 'Preferences' %} </th>
25 {% for form,address in zipped_data %}25 {% for form,address in zipped_data %}
26 <th> {{address}} </th>26 <th> {{address}} </th>
27 {% endfor %}27 {% endfor %}
@@ -29,8 +29,8 @@
29 </thead >29 </thead >
30 <tr>30 <tr>
31 <td>31 <td>
32 <p>Mail Delivery: </p>32 <p>{% trans 'Mail Delivery' %}: </p>
33 <p>[<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ helperform.delivery_status.help_text }}33 <p>[<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ helperform.delivery_status.help_text }}
34 </span></span>] 34 </span></span>]
35 </p>35 </p>
36 </td>36 </td>
@@ -40,8 +40,8 @@
40 </tr>40 </tr>
41 <tr>41 <tr>
42 <td>42 <td>
43 <p> Select a Mode of Delivery: </p>43 <p> {% trans 'Select a Mode of Delivery' %}: </p>
44 <p>[<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ helperform.delivery_mode.help_text }}44 <p>[<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ helperform.delivery_mode.help_text }}
45 </span></span>] 45 </span></span>]
46 </p>46 </p>
47 </td>47 </td>
@@ -51,8 +51,8 @@
51 </tr>51 </tr>
52 <tr>52 <tr>
53 <td>53 <td>
54 <p> Receive your own posts to the list? </p>54 <p> {% trans 'Receive your own posts to the list?' %} </p>
55 <p>[<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ helperform.receive_own_postings.help_text }}55 <p>[<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ helperform.receive_own_postings.help_text }}
56 </span></span>] 56 </span></span>]
57 </p>57 </p>
58 </td>58 </td>
@@ -62,8 +62,8 @@
62 </tr>62 </tr>
63 <tr>63 <tr>
64 <td>64 <td>
65 <p> Receive acknowledgement mails? </p>65 <p> {% trans 'Receive acknowledgement mails?' %} </p>
66 <p>[<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ helperform.acknowledge_posts.help_text }}66 <p>[<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ helperform.acknowledge_posts.help_text }}
67 </span></span>]67 </span></span>]
68 </p>68 </p>
69 </td>69 </td>
@@ -73,8 +73,8 @@
73 </tr>73 </tr>
74 <tr>74 <tr>
75 <td>75 <td>
76 <p> Conceal yourself from the subscriber list? </p>76 <p> {% trans 'Conceal yourself from the subscriber list?' %} </p>
77 <p>[<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ helperform.hide_address.help_text }}77 <p>[<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ helperform.hide_address.help_text }}
78 </span></span>]78 </span></span>]
79 </p>79 </p>
80 </td>80 </td>
@@ -84,8 +84,8 @@
84 </tr>84 </tr>
85 <tr>85 <tr>
86 <td>86 <td>
87 <p> Avoid duplicate copies of messages? </p>87 <p> {% trans 'Avoid duplicate copies of messages?' %} </p>
88 <p>[<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ helperform.receive_list_copy.help_text }}88 <p>[<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ helperform.receive_list_copy.help_text }}
89 </span></span>]89 </span></span>]
90 </p>90 </p>
91 </td>91 </td>
9292
=== modified file 'src/postorius/templates/postorius/user_mailmansettings.html'
--- src/postorius/templates/postorius/user_mailmansettings.html 2013-10-22 18:52:15 +0000
+++ src/postorius/templates/postorius/user_mailmansettings.html 2015-01-09 16:16:31 +0000
@@ -19,59 +19,59 @@
19 <table class="table table-bordered table-striped" border="2">19 <table class="table table-bordered table-striped" border="2">
20 <thead>20 <thead>
21 <tr>21 <tr>
22 <th> Preferences </th>22 <th> {% trans "Preferences" %} </th>
23 <th> Global </th>23 <th> {% trans "Global" %} </th>
24 </tr>24 </tr>
25 </thead >25 </thead >
26 <tr>26 <tr>
27 <td>27 <td>
28 <p > Mail Delivery: </p>28 <p> {% trans "Mail Delivery" %}: </p>
29 </p>29 </p>
30 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.delivery_status.help_text }}30 [<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ settingsform.delivery_status.help_text }}
31 </span></span>] </p> 31 </span></span>] </p>
32 </td>32 </td>
33 <td> {{settingsform.delivery_status }} </td>33 <td> {{settingsform.delivery_status }} </td>
34 </tr>34 </tr>
35 <tr>35 <tr>
36 <td>36 <td>
37 <p> Select a Mode of Delivery: </p>37 <p> {% trans "Select a Mode of Delivery" %}: </p>
38 </p>38 </p>
39 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.delivery_mode.help_text }}39 [<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ settingsform.delivery_mode.help_text }}
40 </span></span>] </p>40 </span></span>] </p>
41 </td>41 </td>
42 <td> {{settingsform.delivery_mode }} </td>42 <td> {{settingsform.delivery_mode }} </td>
43 </tr>43 </tr>
44 <tr>44 <tr>
45 <td>45 <td>
46 <p > Receive your own posts to the list? </p>46 <p> {% trans "Receive your own posts to the list?" %} </p>
47 </p>47 </p>
48 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.receive_own_postings.help_text }}48 [<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ settingsform.receive_own_postings.help_text }}
49 </span></span>] </p>49 </span></span>] </p>
50 </td>50 </td>
51 <td> {{settingsform.receive_own_postings }} </td>51 <td> {{settingsform.receive_own_postings }} </td>
52 </tr>52 </tr>
53 <tr>53 <tr>
54 <td>54 <td>
55 <p > Receive acknowledgement mails? </p>55 <p> {% trans "Receive acknowledgement mails?" %} </p>
56 </p>56 </p>
57 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.acknowledge_posts.help_text }}57 [<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ settingsform.acknowledge_posts.help_text }}
58 </span></span>] </p>58 </span></span>] </p>
59 </td>59 </td>
60 <td> {{settingsform.acknowledge_posts }} </td>60 <td> {{settingsform.acknowledge_posts }} </td>
61 </tr>61 </tr>
62 <tr>62 <tr>
63 <td>63 <td>
64 <p>Conceal yourself from the subscriber list? </p>64 <p>{% trans "Conceal yourself from the subscriber list?" %} </p>
65 </p>65 </p>
66 [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.hide_address.help_text }}66 [<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ settingsform.hide_address.help_text }}
67 </span></span>] </p>67 </span></span>] </p>
68 </td>68 </td>
69 <td> {{settingsform.hide_address }} </td>69 <td> {{settingsform.hide_address }} </td>
70 </tr>70 </tr>
71 <tr>71 <tr>
72 <td>72 <td>
73 <p >Avoid duplicate copies of messages?</p>73 <p>{% trans "Avoid duplicate copies of messages?" %}</p>
74 </p> [<span class="more_info"><a href="#" target="_blank">More info</a><span>{{ settingsform.receive_list_copy.help_text }}74 </p> [<span class="more_info"><a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ settingsform.receive_list_copy.help_text }}
75 </span></span>] </p>75 </span></span>] </p>
76 </td>76 </td>
77 <td> {{settingsform.receive_list_copy }} </td>77 <td> {{settingsform.receive_list_copy }} </td>
7878
=== modified file 'src/postorius/templates/postorius/user_settings.html'
--- src/postorius/templates/postorius/user_settings.html 2013-05-31 02:21:03 +0000
+++ src/postorius/templates/postorius/user_settings.html 2015-01-09 16:16:31 +0000
@@ -5,7 +5,7 @@
55
6{% block main %}6{% block main %}
7 {% include 'postorius/menu/user_nav.html' %}7 {% include 'postorius/menu/user_nav.html' %}
8 <h1>Membership</h1>8 <h1>{% trans "Membership" %}</h1>
9 {% ifequal tab "membership"%}9 {% ifequal tab "membership"%}
10 {% trans "Membership Settings" %} 10 {% trans "Membership Settings" %}
11 {% if list %}<span>{% trans "for"%}{% endif %} {{ list.fqdn_listname }}</span>11 {% if list %}<span>{% trans "for"%}{% endif %} {{ list.fqdn_listname }}</span>
@@ -17,7 +17,7 @@
17 <div class="mm_boxHeader">17 <div class="mm_boxHeader">
18 {% trans "Content" %}18 {% trans "Content" %}
19 </div> 19 </div>
20 <p>{%trans "Use this page to manage your account. You'll be able to see a list of your subscribed lists, modify these membership settings of the list and your personal preferences in user_settings <a href='https://bugs.launchpad.net/mailman/+bug/821438' >LP:821438</a> is solved <br>" %}</p>20 <p>{% trans "Use this page to manage your account. You'll be able to see a list of your subscribed lists, modify these membership settings of the list and your personal preferences in user_settings <a href='https://bugs.launchpad.net/mailman/+bug/821438' >LP:821438</a> is solved <br>" %}</p>
21 {% if form %}21 {% if form %}
22 <form action="" method="post" class="user" name="user"> {% csrf_token %}22 <form action="" method="post" class="user" name="user"> {% csrf_token %}
23 <ul class="">23 <ul class="">
@@ -39,14 +39,14 @@
39 {% for list in membership_lists %}39 {% for list in membership_lists %}
40 <div class="mm_box mm_smallBox {% cycle 'mm_clear' '' %}">40 <div class="mm_box mm_smallBox {% cycle 'mm_clear' '' %}">
41 <div class="mm_boxHeader">41 <div class="mm_boxHeader">
42 <a href="{% url 'list_summary' fqdn_listname=list.fqdn_listname%}">42 <a href="{% url 'list_summary' fqdn_listname=list.fqdn_listname %}">
43 {{ list.display_name }} {% if not list.settings.advertised %}(non-public){% endif %}43 {{ list.display_name }} {% if not list.settings.advertised %}(non-public){% endif %}
44 </a>44 </a>
45 </div>45 </div>
46 <ul>46 <ul>
47 <li><a href="{% url 'membership_settings' fqdn_listname=list.fqdn_listname%}"> My Membership</li>47 <li><a href="{% url 'membership_settings' fqdn_listname=list.fqdn_listname%}"> {% trans "My Membership" %}</li>
48 <li><a href="{% url 'membership_settings' fqdn_listname=list.fqdn_listname %}"> 48 <li><a href="{% url 'membership_settings' fqdn_listname=list.fqdn_listname %}">
49 My Subscription</a></li>49 {% trans "My Subscription" %}</a></li>
50 </ul>50 </ul>
51 </div>51 </div>
52 {% endfor %}52 {% endfor %}
5353
=== modified file 'src/postorius/templates/postorius/user_subscription_preferences.html'
--- src/postorius/templates/postorius/user_subscription_preferences.html 2013-10-22 18:52:15 +0000
+++ src/postorius/templates/postorius/user_subscription_preferences.html 2015-01-09 16:16:31 +0000
@@ -23,9 +23,9 @@
23 {% if forloop.first %}23 {% if forloop.first %}
24 <thead>24 <thead>
25 <tr>25 <tr>
26 <th> Subscription </th>26 <th> {% trans 'Subscription' %} </th>
27 {% for field in form.visible_fields %}27 {% for field in form.visible_fields %}
28 <th>{{field.label}} <p><span class="more_info">[<a href="#" target="_blank">More info</a><span>{{ field.help_text }}28 <th>{{field.label}} <p><span class="more_info">[<a href="#" target="_blank">{% trans 'More info' %}</a><span>{{ field.help_text }}
29 </span>]</span></p></th>29 </span>]</span></p></th>
30 {% endfor %}30 {% endfor %}
31 </tr >31 </tr >

Subscribers

People subscribed via source and target branches