From 773cf4ef3de44e4b2ca4fa6318226c18b21dbd59 Mon Sep 17 00:00:00 2001 From: pfeyz Date: Mon, 29 Jul 2013 10:14:57 -0400 Subject: [PATCH] fix typo in SignupForm --- userena/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userena/forms.py b/userena/forms.py index 23324ad3..83ed143e 100644 --- a/userena/forms.py +++ b/userena/forms.py @@ -53,7 +53,7 @@ def clean_username(self): pass else: if UserenaSignup.objects.filter(user__username__iexact=self.cleaned_data['username']).exclude(activation_key=userena_settings.USERENA_ACTIVATED): - raise forms.ValidationError(_('This username is already taken but not confirmed. Please check you email for verification steps.')) + raise forms.ValidationError(_('This username is already taken but not confirmed. Please check your email for verification steps.')) raise forms.ValidationError(_('This username is already taken.')) if self.cleaned_data['username'].lower() in userena_settings.USERENA_FORBIDDEN_USERNAMES: raise forms.ValidationError(_('This username is not allowed.')) @@ -63,7 +63,7 @@ def clean_email(self): """ Validate that the e-mail address is unique. """ if get_user_model().objects.filter(email__iexact=self.cleaned_data['email']): if UserenaSignup.objects.filter(user__email__iexact=self.cleaned_data['email']).exclude(activation_key=userena_settings.USERENA_ACTIVATED): - raise forms.ValidationError(_('This email is already in use but not confirmed. Please check you email for verification steps.')) + raise forms.ValidationError(_('This email is already in use but not confirmed. Please check your email for verification steps.')) raise forms.ValidationError(_('This email is already in use. Please supply a different email.')) return self.cleaned_data['email']