{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {% trans "Languages" %}
  • {{ object }}
  • {% endblock %} {% block content %} {% whiteboard_messages language=object %}
    {% include "snippets/list-objects.html" with objects=projects name_template="snippets/list-language-project.html" label=_("Project") language=object global_base="stats" stats_attr="language_stats" %}
    {% for plural in object.plural_set.order %} {% 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 %}