{% load i18n %}
{% load permissions %}
{% perm 'vcs.view' object as user_can_see_git_repository %}
{% with object.project as object %}
{% include "project_info.html" %}
{% endwith %}
{% trans "Translation process" %}
{% if object.suggestion_voting and object.suggestion_autoaccept %}
{% trans "Translations can be made only through suggesting." %}
{% blocktrans count count=object.suggestion_autoaccept %}Suggestions are automatically accepted as translations once they have {{ count }} vote.{% 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 "Suggestions to improve translation can be made." %}
{% else %}
{% trans "Suggestions to improve translation are disabled." %}
{% endif %}
{% endif %}
{% if object.project.access_control %}
{% trans "Only selected users can contribute." %}
{% else %}
{% trans "Any authenticated user can contribute." %}