{% extends "base.html" %} {% load translations %} {% load url from future %} {% load i18n %} {% block breadcrumbs %}
{% 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 "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 %} {% endif %}{% trans "Review translations touched by other users." %}
{% endif %}{% 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." %}
{% 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 %}{% 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 }} | ||
{% trans "Last change" %} | {{ object.get_last_change }} | |||
{% trans "Last author" %} | {{ object.get_last_author }} |