]> git.joonet.de Git - adminer.git/commitdiff
Number of rows can be approximate (bug #1925576)
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Wed, 26 Mar 2008 09:54:00 +0000 (09:54 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Wed, 26 Mar 2008 09:54:00 +0000 (09:54 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@383 7c3ca157-0c34-0410-bff1-cbf682f78f5c

design.inc.php
lang/cs.inc.php
lang/en.inc.php
lang/nl.inc.php
lang/sk.inc.php

index e3f709e866e94d6d6290d31c37f33f8b352f42fd..fb1a500759a059254a1228baec586716a8a30974 100644 (file)
@@ -86,7 +86,7 @@ function page_footer($missing = false) {
                        } else {
                                echo "<p>\n";
                                while ($row = $result->fetch_assoc()) {
-                                       echo '<a href="' . htmlspecialchars($SELF) . 'select=' . urlencode($row["Name"]) . '" title="' . lang('%d row(s)', $row["Rows"]) . '">' . lang('select') . '</a> ';
+                                       echo '<a href="' . htmlspecialchars($SELF) . 'select=' . urlencode($row["Name"]) . '" title="' . ($row["Engine"] == "MyISAM" ? lang('%d row(s)', $row["Rows"]) : lang('around %d row(s)', $row["Rows"])) . '">' . lang('select') . '</a> ';
                                        echo '<a href="' . htmlspecialchars($SELF) . (isset($row["Engine"]) ? 'table' : 'view') . '=' . urlencode($row["Name"]) . '" title="' . (isset($row["Engine"]) ? htmlspecialchars($row["Engine"]) : lang('View')) . '">' . htmlspecialchars($row["Name"]) . "</a><br />\n";
                                }
                                echo "</p>\n";
index 006c43d83347a4eda5debdb8ba191a6adcebfb76..36534e6a39d772558466e28180eb9277ae8d4fec 100644 (file)
@@ -147,6 +147,7 @@ $translations = array(
        'Event' => 'Událost',
        'MySQL version: %s through PHP extension %s' => 'Verze MySQL: %s přes PHP extenzi %s',
        '%d row(s)' => array('%d řádek', '%d řádky', '%d řádků'),
+       'around %d row(s)' => array('přibližně %d řádek', 'přibližně %d řádky', 'přibližně %d řádků'),
        'ON UPDATE CURRENT_TIMESTAMP' => 'Při změně aktuální čas',
        'Remove' => 'Odebrat',
        'Are you sure?' => 'Opravdu?',
index 4de590aee069d1c5650921e6887b0cbe8f2a082b..853d50f213ebe80acf1f4a2d4ec7bfc47f1baa24 100644 (file)
@@ -5,5 +5,6 @@ $translations = array(
        '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'),
+       'around %d row(s)' => array('around %d row', 'around %d rows'),
        '%d item(s) have been deleted.' => array('%d item has been deleted.', '%d items have been deleted.'),
 );
index 37c28c2b8c5b590439a261d6eb0c369dbba6044e..3a15446102089439cd07f7dd3eeb77434d04bd8b 100644 (file)
@@ -147,6 +147,7 @@ $translations = array(
        'Event' => 'Event',
        'MySQL version: %s through PHP extension %s' => 'MySQL versie: %s met PHP extensie %s',
        '%d row(s)' => array('%d rij', '%d rijen'),
+       'around %d row(s)' => array('ongeveer %d rij', 'ongeveer %d rijen'),
        'ON UPDATE CURRENT_TIMESTAMP' => 'ON UPDATE CURRENT_TIMESTAMP',
        'Remove' => 'Verwijderen',
        'Are you sure?' => 'Weet u het zeker?',
index 4b9fa415236eda83dd5793751108c6e8f7a1bb75..49904e1d12098cab66b7c5114bbad291a9910fa1 100644 (file)
@@ -147,6 +147,7 @@ $translations = array(
        'Event' => 'Udalosť',
        'MySQL version: %s through PHP extension %s' => 'Verzia MySQL: %s cez PHP rozšírenie %s',
        '%d row(s)' => array('%d riadok', '%d riadky', '%d riadkov'),
+       'around %d row(s)' => array('približne %d riadok', 'približne %d riadky', 'približne %d riadkov'),
        'ON UPDATE CURRENT_TIMESTAMP' => 'Pri zmene aktuálny čas',
        'Remove' => 'Odobrať',
        'Are you sure?' => 'Naozaj?',