Wording fixes (#577)

This commit is contained in:
Tobias Kunze
2017-07-30 19:29:17 +02:00
committed by Raphael Michel
parent 46976900d7
commit 57869b2145
4 changed files with 10 additions and 10 deletions

View File

@@ -98,7 +98,7 @@ class BasePaymentProvider:
"""
A short and unique identifier for this payment provider.
This should only contain lowercase letters and in most
cases will be the same as your packagename.
cases will be the same as your package name.
"""
raise NotImplementedError() # NOQA
@@ -161,9 +161,9 @@ class BasePaymentProvider:
('_fee_reverse_calc',
forms.BooleanField(
label=_('Calculate the fee from the total value including the fee.'),
help_text=_('We recommend you to enable this if you want your users to pay the payment fees of your '
help_text=_('We recommend to enable this if you want your users to pay the payment fees of your '
'payment provider. <a href="{docs_url}" target="_blank">Click here '
'for detailled information on what this does.</a> Don\'t forget to set the correct fees '
'for detailed information on what this does.</a> Don\'t forget to set the correct fees '
'above!').format(docs_url='https://docs.pretix.eu/en/latest/user/payments/fees.html'),
required=False
)),
@@ -277,7 +277,7 @@ class BasePaymentProvider:
def payment_form_render(self, request: HttpRequest) -> str:
"""
When the user selects this provider as his prefered payment method,
When the user selects this provider as his preferred payment method,
they will be shown the HTML you return from this method.
The default implementation will call :py:meth:`checkout_form`