From ad443d0eb6823b051d8b86623bba919aad281d5a Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 5 Aug 2024 12:34:26 +0200 Subject: [PATCH] Improve a help text --- src/pretix/control/forms/vouchers.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pretix/control/forms/vouchers.py b/src/pretix/control/forms/vouchers.py index 231c6b9be..c45fc9e2e 100644 --- a/src/pretix/control/forms/vouchers.py +++ b/src/pretix/control/forms/vouchers.py @@ -290,8 +290,9 @@ class VoucherBulkForm(VoucherForm): ) }), required=False, - help_text=_('You can either supply a list of email addresses with one email address per line, or a CSV file with a title column ' - 'and one or more of the columns "email", "number", "name", or "tag".') + help_text=_('You can either supply a list of email addresses with one email address per line, or the contents ' + 'of a CSV file with a title column and one or more of the columns "email", "number", "name", ' + 'or "tag".') ) Recipient = namedtuple('Recipient', 'email number name tag')