Forgotten use of translated string

This commit is contained in:
Michal Čihař
2011-03-18 14:53:05 +01:00
parent 24396fe024
commit 5f1f0a8bdb
2 changed files with 2 additions and 2 deletions

View File

@@ -501,7 +501,7 @@ echo ' <option value="' . __('With selected:') . '" selected="selected">'
. __('With selected:') . '</option>' . "\n"; . __('With selected:') . '</option>' . "\n";
echo ' <option value="export" >' echo ' <option value="export" >'
. __('Export') . '</option>' . "\n"; . __('Export') . '</option>' . "\n";
echo ' <option value="' . __('Print view') . '" >' echo ' <option value="print" >'
. __('Print view') . '</option>' . "\n"; . __('Print view') . '</option>' . "\n";
if (!$db_is_information_schema) { if (!$db_is_information_schema) {

View File

@@ -24,7 +24,7 @@ if (! empty($submit_mult)
$what = 'drop_db'; $what = 'drop_db';
} elseif (isset($selected_tbl) && !empty($selected_tbl)) { } elseif (isset($selected_tbl) && !empty($selected_tbl)) {
// coming from database structure view - do something with selected tables // coming from database structure view - do something with selected tables
if ($submit_mult == __('Print view')) { if ($submit_mult == 'print') {
require './tbl_printview.php'; require './tbl_printview.php';
} else { } else {
$selected = $selected_tbl; $selected = $selected_tbl;