mirror of https://github.com/django/django.git
9 lines
369 B
Plaintext
9 lines
369 B
Plaintext
{% load i18n %}
|
|
{% comment %}
|
|
This file has a literal with plural forms. When processed first, makemessages
|
|
shouldn't create a .po file with duplicate `Plural-Forms` headers
|
|
{% endcomment %}
|
|
{% blocktranslate count number=3 %}{{ number }} Bar{% plural %}{{ number }} Bars{% endblocktranslate %}
|
|
|
|
{% translate 'First `translate`, then `blocktranslate` with a plural' %}
|