I'm trying to access to the translations via twig.
For example, I have the name of my application inside my Resources/translations/messages.de.yml
and Resources/translations/messages.en.yml
My controller does only a render of the twig file.
And inside my twig-file I want to access to the application.name property which is defined inside the messages-file (yml)
How can I access to this property to get the application name (let's say it contains some language-specific information)
I tried these methods, and failed:
{{ application.name }}
{% trans% } application.name {% endtrans %}
{% trans% } 'application.name' {% endtrans %}
With inline notation you should use filter:
{{ 'application.name'|trans }}
With trans
tag I think problem in whitespaces around application.name
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With