{% extends "base.html" %} {% load i18n %} {% load weblate %} {% block breadcums %}
  • {{ unit.translation.subproject.project }}
  • {{ unit.translation.subproject.name }}
  • {% trans unit.translation.language.name %}
  • {% trans "translate" %}
  • {% endblock %} {% block content %} {% include "translation_info.html" %}

    {% trans "Translate" %}

    {% blocktrans with unit.position as position %}Showing string {{ position }} out of {{ total }}.{% endblocktrans %} {% trans "First" %} {% trans "Previous" %} {% trans "Next" %} {% trans "Last" %}

    {% csrf_token %} {% with unit.suggestions as suggestions %} {% if suggestions %} {% endif %} {% endwith %} {% if unit.location %} {% endif %}
    {% trans "Source" %} {{ unit.source|fmttranslation }}
    {% trans "Copy" %}
    {% if unit.is_plural %}{% trans "Translations" %}{% else %}{% trans "Translation" %}{% endif %} {{ form.checksum }} {{ form.target }}
    {{ form.fuzzy }}
    {% trans "Suggestions" %} {% for suggestion in suggestions %} {% endfor %}
    {{ suggestion.target|fmttranslation }}
    {% if suggestion.user %} {% blocktrans with suggestion.user.get_full_name as user %}Suggested by {{ user }}{% endblocktrans %} {% else %} {% trans "Suggested by anonymous user" %} {% endif %} {% if user.is_authenticated %} {% endif %}
    {% trans "Used in" %} {{ unit.get_location_links }}
    {% trans "Flags" %} {{ unit.flags }}
    {% if user.is_authenticated %} {% else %} {% blocktrans %}Login for saving translations.{% endblocktrans %} {% endif %}
    {% endblock %}