#262 closed defect (fixed)
setlocale with param LC_ALL converts corrupts numerics
Reported by: | christoph | Owned by: | |
---|---|---|---|
Priority: | blocker | Milestone: | 2.5 release |
Component: | i18n | Version: | |
Keywords: | Cc: | mschulz |
Description
For example, setting the locale via setlocale(LC_ALL, ...) corrupts a WMC extent
minx="15,4" etc.
in a de_DE locale.
See http://de.php.net/setlocale for details
If I replace LC_ALL by LC_CTYPE, the translations still work, but the numerics are not converted.
Change History (6)
comment:1 by , 16 years ago
comment:2 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 16 years ago
Cc: | added |
---|
comment:4 by , 16 years ago
Cc: | added; removed |
---|
Note:
See TracTickets
for help on using tickets.
now using this
setlocale(LC_COLLATE, $locale) && setlocale(LC_CTYPE, $locale) && setlocale(LC_TIME, $locale) && setlocale(LC_MESSAGES, $locale)