{% extends "base.html" %}
{% load i18n %}
{% block breadcrumbs %}
{% trans "Statistics" %}
{% endblock %}
{% block content %}
{% trans "Most active translators" %}
| {% trans "User" %} |
{% trans "Translated" %} |
{% for u in top_translations %}
| {{ u.get_user_display_link }} |
{{ u.translated }} |
{% endfor %}
{% trans "Most active suggesters" %}
| {% trans "User" %} |
{% trans "Suggested" %} |
{% for u in top_suggestions %}
| {{ u.get_user_display_link }} |
{{ u.suggested }} |
{% endfor %}
{% trans "Statistics" %}
| {% trans "Strings to translate" %} |
{{ total_strings }} |
| {% trans "Units to translate" %} |
{{ total_units }} |
| {% trans "Words to translate" %} |
{{ total_words }} |
| {% trans "Used languages" %} |
{{ total_languages }} |
| {% trans "Registered users" %} |
{{ total_users }} |
| {% trans "Suggestions made" %} |
{{ total_suggestions }} |
| {% trans "Translations made" %} |
{{ total_translations }} |
| {% trans "Failing checks found" %} |
{{ total_checks }} |
| {% trans "Ignored checks" %} |
{{ ignored_checks }} |
{% endblock %}