﻿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
14637	There may an Internationalization bug in Forms	theFm.cn@…	nobody	"set 

LANGUAGE_CODE = 'zh-CN'

and 

create a form


{{{
class RegisterForm(forms.Form):
    userName = forms.EmailField(max_length=80, label=u'电子邮箱');
    userPass1 = forms.CharField(widget=forms.PasswordInput, min_length=6, max_length=30, label=u'用户密码');
    userPass2 = forms.CharField(widget=forms.PasswordInput, min_length=6, max_length=30, label=u'确认密码');
}}}

when I type 3 word in userPass1

according to django.po in site-packages/django/conf/locale/zh_Cn/LC_MESSAGE/django.po


it should be 
{{{
#: forms/fields.py:139
#, python-format
msgid ""Ensure this value has at least %(min)d characters (it has %(length)d).""
msgstr ""确保该值最少为 %(min)d  个字符（其长度为 %(length)d）。""
}}}

but I just got a English error msg instead of a Chinese one"		closed	Translations	1.2		invalid	Internationalization		Unreviewed	0	0	0	0	0	0
