diff --git a/lang/cs.inc.php b/lang/cs.inc.php index 6a71e058..3b631352 100644 --- a/lang/cs.inc.php +++ b/lang/cs.inc.php @@ -211,4 +211,6 @@ $translations = array( '%d row(s) has been imported.' => array('Byl importován %d záznam.', 'Byly importovány %d záznamy.', 'Bylo importováno %d záznamů.'), 'CSV Import' => 'Import CSV', 'Import' => 'Import', + 'Table structure' => 'Struktura tabulky', + 'Select table' => 'Vypsat tabulku', ); diff --git a/select.inc.php b/select.inc.php index 046ac5ca..044bb752 100644 --- a/select.inc.php +++ b/select.inc.php @@ -131,10 +131,13 @@ if ($_POST && !$error) { } page_header(lang('Select') . ": " . htmlspecialchars($_GET["select"]), $error); +echo "

"; if (isset($rights["insert"])) { //! pass search values forth and back - echo '

' . lang('New item') . "

\n"; + echo '' . lang('New item') . ' '; } +echo '' . lang('Table structure') . ''; +echo "

\n"; if (!$columns) { echo "

" . lang('Unable to select the table') . ($fields ? "" : ": " . htmlspecialchars($mysql->error)) . ".

\n"; diff --git a/table.inc.php b/table.inc.php index caaba99c..aa66d7c4 100644 --- a/table.inc.php +++ b/table.inc.php @@ -21,6 +21,7 @@ if ($result) { echo "

"; echo '' . lang('Alter table') . ''; echo ($auto_increment_only ? '' : ' ' . lang('Default values') . ''); + echo ' ' . lang('Select table') . ''; echo "

\n"; echo "

" . lang('Indexes') . "

\n";