mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +00:00
Fixed #24257 -- Corrected i18n handling of percent signs.
Refactored tests to use a sample project. Updated extraction: * Removed special handling of single percent signs. * When extracting messages from template text, doubled all percent signs so they are not interpreted by gettext as string format flags. All strings extracted by gettext, if containing a percent sign, will now be labeled "#, python-format". Updated translation: * Used "%%" for "%" in template text before calling gettext. * Updated {% trans %} rendering to restore "%" from "%%".
This commit is contained in:
parent
d772d812cf
commit
b7508896fb
20 changed files with 340 additions and 217 deletions
|
@ -940,6 +940,11 @@ Miscellaneous
|
|||
whitespace by default. This can be disabled by setting the new
|
||||
:attr:`~django.forms.CharField.strip` argument to ``False``.
|
||||
|
||||
* Template text that is translated and uses two or more consecutive percent
|
||||
signs, e.g. ``"%%"``, may have a new `msgid` after ``makemessages`` is run
|
||||
(most likely the translation will be marked fuzzy). The new ``msgid`` will be
|
||||
marked ``"#, python-format"``.
|
||||
|
||||
* If neither :attr:`request.current_app <django.http.HttpRequest.current_app>`
|
||||
nor :class:`Context.current_app <django.template.Context>` are set, the
|
||||
:ttag:`url` template tag will now use the namespace of the current request.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue