1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

[1.6.x] Fixed #21488 -- Multiple locales treatment in i18n commands.

Removed multiple locales separated by commas variation (that wasn't
working as documented) in favor of simply allowing use of the
``--locale``/``-l`` options more than once for ``makemessages`` and
``compilemessages``.

Thanks Romain Beylerian for the report and Claude, Simon for their help.
This commit is contained in:
Ramiro Morales
2013-11-22 23:47:04 -03:00
parent ddd3926280
commit 8750296918
6 changed files with 35 additions and 43 deletions

View File

@@ -30,3 +30,8 @@ Bug fixes
key (#21472).
* Fixed a regression where custom querysets for foreign keys were overwritten
if ``ModelAdmin`` had ordering set (#21405).
* Removed mention of a feature in the ``--locale``/``-l`` option of
``makemessages`` and ``compilemessages`` commands that never worked as
promised: Support of multiple locale names separated by commas. It's still
possible to specify multiplle locales in one run by suing the option
multiple times (#21488, #17181).