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/designadminpanel.php | |
parent | 500157998a0d48ead7ea71f1cb77fc77c0ee7238 (diff) |
i18n/L10n consistency updates.
Diffstat (limited to 'actions/designadminpanel.php')
-rw-r--r-- | actions/designadminpanel.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 199be43ea..321a8ee5e 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -120,8 +120,11 @@ class DesignadminpanelAction extends AdminPanelAction && empty($_POST) && ($_SERVER['CONTENT_LENGTH'] > 0) ) { - $msg = _('The server was unable to handle that much POST ' . - 'data (%s bytes) due to its current configuration.'); + // 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->clientException(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); return; } |