Skip to content

Commit

Permalink
Change broke all localisations
Browse files Browse the repository at this point in the history
  • Loading branch information
mistralbkru committed Jun 23, 2020
1 parent 6e5041f commit 3c64e43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django/contrib/auth/password_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def validate(self, password, user=None):
)

def get_help_text(self):
return _('Your password cant be too similar to your other personal information.')
return _("Your password can't be too similar to your other personal information.")


class CommonPasswordValidator:
Expand Down Expand Up @@ -185,7 +185,7 @@ def validate(self, password, user=None):
)

def get_help_text(self):
return _('Your password cant be a commonly used password.')
return _("Your password can't be a commonly used password.")


class NumericPasswordValidator:
Expand All @@ -200,4 +200,4 @@ def validate(self, password, user=None):
)

def get_help_text(self):
return _('Your password cant be entirely numeric.')
return _("Your password can't be entirely numeric.")

0 comments on commit 3c64e43

Please sign in to comment.