From d5cba33366b49d5dd0515fa3ee9b2a08b1a283c3 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 17:11:29 +0200 Subject: [PATCH] Add translator documentation. --- plugins/Realtime/closechannel.php | 3 +++ plugins/Realtime/keepalivechannel.php | 7 +++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/Realtime/closechannel.php b/plugins/Realtime/closechannel.php index 2a044328bf..4c4e5de1cc 100644 --- a/plugins/Realtime/closechannel.php +++ b/plugins/Realtime/closechannel.php @@ -61,18 +61,21 @@ class ClosechannelAction extends Action parent::prepare($argarray); if (!$this->isPost()) { + // TRANS: Client exception. Do not translate POST. throw new ClientException(_m('You have to POST it.')); } $this->channelKey = $this->trimmed('channelkey'); if (empty($this->channelKey)) { + // TRANS: Client exception thrown when the channel key argument is missing. throw new ClientException(_m('No channel key argument.')); } $this->channel = Realtime_channel::staticGet('channel_key', $this->channelKey); if (empty($this->channel)) { + // TRANS: Client exception thrown when referring to a non-existing channel. throw new ClientException(_m('No such channel.')); } diff --git a/plugins/Realtime/keepalivechannel.php b/plugins/Realtime/keepalivechannel.php index 152595d76c..7559927d6b 100644 --- a/plugins/Realtime/keepalivechannel.php +++ b/plugins/Realtime/keepalivechannel.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class KeepalivechannelAction extends Action { protected $channelKey = null; @@ -57,24 +56,26 @@ class KeepalivechannelAction extends Action * * @return boolean true */ - function prepare($argarray) { parent::prepare($argarray); if (!$this->isPost()) { + // TRANS: Client exception. Do not translate POST. throw new ClientException(_m('You have to POST it.')); } $this->channelKey = $this->trimmed('channelkey'); if (empty($this->channelKey)) { + // TRANS: Client exception thrown when the channel key argument is missing. throw new ClientException(_m('No channel key argument.')); } $this->channel = Realtime_channel::staticGet('channel_key', $this->channelKey); if (empty($this->channel)) { + // TRANS: Client exception thrown when referring to a non-existing channel. throw new ClientException(_m('No such channel.')); } @@ -88,7 +89,6 @@ class KeepalivechannelAction extends Action * * @return void */ - function handle($argarray=null) { $this->channel->touch(); @@ -107,7 +107,6 @@ class KeepalivechannelAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { return false;