{% load i18n %} {% if not list.subscribers_count %}

{% trans "No subscribers" %}

{% else %}

{% blocktrans count list.subscribers_count as counter %}{{ counter }} subscriber{% plural %}{{ counter }} subscribers{% endblocktrans %}

{% endif %} {% if inbox_count or imap_count or both_count %}
{% if inbox_count %} {{ inbox_count }} {% trans "in inbox" %}{% if imap_count or both_count or separate_count %},{% endif %} {% endif %} {% if imap_count %} {{ imap_count }} {% trans "in imap folder" %}{% if both_count or separate_count %},{% endif %} {% endif %} {% if both_count %} {{ both_count }} {% trans "in inbox and imap folder" %}{% if separate_count %},{% endif %} {% endif %} {% if separate_count %} {{ separate_count }} {% trans "in a separate folder" %} {% endif %}
{% endif %}