mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Stripe: Improve help texts
This commit is contained in:
@@ -329,28 +329,32 @@ class StripeSettingsHolder(BasePaymentProvider):
|
|||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('giropay'),
|
label=_('giropay'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('method_ideal',
|
('method_ideal',
|
||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('iDEAL'),
|
label=_('iDEAL'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('method_alipay',
|
('method_alipay',
|
||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('Alipay'),
|
label=_('Alipay'),
|
||||||
disabled=self.event.currency not in ('EUR', 'AUD', 'CAD', 'GBP', 'HKD', 'JPY', 'NZD', 'SGD', 'USD'),
|
disabled=self.event.currency not in ('EUR', 'AUD', 'CAD', 'GBP', 'HKD', 'JPY', 'NZD', 'SGD', 'USD'),
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('method_bancontact',
|
('method_bancontact',
|
||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('Bancontact'),
|
label=_('Bancontact'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('method_sepa_debit',
|
('method_sepa_debit',
|
||||||
@@ -358,7 +362,8 @@ class StripeSettingsHolder(BasePaymentProvider):
|
|||||||
label=_('SEPA Direct Debit'),
|
label=_('SEPA Direct Debit'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=(
|
help_text=(
|
||||||
_('Needs to be enabled in your Stripe account first.') +
|
_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.') +
|
||||||
'<div class="alert alert-warning">%s</div>' % _(
|
'<div class="alert alert-warning">%s</div>' % _(
|
||||||
'SEPA Direct Debit payments via Stripe are <strong>not</strong> processed '
|
'SEPA Direct Debit payments via Stripe are <strong>not</strong> processed '
|
||||||
'instantly but might take up to <strong>14 days</strong> to be confirmed in some cases. '
|
'instantly but might take up to <strong>14 days</strong> to be confirmed in some cases. '
|
||||||
@@ -384,7 +389,8 @@ class StripeSettingsHolder(BasePaymentProvider):
|
|||||||
label=_('SOFORT'),
|
label=_('SOFORT'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=(
|
help_text=(
|
||||||
_('Needs to be enabled in your Stripe account first.') +
|
_('Stripe is in the process of removing this payment method. If you created your Stripe '
|
||||||
|
'account after November 2023, you cannot use this payment method.') +
|
||||||
'<div class="alert alert-warning">%s</div>' % _(
|
'<div class="alert alert-warning">%s</div>' % _(
|
||||||
'Despite the name, Sofort payments via Stripe are <strong>not</strong> processed '
|
'Despite the name, Sofort payments via Stripe are <strong>not</strong> processed '
|
||||||
'instantly but might take up to <strong>14 days</strong> to be confirmed in some cases. '
|
'instantly but might take up to <strong>14 days</strong> to be confirmed in some cases. '
|
||||||
@@ -397,28 +403,32 @@ class StripeSettingsHolder(BasePaymentProvider):
|
|||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('EPS'),
|
label=_('EPS'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('method_multibanco',
|
('method_multibanco',
|
||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('Multibanco'),
|
label=_('Multibanco'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('method_przelewy24',
|
('method_przelewy24',
|
||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('Przelewy24'),
|
label=_('Przelewy24'),
|
||||||
disabled=self.event.currency not in ['EUR', 'PLN'],
|
disabled=self.event.currency not in ['EUR', 'PLN'],
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('method_wechatpay',
|
('method_wechatpay',
|
||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('WeChat Pay'),
|
label=_('WeChat Pay'),
|
||||||
disabled=self.event.currency not in ['AUD', 'CAD', 'EUR', 'GBP', 'HKD', 'JPY', 'SGD', 'USD'],
|
disabled=self.event.currency not in ['AUD', 'CAD', 'EUR', 'GBP', 'HKD', 'JPY', 'SGD', 'USD'],
|
||||||
help_text=_('Needs to be enabled in your Stripe account first.'),
|
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||||
|
'before work properly.'),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
] + extra_fields + list(super().settings_form_fields.items()) + moto_settings
|
] + extra_fields + list(super().settings_form_fields.items()) + moto_settings
|
||||||
|
|||||||
Reference in New Issue
Block a user