From fb21fc3ce01587b555b4c7dbf2b6a9e75811416c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 30 Mar 2010 14:33:31 +0200 Subject: [PATCH] Another conversion to ngettext. --- libraries/import.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/import.lib.php b/libraries/import.lib.php index e2ef99c17..8d6eb2c9e 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -144,7 +144,7 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false) if ($a_num_rows > 0) { $msg .= $GLOBALS['strRows'] . ': ' . $a_num_rows; } elseif ($a_aff_rows > 0) { - $msg .= sprintf($GLOBALS['strRowsAffected'], $a_aff_rows); + $msg .= sprintf(_ngettext('%1$d row affected.', '%1$d rows affected.', $a_aff_rows), $a_aff_rows); } else { $msg .= $GLOBALS['strEmptyResultSet']; }