If you pass an empty string to django.utils.translation.ugettext, it
returns the metadata from the translations file. I know that this is the
GNU gettext behavior, but honestly, I can't imagine a use for it.
This is a problem when you have a string which can be overridden by a
user, but usually is not, and the default value for the string is
translated. If the user enters an empty string, ugettext returns the
metadata. Surprise!
Of course, an option is to check the string before calling ugettext, but
this is an easy step to overlook, especially because it is conceptually
unnecessary. It would be great if Django's wrappers for gettext would do
the obvious thing and return an empty string if asked to translate an
empty string.
For a low-level library, it could make sense to get the metadata with
gettext(""), but how would you reasonably use that in Django? And ffs,
why didn't they just make a function to get the metadata if people wanted
metadata? :)
--
Ticket URL: <https://code.djangoproject.com/ticket/23196>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_docs: => 0
* needs_tests: => 0
* stage: Unreviewed => Accepted
Comment:
Accepting based on the fact that there are valid usecases and the current
behavior can be really really annoying :)
--
Ticket URL: <https://code.djangoproject.com/ticket/23196#comment:1>
* type: Uncategorized => Cleanup/optimization
--
Ticket URL: <https://code.djangoproject.com/ticket/23196#comment:2>
* owner: nobody => yrik
* status: new => assigned
--
Ticket URL: <https://code.djangoproject.com/ticket/23196#comment:3>
Comment (by yrik):
Handled case with empty string by returning empty string of corresponding
type.
Here is pull request:
https://github.com/django/django/pull/3192
--
Ticket URL: <https://code.djangoproject.com/ticket/23196#comment:4>
* status: assigned => closed
* resolution: => fixed
Comment:
In [changeset:"11f307a5a8fa66605652e0496c7385e584bfcad7"]:
{{{
#!CommitTicketReference repository=""
revision="11f307a5a8fa66605652e0496c7385e584bfcad7"
Fixed #23196 -- Short-circuited empty string translation
Translating an empty string used to return the gettext catalog
metadata instead of the empty string.
Thanks Ned Batchelder for the suggestion, Tim Graham for the review
and Anton Berezin and Claude Paroz for contributions to the patch.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/23196#comment:5>