{% extends "base.html" %} {% load translations %} {% load url from future %} {% load i18n %} {% block breadcrumbs %}
  • {{ object.subproject.project }}
  • {{ object.subproject.name }}
  • {{ object.language }}
  • {% endblock %} {% block content %} {% include "show-lock.html" %}

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

    {% url 'download_translation' project=object.subproject.project.slug subproject=object.subproject.slug lang=object.language.code as download_url %}

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

    {% if object.supports_language_pack %} {% url 'download_language_pack' project=object.subproject.project.slug subproject=object.subproject.slug lang=object.language.code as pack_download_url %}

    {% blocktrans %}You can also download compiled file to use within the application.{% endblocktrans %}

    {% endif %} {% 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 "History" %}

    {% 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, to fix inconsistent translations or to translate new subproject using translation memory." %}

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

    {% trans "Lock expires:" %} {{ object.lock_time|naturaltime }}

    {% 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 'widgets' project=object.subproject.project.slug as widgets_url %} {% url 'data_project' project=object.subproject.project.slug as data_url %} {% include 'share.html' %}
    {% trans "Percent" %} {% trans "Strings" %} {% trans "Words" %}
    {% trans "Total" %} {{ object.total }} {{ object.total_words }}
    {% trans "Translated" %} {{ object.get_translated_percent }}% {{ object.translated }} {{ object.translated_words }}
    {% trans "Fuzzy" %} {{ object.get_fuzzy_percent }}% {{ object.fuzzy }}
    {% trans "Failing check" %} {{ object.get_failing_checks_percent }}% {{ object.failing_checks }}
    {% endblock %}