diff options
author | Brion Vibber <brion@pobox.com> | 2010-10-25 13:08:57 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-10-25 13:08:57 -0700 |
commit | ca489631db840e33757a71a7e4cb56b187c182d3 (patch) | |
tree | 92c71b81b6870a8fd2d9c94bed8571b653d95413 /actions/designadminpanel.php | |
parent | 90c87553ee7566593529199374215ae80bb3e209 (diff) | |
parent | 01637bcd32921d6857fb7f5c0bbd40fba6bdb830 (diff) |
Merge branch '0.9.x' into 1.0.x
Conflicts:
actions/subscriptions.php
lib/router.php
lib/xmppmanager.php
lib/xmppoutqueuehandler.php
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; } |