From 96a880b5ae9ee52c76c99aa5fc0d381971d79fa1 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 18 Apr 2018 14:39:35 +0200 Subject: [PATCH] Warn more strongly about Stripe Sofort --- src/pretix/plugins/stripe/payment.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/pretix/plugins/stripe/payment.py b/src/pretix/plugins/stripe/payment.py index 207e7383ee..c7b8c74f70 100644 --- a/src/pretix/plugins/stripe/payment.py +++ b/src/pretix/plugins/stripe/payment.py @@ -188,8 +188,14 @@ class StripeSettingsHolder(BasePaymentProvider): forms.BooleanField( label=_('SOFORT'), disabled=self.event.currency != 'EUR', - help_text=_('Needs to be enabled in your Stripe account first. Note that, despite the name, ' - 'payments are not immediately confirmed but might take some time.'), + help_text=( + _('Needs to be enabled in your Stripe account first.') + + '
%s
' % _( + 'Despite the name, Sofort payments via Stripe are not processed ' + 'instantly but might take up to 14 days to be confirmed in some cases. ' + 'Please only activate this payment method if your payment term allows for this lag.' + ) + ), required=False, )), ('cc_3ds_mode',