- Issue created by @rogerpfaff
In layout-paragraphs-builder-formatter.html.twig there is a line of text that is not translatable in the translation interface.
<div class="lpb-enable__empty-message">
<p>
You haven't created any {{ field_label }} yet.
<a class="lpb-enable-button use-ajax" href="{{link_url}}">{% trans %}Start creating {{ field_label }}.{% endtrans %}</a>
</p>
</div>
Change You haven't created any {{ field_label }} yet.
to
{% trans %}You haven't created any {{ field_label }} yet.{% trans %}
Active
2.0
Miscellaneous