Skip to content

Commit 5b97a9f

Browse files
committed
Missing pluralization
1 parent 725da2c commit 5b97a9f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

readthedocs/templates/notifications/send_notification_form.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ <h3>{% trans 'Send Email' %}</h3>
1818
{% with extra_recipients=recipients|slice:"20:" %}
1919
{% if extra_recipients|length > 0 %}
2020
<li>
21-
{% blocktrans with count=extra_recipients|length %}
22-
And {{ count }} other recipients...
21+
{% blocktrans count counter=extra_recipients|length %}
22+
And 1 other recipient.
23+
{% plural %}
24+
And {{ counter }} other recipients...
2325
{% endblocktrans %}
2426
</li>
2527
{% endif %}

0 commit comments

Comments
 (0)