{% load i18n %} {% load translations %} {% for trans in translations %} {% with trans.get_translated_percent as percent and trans.get_fuzzy_percent as fuzzy and trans.failing_checks as checks and trans.get_non_translated as count and trans.get_failing_checks_percent as check_percent and trans.have_suggestion as suggestions %} {% endwith %} {% endfor %}
{% if show_language == 1 %}{% trans "Language" %}{% else %}{% trans "Project" %}{% endif %} {% trans "Translated" %} {% trans "Words" context "Number of translated words" %} {% trans "Fuzzy" context "Number of fuzzy strings" %} {% 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 %} {% if trans.is_user_locked %}{% endif %} {% translation_progress trans %} {{ percent }}% {{ trans.get_words_percent }}% {% if fuzzy > 0 %} {{ fuzzy }}% {% else %} {{ fuzzy }}% {% endif %} {% if checks > 0 %} {{ checks }} {% else %} {{ checks }} {% endif %} {% if suggestions > 0 %} {{ suggestions }} {% else %} {{ suggestions }} {% endif %} {% if count > 0 %} {% trans "Translate" %} {% endif %}
{% include "legend.html" %}