--TEST-- Test a plural example with notes --TEMPLATE-- {# Plural tag with domain #} {% set name = 'Jim' %} {% set apple_count = 1 %} {% trans from 'core' %} Hey {{ name }}, I have one apple. {% plural apple_count %} Hey {{ name }}, I have {{ count }} apples. {% notes %}Notes for the plural block {% endtrans %} --DATA-- return [] --CONFIG-- return [] --EXPECT-- Hey Jim, I have one apple.