diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-10-21 13:20:21 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-10-21 13:20:21 +0200 |
commit | cb74822e7ad0d03fa0b4dbc3b9c4c14778ba3841 (patch) | |
tree | 86311962b61e35aaa7ae8627e76efafbc5ed887b /actions/newnotice.php | |
parent | 500157998a0d48ead7ea71f1cb77fc77c0ee7238 (diff) |
i18n/L10n consistency updates.
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r-- | actions/newnotice.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index ea832cf4e..57cd847c6 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -82,7 +82,6 @@ class NewnoticeAction extends Action * * @return void */ - function handle($args) { if (!common_logged_in()) { @@ -91,9 +90,12 @@ class NewnoticeAction extends Action // check for this before token since all POST and FILES data // is losts when size is exceeded if (empty($_POST) && $_SERVER['CONTENT_LENGTH']) { - $this->clientError(sprintf(_('The server was unable to handle ' . - 'that much POST data (%s bytes) due to its current configuration.'), - $_SERVER['CONTENT_LENGTH'])); + // TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. + // TRANS: %s is the number of bytes of the CONTENT_LENGTH. + $msg = _m('The server was unable to handle that much POST data (%s byte) due to its current configuration.', + 'The server was unable to handle that much POST data (%s bytes) due to its current configuration.', + intval($_SERVER['CONTENT_LENGTH'])); + $this->clientError(sprintf($msg,$_SERVER['CONTENT_LENGTH'])); } parent::handle($args); @@ -352,4 +354,3 @@ class NewnoticeAction extends Action $nli->show(); } } - |