{% extends "base.html" %}
{% load translations %}
{% load permissions %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block breadcrumbs %}
{% trans "Translation status" %}
{% if object.is_template %}
{% trans "This translation is being used as source strings within this component." as msg %}
{% show_message "warning" msg %}
{% endif %}
{% trans "Strings" %}{{ object.stats.all }} |
{% translation_progress object %} |
{{ object.stats.translated_percent }}% |
{% trans "Translate" %}
|
{% trans "Words" %}{{ object.stats.all_words }} |
{% words_progress object %} |
{{ object.stats.translated_words_percent }}% |
{% include "legend.html" %}
{% documentation_icon 'user/translating' 'strings-to-check' right=True %}
{% trans "Strings status" %}
{% if other_translations %}
{% trans "Other components" %}
{% with other_translations as translations %}
{% include "list-translations.html" %}
{% endwith %}
{% include "legend.html" %}
{% 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 %}
{% if review_form %}
{% endif %}
{% trans "Statistics" %}
|
{% trans "Percent" %} |
{% trans "Strings" %} |
{% trans "Words" %} |
{% trans "Total" %} |
|
{{ object.stats.all }} |
{{ object.stats.all_words }} |
{% trans "Translated" %} |
{{ object.stats.translated_percent }}% |
{{ object.stats.translated }} |
{{ object.stats.translated_words }} |
{% trans "Needs editing" %} |
{{ object.stats.fuzzy_percent }}% |
{{ object.stats.fuzzy }} |
|
{% trans "Failing check" %} |
{{ object.stats.allchecks_percent }}% |
{{ object.stats.allchecks }} |
|
{% trans "Last activity" %}
{% trans "Last change" %} |
| {{ object.stats.last_changed }} |
{% trans "Last author" %} |
| {{ object.get_last_author }} |
{% include "activity-tab.html" %}
{% endblock %}