{% extends "rosetta/base.html" %}{% load static %} {% load rosetta i18n %} {% block header %} {{ block.super }}

{% trans "Pick another file" %} / {% trans "Download this catalog" %}

{% endblock %} {% block pagetitle %}{{ block.super }} - {{ rosetta_settings.MESSAGES_SOURCE_LANGUAGE_NAME }} - {{ rosetta_i18n_lang_name }} ({{ rosetta_i18n_pofile.percent_translated }}%){% endblock %} {% block breadcumbs %}
{% trans "Home" %} › {{ rosetta_i18n_lang_name }} › {{ rosetta_i18n_app|title }} › {% blocktrans with rosetta_i18n_pofile.percent_translated as percent_translated %}Progress: {{ percent_translated }}%{% endblocktrans %}
{% if not rosetta_i18n_write %}

{% trans "File is read-only: download the file when done editing!" %}

{% endif %} {% if messages %}
{% for message in messages %}

{{ message|linebreaks }}

{% endfor %}
{% endif %} {% endblock %} {% block main %}

{% blocktrans %}Translate into {{ rosetta_i18n_lang_name }}{% endblocktrans %}

{% if rosetta_settings.ENABLE_REFLANG %}
{% endif %}
{% csrf_token %} {% if main_language %}{% endif %} {% if rosetta_settings.SHOW_OCCURRENCES %}{% endif %} {% for message in rosetta_messages %} {% if message.msgid_plural %} {% else %} {% if main_language %}{% endif %} {% endif %} {% if rosetta_settings.SHOW_OCCURRENCES %} {% endif %} {% endfor %}
{% trans "Original" %}
{{ main_language }}{{ rosetta_i18n_lang_name }} {% trans "Fuzzy" %}{% trans "Occurrences(s)" %}
{{ message.msgid|format_message|linebreaksbr }} {{ message.msgid_plural|format_message|linebreaksbr }}
{% for k, msgstr in message.msgstr_plural.items %} {% if rosetta_settings.ENABLE_TRANSLATION_SUGGESTIONS %}{% trans "suggest" %}{% endif %} {% endfor %} {% if rosetta_settings.ENABLE_REFLANG %} {{ message.ref_txt|format_message|linebreaksbr }} {% else %} {{ message.msgid|format_message|linebreaksbr }} {% endif %} {{ message.main_lang|format_message|linebreaksbr }} {% if rosetta_settings.ENABLE_TRANSLATION_SUGGESTIONS %}{% trans "suggest" %}{% endif %} {% for fn,lineno in message.occurrences %} {{ fn }}{% if lineno %}:{{ lineno }}{% endif %} {% endfor %} {% if message.occurrences|length|gt:"3" %} … ({% blocktrans count message.occurrences|length|minus:"3" as more_count %}{{ more_count }} more{% plural %}{{ more_count }} more{% endblocktrans %}) {% endif %} {% if message.msgctxt or message.comment %} {% trans "Context hint" %}: {% if message.msgctxt %} {{ message.msgctxt|safe }} {% endif %} {% if message.msgctxt and message.comment %}
{% endif %} {% if message.comment %} {{ message.comment|safe }} {% endif %}
{% endif %}

{% if query %} {% endif %} {% if needs_pagination %} {% trans "Skip to page:" %} {% for i in page_range %} {% if i == '...' %} {{ i }} {% else %} {% if i == page %} {{ i }} {% else %} {{ i }} {% endif %} {% endif %} {% endfor %} {% else %} {% trans "Displaying:" %} {% endif %} {% with paginator.object_list|length as hits %} {% blocktrans count rosetta_i18n_pofile|length as message_number %}{{ hits }}/{{ message_number }} message{% plural %}{{ hits }}/{{ message_number }} messages{% endblocktrans %} {% endwith %}

{% endblock %}