From e5c40514fb6b19b06872fba72237a7f44e64303f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 24 Jul 2006 02:52:52 +0000 Subject: [PATCH] Fixed typo in docs/i18n.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@3439 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/i18n.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/i18n.txt b/docs/i18n.txt index da6983dd59..e12900c2f9 100644 --- a/docs/i18n.txt +++ b/docs/i18n.txt @@ -235,7 +235,7 @@ To pluralize, specify both the singular and plural forms with the ``{% plural %}`` tag, which appears within ``{% blocktrans %}`` and ``{% endblocktrans %}``. Example:: - {% blocktrans count list|counted as counter %} + {% blocktrans count list|count as counter %} There is only one {{ name }} object. {% plural %} There are {{ counter }} {{ name }} objects.