{% load i18n %}
{% load permissions %}
{% include "project_info.html" with object=object.project %}
{% 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." %}