From d3c60936451592f1c1849a16b6d325e2f5619917 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 5 Oct 2008 06:17:29 +0000 Subject: [PATCH] Fixed #9300 -- Typo fix in docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9131 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/i18n.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/i18n.txt b/docs/topics/i18n.txt index 9a5cd124dce..b2a181e5b8b 100644 --- a/docs/topics/i18n.txt +++ b/docs/topics/i18n.txt @@ -131,7 +131,7 @@ The strings you pass to ``_()`` or ``ugettext()`` can take placeholders, specified with Python's standard named-string interpolation syntax. Example:: def my_view(request, m, d): - output = _('Today is %(month)s, %s(day)s.') % {'month': m, 'day': d} + output = _('Today is %(month)s, %(day)s.') % {'month': m, 'day': d} return HttpResponse(output) This technique lets language-specific translations reorder the placeholder