diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2016-04-04 16:24:51 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2016-04-04 16:24:51 +0200 |
commit | 37368439ca308235daebee41d33c8fa8097a3b7b (patch) | |
tree | b36cb5d70fcd7d0c7275592c1942bb8ce13550b3 /wallace/module_invitationpolicy.py | |
parent | 49b207d5f3ff366a4f9d43548a791421e9b5b962 (diff) | |
download | pykolab-37368439ca308235daebee41d33c8fa8097a3b7b.tar.gz |
Fix typos in notification messages
Reviewers: #pykolab_developers
Differential Revision: https://git.kolab.org/D119
Diffstat (limited to 'wallace/module_invitationpolicy.py')
-rw-r--r-- | wallace/module_invitationpolicy.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wallace/module_invitationpolicy.py b/wallace/module_invitationpolicy.py index 9865d71..c737a77 100644 --- a/wallace/module_invitationpolicy.py +++ b/wallace/module_invitationpolicy.py @@ -1260,9 +1260,9 @@ def send_cancel_notification(object, receiving_user, deleted=False): 'organizer': orgname if orgname else orgemail } if deleted: - message_text += " " + _("The copy in your tasklist as been removed accordingly.") + message_text += " " + _("The copy in your tasklist has been removed accordingly.") else: - message_text += " " + _("The copy in your tasklist as been marked as cancelled accordingly.") + message_text += " " + _("The copy in your tasklist has been marked as cancelled accordingly.") else: message_text = _("The event '%(summary)s' at %(start)s has been cancelled by %(organizer)s.") % { 'summary': object.get_summary(), @@ -1270,9 +1270,9 @@ def send_cancel_notification(object, receiving_user, deleted=False): 'organizer': orgname if orgname else orgemail } if deleted: - message_text += " " + _("The copy in your calendar as been removed accordingly.") + message_text += " " + _("The copy in your calendar has been removed accordingly.") else: - message_text += " " + _("The copy in your calendar as been marked as cancelled accordingly.") + message_text += " " + _("The copy in your calendar has been marked as cancelled accordingly.") message_text += "\n\n" + _("*** This is an automated message. Please do not reply. ***") |