mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +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:
BIN
tests/i18n/sampleproject/locale/fr/LC_MESSAGES/django.mo
Normal file
BIN
tests/i18n/sampleproject/locale/fr/LC_MESSAGES/django.mo
Normal file
Binary file not shown.
52
tests/i18n/sampleproject/locale/fr/LC_MESSAGES/django.po
Normal file
52
tests/i18n/sampleproject/locale/fr/LC_MESSAGES/django.po
Normal file
@@ -0,0 +1,52 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
||||
#: templates/percents.html:3
|
||||
#, python-format
|
||||
msgid "Literal with a percent symbol at the end %%"
|
||||
msgstr "Littérale avec un symbole de pour cent à la fin %%"
|
||||
|
||||
#: templates/percents.html:4
|
||||
#, python-format
|
||||
msgid "Literal with a percent %% symbol in the middle"
|
||||
msgstr "Pour cent littérale %% avec un symbole au milieu"
|
||||
|
||||
#: templates/percents.html:6
|
||||
#, python-format
|
||||
msgid "It is 100%%"
|
||||
msgstr "Il est de 100%%"
|
||||
|
||||
#: templates/percents.html:7
|
||||
#, python-format
|
||||
msgctxt "female"
|
||||
msgid "It is 100%%"
|
||||
msgstr "Elle est de 100%%"
|
||||
|
||||
#: templates/percents.html:8
|
||||
#, python-format
|
||||
msgid "Looks like a str fmt spec %%s but should not be interpreted as such"
|
||||
msgstr ""
|
||||
"On dirait un spec str fmt %%s mais ne devrait pas être interprété comme plus "
|
||||
"disponible"
|
||||
|
||||
#: templates/percents.html:9
|
||||
#, python-format
|
||||
msgid "Looks like a str fmt spec %% o but should not be interpreted as such"
|
||||
msgstr ""
|
||||
"On dirait un spec str fmt %% o mais ne devrait pas être interprété comme "
|
||||
"plus disponible"
|
||||
|
||||
#: templates/percents.html:11
|
||||
#, python-format
|
||||
msgid "1 percent sign %%, 2 percent signs %%%%, 3 percent signs %%%%%%"
|
||||
msgstr ""
|
||||
"1 %% signe pour cent, signes %%%% 2 pour cent, trois signes de pourcentage %%"
|
||||
"%%%%"
|
||||
|
||||
#: templates/percents.html:12
|
||||
#, python-format
|
||||
msgid "%(name)s says: 1 percent sign %%, 2 percent signs %%%%"
|
||||
msgstr "%(name)s dit: 1 pour cent signe %%, deux signes de pourcentage %%%%"
|
||||
Reference in New Issue
Block a user