{% load i18n %} {% load humanize %} {% load translations %} {% load urlformat %} {% load permissions %}
{% trans "Language code" %} | {% if user_can_edit_language %} {% trans "Edit" %} {% endif %} {{ language.code }} | |
---|---|---|
{% trans "Aliased language codes" %} | {{ aliases|join:", " }} | |
{% trans "Text direction" %} | {{ language.get_direction_display }} | |
{% trans "Number of speakers" %} | {{ language.population|intcomma }} | |
{% if user_can_edit_language %} {% trans "Edit" %} {% endif %} {% blocktrans with source_description=plural.get_source_display %}Plural: {{ source_description }}{% endblocktrans %} {% blocktrans count count=plural.translation_set.count %}{{ count }} translation{% plural %}{{ count }} translations{% endblocktrans %} | ||
{% trans "Number of plurals" %} | {{ plural.number }} | |
{% trans "Plural type" %} | {{ plural.get_type_display }} | |
{% trans "Plurals" %} | {% if plural.number > 1 %} {% for item in plural.list_plurals %} {% if item.index > 1 %}||
{{ item.name }} | {{ item.examples }} | {% endif %} |
{% trans "Plural formula" %} | {{ plural.formula }} |
|
{% trans "Project website" %} | {{ project.web | urlformat }} | |
{% trans "Instructions for translators" %} | {{ project.instructions|markdown }} | |
{% trans "Billing" %} | {% for billing in project.billings %} {% include "billing/state-snippet.html" with object=billing %} {% endfor %} | |
{% trans "Project maintainers" %} | {% for admin in project.all_admins %} {{ admin.profile.get_user_display_link }} {% endfor %} | |
{% trans "Translation license" %} | {% for dummy, items in license_list %} {{ items.0.license_badge }} {% for component in items %} {{ component.name }} {% endfor %} {% endfor %} | |
{%if forloop.first%}{% trans "Automatic component list assignment" %}{% endif %} | project ~= {{ auto.project_match }}, component ~= {{ auto.component_match }} |
|
{% trans "Translation process" %} |
|
{% if component.license %}
|
{% trans "Translation license" %} | {% if component.license_url %} {{ component.get_license_display }} {% else %} {{ component.get_license_display }} {% endif %} | |
{% trans "Contributor agreement" %} | {% if user.is_authenticated %} {% trans "View" %} {% endif %} {{ component.agreement|markdown }} | |
{% trans "File mask" %} | {{ component.filemask }} |
|
{% trans "Monolingual base language file" %} | {{ component.template }} |
|
{% trans "Translation file" %} |
{% if translation.filename %}
{% trans "Download" %}
{{ translation.filename }}
{% else %}
{% trans "Not available" %}
{% endif %}
|
|
{% trans "Last change" %} | {{ stats.last_changed }} | |
{% trans "Last author" %} | {{ translation.get_last_author }} |
{{ forloop.counter }}. | {{ u.get_user_display_link }} |
|
{{ u.translated|intcomma }} |
{% trans "Strings percent" %} | {% trans "Hosted strings" context "Number of hosted strings" %} | {% trans "Words percent" %} | {% trans "Hosted words" context "Number of hosted words" %} | {% trans "Characters percent" %} | {% trans "Hosted characters" context "Number of hosted characters" %} | |
---|---|---|---|---|---|---|
{% trans "Total" context "Number of strings" %} | {{ stats.all|intcomma }} | {{ stats.all_words|intcomma }} | {{ stats.all_chars|intcomma }} | |||
{% trans "Source" context "Number of strings" %} | {{ stats.source_strings|intcomma }} | {{ stats.source_words|intcomma }} | {{ stats.source_chars|intcomma }} | |||
{% trans "Approved" context "Number of strings" %} | {{ stats.approved_percent|percent_format }} | {{ stats.approved|intcomma }} | {{ stats.approved_words_percent|percent_format }} | {{ stats.approved_words|intcomma }} | {{ stats.approved_chars_percent|percent_format }} | {{ stats.approved_chars|intcomma }} |
{% trans "Waiting for review" context "Number of strings" %} | {{ stats.waiting_review_percent|percent_format }} | {{ stats.waiting_review|intcomma }} | {{ stats.waiting_review_words_percent|percent_format }} | {{ stats.waiting_review_words|intcomma }} | {{ stats.waiting_review_chars_percent|percent_format }} | {{ stats.waiting_review_chars|intcomma }} |
{% trans "Translated" context "Number of strings" %} | {{ stats.translated_percent|percent_format }} | {{ stats.translated|intcomma }} | {{ stats.translated_words_percent|percent_format }} | {{ stats.translated_words|intcomma }} | {{ stats.translated_chars_percent|percent_format }} | {{ stats.translated_chars|intcomma }} |
{% trans "Needs editing" context "Number of strings" %} | {{ stats.fuzzy_percent|percent_format }} | {{ stats.fuzzy|intcomma }} | {{ stats.fuzzy_words_percent|percent_format }} | {{ stats.fuzzy_words|intcomma }} | {{ stats.fuzzy_chars_percent|percent_format }} | {{ stats.fuzzy_chars|intcomma }} |
{% trans "Read-only" context "Number of strings" %} | {{ stats.readonly_percent|percent_format }} | {{ stats.readonly|intcomma }} | {{ stats.readonly_words_percent|percent_format }} | {{ stats.readonly_words|intcomma }} | {{ stats.readonly_chars_percent|percent_format }} | {{ stats.readonly_chars|intcomma }} |
{% trans "Failing checks" context "Number of strings" %} | {{ stats.allchecks_percent|percent_format }} | {{ stats.allchecks|intcomma }} | {{ stats.allchecks_words_percent|percent_format }} | {{ stats.allchecks_words|intcomma }} | {{ stats.allchecks_chars_percent|percent_format }} | {{ stats.allchecks_chars|intcomma }} |
{% trans "Strings with suggestions" context "Number of strings" %} | {{ stats.suggestions_percent|percent_format }} | {{ stats.suggestions|intcomma }} | {{ stats.suggestions_words_percent|percent_format }} | {{ stats.suggestions_words|intcomma }} | {{ stats.suggestions_chars_percent|percent_format }} | {{ stats.suggestions_chars|intcomma }} |
{% trans "Untranslated strings" context "Number of strings" %} | {{ stats.nottranslated_percent|percent_format }} | {{ stats.nottranslated|intcomma }} | {{ stats.nottranslated_words_percent|percent_format }} | {{ stats.nottranslated_words|intcomma }} | {{ stats.nottranslated_chars_percent|percent_format }} | {{ stats.nottranslated_chars|intcomma }} |