{% extends "rosetta/base.html" %} {% block breadcrumbs %}
{{ _("Home") }} › {{ _("Language selection") }}
{% if do_session_warn %}

{{ _("Couldn't load the specified language file. This usually happens when using the Encrypted Cookies Session Storage backend.") }}

{% endif %} {% endblock %} {% block main %} {% if has_pos %} {% for lid, language, pos in languages %} {% if pos %}

{{ language }}

{% for app, path, po in pos %} {% endfor %}
{{ _("Application") }} {{ _("Progress") }} {{ _("Messages") }} {{ _("Translated") }} {{ _("Fuzzy") }} {{ _("Obsolete") }} {{ _("File") }}
{{ app|title }} {{ po.percent_translated() }}% {{ po.translated_entries()|length + po.untranslated_entries()|length }} {{ po.translated_entries()|length }} {{ po.fuzzy_entries()|length }} {{ po.obsolete_entries()|length }} {{ path }}
{% endif %} {% endfor %} {% else %}

{{ _("Nothing to translate!") }}

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

{{ _("Please refer to the internationalization documentation for a guide on how to set up translations.") }}

{% endif %} {% endblock %}