{% 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 %}

{% trans "Translations" %}

{% if usertranslations %}
{% with usertranslations as translations and 2 as show_language %} {% include "list-translations.html" %} {% endwith %}
{% endif %}
{% 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 }}
{{ percent }}%
{% if offer_hosting %}

{% blocktrans %}We can host your project as well, if you are interested, please contact us.{% endblocktrans %}

{% endif %}

{% trans "Summaries" %}

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