mirror of https://github.com/django/django.git
Fixed #31850 -- Fixed BasicExtractorTests.test_extraction_warning with xgettext 0.21+.
"format string with unnamed arguments cannot be properly localized" warning is not raised in xgettext 0.21+. This patch uses a message that causes an xgettext warning regardless of the version.
This commit is contained in:
parent
036f160733
commit
07a30f5616
1
AUTHORS
1
AUTHORS
|
@ -622,6 +622,7 @@ answer newbie questions, and generally made Django that much better:
|
|||
mattycakes@gmail.com
|
||||
Max Burstein <http://maxburstein.com>
|
||||
Max Derkachev <mderk@yandex.ru>
|
||||
Max Smolens <msmolens@gmail.com>
|
||||
Maxime Lorant <maxime.lorant@gmail.com>
|
||||
Maxime Turcotte <maxocub@riseup.net>
|
||||
Maximilian Merz <django@mxmerz.de>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from django.utils.translation import gettext
|
||||
|
||||
# This will generate an xgettext warning
|
||||
my_string = gettext("This string contain two placeholders: %s and %s" % ('a', 'b'))
|
||||
# This will generate an xgettext "Empty msgid" warning.
|
||||
my_string = gettext('')
|
||||
|
|
Loading…
Reference in New Issue