From 2b53d04a19f2aa68943519ddded9268c481a539c Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Fri, 6 Sep 2024 08:53:08 +0200 Subject: [PATCH] Improve labels in mail settings for incomplete payments (#4444) --- src/pretix/control/forms/event.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 584660b527..a7f59a9439 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -1143,12 +1143,12 @@ class MailSettingsForm(FormPlaceholderMixin, SettingsForm): widget=I18nTextInput, ) mail_subject_order_incomplete_payment = I18nFormField( - label=_("Subject"), + label=_("Subject (if an incomplete payment was received)"), required=False, widget=I18nTextInput, ) mail_text_order_incomplete_payment = I18nFormField( - label=_("Text"), + label=_("Text (if an incomplete payment was received)"), required=False, widget=I18nMarkdownTextarea, help_text=_("This email only applies to payment methods that can receive incomplete payments, "