{% extends "base.html" %} {% load i18n %} {% load permissions %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {{ object.project }}
  • {{ object.name }}
  • {% endblock %} {% block content %} {% perm 'translation.add' object as user_can_add_translation %} {% if object.can_add_language and 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 }}

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

    {% endif %} {% endblock %}