﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
14824	django.utils.get_format_modules doesn't respect USE_L10N	nullie	nobody	"http://code.djangoproject.com/changeset/13898 introduced this error.

This was used to return empty list if localization isn't enabled or language isn't supported:
{{{
if not check_for_language(get_language()) or not settings.USE_L10N:
   return []
}}}

Changeset incorrectly reversed it into:
{{{
if check_for_language(lang) or settings.USE_L10N:
   ... return list of modules ...
}}}

This makes it return list of localized settings modules even if L10N is disabled, which breaks admin date input for some locales with enabled I18N and disabled L10N, specifically Russian, because javascript inserts localized dates and view parses non-localized dates (it handles USE_L10N setting correctly)."		closed	Internationalization	1.2		fixed	blocker	Alexander Koshelev	Accepted	1	0	1	1	0	0
