{% extends "base.html" %} {% load i18n %} {% load permissions %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {{ object.project }}
  • {{ object.name }}
  • {% endblock %} {% block content %} {% whiteboard_messages subproject=object %} {% can_see_repository_status user object.project as user_can_see_repository_status %} {% can_commit_translation user object.project as user_can_commit_translation %} {% can_manage_acl user object.project as user_can_manage_acl %} {% can_view_reports user object.project as user_can_view_reports %} {% can_add_translation user object.project as user_can_add_translation %} {% can_edit_subproject user object.project as user_can_edit_subproject %} {% include "show-lock.html" %}
    {% include "list-translations.html" %}
    {% include "subproject_info.html" %}
    {% if object.can_add_language and user_can_add_translation %}
    {% csrf_token %}

    {% trans "Start new translation" %}

    {% if object.new_lang == 'url' %}

    {% blocktrans with object.project.instructions as url %}Should your language be missing, please follow translator instructions.{% endblocktrans %}

    {% else %}

    {% trans "Please choose the language into which you would like to translate." %}

    {% if object.new_lang == 'contact' %}

    {% trans "Project maintainers will get notified about this request and will add the language manually." %}

    {% endif %} {{ new_lang_form|crispy }}

    {% trans "Can't find your language in the list above?" %}

    {% endif %}
    {% include "last-changes-content.html" %} {% trans "Browse all component changes" %}
    {% include "activity-tab.html" %} {% if user_can_see_repository_status %}

    {% trans "Loading…" %}

    {% endif %} {% if user_can_view_reports %}

    {% doc_url 'devel/reporting' 'credits' as settings_doc_url %} {% trans "Credits" %}

    {% trans "Credits list all translators who have contributed to this component in a given time period. It can be useful for including in your documentation or application to thank translators." %}

    {% csrf_token %} {{ reports_form|crispy }}

    {% doc_url 'devel/reporting' 'stats' as settings_doc_url %} {% trans "Contributor stats" %}

    {% trans "Reports number of strings and words translated by each translator." %}

    {% csrf_token %} {{ reports_form|crispy }}
    {% endif %} {% if user_can_edit_subproject %}
    {% csrf_token %}
    {% doc_url 'admin/projects' 'subproject' as settings_doc_url %}

    {% trans "Settings" %}

    {% crispy settings_form %}
    {% endif %} {% endblock %}