Translate
Submitted by
Dmitro
on
<h1>{{ 'Hello world'|t }}</h1>
<div class="mt-3 alert alert-warning">
<p>{% trans %}Do you know how translation works?{% endtrans %}</p>
</div>
Using translate function with parameters:
{{ 'Last checked: @time ago'|t({'@time': time}) }}
{{ "Text to translate"|t({}, {'context' : 'Context name'}) }}
and