I'd like to do this:

$this->get('translator')->trans('notice.unregistered', array(), 'index');

Inside Twig template, so I don't have to pass this as an argument. How?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The solution is:

{% trans from "domain" %}text{% endtrans %}
link|improve this answer
how would you do it with trans filter using pipe , instead of block? – krishna May 3 at 3:12
feedback

You can also do using trans filter :

{{ 'translationkey'|trans({},'domain') }}
link|improve this answer
it don't work when you re using it to translate strings from variables. – Max MaƂecki May 10 at 13:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.