Fixed typo in i18n docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14451 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
83aeb3c768
commit
05db03c206
|
@ -179,7 +179,7 @@ cardinality of the elements at play.
|
||||||
count = Report.objects.count()
|
count = Report.objects.count()
|
||||||
d = {
|
d = {
|
||||||
'count': count,
|
'count': count,
|
||||||
'name': Report._meta.verbose_name
|
'name': Report._meta.verbose_name,
|
||||||
'plural_name': Report._meta.verbose_name_plural
|
'plural_name': Report._meta.verbose_name_plural
|
||||||
}
|
}
|
||||||
text = ungettext(
|
text = ungettext(
|
||||||
|
|
Loading…
Reference in New Issue