{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block breadcrumbs %}
  • {{ 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" %}

    {% trans "Download" %}

    {% with object.get_download_url as download_url %}

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

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

    {% trans "Upload" %}

    {% 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 %}

    {% trans "Recent changes" %}

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

    {% trans "Review" %}

    {% 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 %}

    {% trans "Locking the translation will prevent others to work on translation." %}

    {% if object.is_user_locked %}

    {% trans "Locked by:" %} {{ object.lock_user.get_full_name }}

    {% trans "Lock valid till:" %} {{ object.lock_time|date:"DATETIME_FORMAT" }}

    {% else %}

    {% trans "Translation is currently not locked." %}

    {% endif %} {% if perms.trans.lock_translation %} {% if object.lock_user == request.user %} {% trans "Unlock" %} {% elif not object.is_user_locked %} {% trans "Lock" %} {% endif %} {% endif %}
    {% url 'weblate.trans.widgets.widgets' project=object.subproject.project.slug as widgets_url %} {% include 'promote.html' %}
    {% endblock %}