Use ngettext.

This commit is contained in:
Michal Čihař
2010-05-25 14:26:05 +02:00
parent 93ca7a3544
commit 5dd82ed484
2 changed files with 2 additions and 2 deletions

View File

@@ -477,7 +477,7 @@ if ($is_show_stats) {
if ($num_tables == 0)
$tableReductionCount = 0;
echo sprintf(__('%s table(s)'), PMA_formatNumber($num_tables - $tableReductionCount, 0));
echo sprintf(_ngettext('%s table', '%s tables', $num_tables - $tableReductionCount), PMA_formatNumber($num_tables - $tableReductionCount, 0));
?>
</th>
<?php