mirror of
https://github.com/pretix/pretix.git
synced 2026-08-25 13:12:00 +00:00
Fix typos
This commit is contained in:
@@ -742,9 +742,9 @@ class RelativeDateField(RelativeDateTimeField):
|
||||
if data.rel_days_number is None or not data.rel_days_relationto:
|
||||
raise ValidationError(self.error_messages['incomplete'])
|
||||
elif data.rel_days_relation == "before" and not choice.supports_before:
|
||||
raise ValidationError(_("A relative date cannot be expressed as 'before' for '{}'".format(choice.text)))
|
||||
raise ValidationError(_('A relative date cannot be expressed as "before" for "{}"'.format(choice.text)))
|
||||
elif data.rel_days_relation == "after" and not choice.supports_after:
|
||||
raise ValidationError(_("A relative date cannot be expressed as 'after' for '{}'".format(choice.text)))
|
||||
raise ValidationError(_('A relative date cannot be expressed as "after" for "{}"'.format(choice.text)))
|
||||
|
||||
return forms.MultiValueField.clean(self, value)
|
||||
|
||||
|
||||
@@ -199,7 +199,7 @@ class PaypalSettingsHolder(BasePaymentProvider):
|
||||
help_text=_(
|
||||
'PayPals fraud prevention might block processing of individual payments for a considerable amount '
|
||||
'of time. The payment is marked as "pending" during this time window. You can allow your customers to '
|
||||
'start another payment attempts during that window. This might result in them being charged twice if the'
|
||||
'start another payment attempts during that window. This might result in them being charged twice if the '
|
||||
'original payment is approved.'
|
||||
),
|
||||
required=False
|
||||
|
||||
Reference in New Issue
Block a user