Ticket #7068: auth_translations_v7436.diff
File auth_translations_v7436.diff, 2.2 KB (added by , 17 years ago) |
---|
-
django/contrib/auth/forms.py
47 47 Base class for authenticating users. Extend this to get a form that accepts 48 48 username/password logins. 49 49 """ 50 username = forms.CharField( max_length=30)51 password = forms.CharField( max_length=30, widget=forms.PasswordInput)50 username = forms.CharField(label=_("Username"), max_length=30) 51 password = forms.CharField(label=_("Password"), max_length=30, widget=forms.PasswordInput) 52 52 53 53 def __init__(self, request=None, *args, **kwargs): 54 54 """ … … 88 88 return self.user_cache 89 89 90 90 class PasswordResetForm(forms.Form): 91 email = forms.EmailField( max_length=40)91 email = forms.EmailField(label=_("E-mail"), max_length=40) 92 92 93 93 def clean_email(self): 94 94 """ … … 129 129 """ 130 130 A form that lets a user change his/her password. 131 131 """ 132 old_password = forms.CharField( max_length=30, widget=forms.PasswordInput)133 new_password1 = forms.CharField( max_length=30, widget=forms.PasswordInput)134 new_password2 = forms.CharField( max_length=30, widget=forms.PasswordInput)132 old_password = forms.CharField(label=_("Old password"), max_length=30, widget=forms.PasswordInput) 133 new_password1 = forms.CharField(label=_("New password"), max_length=30, widget=forms.PasswordInput) 134 new_password2 = forms.CharField(label=_("New password confirmation"), max_length=30, widget=forms.PasswordInput) 135 135 136 136 def __init__(self, user, *args, **kwargs): 137 137 self.user = user … … 164 164 """ 165 165 A form used to change the password of a user in the admin interface. 166 166 """ 167 password1 = forms.CharField( max_length=60, widget=forms.PasswordInput)168 password2 = forms.CharField( max_length=60, widget=forms.PasswordInput)167 password1 = forms.CharField(label=_("Password"), max_length=60, widget=forms.PasswordInput) 168 password2 = forms.CharField(label=_("Password confirmation"), max_length=60, widget=forms.PasswordInput) 169 169 170 170 def __init__(self, user, *args, **kwargs): 171 171 self.user = user