Fixed #24063 -- Allowed locale variants supported by gettext.

The locale code can contain a variant after @, so allowed that.
This commit is contained in:
Michal Čihař 2014-12-30 15:41:31 +01:00 committed by Tim Graham
parent 9d6914da66
commit 76d26d8922
3 changed files with 18 additions and 2 deletions

View file

@ -162,6 +162,10 @@ Internationalization
* The :func:`django.utils.timezone.make_aware` function gained an ``is_dst``
argument to help resolve ambiguous times during DST transitions.
* You can now use locale variants supported by gettext. These are usually used
for languages which can be written in different scripts, for example Latin
and Cyrillic (e.g. ``be@latin``).
Management Commands
^^^^^^^^^^^^^^^^^^^