{% load i18n %}
{% load permissions %}
{% with object.project as object %}
{% include "project_info.html" %}
{% endwith %}
{% trans "Translation process" %}
{% if object.suggestion_voting and object.suggestion_autoaccept %}
{% trans "Translations can only be done through suggestions." %}
{% blocktrans count count=object.suggestion_autoaccept %}Suggestions with one vote are automatically accepted as translations.{% plural %}Suggestions are automatically accepted as translations once they have {{ count }} votes.{% endblocktrans %}
{% else %}
{% trans "Translations can be made directly." %}
{% if object.enable_suggestions %}
{% trans "Translation suggestions can be made." %}
{% else %}
{% trans "Translation suggestions are turned off." %}
{% endif %}
{% endif %}
{% if object.project.access_control %}
{% trans "Only chosen users can contribute." %}
{% else %}
{% trans "Any authenticated user can contribute." %}
{% endif %}
{% if object.template %}
{% trans "The translation uses monolingual files." %}
{% if object.edit_template %}
{% trans "The translation base language is editable." %}
{% else %}
{% trans "The translation base language can not be edited." %}
{% endif %}
{% else %}
{% trans "The translation uses bilingual files." %}
{% endif %}
{% if object.license %}
{% trans "Translation license" %}
{% if object.license_url %}
{{ object.license }}
{% else %}
{{ object.license }}
{% endif %}
{% include "snippets/license-flag.html" with component=object %}