I've installed fresh symfony2, and I tried to translate text, but in debug:translation, ids are duplicated, and twig output shows me Id, not Message Preview text. What is wrong?
app/console debug:translation output:
+----------+-----------+----------------------+
| State(s) | Id | Message Preview (en) |
+----------+-----------+----------------------+
| x | base.test | base.test |
| o | base.test | This is test |
+----------+-----------+----------------------+
twig input:
{% trans %}base.test{% endtrans %}
twig output:
base.test
base.en.yml:
base.test: This is test