mirror of
https://github.com/vrana/adminer.git
synced 2025-08-17 20:01:25 +02:00
Remove useless translations
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1014 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -8,7 +8,7 @@ class Adminer {
|
||||
* @return string
|
||||
*/
|
||||
function name() {
|
||||
return lang('Adminer');
|
||||
return "Adminer";
|
||||
}
|
||||
|
||||
/** Connection parameters
|
||||
@@ -163,7 +163,7 @@ class Adminer {
|
||||
if ($index["type"] == "FULLTEXT") {
|
||||
echo "(<i>" . implode("</i>, <i>", array_map('h', $index["columns"])) . "</i>) AGAINST";
|
||||
echo " <input name='fulltext[$i]' value='" . h($_GET["fulltext"][$i]) . "'>";
|
||||
echo "<label><input type='checkbox' name='boolean[$i]' value='1'" . (isset($_GET["boolean"][$i]) ? " checked" : "") . ">" . lang('BOOL') . "</label>";
|
||||
echo "<label><input type='checkbox' name='boolean[$i]' value='1'" . (isset($_GET["boolean"][$i]) ? " checked" : "") . ">BOOL</label>";
|
||||
echo "<br>\n";
|
||||
}
|
||||
}
|
||||
|
@@ -65,13 +65,13 @@ function edit_fields($fields, $collations, $type = "TABLE", $allowed = 0, $forei
|
||||
}
|
||||
?>
|
||||
<thead><tr>
|
||||
<?php if ($type == "PROCEDURE") { ?><td><?php echo lang('IN-OUT'); ?><?php } ?>
|
||||
<?php if ($type == "PROCEDURE") { ?><td> <?php } ?>
|
||||
<th><?php echo ($type == "TABLE" ? lang('Column name') : lang('Parameter name')); ?>
|
||||
<td><?php echo lang('Type'); ?>
|
||||
<td><?php echo lang('Length'); ?>
|
||||
<td><?php echo lang('Options'); ?>
|
||||
<?php if ($type == "TABLE") { ?>
|
||||
<td><?php echo lang('NULL'); ?>
|
||||
<td>NULL
|
||||
<td><input type="radio" name="auto_increment_col" value=""><?php echo lang('Auto Increment'); ?>
|
||||
<td class="hidden"><?php echo lang('Default values'); ?>
|
||||
<td<?php echo ($column_comments ? "" : " class='hidden'"); ?>><?php echo lang('Comment'); ?>
|
||||
|
@@ -158,5 +158,6 @@ function dump_headers($identifier, $multi_table = false) {
|
||||
}
|
||||
|
||||
$dump_output = "<select name='output'>" . optionlist(array('text' => lang('open'), 'file' => lang('save'))) . "</select>"
|
||||
. " <select name='format'>" . optionlist(array('sql' => 'SQL', 'csv' => 'CSV')) . "</select>";
|
||||
. " <select name='format'>" . optionlist(array('sql' => 'SQL', 'csv' => 'CSV')) . "</select>"
|
||||
;
|
||||
$max_packet = 1048576; // default, minimum is 1024
|
||||
|
Reference in New Issue
Block a user