{% load i18n %}
{% if user.is_anonymous %}
{% trans "Sign in to start thread" %}
{% elif forum.is_closed and not forum.acl.can_close_threads %}
{% trans "This forum is closed." %}
{% elif forum.acl.can_start_threads %}
{% else %}
{% trans "Can't start threads" %}
{% endif %}