diff --git a/core/modules/aggregator/templates/aggregator-summary-items.html.twig b/core/modules/aggregator/templates/aggregator-summary-items.html.twig index 01f36a3..0a6dd45 100644 --- a/core/modules/aggregator/templates/aggregator-summary-items.html.twig +++ b/core/modules/aggregator/templates/aggregator-summary-items.html.twig @@ -19,5 +19,5 @@

{{ title }}

{{ summary_list }} diff --git a/core/modules/datetime/templates/datetime-wrapper.html.twig b/core/modules/datetime/templates/datetime-wrapper.html.twig index 10e7376..a4acf70 100644 --- a/core/modules/datetime/templates/datetime-wrapper.html.twig +++ b/core/modules/datetime/templates/datetime-wrapper.html.twig @@ -17,7 +17,7 @@ #} {% if title %}

- {{ '!title!required'|t({ '!title': title, '!required': required }) }} + {% trans %}{{ title|passthrough }}{{ required|passthrough }}{% endtrans %}

{% endif %} {{ content }} diff --git a/core/modules/forum/templates/forum-submitted.html.twig b/core/modules/forum/templates/forum-submitted.html.twig index 5115b4c..f679363 100644 --- a/core/modules/forum/templates/forum-submitted.html.twig +++ b/core/modules/forum/templates/forum-submitted.html.twig @@ -17,7 +17,7 @@ */ #} {% if time %} - {{ 'By !author @time ago'|t({'@time': time, '!author': author}) }} + {% trans %}By {{ author|passthrough }} {{ time }} ago{% endtrans %} {% else %} {{ 'n/a'|t }} {% endif %} diff --git a/core/modules/locale/templates/locale-translation-last-check.html.twig b/core/modules/locale/templates/locale-translation-last-check.html.twig index 32cd899..c13bcb6 100644 --- a/core/modules/locale/templates/locale-translation-last-check.html.twig +++ b/core/modules/locale/templates/locale-translation-last-check.html.twig @@ -17,7 +17,9 @@

{% if last_checked %} - {{ 'Last checked: @time ago'|t({'@time': time}) }} + {% trans %} + Last checked: {{ time }} ago + {% endtrans %} {% else %} {{ 'Last checked: never'|t }} {% endif %} diff --git a/core/modules/locale/templates/locale-translation-update-info.html.twig b/core/modules/locale/templates/locale-translation-update-info.html.twig index 81cceb4..809028a 100644 --- a/core/modules/locale/templates/locale-translation-update-info.html.twig +++ b/core/modules/locale/templates/locale-translation-update-info.html.twig @@ -21,7 +21,8 @@

Show description {% if modules %} - {{ 'Updates for: @modules'|t({'@modules': modules|join(', ')}) }} + {% set module_list = modules|join(', ') %} + {% trans %}Updates for: {{ module_list }}{% endtrans %} {% elseif missing_updates_status %} {{ missing_updates_status }} {% endif %}