From a40bda5d3d1ac9d371f33aed5f7e41eb1f9f932a Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 6 Mar 2009 15:20:51 -0800 Subject: [PATCH] Reworded text displayed when an invite is sent. --- controller/Users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller/Users.py b/controller/Users.py index 6f150c2..8e31cc5 100644 --- a/controller/Users.py +++ b/controller/Users.py @@ -1144,12 +1144,12 @@ class Users( object ): if email_count == 1: return dict( - message = u"An invitation has been sent. The person you invited will receive an invite link (shown above) by email. (Feel free to copy and paste the invite link to them yourself.)", + message = u"An invitation has been sent. The person you invited will receive an invite link (shown below) by email. Feel free to copy and paste the invite link to them yourself.", invites = invites, ) else: return dict( - message = u"%s invitations have been sent. The people you invited will each receive an invite link (shown above) by email. (Feel free to copy and paste the invite links to them yourself.)" % email_count, + message = u"%s invitations have been sent. The people you invited will each receive an invite link (shown below) by email. Feel free to copy and paste the invite links to them yourself." % email_count, invites = invites, )