I have a render
that I am using to output some content on the page. I want this content to be taken from translation strings, so something like this:
{% render 'theme/simple/ui/content', content: app.content | t %}
This statement won't work obviously. I am wondering if there is any clean solution to this problem? I can obviously assign the translation to another variable but it seems like a unnecessary additional step.