{% trans "This project is not using Translation Teams" %}
{% url team_list project.outsource.slug as outsource_url %}
{% if outsource_url %}
{% blocktrans with project.outsource.name as outsource_project %}
This project does not maintain its own teams, but has chosen to re-use the teams of project '{{ outsource_project }}'.
In order to send translations here you'll need to join a team of '{{ outsource_project }}'.
{% endblocktrans %}
{% else %}
{% blocktrans %}
This project allows translation submission from anyone, and thus no translation teams exist.
{% endblocktrans %}
{% endif %}