{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {% trans "Languages" %}
  • {{ object }}
  • {% endblock %} {% block content %} {% whiteboard_messages language=object %}
    {% for prj in projects %} {% endfor %}
    {% trans "Project" %} {% trans "Translated" %} {% trans "Words" %}
    {{ prj }} {% translation_progress prj.language_stats %} {{ prj.language_stats.translated_percent }}% {% words_progress prj.language_stats %} {{ prj.language_stats.translated_words_percent }}%
    {% for plural in object.plural_set.all %} {% if plural.number > 1 %} {% for item in plural.list_plurals %} {% if item.index > 1 %} {% endif %} {% endfor %} {% endif %} {% endfor %}
    {% trans "Language code" %} {{ object.code }}
    {% trans "Text direction" %} {{ object.get_direction_display }}
    {{ plural.translation_set.count }} {% blocktrans with source_description=plural.get_source_display %}Plural: {{ source_description }}{% endblocktrans %}
    {% trans "Number of plurals" %} {{ plural.number }}
    {% trans "Plural type" %} {{ plural.get_type_display }}
    {% trans "Plurals" %}
    {{ item.name }} {{ item.examples }}
    {% trans "Plural equation" %} {{ plural.equation }}
    {% include "last-changes-content.html" %} {% trans "Browse all language changes" %}
    {% include "activity-tab.html" %}
    {% if dicts %}
    {% for dict in dicts %} {{ dict }} {% endfor %}
    {% else %} {% trans "There are no glossaries defined for this language." as msg %} {% show_message "info" msg %} {% endif %}
    {% endblock %}