~coolyashish/postorius/add_email_address_in_settings

« back to all changes in this revision

Viewing changes to src/postorius/templates/postorius/user_settings.html

Fix untranslatable template strings. Contributed by Sumana Harihareswara (LP: 1157947).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
{% block main %}
7
7
    {% include 'postorius/menu/user_nav.html' %}
8
 
    <h1>Membership</h1>
 
8
    <h1>{% trans "Membership" %}</h1>
9
9
    {% ifequal tab "membership"%}
10
10
        {% trans "Membership Settings" %} 
11
11
        {% if list %}<span>{% trans "for"%}{% endif %} {{ list.fqdn_listname }}</span>
17
17
        <div class="mm_boxHeader">
18
18
        {% trans "Content" %}
19
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
21
        {% if form %}
22
22
            <form action="" method="post" class="user" name="user"> {% csrf_token %}
23
23
            <ul class="">
39
39
        {% for list in membership_lists %}
40
40
        <div class="mm_box mm_smallBox {% cycle 'mm_clear' '' %}">
41
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
43
                    {{ list.display_name }} {% if not list.settings.advertised %}(non-public){% endif %}
44
44
                </a>
45
45
            </div>
46
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
48
                <li><a href="{% url 'membership_settings' fqdn_listname=list.fqdn_listname %}"> 
49
 
                My Subscription</a></li>
 
49
                {% trans "My Subscription" %}</a></li>
50
50
            </ul>
51
51
        </div>
52
52
        {% endfor %}