{% extends "base.html" %} {% load i18n %} {% load permissions %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {{ object.project }}
  • {% include "snippets/component-breadcrumb.html" %} {% endblock %} {% block content %} {% perm 'translation.add' object as user_can_add_translation %} {% perm 'translation.add_more' object as user_can_add_more_translation %} {% if user_can_add_translation %}
    {% csrf_token %}

    {% trans "Start new translation" %}

    {% if object.new_lang == 'url' and not can_add %}

    {% trans "Information on how to start translating into another language is to be found in the translator instructions." %}

    {% else %}

    {% trans "Please choose the language you want to translate to." %}

    {% if object.new_lang == 'contact' and not can_add %}

    {% trans "Project maintainers are notified of this request, which prompts them to add the language manually." %}

    {% endif %} {{ form|crispy }} {% if user_can_add_more_translation %}

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

    {% else %}

    {% trans "This list includes only basic languages. Please contact project maintainers for adding another one." %}

    {% endif %}
    {% endif %} {% endblock %}