Stripping out whitespace on these translation blocks.

{% trans -%}
  ;o
{%- endtrans %}
This commit is contained in:
Christopher Allan Webber 2011-09-25 20:26:06 -05:00
parent 9122a9d047
commit 31370dbc2c
3 changed files with 6 additions and 6 deletions

View File

@ -19,9 +19,9 @@
{% block mediagoblin_content %}
<p>
{% trans %}
{% trans -%}
Your password has been changed. Try to log in now.
{% endtrans %}
{%- endtrans %}
</p>
{% endblock %}

View File

@ -19,9 +19,9 @@
{% block mediagoblin_content %}
<p>
{% trans %}
{% trans -%}
Check your inbox. We sent an email with a URL for changing your password.
{% endtrans %}
{%- endtrans %}
</p>
{% endblock %}

View File

@ -36,11 +36,11 @@
{% if allow_registration %}
<p>{% trans %}Excited to join us?{% endtrans %}<p>
{% trans register_url=request.urlgen('mediagoblin.auth.register') %}
{% trans register_url=request.urlgen('mediagoblin.auth.register') -%}
<a class="header_submit_highlight" href="{{ register_url }}">Create a free account</a>
or
<a class="header_submit" href="http://wiki.mediagoblin.org/HackingHowto">Set up MediaGoblin on your own server</a>
{% endtrans %}
{%- endtrans %}
{% endif %}
</div>