From 006ade1414949085eb63a38f63a28bffeb3d5a6d Mon Sep 17 00:00:00 2001 From: FlaviaBastos Date: Mon, 26 Sep 2016 10:35:15 -0600 Subject: [PATCH] Fix typo on Stripe plugin configuration alert. (#251) --- src/pretix/locale/de/LC_MESSAGES/django.po | 2 +- src/pretix/locale/de_Informal/LC_MESSAGES/django.po | 2 +- src/pretix/plugins/stripe/payment.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pretix/locale/de/LC_MESSAGES/django.po b/src/pretix/locale/de/LC_MESSAGES/django.po index ae934c7409..d93f0b5bcd 100644 --- a/src/pretix/locale/de/LC_MESSAGES/django.po +++ b/src/pretix/locale/de/LC_MESSAGES/django.po @@ -4853,7 +4853,7 @@ msgstr "Stripe Checkout" msgid "" "Please configure a Stripe Webhook to the following endpoint in order to automatically " -"cancel orders when a charges are refunded externally." +"cancel orders when charges are refunded externally." msgstr "" "Bitte konfigurieren Sie einen Stripe Webhook zum folgenden Endpunkt, damit Bestellungen " diff --git a/src/pretix/locale/de_Informal/LC_MESSAGES/django.po b/src/pretix/locale/de_Informal/LC_MESSAGES/django.po index b2567c2983..796d92ce7f 100644 --- a/src/pretix/locale/de_Informal/LC_MESSAGES/django.po +++ b/src/pretix/locale/de_Informal/LC_MESSAGES/django.po @@ -4840,7 +4840,7 @@ msgstr "Stripe Checkout" msgid "" "Please configure a Stripe Webhook to the following endpoint in order to automatically " -"cancel orders when a charges are refunded externally." +"cancel orders when charges are refunded externally." msgstr "" "Bitte konfiguriere einen Stripe Webhook zum folgenden Endpunkt, damit Bestellungen " diff --git a/src/pretix/plugins/stripe/payment.py b/src/pretix/plugins/stripe/payment.py index 69196092b9..c6a5e005a7 100644 --- a/src/pretix/plugins/stripe/payment.py +++ b/src/pretix/plugins/stripe/payment.py @@ -47,7 +47,7 @@ class Stripe(BasePaymentProvider): def settings_content_render(self, request): return "
%s
%s
" % ( _('Please configure a Stripe Webhook to ' - 'the following endpoint in order to automatically cancel orders when a charges are refunded externally.'), + 'the following endpoint in order to automatically cancel orders when charges are refunded externally.'), build_absolute_uri(self.event, 'plugins:stripe:webhook') )