summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Kestenholz <mk@feinheit.ch>2020-12-08 12:09:59 +0100
committerCarlton Gibson <carlton.gibson@noumenal.es>2020-12-08 12:13:01 +0100
commitce7f8c2eada40950796cb20c88c36f568052f070 (patch)
tree9b777ff18ec807b33f15f9c30e3ab46f7fe0c2c7
parentd3e3d63bb16d5f4e6e86face63f051180ce30248 (diff)
[3.1.x] Adjusted formatting of ngettext docs code examples.
Backport of 62f477d1712575f831e96e6868ed1d96030601be from master
-rw-r--r--docs/topics/i18n/translation.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
index df1274c436..a354a2c6d3 100644
--- a/docs/topics/i18n/translation.txt
+++ b/docs/topics/i18n/translation.txt
@@ -204,7 +204,8 @@ For example::
page = ngettext(
'there is %(count)d object',
'there are %(count)d objects',
- count) % {
+ count,
+ ) % {
'count': count,
}
return HttpResponse(page)
@@ -228,7 +229,7 @@ sophisticated, but will produce incorrect results for some languages::
text = ngettext(
'There is %(count)d %(name)s available.',
'There are %(count)d %(name)s available.',
- count
+ count,
) % {
'count': count,
'name': name
@@ -240,7 +241,7 @@ In a case like this, consider something like the following::
text = ngettext(
'There is %(count)d %(name)s object available.',
'There are %(count)d %(name)s objects available.',
- count
+ count,
) % {
'count': count,
'name': Report._meta.verbose_name,
@@ -259,11 +260,11 @@ In a case like this, consider something like the following::
text = ngettext(
'There is %(count)d %(name)s available.',
'There are %(count)d %(plural_name)s available.',
- count
+ count,
) % {
'count': Report.objects.count(),
'name': Report._meta.verbose_name,
- 'plural_name': Report._meta.verbose_name_plural
+ 'plural_name': Report._meta.verbose_name_plural,
}
You would get an error when running :djadmin:`django-admin