{% extends "base.html" %} {% load i18n %} {% load translations %} {% block content %} {% if not user.is_authenticated %}

{% if demo_server %} {% blocktrans %}This site runs Weblate demo server.{% endblocktrans %} {% else %} {% blocktrans %}This site runs Weblate for translating the software projects listed below.{% endblocktrans %} {% endif %} {% trans "You need to be logged in for translating, otherwise you can only make suggestions." %}

{% endif %} {% if whiteboard_enabled %} {% for msg in whiteboard_messages %} {% show_message 'info whiteboard' msg.message %} {% endfor %} {% endif %}
{% if user.is_authenticated %}

{% trans "Your translations" %}

{% if usertranslations %} {% with usertranslations as translations and 2 as show_language and user.profile.hide_completed as hide_completed %} {% include "list-translations.html" %} {% endwith %} {% else %}

{% trans "Choose your languages in preferences and you will get an overview here of available translations for those languages." %}

{% endif %}
{% else %}
{% endif %}

{% trans "Projects" %}

{% for prj in projects %} {% with prj.get_translated_percent as percent and prj.get_fuzzy_percent as fuzzy and prj.get_failing_checks_percent as check_percent %} {% endwith %} {% endfor %}
{% trans "Project" %} {% trans "Translated" %}
{{ prj }} {% translation_progress prj %} {{ percent }}%
{% include "legend.html" %}
{% if offer_hosting %} {% endif %}
{% include "activity-tab.html" %}

{% trans "Most active translators" %}

{% for u in top_translations %} {% endfor %}
{% trans "User" %} {% trans "Translated" %}
{{ u.get_user_display_link }} {{ u.translated }}

{% trans "Most active suggesters" %}

{% for u in top_suggestions %} {% endfor %}
{% trans "User" %} {% trans "Suggested" %}
{{ u.get_user_display_link }} {{ u.suggested }}
{% include "last-changes.html" %}
{% endblock %}