-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Closed
Labels
BugGood first issueIdeal for your first contribution! (some Symfony experience may be required)Ideal for your first contribution! (some Symfony experience may be required)TranslationTwigBundle
Description
Given this template, all translations are extracted twice.
Once for the correct translation domain (as specified by {% trans_default_domain %}
and once wrongly for the default domain. This applies to the current template, its parent and the embedded one.
{% extends '::base.html.twig' %}
{% trans_default_domain "users" %}
{% block content_header %}
<h1>{{ 'heading.create'|trans }}</h1>
{% endblock %}
{% block content_layout %}
{# .. #}
{% embed ':Layout:content_full_size.html.twig'%}
{% trans_default_domain "users" %}
{# .. #}
{% endembed %}
{% endblock %}
Metadata
Metadata
Assignees
Labels
BugGood first issueIdeal for your first contribution! (some Symfony experience may be required)Ideal for your first contribution! (some Symfony experience may be required)TranslationTwigBundle