Ticket #2816: auth-form-i18n.diff
File auth-form-i18n.diff, 1.4 KB (added by , 18 years ago) |
---|
-
contrib/auth/forms.py
old new 4 4 from django.template import Context, loader 5 5 from django.core import validators 6 6 from django import forms 7 #from django.utils.translation import _ 7 8 8 9 class UserCreationForm(forms.Manipulator): 9 10 "A form that creates a user, with no privileges, from the given username and password." … … 13 14 validator_list=[validators.isAlphaNumeric, self.isValidUsername]), 14 15 forms.PasswordField(field_name='password1', length=30, maxlength=60, is_required=True), 15 16 forms.PasswordField(field_name='password2', length=30, maxlength=60, is_required=True, 16 validator_list=[validators.AlwaysMatchesOtherField('password1', "The two password fields didn't match.")]),17 validator_list=[validators.AlwaysMatchesOtherField('password1', _("The two password fields didn't match."))]), 17 18 ) 18 19 19 20 def isValidUsername(self, field_data, all_data): … … 21 22 User.objects.get(username=field_data) 22 23 except User.DoesNotExist: 23 24 return 24 raise validators.ValidationError, 'A user with that username already exists.'25 raise validators.ValidationError, _("A user with that username already exists.") 25 26 26 27 def save(self, new_data): 27 28 "Creates the user."