|
@@ -21,11 +21,11 @@
|
|
|
{% if _form_is_choice_group(label) %}
|
|
|
<optgroup label="{{ choice }}">
|
|
|
{% for nestedChoice, nestedLabel in label %}
|
|
|
- <option value="{{ nestedChoice }}"{% if _form_is_choice_selected(form, nestedChoice) %} selected="selected"{% endif %}>{{ nestedLabel }}</option>
|
|
|
+ <option value="{{ nestedChoice }}"{% if _form_is_choice_selected(form, nestedChoice) %} selected="selected"{% endif %}>{{ nestedLabel|trans }}</option>
|
|
|
{% endfor %}
|
|
|
</optgroup>
|
|
|
{% else %}
|
|
|
- <option value="{{ choice }}"{% if _form_is_choice_selected(form, choice) %} selected="selected"{% endif %}>{{ label }}</option>
|
|
|
+ <option value="{{ choice }}"{% if _form_is_choice_selected(form, choice) %} selected="selected"{% endif %}>{{ label|trans }}</option>
|
|
|
{% endif %}
|
|
|
{% endfor %}
|
|
|
{% endspaceless %}
|