Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
Add missing title strings (fix bug 699556)
Browse files Browse the repository at this point in the history
  • Loading branch information
tofumatt committed Nov 17, 2011
1 parent 932c6b8 commit 262bb64
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 31 deletions.
1 change: 1 addition & 0 deletions apps/groups/templates/groups/index.html
@@ -1,5 +1,6 @@
{% extends "base.html" %}

{% block page_title %}{{ _('Group Listing') }}{% endblock %}
{% block body_id %}group-index{% endblock %}
{% block body_classes %}box-content{% endblock %}

Expand Down
3 changes: 3 additions & 0 deletions apps/groups/templates/groups/show.html
@@ -1,5 +1,8 @@
{% extends "base.html" %}

{% block page_title %}
{% trans name=group.name %}Users in Group "{{ name }}"{% endtrans %}
{% endblock %}
{% block body_id %}group-show{% endblock %}
{% block body_classes %}
box-content search-page group-name-{{ group.name }}
Expand Down
43 changes: 22 additions & 21 deletions apps/phonebook/templates/phonebook/about.html
Expand Up @@ -40,36 +40,37 @@ <h1>{{ _('About Mozillians') }}</h1>

<div class="clear"></div>

<section id="privacy" class="key-info">
<h2>{{ _('Privacy First') }}</h2>
<section id="privacy" class="key-info">
<h2>{{ _('Privacy First') }}</h2>

<p>
{% trans locale=LANG %}
<p>
{% trans locale=LANG %}
Privacy has been an important part of this directory from the very
beginning. We want to make sure we provide Mozillians with the best
experience possible, from the way the site is built to the way we vouch
for new users before they can access data that should only be available
to other Mozillians. Read our
experience possible, from the way the site is built to the way we
vouch for new users before they can access data that should only be
available to other Mozillians. Read our
<a href="http://www.mozilla.org/{{ locale }}/privacy-policy.html">
Privacy Policy
</a> for more information.
{% endtrans %}
</p>
</section>
{% endtrans %}
</p>
</section>

<section id="get-involved" class="key-info">
<h2>{{ _('Get Involved') }}</h2>
<section id="get-involved" class="key-info">
<h2>{{ _('Get Involved') }}</h2>

<p>
{% trans %}
The community directory is also a community project and you are welcome
to get involved to help us make it even better or to integrate it into
other community tools. Get in touch with us on the
<p>
{% trans %}
The community directory is also a community project and you are
welcome to get involved to help us make it even better or to
integrate it into other community tools. Get in touch with us on the
<a href="http://groups.google.com/group/mozilla.mozillians/topics">
Mozillians forums
</a> to learn how.
{% endtrans %}
</p>
</section>
<div class="clear"></div>
{% endtrans %}
</p>
</section>

<div class="clear"></div>
{% endblock %}
2 changes: 2 additions & 0 deletions apps/phonebook/templates/phonebook/confirm_delete.html
@@ -1,4 +1,6 @@
{% extends "base.html" %}

{% block page_title %}{{ _('Confirm Profile Deletion') }}{% endblock %}
{% block body_id %}confirm-delete{% endblock %}
{% block body_classes %}box-content{% endblock %}

Expand Down
16 changes: 6 additions & 10 deletions apps/phonebook/templates/phonebook/confirm_register.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}

{% block page_title %}{{ _('Register, Step 3 &mdash;
Get Vouched') }}{% endblock %}
{% block page_title %}{{ _('Get Vouched') }}{% endblock %}
{% block body_id %}get-vouched{% endblock %}
{% block body_classes %}box-content{% endblock %}

{% block main_content %}
Expand All @@ -16,15 +16,11 @@ <h1>
{% trans profile=url('profile',
user.ldap_user.attrs.uniqueIdentifier[0]) %}
To get full access to search for and invite other Mozillians you'll
need to have
<a href="{{ profile }}">your profile</a>
vouched for by someone who already has an
account.
need to have <a href="{{ profile }}">your profile</a> vouched for by
someone who already has an account.

Please send
<a href="{{ profile }}">your profile</a>
to a Mozillian who is familiar with your contributions and ask them to
vouch for you.
Please send <a href="{{ profile }}">your profile</a> to a Mozillian who
is familiar with your contributions and ask them to vouch for you.
{% endtrans %}
</p>
{% endblock %}

0 comments on commit 262bb64

Please sign in to comment.