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?
You can also do using trans filter :
{{ 'translationkey'|trans({},'domain') }}