{% extends "projects/base.html" %} {% load i18n %} {% load txcommontags %} {% load txpagination %} {% load permissions %} {% block extra_head %} {% endblock %} {% block title %} {% with pofile.object as component %} {{ block.super }} | {{ component.project.name }} | {% blocktrans with component.name as component_name %}{{ component_name }}{% endblocktrans %} | {% blocktrans with pofile.filename as filename %}Translate '{{ filename }}'{% endblocktrans %} {% endwith %} {% endblock %} {% block breadcrumb %} {% with pofile.object as component %} {{ block.super }} » {{ component.project.name }} » {{ component.name }} » {% blocktrans with pofile.filename as filename %}Translate '{{ filename }}'{% endblocktrans %} {% endwith %} {% endblock %} {% block content_title %}

{% blocktrans with component.name as component_name and pofile.filename as filename %}Translate '{{ filename }}'{% endblocktrans %}

{% endblock %} {% block content %} {% get_permission "project_perm.submit_file" for request.user and pofile as "can_submit_file" %} {% if pofile.total %}

{% trans "Current status for this page" %}

{% trans "Settings" %}
{% trans "Show occurrences:" %}
{% trans "Show context:" %}
{% trans "Translated" %} {{ pofile.trans }} {{ pofile.trans_perc }}%
{% trans "Fuzzy" %} {{ pofile.fuzzy }} {{ pofile.fuzzy_perc }}%
{% trans "Untranslated" %} {{ pofile.untrans }} {{ pofile.untrans_perc }}%
{% trans "Total" %} {{ pofile.total }}
{% endif %}

{% trans "Live translation" %}

{% if form_message %}

{{ form_message }}

{% endif %} {% blocktrans %}Page {{step}} of {{step_count}}{% endblocktrans %}
{% if WEBTRANS_SUGGESTIONS %} {% endif %} {% include "webtrans/transfile_form.html" %}
{% trans "#" %} {% trans "Source String" %}   {% trans "Translation" %}{% trans "AT" %}{% trans "Occurrences" %} {% trans "Fuzzy?" %}
{% txpaginate '' po_entries step ENTRIES_PER_PAGE 6 paginated_po_entries %} {% include 'pagination.html' %}

{% if perms.projects.submit_file or can_submit_file %} {% endif %}

{% endblock %}