From e19edfbea0801e5217e2b1c97317008975b0f3b2 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sun, 4 Dec 2005 18:12:16 +0000 Subject: [PATCH] fixed a small bug in the positional interpol sample in i18n.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1540 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 6d6c939776..b137ddc74e 100644 --- a/docs/i18n.txt +++ b/docs/i18n.txt @@ -619,7 +619,7 @@ There even is a ``ngettext`` interface and a string interpolation function:: The ``interpolate`` function both supports positional interpolation and named interpolation. So the above could have been written as:: - s = interpolate(ngettext('this is %s object', 'this are %s objects', 11), 11); + s = interpolate(ngettext('this is %s object', 'this are %s objects', 11), [11]); The interpolation syntax is borrowed from Python. You shouldn't go over the top with string interpolation, though: this is still JavaScript, so the code will have to do