{% extends "rosetta/base.html" %} {% load i18n static %} {% load compress %} {% block header %} {{block.super}}
{% csrf_token %}
{% endblock %} {% block pagetitle %}{{block.super}} - {% trans "Language selection" %}{% endblock %} {% block extra_styles %} {% compress css %} {% endcompress %} {% endblock %} {% block breadcumbs %}
{% trans "Home" %} › {% trans "Language selection" %}
{% if do_session_warn %}

{% trans "Couldn't load the specified language file. This usually happens when using the Encrypted Cookies Session Storage backend on Django 1.4 or higher.
Setting ROSETTA_STORAGE_CLASS = 'rosetta.storage.CacheRosettaStorage' in your settings file should fix this." %}

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

{{ message|linebreaks }}

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

 

{% if has_pos %} {% for lid,language,pos in languages %} {% if pos %}

{{language}}

{% for app,path,po in pos %} {% with forloop.counter0 as new_id %} {% with po.untranslated_entries|length as len_untranslated_entries %} {% endwith %} {% endwith %} {% endfor %}
{% trans "Application" %} {% trans "Progress"%} {% trans "Messages" %} {% trans "Translated" %} {% trans "Fuzzy"%} {% trans "Obsolete"%} {% trans "File" %} {% trans "templates.rosetta.file-list.odstranit.text" %}
{{ app|title }} {{po.percent_translated}}%{{po.translated_entries|length|add:len_untranslated_entries}}{{po.translated_entries|length}} {{po.fuzzy_entries|length}} {{po.obsolete_entries|length}} {{ path }} {% if '_backup_' in path %} {% endif %}
{% endif %} {% endfor %} {% else %}

{% trans "Nothing to translate!" %}

{% trans "You haven't specified any languages in your settings file, or haven't yet generated a batch of translation catalogs." %}

{% blocktrans with "http://docs.djangoproject.com/en/dev/topics/i18n/#topics-i18n" as i18n_doc_link %}Please refer to Django's I18N documentation for a guide on how to set up internationalization for your project.{% endblocktrans %}

{% endif %} {% endblock %}