{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {{ unit.translation.subproject.project }}
  • {{ unit.translation.subproject.name }}
  • {{ unit.translation.language }}
  • {% trans "translate" %}
  • {% endblock %} {% block content %}

    {% trans "Translate" %}

    {% trans "First" %} {% trans "Previous" %} {% blocktrans with unit.position as position %}{{ position }} / {{ total }}{% endblocktrans %} {% trans "Next" %} {% trans "Last" %} {% if filter_name %} {% blocktrans %}Current filter: {{ filter_name }} ({{ filter_pos }} / {{ filter_count }}){% endblocktrans %} {% endif %}
    {% csrf_token %} {% if antispam %}
    {{ antispam }}
    {% endif %} {% if secondary %} {% for unit in secondary %} {% endfor %} {% endif %} {% if unit.context %} {% endif %} {% with unit.active_checks as checks %} {% if checks %} {% endif %} {% endwith %} {% with unit.suggestions as suggestions %} {% if suggestions %} {% endif %} {% endwith %} {% if unit.location %} {% endif %} {% if unit.comment %} {% endif %} {% if unit.flags %} {% endif %}
    {{ unit.translation.language }} {{ unit.target|fmttranslation:unit.translation.language }}
    {% trans "Source" %} {{ unit.source|fmttranslation }}
    {% trans "Context" %} {{ unit.context }}
    {% trans "Copy" %}
    {% if unit.is_plural %}{% trans "Translations" %}{% else %}{% trans "Translation" %}{% endif %} {{ form.checksum }} {{ form.target }}
    {{ form.fuzzy }}
    {% trans "Failing checks" %} {% for check in checks %} {% if perms.trans.ignore_check %} {% endif %} {{ check.get_check_display }} {% endfor %}
    {% trans "Suggestions" %} {% for suggestion in suggestions %} {% endfor %}
    {{ suggestion.target|fmttranslation:unit.translation.language }}
    {% if suggestion.user %} {% blocktrans with suggestion.user.get_full_name as user %}Suggested by {{ user }}{% endblocktrans %} {% else %} {% trans "Suggested by anonymous user" %} {% endif %} {% if perms.trans.accept_suggestion or perms.trans.delete_suggestion %}
    {% if perms.trans.accept_suggestion %} {% trans "Accept" %} {% endif %} {% if perms.trans.delete_suggestion %} {% trans "Delete" %} {% endif %}
    {% endif %}
    {% trans "Used in" %} {{ unit.get_location_links }}
    {% trans "Comments" %} {{ unit.comment }}
    {% trans "Flags" %} {{ unit.flags }}
    {% if perms.trans.save_translation %} {% else %} {% url 'django.contrib.auth.views.login' as login_url %} {% with unit.translation.get_translate_url as translate_url %} {% blocktrans %}Log in for saving translations.{% endblocktrans %} {% endwith %} {% endif %}

    {% trans "Translation context" %}

    {% for item in unit.nearby %} {% endfor %}
    {% trans "Source" %}{% trans "Translation" %}{% trans "State" %}
    {{ item.position }} {{ item.source|fmttranslation }} {{ item.target|fmttranslation:unit.translation.language }} {% include "unit-state.html" %}
    {% if changes %} {% for change in changes %} {% endfor %}
    {{ change.user.get_full_name }} {{ change.timestamp|date:"DATETIME_FORMAT" }}
    {% else %}

    {% trans "No recent activity has been recorded." %}

    {% endif %}
    {% include "translation_info.html" %}
    {% endblock %}