{# /** * @file * Default theme implementation for displaying translation status information. * * Displays translation status information per language. * * Available variables: * - modules: A list of names of modules that have available translation * updates. * - details: Rendered list of the translation details. * - missing_updates_status: If there are any modules that are missing * translation updates, this variable will contain text indicating how many * modules are missing translations. * * @see template_preprocess_locale_translation_update_info() * * @ingroup themeable */ #}
Show description {% if modules %} {% set module_list = modules|safe_join(', ') %} {% trans %}Updates for: {{ module_list }}{% endtrans %} {% elseif missing_updates_status %} {{ missing_updates_status }} {% endif %} {% if details %}
{{ details }}
{% endif %}