Skip to content

Commit 2d3ca9b

Browse files
committed
Fixed checkboxes translation in email template
1 parent 2c6ff65 commit 2d3ca9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/forms/default/data.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{% set use_keys = field.use is defined and field.use == 'keys' %}
2323
{% for key,value in form.value(scope ~ field.name) %}
2424
{% set index = (use_keys ? key : value) %}
25-
<li>{{ field.options[index]|e }}</li>
25+
<li>{{ field.options[index]|t|e }}</li>
2626
{% endfor %}
2727
</ul>
2828
{% elseif field.type == 'checkbox' %}

0 commit comments

Comments
 (0)