diff options
author | Evan Prodromou <evan@status.net> | 2009-11-08 17:06:41 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-08 17:06:41 -0500 |
commit | 111f6a775daf9334adb05c9f8e539d682238f4dd (patch) | |
tree | ce98d1968560538272e53a79ef4551b194eb1ab8 /actions/invite.php | |
parent | b7e2e3fd2b7e36f75c810a599334c2ca8abcca55 (diff) | |
parent | da444f8a15043f326aa9a629ba5f0b25bc35b1e5 (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'actions/invite.php')
-rw-r--r-- | actions/invite.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actions/invite.php b/actions/invite.php index 3015202e9..8a0ac8a1b 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -133,7 +133,7 @@ class InviteAction extends CurrentUserDesignAction $this->elementEnd('ul'); } if ($this->subbed) { - $this->element('p', null, _('These people are already users and you were automatically subscribed to them:')); + $this->element('p', null, _('These are already users and you were automatically subscribed to them:')); $this->elementStart('ul'); foreach ($this->subbed as $other) { $this->element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email)); @@ -141,7 +141,7 @@ class InviteAction extends CurrentUserDesignAction $this->elementEnd('ul'); } if ($this->sent) { - $this->element('p', null, _('Invitation(s) sent to the following people:')); + $this->element('p', null, _('Invitation(s) sent to the following e-mail addresses:')); $this->elementStart('ul'); foreach ($this->sent as $other) { $this->element('li', null, $other); @@ -226,9 +226,9 @@ class InviteAction extends CurrentUserDesignAction $headers['Subject'] = sprintf(_('%1$s has invited you to join them on %2$s'), $bestname, $sitename); $body = sprintf(_("%1\$s has invited you to join them on %2\$s (%3\$s).\n\n". - "%2\$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\n". - "You can also share news about yourself, your thoughts, or your life online with people who know about you. ". - "It's also great for meeting new people who share your interests.\n\n". + "%2\$s is a micro-blogging service that lets you keep up-to-date with those you know and those who interest you.\n\n". + "You can also share news about yourself, your thoughts, or your life online with users who know about you. ". + "It is also great for meeting others who share your interests.\n\n". "%1\$s said:\n\n%4\$s\n\n". "You can see %1\$s's profile page on %2\$s here:\n\n". "%5\$s\n\n". |