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/register.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/register.php')
-rw-r--r-- | actions/register.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actions/register.php b/actions/register.php index 57f8e7bdf..584ad3ead 100644 --- a/actions/register.php +++ b/actions/register.php @@ -82,14 +82,14 @@ class RegisterAction extends Action } if (common_config('site', 'inviteonly') && empty($this->code)) { - $this->clientError(_('Sorry, only invited people can register.')); + $this->clientError(_('Sorry. Only those invited can register.')); return false; } if (!empty($this->code)) { $this->invite = Invitation::staticGet('code', $this->code); if (empty($this->invite)) { - $this->clientError(_('Sorry, invalid invitation code.')); + $this->clientError(_('Sorry. This is an invalid invitation code.')); return false; } // Store this in case we need it @@ -186,7 +186,7 @@ class RegisterAction extends Action } if (common_config('site', 'inviteonly') && !($code && $invite)) { - $this->clientError(_('Sorry, only invited people can register.')); + $this->clientError(_('Sorry. Only those invited can register.')); return; } @@ -401,7 +401,7 @@ class RegisterAction extends Action } if (common_config('site', 'inviteonly') && !($code && $invite)) { - $this->clientError(_('Sorry, only invited people can register.')); + $this->clientError(_('Sorry. Only those invited can register.')); return; } @@ -542,7 +542,7 @@ class RegisterAction extends Action '(%%%%action.imsettings%%%%) '. 'so you can send notices '. 'through instant messages.' . "\n" . - '* [Search for people](%%%%action.peoplesearch%%%%) '. + '* [Search for users](%%%%action.peoplesearch%%%%) '. 'that you may know or '. 'that share your interests. ' . "\n" . '* Update your [profile settings]'. |