Fix strings

This commit is contained in:
Romain Neutron
2013-07-10 12:05:07 +02:00
parent 8719d38472
commit cb17dfbb95
5 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@
<button class="close" data-dismiss="alert" type="button">×</button>
{% set user_count = app['request'].get('user-updated') %}
{% trans %}
{{ user_count }} user has been crreated
{{ user_count }} user has been created
{% plural user_count %}
{{ user_count }} users have been created
{% endtrans %}
@@ -45,7 +45,7 @@
<input type="text" value="{{parm['like_value']}}" name="like_value" class="input-medium">
<span>{% trans 'Last applied template' %}</span>
<select name="last_model" class="input-medium">
<option value="">{% trans 'Any template' %}</option>
<option value="">{% trans 'None' %}</option>
{% for template in templates %}
<option {% if parm['last_model'] == template.get_login() %}selected="selected"{% endif %} value="{{ template.get_login() }}">{{ template.get_login() }}</option>
{% endfor %}