{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block breadcums %}
  • {{ object.subproject.project }}
  • {{ object.subproject.name }}
  • {{ object.language }}
  • {% endblock %} {% block content %}

    {% trans "Project Information" %}

    {% include "translation_info.html" %} {% with object.get_translation_checks as checks%} {% if checks %}

    {% trans "Strings to check" %}

    {% endif %} {% endwith %}

    {% trans "Tools" %}

    {% with object.get_download_url as download_url %}

    {% blocktrans %}You can download file for offline translation.{% endblocktrans %}

    {% endwith %}
    {% if perms.trans.upload_translation %}
    {% if perms.trans.overwrite_translation %}

    {% trans "Uploaded file will be merged with current translation. In case you want to overwrite already translated strings, don't forget to enable it." %}

    {% else %}

    {% trans "Uploaded file will be merged with current translation." %}

    {% endif %}
    {% csrf_token %} {{ form.as_table }}

    {% endif %}
    {% include "last-changes.html" %}
    {% if review_form %}

    {% trans "Review translations touched by other users." %}

    {{ review_form.as_table }}

    {% endif %} {% if autoform %}

    {% trans "Automatic translation takes existing translations in this project and applies it to the current subproject. It can be used to push translations to a different branch or to fix inconsistent translations." %}

    {% csrf_token %} {{ autoform.as_table }}

    {% endif %}
    {% endblock %}