{% load i18n %} {% load translations %} {% for trans in translations %} {% with trans.stast.untranslated_percent as untranslated and trans.stats.translated_percent as percent and trans.stats.fuzzy_percent as fuzzy and trans.stats.allchecks as checks and trans.stats.untranslated as untranslated and trans.stats.suggestions as suggestions %} {% endwith %} {% endfor %}
{% if show_language == 1 %}{% trans "Language" %}{% else %}{% trans "Project" %}{% endif %} {% trans "Translated" %} {% trans "Words" context "Number of translated words" %} {% trans "Review" context "Number of strings needing review" %} {% trans "Checks" context "Number of failing checks" %} {% trans "Suggestions" context "Number of suggestions" %}
{% if show_language == 1 %}{{ trans.language }}{% else %}{% if show_only_component %}{{ trans.subproject.name }}{% else %}{{ trans.subproject }}{% endif %}{% if show_language == 2 %} ({{ trans.language }}){% endif %}{% endif %} {% if trans.is_template %}{% trans "source" %}{% endif %} {% translation_progress trans %} {{ percent }}% {{ trans.stats.translated_words_percent }}% {% if fuzzy > 0 %} {{ fuzzy }}% {% else %} {{ fuzzy }}% {% endif %} {% if checks > 0 %} {{ checks }} {% else %} {{ checks }} {% endif %} {% if suggestions > 0 %} {{ suggestions }} {% else %} {{ suggestions }} {% endif %} {% if untranslated > 0 %} {% trans "Translate" %} {% else %} {% trans "Translate" %} {% endif %}