﻿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
3947	Localized labels don't work with newforms	anonymous	Adrian Holovaty	"I have this form.

{{{

from django import newforms as forms
from django.utils.translation import gettext_lazy as _

LANGUAGES = (
    ('cs', _('Czech')),
    ('en', _('English')),
)

class ChangeProfileForm(forms.Form):
    language = forms.ChoiceField(label=_('Language'), choices=LANGUAGES)
    email = forms.EmailField(label=_('Email'))
    phone = forms.CharField(label=_('Phone'))

}}}

If localized labels are in UTF-8 and I don't use attached patch, forms don't work (UnicodeDecodeError)."		closed	Forms	dev		duplicate	newforms, unicode		Unreviewed	1	0	0	0	0	0
