{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
{% block content %}
{% if not user.is_authenticated %}
{% blocktrans %}This site runs Weblate for translating the software projects listed below. You need to be logged in for translating, otherwise you can only make suggestions.{% endblocktrans %}
{% endif %}
{% if usertranslations %}
{% trans "Your translations" %}
{% with usertranslations as translations %}
{% include "list-translations.html" %}
{% endwith %}
{% endif %}
{% trans "Projects" %}
{% trans "Project" %} |
{% trans "Translated" %} |
{% for prj in projects %}
{% with prj.get_translated_percent as percent %}
{{ prj.name }} |
|
{{ percent }}% |
{% endwith %}
{% endfor %}
{% trans "Summaries" %}
{% trans "Recent changes" %}
{% include "last-changes.html" %}
{% trans "Most active translators" %}
{% trans "User" %} |
{% trans "Translated" %} |
{% for u in top_translations %}
{{ u.user.get_full_name }} |
{{ u.translated }} |
{% endfor %}
{% trans "Most active suggesters" %}
{% trans "User" %} |
{% trans "Suggested" %} |
{% for u in top_suggestions %}
{{ u.user.get_full_name }} |
{{ u.suggested }} |
{% endfor %}
{% trans "Others" %}
{% endblock %}