From dbf82badac7b738817b5ffcc8dadec0f2e1514a1 Mon Sep 17 00:00:00 2001 From: "Zeller, Christina" Date: Wed, 8 Jun 2022 16:12:14 +0200 Subject: [PATCH] global: Fixes string marked for translation. * The whole string should be marked (including dots). * Note: this will need some further improvements. * Refs: https://github.com/inveniosoftware/invenio-app-rdm/issues/1707 --- .../templates/security/email/change_notice_rest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invenio_accounts/templates/security/email/change_notice_rest.html b/invenio_accounts/templates/security/email/change_notice_rest.html index 1d5095a8..2211bfaa 100644 --- a/invenio_accounts/templates/security/email/change_notice_rest.html +++ b/invenio_accounts/templates/security/email/change_notice_rest.html @@ -1,4 +1,4 @@

{{ _('Your password has been changed.') }}

{% if security.recoverable %} -

{{ _('If you did not change your password,') }} {{ _('click here to reset it') }}.

+

{{ _('If you did not change your password,') }} {{ _('click here to reset it.') }}

{% endif %}