{% extends "base.html" %}
{% load translations %}
{% load permissions %}
{% load crispy_forms_tags %}
{% load i18n %}
{% load humanize %}
{% block breadcrumbs %}
{% if object.is_source %}
{% trans "Source strings" %}
{% else %}
{% trans "Translation status" %}
{% endif %}
{{ object.stats.all|intcomma }} |
{% trans "Strings" %} |
{% translation_progress object %} |
{{ object.stats.translated_percent|percent_format }} |
{% trans "Translate" %}
|
{{ object.stats.all_words|intcomma }} |
{% trans "Words" %} |
{% words_progress object %} |
{{ object.stats.translated_words_percent|percent_format }} |
{% if object.is_source %}
{% endif %}
{% documentation_icon 'user/translating' 'strings-to-check' right=True %}
{% trans "Strings status" %}
{% if other_translations %}
{% trans "Other components" %}
{% include "snippets/list-objects.html" with objects=other_translations name_source="component_name" label=_("Component") in_panel=True %}
{% endif %}
{% if autoform %}
{% endif %}
{% if replace_form %}
{% endif %}
{% if bulk_state_form %}
{% endif %}
{% if user_can_add_unit %}
{% endif %}
{% if user_can_upload_translation %}
{% endif %}
{% if whiteboard_form %}
{% endif %}
{% if delete_form %}
{% include "trans/delete-form.html" %}
{% endif %}
{% if user_can_see_repository_status %}
{% endif %}
{% trans "Statistics" %}
|
{% trans "Percent" %} |
{% trans "Strings" %} |
{% trans "Words" %} |
{% trans "Chars" %} |
{% trans "Total" %} |
|
{{ object.stats.all|intcomma }} |
{{ object.stats.all_words|intcomma }} |
{{ object.stats.all_chars|intcomma }} |
{% trans "Translated" %} |
{{ object.stats.translated_percent|percent_format }} |
{{ object.stats.translated|intcomma }} |
{{ object.stats.translated_words|intcomma }} |
{{ object.stats.translated_chars|intcomma }} |
{% trans "Needs editing" %} |
{{ object.stats.fuzzy_percent|percent_format }} |
{{ object.stats.fuzzy|intcomma }} |
{{ object.stats.fuzzy_words|intcomma }} |
{{ object.stats.fuzzy_chars|intcomma }} |
|
{% trans "Failing check" %} |
{{ object.stats.allchecks_percent|percent_format }} |
{{ object.stats.allchecks|intcomma }} |
{{ object.stats.allchecks_words|intcomma }} |
{{ object.stats.allchecks_chars|intcomma }} |
|
{% trans "Last activity" %}
{% trans "Last change" %} |
| {{ object.stats.last_changed }} |
{% trans "Last author" %} |
| {{ object.get_last_author }} |
{% include "activity-tab.html" %}
{% endblock %}