diff --git a/core/modules/system/templates/system-themes-page.html.twig b/core/modules/system/templates/system-themes-page.html.twig
index 64051cb0d4..aad5587076 100644
--- a/core/modules/system/templates/system-themes-page.html.twig
+++ b/core/modules/system/templates/system-themes-page.html.twig
@@ -64,7 +64,9 @@
{{ theme.description }}
{% if theme.module_dependencies %}
- {{ 'Requires:'|t }} {{ theme.module_dependencies }}
+
+ {{ 'Requires: @module_dependencies'|t({ '@module_dependencies': theme.module_dependencies|render }) }}
+
{% endif %}
{# Display operation links if the theme is compatible. #}
{% if theme.incompatible %}
diff --git a/core/themes/claro/templates/system-themes-page.html.twig b/core/themes/claro/templates/system-themes-page.html.twig
index 91aa0dc063..36d958dd36 100644
--- a/core/themes/claro/templates/system-themes-page.html.twig
+++ b/core/themes/claro/templates/system-themes-page.html.twig
@@ -99,7 +99,9 @@