{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load static %} {% 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 %} {% include "unit-details.html" %} {% 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.translation.language.direction == "rtl" %}
    {% endif %}
    {% if unit.is_plural %}{% trans "Translations" %}{% else %}{% trans "Translation" %}{% endif %} {{ form.checksum }} {{ form.target }}
    {{ form.fuzzy }} {% trans "Special characters:" %}
    {% trans "Failing checks" %} {% include "list-checks.html" %}
    {% 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 "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.timestamp|date:"DATETIME_FORMAT" }} {{ change.get_user_display }} {{ change.get_action_display }}
    {% else %}

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

    {% endif %}

    {% trans "You can share comments about this translation with other translators." %}

    {% with unit.get_comments as comments %} {% include "list-comments.html" %} {% endwith %}
    {% trans "New comment" %} {% if perms.trans.add_comment %}
    {% csrf_token %} {{ comment_form.comment }}
    {% else %} {% trans "You are not allowed to add comments." %} {% endif %}
    {% with unit.active_source_checks as checks %} {% if checks %}

    {% trans "Failing checks" %}

    {% include "list-checks.html" %} {% endif %} {% endwith %}

    {% trans "User comments" %}

    {% trans "You can share comments about source string for this translation with other translators and developers." %}

    {% with unit.get_source_comments as comments %} {% include "list-comments.html" %} {% endwith %}
    {% trans "New comment" %} {% if perms.trans.add_comment %}
    {% csrf_token %} {{ comment_form.comment }}
    {% else %} {% trans "You are not allowed to add comments." %} {% endif %}
    {% include "translation_info.html" %}
    {% endblock %}