I have the following template:
{% extends 'base.html.twig' %}
{% import 'component/macros/nav.html.twig' as nav %}
{% block main %}
<nav class="tabs mt-1 mb-2 font-weight-bold">
{{ nav.link('title.profile'|trans, path('profile'), '/^profile(_locked|)$/') }}
{{ nav.link('title.attendees_and_payment'|trans, path('profile_attendees'), '/^profile_attendees$/') }}
</nav>
{% endblock %}
The third argument of the nav.link macro is yellow with the warning: Missing translation domain.

I have the following template:
{% extends 'base.html.twig' %} {% import 'component/macros/nav.html.twig' as nav %} {% block main %} <nav class="tabs mt-1 mb-2 font-weight-bold"> {{ nav.link('title.profile'|trans, path('profile'), '/^profile(_locked|)$/') }} {{ nav.link('title.attendees_and_payment'|trans, path('profile_attendees'), '/^profile_attendees$/') }} </nav> {% endblock %}The third argument of the
nav.linkmacro is yellow with the warning: Missing translation domain.