]> git.joonet.de Git - adminer.git/commitdiff
Number of rows
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Wed, 25 Jul 2007 15:45:10 +0000 (15:45 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Wed, 25 Jul 2007 15:45:10 +0000 (15:45 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@251 7c3ca157-0c34-0410-bff1-cbf682f78f5c

design.inc.php
lang.inc.php

index ff48a761a6797c0015a7d62bcedd31d6e7cfb408..1d2da28c183d07840df935ac9fbbb5e3d9d06921 100644 (file)
@@ -71,7 +71,7 @@ function page_footer($missing = false) {
                        } else {
                                echo "<p>\n";
                                while ($row = $result->fetch_assoc()) {
-                                       echo '<a href="' . htmlspecialchars($SELF) . 'select=' . urlencode($row["Name"]) . '">' . lang('select') . '</a> ';
+                                       echo '<a href="' . htmlspecialchars($SELF) . 'select=' . urlencode($row["Name"]) . '" title="' . lang('%d row(s)', $row["Rows"]) . '">' . lang('select') . '</a> ';
                                        echo '<a href="' . htmlspecialchars($SELF) . (isset($row["Engine"]) ? 'table' : 'view') . '=' . urlencode($row["Name"]) . '">' . htmlspecialchars($row["Name"]) . "</a><br />\n";
                                }
                                echo "</p>\n";
index e5e36e2e301e9b60a2682b62ef0f6e5819da2fbe..d5e4b25b1e93a7dd2b6b6e6fe0d1805fde1c97d7 100644 (file)
@@ -5,6 +5,7 @@ static $translations = array(
                '%d byte(s)' => array('%d byte', '%d bytes'),
                'Routine has been called, %d row(s) affected.' => array('Routine has been called, %d row affected.', 'Routine has been called, %d rows affected.'),
                '%d process(es) has been killed.' => array('%d process has been killed.', '%d processes have been killed.'),
+               '%d row(s)' => array('%d row', '%d rows'),
        ),
        'cs' => array(
                'Login' => 'Přihlásit se',
@@ -154,6 +155,7 @@ static $translations = array(
                'Event' => 'Událost',
                'MySQL version' => 'Verze MySQL',
                'through PHP extension' => 'přes PHP extenzi',
+               '%d row(s)' => array('%d řádek', '%d řádky', '%d řádků'),
        ),
 );