diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 3b650f1..2216b6e 100644
a
|
b
|
Example::
|
1794 | 1794 | |
1795 | 1795 | You have {{ num_cherries }} cherr{{ num_cherries|pluralize:"y,ies" }}. |
1796 | 1796 | |
| 1797 | .. note:: Use :ttag:`blocktrans` to pluralize translated strings. |
| 1798 | |
1797 | 1799 | .. templatefilter:: pprint |
1798 | 1800 | |
1799 | 1801 | pprint |
diff --git a/docs/topics/i18n/internationalization.txt b/docs/topics/i18n/internationalization.txt
index d4c436e..13796e4 100644
a
|
b
|
It's not possible to mix a template variable inside a string within ``{% trans
|
467 | 467 | %}``. If your translations require strings with variables (placeholders), use |
468 | 468 | ``{% blocktrans %}`` instead. |
469 | 469 | |
| 470 | .. templatetag:: blocktrans |
| 471 | |
470 | 472 | ``blocktrans`` template tag |
471 | 473 | --------------------------- |
472 | 474 | |