Show description
{% if modules %}
{% set module_list = modules|safe_join(', ') %}
{% trans %}Updates for: {{ module_list }}{% endtrans %}
{% elseif not_found %}
{%- trans -%}
Missing translations for one project
{%- plural not_found|length -%}
Missing translations for @count projects
{%- endtrans -%}
{% endif %}
{% if updates or not_found %}
{% if updates %}
{% for update in updates %}
- {{ update.name }} ({{ update.timestamp|format_date('html_date') }})
{% endfor %}
{% endif %}
{% if not_found %}
{#
Prefix the missing updates list if there is an available updates lists
before it.
#}
{% if updates %}
{{ 'Missing translations for:'|t }}
{% endif %}
{% if not_found %}
{% for update in not_found %}
- {{ update.name }} ({{ update.version|default('no version'|t) }}). {{ update.info }}
{% endfor %}
{% endif %}
{% endif %}
{% endif %}