Fixed #7831: be case-insensitive when in `get_language_from_request`.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8561 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2008-08-25 22:53:44 +00:00
parent ddb3cdd514
commit 6a5cc9e7f6
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ def get_language_from_request(request):
for lang, dirname in ((accept_lang, normalized), for lang, dirname in ((accept_lang, normalized),
(accept_lang.split('-')[0], normalized.split('_')[0])): (accept_lang.split('-')[0], normalized.split('_')[0])):
if lang not in supported: if lang.lower() not in supported:
continue continue
langfile = os.path.join(globalpath, dirname, 'LC_MESSAGES', langfile = os.path.join(globalpath, dirname, 'LC_MESSAGES',
'django.mo') 'django.mo')