{% load humanize i18n %}

{% autoescape off %}
{% if changes|length == 1 %}
{% blocktranslate count cnt=total_count with count=total_count|intcomma component=changes.0.component %}{{ count }} pending suggestion in {{ component }}{% plural %}{{ count }} pending suggestions in {{ component }}{% endblocktranslate %}
{% else %}
{% blocktranslate count cnt=total_count with count=total_count|intcomma %}{{ count }} pending suggestion{% plural %}{{ count }} pending suggestions{% endblocktranslate %}
{% endif %}
{% endautoescape %}
