From 6af65b787aeaf746fe9db0b46cbb726c149b6977 Mon Sep 17 00:00:00 2001 From: Hugo LEVY-FALK Date: Fri, 13 Jul 2018 13:29:07 +0200 Subject: [PATCH] typos --- CHANGELOG.md | 2 +- cotisations/models.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da07e645..1b9020e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -119,4 +119,4 @@ to the staff members so they can use every type of payment to buy anything. Don't forget to run migrations, several settings previously in the `preferences` app ar now in their own Payment models. -To have a closer look on how the payments works, pleas go to the wiki. +To have a closer look on how the payments works, please go to the wiki. diff --git a/cotisations/models.py b/cotisations/models.py index 7bcdbc00..5cd30e5d 100644 --- a/cotisations/models.py +++ b/cotisations/models.py @@ -562,7 +562,7 @@ class Article(RevMixin, AclMixin, models.Model): return ( self.available_for_everyone or user.has_perm('cotisations.buy_every_article'), - _("You cannot use this Payment.") + _("You cannot buy this Article.") ) @classmethod @@ -677,7 +677,7 @@ class Paiement(RevMixin, AclMixin, models.Model): The general way of ending a payment. :param invoice: The invoice being created. - :param request: Request sended by the user. + :param request: Request sent by the user. :param use_payment_method: If `self` has an attribute `payment_method`, returns the result of `self.payment_method.end_payment(invoice, request)`