{% extends "base.html" %} {% load i18n %} {% load static %} {% load translations %} {% load humanize %} {% block breadcrumbs_container %} {% endblock %} {% block content %}

{% blocktrans %}Get involved in {{ project }}{% endblocktrans %}

{% trans "Hello and thank you for your interest" %} — {% blocktrans with project=project_link %}{{ project }} is being translated using {{ weblate_name_link }}, a web tool designed to ease translating for both developers and translators.{% endblocktrans %}

{{ full_stats.source_strings|intcomma }}

{% blocktrans count count=full_stats.source_strings context "Label on engage page" %}String{% plural %}Strings{% endblocktrans %}

{{ full_stats.languages|intcomma }}

{% blocktrans count count=full_stats.languages context "Label on engage page" %}Language{% plural %}Languages{% endblocktrans %}

{% blocktrans with translated=full_stats.translated_percent|intcomma context "Translated percents" %}{{percent}}%{% 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 %}

{% if not user.is_authenticated %} {% trans "Register" %} {% endif %} {% if language %} {% trans "Translate" context "Call to action on engage page" %} {% elif guessed_language %} {% trans "Translate" context "Call to action on engage page" %} {% endif %} {% trans "View project languages" %}

{% endblock %}