{% load i18n %}
{% blocktranslate count action_count=preview.action_count %} The preview below shows {{ action_count }} translation file. {% plural %} The preview below shows {{ action_count }} translation files. {% endblocktranslate %} {% blocktranslate count component_count=preview.component_count %} It affects {{ component_count }} component. {% plural %} It affects {{ component_count }} components. {% endblocktranslate %} {% if preview.failure_count %} {% blocktranslate count failure_count=preview.failure_count %} {{ failure_count }} shown addition cannot be created with the current component settings. {% plural %} {{ failure_count }} shown additions cannot be created with the current component settings. {% endblocktranslate %} {% endif %}
{% if preview.is_truncated %}| {% translate "Component" %} | {% translate "Languages to add" %} | {% translate "Files to create" %} |
|---|---|---|
| {{ item.component.full_slug }} |
{% for action in item.actions %}
{{ action.language }}
{% endfor %} |
{% for action in item.actions %}
{{ action.filename }}
{% endfor %} |
| {{ item.component.full_slug }} |
{% translate "Skipped additions" %}
{% for failure in item.failures %} {{ failure.language }}: {{ failure.reason }} {% endfor %} |
|