don't translate error messages twice

As @stof pointed out in #12164, error messages are already translated
when they are passed to the template.
This commit is contained in:
Christian Flothmann 2014-10-26 08:13:20 +01:00
parent 23f0411a40
commit 4bd8661205

View File

@ -227,7 +227,7 @@
{% if form.parent %}<span class="help-block">{% else %}<div class="alert alert-danger">{% endif %}
<ul class="list-unstyled">
{%- for error in errors -%}
<li><span class="glyphicon glyphicon-exclamation-sign"></span> {{ error.message|trans({}, translation_domain) }}</li>
<li><span class="glyphicon glyphicon-exclamation-sign"></span> {{ error.message }}</li>
{%- endfor -%}
</ul>
{% if form.parent %}</span>{% else %}</div>{% endif %}