Fix more dotless strings

This commit is contained in:
Jonas Schäfer
2021-03-20 16:44:18 +01:00
parent ad229d6700
commit e7aa0a2c45
3 changed files with 6 additions and 6 deletions

View File

@@ -115,7 +115,7 @@ class RegisterForm(BaseForm):
validators=[wtforms.validators.InputRequired(),
wtforms.validators.EqualTo(
"password",
_l("The passwords must match")
_l("The passwords must match.")
)]
)
@@ -182,7 +182,7 @@ class ResetForm(BaseForm):
validators=[wtforms.validators.InputRequired(),
wtforms.validators.EqualTo(
"password",
_l("The passwords must match")
_l("The passwords must match.")
)]
)