{% extends "base.html" %} {% load i18n %} {% load static %} {% load translations %} {% load humanize %} {% block breadcrumbs_container %} {% endblock %} {% block content %}
{% blocktrans count count=full_stats.source_strings context "Label on engage page" %}String{% plural %}Strings{% endblocktrans %}
{% blocktrans count count=full_stats.languages context "Label on engage page" %}Language{% plural %}Languages{% endblocktrans %}
{% trans "Translated" %}
{% if language %} {% blocktrans count cnt=total with count=total|intcomma %}The translation project for {{ project }} currently contains {{ count }} string for translation and is {{ percent }}% complete.{% plural %}The translation project for {{ project }} currently contains {{ count }} strings for translation and is {{ percent }}% complete.{% endblocktrans %} {% else %} {% comment %}This is split into sentences to allow proper localization of plurals.{% endcomment %} {% blocktrans count cnt=total with count=total|intcomma %}The translation project for {{ project }} currently contains {{ count }} string for translation.{% plural %}The translation project for {{ project }} currently contains {{ count }} strings for translation.{% endblocktrans %} {% blocktrans count cnt=languages with count=languages|intcomma %}It is being translated into {{ count }} language.{% plural %}It is being translated into {{ count }} languages.{% endblocktrans %} {% blocktrans %}Overall, these translations are {{ percent }}% complete.{% endblocktrans %} {% endif %} {% blocktrans %}If you would like to contribute to translation of {{ project }}, you need to register on this server.{% endblocktrans %} {% if object.access_control %} {% trans "This translation is open only to a limited group of translators, if you want to contribute please get in touch with the project maintainers." %} {% endif %} {% if not user.is_authenticated %} {% blocktrans %}Once you have activated your account, proceed to the translation section.{% endblocktrans %} {% endif %}