diff --git a/setup/validate.php b/setup/validate.php index 81fb788d6d..ea986f4a64 100644 --- a/setup/validate.php +++ b/setup/validate.php @@ -26,7 +26,10 @@ if (!($values instanceof stdClass)) { $values = (array)$values; $result = PMA_config_validate($vids, $values, true); if ($result === false) { - $result = 'Wrong data or no validation for ' . $vids; + $result = sprintf( + __('Wrong data or no validation for %s'), + implode(',', $vids) + ); } echo $result !== true ? json_encode($result) : ''; ?>