L10n updates.

This commit is contained in:
Siebrand Mazeland 2011-06-17 11:20:19 +02:00
parent a35392da2f
commit 173d20e1f9
2 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ class NewmessageAction extends Action
return;
} else if ($user->id == $this->other->id) {
// TRANS: Client error displayed trying to send a direct message to self.
$this->clientError(_('Don\'t send a message to yourself; ' .
$this->clientError(_('Do not send a message to yourself; ' .
'just say it to yourself quietly instead.'), 403);
return;
}

View File

@ -629,7 +629,7 @@ class MessageCommand extends Command
return;
} else if ($this->user->id == $other->id) {
// TRANS: Error text shown when trying to send a direct message to self.
$channel->error($this->user, _('Don\'t send a message to yourself; just say it to yourself quietly instead.'));
$channel->error($this->user, _('Do not send a message to yourself; just say it to yourself quietly instead.'));
return;
}
$message = Message::saveNew($this->user->id, $other->id, $this->text, $channel->source());