mirror of
https://github.com/vrana/adminer.git
synced 2025-08-15 11:04:02 +02:00
Number of rows
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@251 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -71,7 +71,7 @@ function page_footer($missing = false) {
|
|||||||
} else {
|
} else {
|
||||||
echo "<p>\n";
|
echo "<p>\n";
|
||||||
while ($row = $result->fetch_assoc()) {
|
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 '<a href="' . htmlspecialchars($SELF) . (isset($row["Engine"]) ? 'table' : 'view') . '=' . urlencode($row["Name"]) . '">' . htmlspecialchars($row["Name"]) . "</a><br />\n";
|
||||||
}
|
}
|
||||||
echo "</p>\n";
|
echo "</p>\n";
|
||||||
|
@@ -5,6 +5,7 @@ static $translations = array(
|
|||||||
'%d byte(s)' => array('%d byte', '%d bytes'),
|
'%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.'),
|
'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 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(
|
'cs' => array(
|
||||||
'Login' => 'Přihlásit se',
|
'Login' => 'Přihlásit se',
|
||||||
@@ -154,6 +155,7 @@ static $translations = array(
|
|||||||
'Event' => 'Událost',
|
'Event' => 'Událost',
|
||||||
'MySQL version' => 'Verze MySQL',
|
'MySQL version' => 'Verze MySQL',
|
||||||
'through PHP extension' => 'přes PHP extenzi',
|
'through PHP extension' => 'přes PHP extenzi',
|
||||||
|
'%d row(s)' => array('%d řádek', '%d řádky', '%d řádků'),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user