From e7aa0a2c45e1438e6cdf8c9ba06831f273887085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Sat, 20 Mar 2021 16:44:18 +0100 Subject: [PATCH] Fix more dotless strings --- snikket_web/invite.py | 4 ++-- snikket_web/translations/messages.pot | 6 +++--- snikket_web/user.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/snikket_web/invite.py b/snikket_web/invite.py index 8b35376..742509e 100644 --- a/snikket_web/invite.py +++ b/snikket_web/invite.py @@ -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.") )] ) diff --git a/snikket_web/translations/messages.pot b/snikket_web/translations/messages.pot index 96574fb..ab753de 100644 --- a/snikket_web/translations/messages.pot +++ b/snikket_web/translations/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-03-20 16:27+0100\n" +"POT-Creation-Date: 2021-03-20 16:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -162,7 +162,7 @@ msgid "Confirm password" msgstr "" #: snikket_web/invite.py:118 snikket_web/invite.py:185 -msgid "The passwords must match" +msgid "The passwords must match." msgstr "" #: snikket_web/invite.py:123 @@ -215,7 +215,7 @@ msgid "Confirm new password" msgstr "" #: snikket_web/user.py:41 -msgid "The new passwords must match" +msgid "The new passwords must match." msgstr "" #: snikket_web/user.py:48 diff --git a/snikket_web/user.py b/snikket_web/user.py index ab231bd..a51ec37 100644 --- a/snikket_web/user.py +++ b/snikket_web/user.py @@ -38,7 +38,7 @@ class ChangePasswordForm(BaseForm): validators=[wtforms.validators.InputRequired(), wtforms.validators.EqualTo( "new_password", - _l("The new passwords must match") + _l("The new passwords must match.") )] )