From 6ab77fcee20a8e2b9dc514e282e603685d202e4f Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 12 Dec 2024 16:15:15 +0100 Subject: [PATCH 1/2] missing string for locales --- plone/app/users/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plone/app/users/schema.py b/plone/app/users/schema.py index 2c5fdbf..5735fd6 100644 --- a/plone/app/users/schema.py +++ b/plone/app/users/schema.py @@ -79,7 +79,7 @@ class IUserDataSchema(Interface): email = ProtectedEmail( title=_("label_email", default="Email"), - description="We will use this address if you need to recover your " "password", + description=_("We will use this address if you need to recover your password"), required=True, constraint=checkEmailAddress, ) From d9f409e5c3268dc699a8b100b9b2456df47f0723 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 12 Dec 2024 16:15:50 +0100 Subject: [PATCH 2/2] changelog --- news/132.bugfix | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/132.bugfix diff --git a/news/132.bugfix b/news/132.bugfix new file mode 100644 index 0000000..80c8b72 --- /dev/null +++ b/news/132.bugfix @@ -0,0 +1 @@ +Add missing locale for translations [erral]