{% extends "base.html" %} {% load i18n %} {% load permissions %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {{ object.project }}
  • {{ object.name }}
  • {% endblock %} {% block content %} {% can_see_repository_status user object.project as user_can_see_repository_status %} {% can_commit_translation user object.project as user_can_commit_translation %} {% include "show-lock.html" %}

    {% trans "Translations" %}

    {% include "list-translations.html" %}

    {% trans "Project Information" %}

    {% include "subproject_info.html" %}
    {% if object.can_add_language and user.is_authenticated %}
    {% csrf_token %}

    {% trans "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.html" %}
    {% include "activity-tab.html" %} {% if user_can_see_repository_status %}

    {% trans "Loading…" %}

    {% endif %}
    {% endblock %}