witten
/
luminotes
Archived
1
0
Fork 0

Reworded text displayed when an invite is sent.

This commit is contained in:
Dan Helfman 2009-03-06 15:20:51 -08:00
parent 27f5f4e1a9
commit a40bda5d3d
1 changed files with 2 additions and 2 deletions

View File

@ -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,
)