]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
L10n updates.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 17 Jun 2011 09:20:19 +0000 (11:20 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 17 Jun 2011 20:36:24 +0000 (22:36 +0200)
actions/newmessage.php
lib/command.php

index dd7c5357ba0f2980f3b13de4a56b1be217271bd3..fa1922c4a0a5fe3a7e13ba6ee536cee9f6d2a04b 100644 (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;
         }
index fcc21cc5e55d4642ae6467985ed254a5924e60cd..f51cbbb5f76f78362ae1fe21407596c15a42f458 100644 (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());