Drop multiple databases.
This commit is contained in:
10
ChangeLog
10
ChangeLog
@@ -6,15 +6,19 @@ $Id$
|
|||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
2003-02-09 Alexander M. Turek <rabus@users.sourceforge.net>
|
2003-02-09 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
* server_databases.php3: Bugfixes & interface cosmetic.
|
* server_databases.php3, lang/*.inc.php3:
|
||||||
|
- Bugfixes & interface cosmetic;
|
||||||
|
- Drop multiple databases.
|
||||||
|
* db_stats.php3: Removed, the file is replaced by server_databases.php3.
|
||||||
|
* lang/german-*.inc.php3: Updates.
|
||||||
|
* config.inc.php3: Added a note about another possible setting.
|
||||||
|
|
||||||
2003-02-08 Alexander M. Turek <rabus@users.sourceforge.net>
|
2003-02-08 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
* config.inc.php3, lang/add_message.sh: Typos.
|
* config.inc.php3, lang/add_message.sh: Typos.
|
||||||
* lang/italian.inc.php3: Updates, thanks to Pietro Danesi (danone).
|
* lang/italian.inc.php3: Updates, thanks to Pietro Danesi (danone).
|
||||||
* server_databases.php3, server_links.inc.php3, lang/*.inc.php3:
|
* server_databases.php3, server_links.inc.php3, lang/*.inc.php3:
|
||||||
Reworte db_stats.php3 to be conform with the new server_ pages.
|
Reworte db_stats.php3 to be conform with the new server_ pages.
|
||||||
TODO: - reimplement "check privileges" feature;
|
TODO: reimplement "check privileges" feature.
|
||||||
- reimplement "drop selected databases" feature.
|
|
||||||
|
|
||||||
2003-02-07 Michal Cihar <nijel@users.sourceforge.net>
|
2003-02-07 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* lang/czech: Updated.
|
* lang/czech: Updated.
|
||||||
|
@@ -224,6 +224,7 @@ $cfg['DefaultTabServer'] = 'main.php3';
|
|||||||
// Possible values:
|
// Possible values:
|
||||||
// 'main.php3' = the welcome page
|
// 'main.php3' = the welcome page
|
||||||
// (recommended for multiuser setups)
|
// (recommended for multiuser setups)
|
||||||
|
// 'server_databases.php3' = list of databases
|
||||||
// 'server_status.php3' = runtime information
|
// 'server_status.php3' = runtime information
|
||||||
// 'server_variables.php3' = MySQL server variables
|
// 'server_variables.php3' = MySQL server variables
|
||||||
// 'server_privileges.php3' = user management
|
// 'server_privileges.php3' = user management
|
||||||
|
351
db_stats.php3
351
db_stats.php3
@@ -1,351 +0,0 @@
|
|||||||
<?php
|
|
||||||
/* $Id$ */
|
|
||||||
// vim: expandtab sw=4 ts=4 sts=4:
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the variables sent to this script and send headers
|
|
||||||
*/
|
|
||||||
$js_to_run = 'functions.js';
|
|
||||||
require('./libraries/grab_globals.lib.php3');
|
|
||||||
require('./header.inc.php3');
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensures the current user is super-user
|
|
||||||
*/
|
|
||||||
if (!@PMA_mysql_query('USE mysql', $userlink)) {
|
|
||||||
echo '<p><b>' . $strError . '</b></p>' . "\n";
|
|
||||||
echo '<p> ' . $strNoRights . '</p>' . "\n";
|
|
||||||
include('./footer.inc.php3');
|
|
||||||
exit();
|
|
||||||
} // end if
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Drop databases if required
|
|
||||||
*/
|
|
||||||
if ((!empty($submit_mult) && isset($selected_db))
|
|
||||||
|| isset($mult_btn)) {
|
|
||||||
$err_url = 'db_stats.php3?' . PMA_generate_common_url();
|
|
||||||
$action = 'db_stats.php3';
|
|
||||||
$show_query = '1';
|
|
||||||
include('./mult_submits.inc.php3');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sorts the databases array according to the user's choice
|
|
||||||
*
|
|
||||||
* @param array a record associated to a database
|
|
||||||
* @param array a record associated to a database
|
|
||||||
*
|
|
||||||
* @return integer a value representing whether $a should be before $b in the
|
|
||||||
* sorted array or not
|
|
||||||
*
|
|
||||||
* @global mixed the array to sort
|
|
||||||
* @global mixed 'key' if the table has to be sorted by key, the column
|
|
||||||
* number to use to sort the array else
|
|
||||||
*
|
|
||||||
* @access private
|
|
||||||
*/
|
|
||||||
function PMA_dbCmp($a, $b)
|
|
||||||
{
|
|
||||||
global $dbs_array;
|
|
||||||
global $col;
|
|
||||||
|
|
||||||
$is_asc = ($GLOBALS['sort_order'] == 'asc');
|
|
||||||
|
|
||||||
// Sort by key (the db names) if required
|
|
||||||
if (!is_int($col) && $col == 'key') {
|
|
||||||
return (($is_asc) ? strcasecmp($a, $b) : -strcasecmp($a, $b));
|
|
||||||
}
|
|
||||||
// Sort by key (the db names) in ascending order if the columns' values are
|
|
||||||
// the same
|
|
||||||
else if ($dbs_array[$a][$col] == $dbs_array[$b][$col]) {
|
|
||||||
return strcasecmp($a, $b);
|
|
||||||
}
|
|
||||||
// Other cases
|
|
||||||
else {
|
|
||||||
$tmp = (($dbs_array[$a][$col] < $dbs_array[$b][$col]) ? -1 : 1);
|
|
||||||
return (($is_asc) ? $tmp : -$tmp);
|
|
||||||
}
|
|
||||||
} // end of the 'PMA_dbCmp()' function
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the list and number of available databases.
|
|
||||||
* Skipped if no server selected: in this case no database should be displayed
|
|
||||||
* before the user choose among available ones at the welcome screen.
|
|
||||||
*/
|
|
||||||
if ($server > 0) {
|
|
||||||
// Get the valid databases list
|
|
||||||
$num_dbs = count($dblist);
|
|
||||||
$dbs = @mysql_list_dbs() or PMA_mysqlDie('', 'mysql_list_dbs()', '', 'main.php3?' . PMA_generate_common_url());
|
|
||||||
if ($dbs) {
|
|
||||||
while ($a_db = PMA_mysql_fetch_object($dbs)) {
|
|
||||||
if (!$num_dbs) {
|
|
||||||
$dblist[] = $a_db->Database;
|
|
||||||
} else {
|
|
||||||
$true_dblist[$a_db->Database] = '';
|
|
||||||
}
|
|
||||||
} // end while
|
|
||||||
mysql_free_result($dbs);
|
|
||||||
} // end if
|
|
||||||
if ($num_dbs && empty($true_dblist)) {
|
|
||||||
$dblist = array();
|
|
||||||
} else if ($num_dbs) {
|
|
||||||
for ($i = 0; $i < $num_dbs; $i++) {
|
|
||||||
if (isset($true_dblist[$dblist[$i]])) {
|
|
||||||
$dblist_valid[] = $dblist[$i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (isset($dblist_valid)) {
|
|
||||||
$dblist = $dblist_valid;
|
|
||||||
unset($dblist_valid);
|
|
||||||
} else {
|
|
||||||
$dblist = array();
|
|
||||||
}
|
|
||||||
unset($true_dblist);
|
|
||||||
}
|
|
||||||
// Get the valid databases count
|
|
||||||
$num_dbs = count($dblist);
|
|
||||||
} else {
|
|
||||||
$num_dbs = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays the page
|
|
||||||
*/
|
|
||||||
?>
|
|
||||||
<h1 align="center">
|
|
||||||
<?php echo $strDatabasesStats; ?>
|
|
||||||
</h1>
|
|
||||||
<table align="center" border="<?php echo $cfg['Border']; ?>" cellpadding="5">
|
|
||||||
<tr>
|
|
||||||
<th align="<?php echo $cell_align_left; ?>"><big><?php echo $strHost . ' :'; ?></big></th>
|
|
||||||
<th align="<?php echo $cell_align_left; ?>"><big><?php echo $cfg['Server']['host']; ?></big></th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th align="<?php echo $cell_align_left; ?>"><big><?php echo $strGenTime . ' :'; ?></big></th>
|
|
||||||
<th align="<?php echo $cell_align_left; ?>"><big><?php echo PMA_localisedDate(); ?></big></th>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<br /><br />
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* At least one db -> do the work
|
|
||||||
*/
|
|
||||||
if ($num_dbs > 0) {
|
|
||||||
// Defines the urls used to sort the table
|
|
||||||
$common_url = 'db_stats.php3?' . PMA_generate_common_url();
|
|
||||||
if (empty($sort_by)) {
|
|
||||||
$sort_by = 'db_name';
|
|
||||||
$sort_order = 'asc';
|
|
||||||
}
|
|
||||||
else if (empty($sort_order)) {
|
|
||||||
$sort_order = (($sort_by == 'db_name') ? 'asc' : 'desc');
|
|
||||||
}
|
|
||||||
$img_tag = ' ' . "\n"
|
|
||||||
. ' '
|
|
||||||
. '<img src="./images/' . $sort_order . '_order.png" border="0" width="7" height="7"'
|
|
||||||
. ' alt="' . (($sort_order == 'asc') ? $strAscending : $strDescending) . '"'
|
|
||||||
. ' title="' . (($sort_order == 'asc') ? $strAscending : $strDescending) . '" />';
|
|
||||||
// Default order is ascending for db name, descending for sizes
|
|
||||||
for ($i = 0; $i < 5; $i++) {
|
|
||||||
$url_sort[$i]['order'] = (($i == 0) ? 'asc' : 'desc');
|
|
||||||
$url_sort[$i]['img_tag'] = '';
|
|
||||||
}
|
|
||||||
if ($sort_by == 'db_name') {
|
|
||||||
$url_sort[0]['order'] = (($sort_order == 'asc') ? 'desc' : 'asc');
|
|
||||||
$url_sort[0]['img_tag'] = $img_tag;
|
|
||||||
$col = 'key'; // used in 'PMA_dbCmp()'
|
|
||||||
} else if ($sort_by == 'tbl_cnt') {
|
|
||||||
$url_sort[1]['order'] = (($sort_order == 'asc') ? 'desc' : 'asc');
|
|
||||||
$url_sort[1]['img_tag'] = $img_tag;
|
|
||||||
$col = 0;
|
|
||||||
} else if ($sort_by == 'data_sz') {
|
|
||||||
$url_sort[2]['order'] = (($sort_order == 'asc') ? 'desc' : 'asc');
|
|
||||||
$url_sort[2]['img_tag'] = $img_tag;
|
|
||||||
$col = 1;
|
|
||||||
} else if ($sort_by == 'idx_sz') {
|
|
||||||
$url_sort[3]['order'] = (($sort_order == 'asc') ? 'desc' : 'asc');
|
|
||||||
$url_sort[3]['img_tag'] = $img_tag;
|
|
||||||
$col = 2;
|
|
||||||
} else {
|
|
||||||
$url_sort[4]['order'] = (($sort_order == 'asc') ? 'desc' : 'asc');
|
|
||||||
$url_sort[4]['img_tag'] = $img_tag;
|
|
||||||
$col = 3;
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<form action="db_stats.php3" name="dbStatsForm">
|
|
||||||
<?php echo PMA_generate_common_hidden_inputs(); ?>
|
|
||||||
|
|
||||||
<table align="center" border="<?php echo $cfg['Border']; ?>">
|
|
||||||
<tr>
|
|
||||||
<th> </th>
|
|
||||||
<th>
|
|
||||||
|
|
||||||
<a href="<?php echo $common_url . '&sort_by=db_name&sort_order=' . $url_sort[0]['order']; ?>">
|
|
||||||
<?php echo $strDatabase . $url_sort[0]['img_tag']; ?></a>
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
|
|
||||||
<a href="<?php echo $common_url . '&sort_by=tbl_cnt&sort_order=' . $url_sort[1]['order']; ?>">
|
|
||||||
<?php echo $strNumTables . $url_sort[1]['img_tag']; ?></a>
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
|
|
||||||
<a href="<?php echo $common_url . '&sort_by=data_sz&sort_order=' . $url_sort[2]['order']; ?>">
|
|
||||||
<?php echo $strData . $url_sort[2]['img_tag']; ?></a>
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
|
|
||||||
<a href="<?php echo $common_url . '&sort_by=idx_sz&sort_order=' . $url_sort[3]['order']; ?>">
|
|
||||||
<?php echo $strIndexes . $url_sort[3]['img_tag']; ?></a>
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
|
|
||||||
<a href="<?php echo $common_url . '&sort_by=tot_sz&sort_order=' . $url_sort[4]['order']; ?>">
|
|
||||||
<?php echo $strTotalUC . $url_sort[4]['img_tag']; ?></a>
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
<?php
|
|
||||||
unset($url_sort);
|
|
||||||
echo "\n";
|
|
||||||
|
|
||||||
$total_array[0] = 0; // number of tables
|
|
||||||
$total_array[1] = 0; // total data size
|
|
||||||
$total_array[2] = 0; // total index size
|
|
||||||
$total_array[3] = 0; // big total size
|
|
||||||
|
|
||||||
// Gets the tables stats per database
|
|
||||||
for ($i = 0; $i < $num_dbs; $i++) {
|
|
||||||
$db = $dblist[$i];
|
|
||||||
$tables = @PMA_mysql_list_tables($db);
|
|
||||||
|
|
||||||
// Number of tables
|
|
||||||
if ($tables) {
|
|
||||||
$dbs_array[$db][0] = mysql_numrows($tables);
|
|
||||||
mysql_free_result($tables);
|
|
||||||
} else {
|
|
||||||
$dbs_array[$db][0] = 0;
|
|
||||||
}
|
|
||||||
$total_array[0] += $dbs_array[$db][0];
|
|
||||||
|
|
||||||
// Size of data and indexes
|
|
||||||
$dbs_array[$db][1] = 0; // data size column
|
|
||||||
$dbs_array[$db][2] = 0; // index size column
|
|
||||||
$dbs_array[$db][3] = 0; // full size column
|
|
||||||
|
|
||||||
if (PMA_MYSQL_INT_VERSION >= 32303) {
|
|
||||||
$local_query = 'SHOW TABLE STATUS FROM ' . PMA_backquote($db);
|
|
||||||
$result = @PMA_mysql_query($local_query);
|
|
||||||
// needs the "@" below otherwise, warnings in case of special DB names
|
|
||||||
if ($result && @mysql_num_rows($result)) {
|
|
||||||
while ($row = PMA_mysql_fetch_array($result)) {
|
|
||||||
$dbs_array[$db][1] += $row['Data_length'];
|
|
||||||
$dbs_array[$db][2] += $row['Index_length'];
|
|
||||||
}
|
|
||||||
$dbs_array[$db][3] = $dbs_array[$db][1] + $dbs_array[$db][2];
|
|
||||||
$total_array[1] += $dbs_array[$db][1];
|
|
||||||
$total_array[2] += $dbs_array[$db][2];
|
|
||||||
$total_array[3] += $dbs_array[$db][3];
|
|
||||||
mysql_free_result($result);
|
|
||||||
} // end if
|
|
||||||
} // end if MySQL 3.23.03+
|
|
||||||
|
|
||||||
} // end for
|
|
||||||
mysql_close();
|
|
||||||
|
|
||||||
// Sorts the dbs arrays
|
|
||||||
uksort($dbs_array, 'PMA_dbCmp');
|
|
||||||
reset($dbs_array);
|
|
||||||
|
|
||||||
// Check/unchek all databases url
|
|
||||||
$checkall_url = 'db_stats.php3?'
|
|
||||||
. PMA_generate_common_url()
|
|
||||||
. (empty($sort_by) ? '' : '&sort_by=' . $sort_by)
|
|
||||||
. (empty($sort_order) ? '' : '&sort_order=' . $sort_order);
|
|
||||||
$do_check = (empty($checkall))
|
|
||||||
? ''
|
|
||||||
: ' checked="checked"';
|
|
||||||
|
|
||||||
// Displays the tables stats per database
|
|
||||||
$i = 0;
|
|
||||||
while (list($db_name, $db_prop) = each($dbs_array)) {
|
|
||||||
$bgcolor = ($i % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
|
|
||||||
|
|
||||||
list($data_size, $data_unit) = PMA_formatByteDown($dbs_array[$db_name][1], 3, 1);
|
|
||||||
list($idx_size, $idx_unit) = PMA_formatByteDown($dbs_array[$db_name][2], 3, 1);
|
|
||||||
list($tot_size, $tot_unit) = PMA_formatByteDown($dbs_array[$db_name][3], 3, 1);
|
|
||||||
|
|
||||||
echo ' <tr>' . "\n";
|
|
||||||
echo ' <td align="center" bgcolor="'. $bgcolor . '">' . "\n";
|
|
||||||
echo ' <input type="checkbox" name="selected_db[]" value="' . urlencode($db_name) . '"' . $do_check . ' /> ' . "\n";
|
|
||||||
echo ' </td>' . "\n";
|
|
||||||
echo ' <td bgcolor="'. $bgcolor . '"> <a href="index.php3?' . PMA_generate_common_url($db_name) . '" target="_parent">' . htmlspecialchars($db_name) . '</a> </td>' . "\n";
|
|
||||||
echo ' <td align="right" bgcolor="'. $bgcolor . '"> ' . $dbs_array[$db_name][0] . ' </td>' . "\n";
|
|
||||||
echo ' <td align="right" bgcolor="'. $bgcolor . '"> ' . $data_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $data_unit . ' </td>' . "\n";
|
|
||||||
echo ' <td align="right" bgcolor="'. $bgcolor . '"> ' . $idx_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $idx_unit . ' </td>' . "\n";
|
|
||||||
echo ' <td align="right" bgcolor="'. $bgcolor . '"> <b>' . $tot_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $tot_unit . '</b> </td>' . "\n";
|
|
||||||
echo ' </tr>' . "\n";
|
|
||||||
|
|
||||||
$i++;
|
|
||||||
} // end while
|
|
||||||
unset($dbs_array);
|
|
||||||
|
|
||||||
// Displays the server stats
|
|
||||||
list($data_size, $data_unit) = PMA_formatByteDown($total_array[1], 3, 1);
|
|
||||||
list($idx_size, $idx_unit) = PMA_formatByteDown($total_array[2], 3, 1);
|
|
||||||
list($tot_size, $tot_unit) = PMA_formatByteDown($total_array[3], 3, 1);
|
|
||||||
|
|
||||||
echo ' <tr>' . "\n";
|
|
||||||
echo ' <th> </th>' . "\n";
|
|
||||||
echo ' <th> ' . $strSum . ': ' . $num_dbs . '</th>' . "\n";
|
|
||||||
echo ' <th align="right"> ' . $total_array[0] . ' </th>' . "\n";
|
|
||||||
echo ' <th align="right"> ' . $data_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $data_unit . ' </th>' . "\n";
|
|
||||||
echo ' <th align="right"> ' . $idx_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $idx_unit . ' </th>' . "\n";
|
|
||||||
echo ' <th align="right"> <b>' . $tot_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $tot_unit . '</b> </th>' . "\n";
|
|
||||||
echo ' </tr>' . "\n\n";
|
|
||||||
|
|
||||||
echo ' <tr>' . "\n";
|
|
||||||
echo ' <td colspan="6">' . "\n";
|
|
||||||
echo ' <img src="./images/arrow_' . $text_dir . '.gif" border="0" width="38" height="22" alt="' . $strWithChecked . '" />' . "\n";
|
|
||||||
echo ' <a href="' . $checkall_url . '&checkall=1" onclick="setCheckboxes(\'dbStatsForm\', true); return false;">' . "\n";
|
|
||||||
echo ' ' . $strCheckAll . '</a>' . "\n";
|
|
||||||
echo ' / ' . "\n";
|
|
||||||
echo ' <a href="' . $checkall_url . '" onclick="setCheckboxes(\'dbStatsForm\', false); return false;">' . "\n";
|
|
||||||
echo ' ' . $strUncheckAll . '</a>' . "\n";
|
|
||||||
echo ' ' . "\n";
|
|
||||||
echo ' <i>' . $strWithChecked . '</i> <input type="submit" name="submit_mult" value="' . $strDrop . '" />' . "\n";
|
|
||||||
echo ' </td>' . "\n";
|
|
||||||
echo ' </tr>' . "\n";
|
|
||||||
|
|
||||||
echo ' </table>' . "\n\n";
|
|
||||||
|
|
||||||
echo '</form>' . "\n";
|
|
||||||
|
|
||||||
unset($total_array);
|
|
||||||
} // end if ($num_dbs > 0)
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* No database case
|
|
||||||
*/
|
|
||||||
else {
|
|
||||||
?>
|
|
||||||
<p align="center"><big> <?php echo $strNoDatabases; ?></big></p>
|
|
||||||
<?php
|
|
||||||
} // end if ($num_dbs == 0)
|
|
||||||
echo "\n";
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays the footer
|
|
||||||
*/
|
|
||||||
require('./footer.inc.php3');
|
|
||||||
?>
|
|
@@ -574,4 +574,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -575,4 +575,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -567,4 +567,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -568,4 +568,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -589,4 +589,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -589,4 +589,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -64,4 +64,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -567,4 +567,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -582,4 +582,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -583,4 +583,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -85,6 +85,8 @@ $strChangePassword = 'Change password';
|
|||||||
$strCharsetOfFile = 'Character set of the file:';
|
$strCharsetOfFile = 'Character set of the file:';
|
||||||
$strCheckAll = 'Check All';
|
$strCheckAll = 'Check All';
|
||||||
$strCheckDbPriv = 'Check Database Privileges';
|
$strCheckDbPriv = 'Check Database Privileges';
|
||||||
|
$strCheckPrivs = 'Check Privileges';
|
||||||
|
$strCheckPrivsLong = 'Check privileges for database "%s".';
|
||||||
$strCheckTable = 'Check table';
|
$strCheckTable = 'Check table';
|
||||||
$strChoosePage = 'Please choose a Page to edit';
|
$strChoosePage = 'Please choose a Page to edit';
|
||||||
$strColComFeat = 'Displaying Column Comments';
|
$strColComFeat = 'Displaying Column Comments';
|
||||||
@@ -128,7 +130,11 @@ $strDatabase = 'Database ';
|
|||||||
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
||||||
$strDatabaseWildcard = 'Database (wildcards allowed):';
|
$strDatabaseWildcard = 'Database (wildcards allowed):';
|
||||||
$strDatabases = 'databases';
|
$strDatabases = 'databases';
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.';
|
||||||
$strDatabasesStats = 'Databases statistics';
|
$strDatabasesStats = 'Databases statistics';
|
||||||
|
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.';
|
||||||
|
$strDatabasesStatsDisable = 'Disable Statistics';
|
||||||
|
$strDatabasesStatsEnable = 'Enable Statistics';
|
||||||
$strDbPrivileges = 'Database-specific privileges';
|
$strDbPrivileges = 'Database-specific privileges';
|
||||||
$strDefault = 'Default';
|
$strDefault = 'Default';
|
||||||
$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a';
|
$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a';
|
||||||
@@ -151,6 +157,7 @@ $strDoYouReally = 'Do you really want to ';
|
|||||||
$strDocu = 'Documentation';
|
$strDocu = 'Documentation';
|
||||||
$strDrop = 'Drop';
|
$strDrop = 'Drop';
|
||||||
$strDropDB = 'Drop database %s';
|
$strDropDB = 'Drop database %s';
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases';
|
||||||
$strDropTable = 'Drop table';
|
$strDropTable = 'Drop table';
|
||||||
$strDropUsersDb = 'Drop the databases that have the same names as the users.';
|
$strDropUsersDb = 'Drop the databases that have the same names as the users.';
|
||||||
$strDumpXRows = 'Dump %s row(s) starting at record # %s.';
|
$strDumpXRows = 'Dump %s row(s) starting at record # %s.';
|
||||||
@@ -234,6 +241,7 @@ $strInsertedRows = 'Inserted rows:';
|
|||||||
$strInstructions = 'Instructions';
|
$strInstructions = 'Instructions';
|
||||||
$strInvalidName = '"%s" is a reserved word, you can\'t use it as a database/table/field name.';
|
$strInvalidName = '"%s" is a reserved word, you can\'t use it as a database/table/field name.';
|
||||||
|
|
||||||
|
$strJumpToDB = 'Jump to database "%s".';
|
||||||
$strJustDelete = 'Just delete the users from the privilege tables.';
|
$strJustDelete = 'Just delete the users from the privilege tables.';
|
||||||
$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.';
|
$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.';
|
||||||
|
|
||||||
@@ -278,6 +286,7 @@ $strName = 'Name';
|
|||||||
$strNext = 'Next';
|
$strNext = 'Next';
|
||||||
$strNo = 'No';
|
$strNo = 'No';
|
||||||
$strNoDatabases = 'No databases';
|
$strNoDatabases = 'No databases';
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.';
|
||||||
$strNoDescription = 'no Description';
|
$strNoDescription = 'no Description';
|
||||||
$strNoDropDatabases = '"DROP DATABASE" statements are disabled.';
|
$strNoDropDatabases = '"DROP DATABASE" statements are disabled.';
|
||||||
$strNoExplain = 'Skip Explain SQL';
|
$strNoExplain = 'Skip Explain SQL';
|
||||||
@@ -553,10 +562,4 @@ $strYes = 'Yes';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$strZip = '"zipped"';
|
||||||
|
|
||||||
$strCheckPrivs = 'Check Privileges'; //to translate
|
|
||||||
$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
|
|
||||||
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
|
|
||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -86,6 +86,8 @@ $strChangePassword = 'Change password';
|
|||||||
$strCharsetOfFile = 'Character set of the file:';
|
$strCharsetOfFile = 'Character set of the file:';
|
||||||
$strCheckAll = 'Check All';
|
$strCheckAll = 'Check All';
|
||||||
$strCheckDbPriv = 'Check Database Privileges';
|
$strCheckDbPriv = 'Check Database Privileges';
|
||||||
|
$strCheckPrivs = 'Check Privileges';
|
||||||
|
$strCheckPrivsLong = 'Check privileges for database "%s".';
|
||||||
$strCheckTable = 'Check table';
|
$strCheckTable = 'Check table';
|
||||||
$strChoosePage = 'Please choose a Page to edit';
|
$strChoosePage = 'Please choose a Page to edit';
|
||||||
$strColComFeat = 'Displaying Column Comments';
|
$strColComFeat = 'Displaying Column Comments';
|
||||||
@@ -129,7 +131,11 @@ $strDatabase = 'Database ';
|
|||||||
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
||||||
$strDatabaseWildcard = 'Database (wildcards allowed):';
|
$strDatabaseWildcard = 'Database (wildcards allowed):';
|
||||||
$strDatabases = 'databases';
|
$strDatabases = 'databases';
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.';
|
||||||
$strDatabasesStats = 'Databases statistics';
|
$strDatabasesStats = 'Databases statistics';
|
||||||
|
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.';
|
||||||
|
$strDatabasesStatsDisable = 'Disable Statistics';
|
||||||
|
$strDatabasesStatsEnable = 'Enable Statistics';
|
||||||
$strDbPrivileges = 'Database-specific privileges';
|
$strDbPrivileges = 'Database-specific privileges';
|
||||||
$strDefault = 'Default';
|
$strDefault = 'Default';
|
||||||
$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a';
|
$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a';
|
||||||
@@ -152,6 +158,7 @@ $strDoYouReally = 'Do you really want to ';
|
|||||||
$strDocu = 'Documentation';
|
$strDocu = 'Documentation';
|
||||||
$strDrop = 'Drop';
|
$strDrop = 'Drop';
|
||||||
$strDropDB = 'Drop database %s';
|
$strDropDB = 'Drop database %s';
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases';
|
||||||
$strDropTable = 'Drop table';
|
$strDropTable = 'Drop table';
|
||||||
$strDropUsersDb = 'Drop the databases that have the same names as the users.';
|
$strDropUsersDb = 'Drop the databases that have the same names as the users.';
|
||||||
$strDumpXRows = 'Dump %s row(s) starting at record # %s.';
|
$strDumpXRows = 'Dump %s row(s) starting at record # %s.';
|
||||||
@@ -235,6 +242,7 @@ $strInsertedRows = 'Inserted rows:';
|
|||||||
$strInstructions = 'Instructions';
|
$strInstructions = 'Instructions';
|
||||||
$strInvalidName = '"%s" is a reserved word, you can\'t use it as a database/table/field name.';
|
$strInvalidName = '"%s" is a reserved word, you can\'t use it as a database/table/field name.';
|
||||||
|
|
||||||
|
$strJumpToDB = 'Jump to database "%s".';
|
||||||
$strJustDelete = 'Just delete the users from the privilege tables.';
|
$strJustDelete = 'Just delete the users from the privilege tables.';
|
||||||
$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.';
|
$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.';
|
||||||
|
|
||||||
@@ -279,6 +287,7 @@ $strName = 'Name';
|
|||||||
$strNext = 'Next';
|
$strNext = 'Next';
|
||||||
$strNo = 'No';
|
$strNo = 'No';
|
||||||
$strNoDatabases = 'No databases';
|
$strNoDatabases = 'No databases';
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.';
|
||||||
$strNoDescription = 'no Description';
|
$strNoDescription = 'no Description';
|
||||||
$strNoDropDatabases = '"DROP DATABASE" statements are disabled.';
|
$strNoDropDatabases = '"DROP DATABASE" statements are disabled.';
|
||||||
$strNoExplain = 'Skip Explain SQL';
|
$strNoExplain = 'Skip Explain SQL';
|
||||||
@@ -554,10 +563,4 @@ $strYes = 'Yes';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$strZip = '"zipped"';
|
||||||
|
|
||||||
$strCheckPrivs = 'Check Privileges'; //to translate
|
|
||||||
$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
|
|
||||||
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
|
|
||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -564,4 +564,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -562,4 +562,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -585,4 +585,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -562,4 +562,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -571,4 +571,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -93,6 +93,8 @@ $strChangePassword = 'Kennwort
|
|||||||
$strCharsetOfFile = 'Zeichencodierung der Datei:';
|
$strCharsetOfFile = 'Zeichencodierung der Datei:';
|
||||||
$strCheckAll = 'Alle ausw<73>hlen';
|
$strCheckAll = 'Alle ausw<73>hlen';
|
||||||
$strCheckDbPriv = 'Rechte einer Datenbank pr<70>fen';
|
$strCheckDbPriv = 'Rechte einer Datenbank pr<70>fen';
|
||||||
|
$strCheckPrivs = 'Rechte <20>berpr<70>fen';
|
||||||
|
$strCheckPrivsLong = '<27>berpr<70>ft die Rechte f<>r die Datenbank "%s".';
|
||||||
$strCheckTable = '<27>berpr<70>fe Tabelle';
|
$strCheckTable = '<27>berpr<70>fe Tabelle';
|
||||||
$strChoosePage = 'Bitte w<>hlen Sie die zu bearbeitende Seite.';
|
$strChoosePage = 'Bitte w<>hlen Sie die zu bearbeitende Seite.';
|
||||||
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
||||||
@@ -136,7 +138,11 @@ $strDatabase = 'Datenbank';
|
|||||||
$strDatabaseHasBeenDropped = 'Datenbank %s wurde gel<65>scht.';
|
$strDatabaseHasBeenDropped = 'Datenbank %s wurde gel<65>scht.';
|
||||||
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
||||||
$strDatabases = 'Datenbanken';
|
$strDatabases = 'Datenbanken';
|
||||||
|
$strDatabasesDropped = 'Es wurden %s Datenbanken gel<65>scht.';
|
||||||
$strDatabasesStats = 'Statistiken <20>ber alle Datenbanken';
|
$strDatabasesStats = 'Statistiken <20>ber alle Datenbanken';
|
||||||
|
$strDatabasesStatsDisable = 'Datenbankstatistiken deaktivieren';
|
||||||
|
$strDatabasesStatsEnable = 'Datenbankstatistiken aktivieren';
|
||||||
|
$strDatabasesStatsHeavyTraffic = 'Bitte beachten Sie: Das Aktivieren der Datenbankstatistiken kann starken Traffic zwischen dem Web- und dem MySQL-Server zur Folge haben.';
|
||||||
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
||||||
$strDefault = 'Standard';
|
$strDefault = 'Standard';
|
||||||
$strDelete = 'L<>schen';
|
$strDelete = 'L<>schen';
|
||||||
@@ -147,6 +153,7 @@ $strDeleteUserMessage = 'Der Benutzer %s wurde gel
|
|||||||
$strDeleted = 'Die Zeile wurde gel<65>scht.';
|
$strDeleted = 'Die Zeile wurde gel<65>scht.';
|
||||||
$strDeletedRows = 'Gel<65>schte Zeilen:';
|
$strDeletedRows = 'Gel<65>schte Zeilen:';
|
||||||
$strDeleting = 'L<>sche %s';
|
$strDeleting = 'L<>sche %s';
|
||||||
|
$strDefaultValueHelp = 'Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder Anf<6E>hrungszeichen an.';
|
||||||
$strDescending = 'absteigend';
|
$strDescending = 'absteigend';
|
||||||
$strDisabled = 'Deaktiviert';
|
$strDisabled = 'Deaktiviert';
|
||||||
$strDisplay = 'Zeige';
|
$strDisplay = 'Zeige';
|
||||||
@@ -158,6 +165,7 @@ $strDoYouReally = 'M
|
|||||||
$strDocu = 'Dokumentation';
|
$strDocu = 'Dokumentation';
|
||||||
$strDrop = 'L<>schen';
|
$strDrop = 'L<>schen';
|
||||||
$strDropDB = 'Datenbank %s l<>schen';
|
$strDropDB = 'Datenbank %s l<>schen';
|
||||||
|
$strDropSelectedDatabases = 'Ausgew<65>hlte Datenbanken l<>schen';
|
||||||
$strDropTable = 'Tabelle l<>schen:';
|
$strDropTable = 'Tabelle l<>schen:';
|
||||||
$strDropUsersDb = 'Die gleichnamigen Datenbanken l<>schen.';
|
$strDropUsersDb = 'Die gleichnamigen Datenbanken l<>schen.';
|
||||||
$strDumpXRows = 'Exportiere %s Datens<6E>tze ab Zeile %s.';
|
$strDumpXRows = 'Exportiere %s Datens<6E>tze ab Zeile %s.';
|
||||||
@@ -241,6 +249,7 @@ $strInsertedRows = 'Eingef
|
|||||||
$strInstructions = 'Befehle';
|
$strInstructions = 'Befehle';
|
||||||
$strInvalidName = '"%s" ist ein reserviertes Wort, welches nicht als Datenbank-, Feld- oder Tabellenname verwendet werden darf.';
|
$strInvalidName = '"%s" ist ein reserviertes Wort, welches nicht als Datenbank-, Feld- oder Tabellenname verwendet werden darf.';
|
||||||
|
|
||||||
|
$strJumpToDB = 'Zur Datenbank "%s" springen.';
|
||||||
$strJustDelete = 'Die Benutzer aus den Benutzertabellen l<>schen.';
|
$strJustDelete = 'Die Benutzer aus den Benutzertabellen l<>schen.';
|
||||||
$strJustDeleteDescr = 'Die "gel<65>schten" Benutzer k<>nnten weiterhin wie gewohnt auf den Server zugreifen, bis die Benutzertabellen neu geladen werden.';
|
$strJustDeleteDescr = 'Die "gel<65>schten" Benutzer k<>nnten weiterhin wie gewohnt auf den Server zugreifen, bis die Benutzertabellen neu geladen werden.';
|
||||||
|
|
||||||
@@ -285,6 +294,7 @@ $strName = 'Name';
|
|||||||
$strNext = 'N<>chste';
|
$strNext = 'N<>chste';
|
||||||
$strNo = 'Nein';
|
$strNo = 'Nein';
|
||||||
$strNoDatabases = 'Keine Datenbanken';
|
$strNoDatabases = 'Keine Datenbanken';
|
||||||
|
$strNoDatabasesSelected = 'Es wurden keine Datenbanken ausgew<65>hlt.';
|
||||||
$strNoDescription = 'keine Beschreibung';
|
$strNoDescription = 'keine Beschreibung';
|
||||||
$strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.';
|
$strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.';
|
||||||
$strNoExplain = 'SQL-Erkl<6B>rung umgehen';
|
$strNoExplain = 'SQL-Erkl<6B>rung umgehen';
|
||||||
@@ -560,11 +570,4 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr<68>nkung.';
|
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr<68>nkung.';
|
||||||
$strZip = 'Zip-komprimiert';
|
$strZip = 'Zip-komprimiert';
|
||||||
|
|
||||||
$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; //to translate
|
|
||||||
$strCheckPrivs = 'Check Privileges'; //to translate
|
|
||||||
$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
|
|
||||||
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
|
|
||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -94,6 +94,8 @@ $strChangePassword = 'Kennwort ändern';
|
|||||||
$strCharsetOfFile = 'Zeichencodierung der Datei:';
|
$strCharsetOfFile = 'Zeichencodierung der Datei:';
|
||||||
$strCheckAll = 'Alle auswählen';
|
$strCheckAll = 'Alle auswählen';
|
||||||
$strCheckDbPriv = 'Rechte einer Datenbank prüfen';
|
$strCheckDbPriv = 'Rechte einer Datenbank prüfen';
|
||||||
|
$strCheckPrivs = 'Rechte überprüfen';
|
||||||
|
$strCheckPrivsLong = 'Überprüft die Rechte für die Datenbank "%s".';
|
||||||
$strCheckTable = 'Überprüfe Tabelle';
|
$strCheckTable = 'Überprüfe Tabelle';
|
||||||
$strChoosePage = 'Bitte wählen Sie die zu bearbeitende Seite.';
|
$strChoosePage = 'Bitte wählen Sie die zu bearbeitende Seite.';
|
||||||
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
||||||
@@ -137,7 +139,11 @@ $strDatabase = 'Datenbank';
|
|||||||
$strDatabaseHasBeenDropped = 'Datenbank %s wurde gelöscht.';
|
$strDatabaseHasBeenDropped = 'Datenbank %s wurde gelöscht.';
|
||||||
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
||||||
$strDatabases = 'Datenbanken';
|
$strDatabases = 'Datenbanken';
|
||||||
|
$strDatabasesDropped = 'Es wurden %s Datenbanken gelöscht.';
|
||||||
$strDatabasesStats = 'Statistiken über alle Datenbanken';
|
$strDatabasesStats = 'Statistiken über alle Datenbanken';
|
||||||
|
$strDatabasesStatsDisable = 'Datenbankstatistiken deaktivieren';
|
||||||
|
$strDatabasesStatsEnable = 'Datenbankstatistiken aktivieren';
|
||||||
|
$strDatabasesStatsHeavyTraffic = 'Bitte beachten Sie: Das Aktivieren der Datenbankstatistiken kann starken Traffic zwischen dem Web- und dem MySQL-Server zur Folge haben.';
|
||||||
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
||||||
$strDefault = 'Standard';
|
$strDefault = 'Standard';
|
||||||
$strDelete = 'Löschen';
|
$strDelete = 'Löschen';
|
||||||
@@ -148,6 +154,7 @@ $strDeleteUserMessage = 'Der Benutzer %s wurde gelöscht.';
|
|||||||
$strDeleted = 'Die Zeile wurde gelöscht.';
|
$strDeleted = 'Die Zeile wurde gelöscht.';
|
||||||
$strDeletedRows = 'Gelöschte Zeilen:';
|
$strDeletedRows = 'Gelöschte Zeilen:';
|
||||||
$strDeleting = 'Lösche %s';
|
$strDeleting = 'Lösche %s';
|
||||||
|
$strDefaultValueHelp = 'Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder Anführungszeichen an.';
|
||||||
$strDescending = 'absteigend';
|
$strDescending = 'absteigend';
|
||||||
$strDisabled = 'Deaktiviert';
|
$strDisabled = 'Deaktiviert';
|
||||||
$strDisplay = 'Zeige';
|
$strDisplay = 'Zeige';
|
||||||
@@ -159,6 +166,7 @@ $strDoYouReally = 'Möchten Sie wirklich diese Abfrage ausführen: ';
|
|||||||
$strDocu = 'Dokumentation';
|
$strDocu = 'Dokumentation';
|
||||||
$strDrop = 'Löschen';
|
$strDrop = 'Löschen';
|
||||||
$strDropDB = 'Datenbank %s löschen';
|
$strDropDB = 'Datenbank %s löschen';
|
||||||
|
$strDropSelectedDatabases = 'Ausgewählte Datenbanken löschen';
|
||||||
$strDropTable = 'Tabelle löschen:';
|
$strDropTable = 'Tabelle löschen:';
|
||||||
$strDropUsersDb = 'Die gleichnamigen Datenbanken löschen.';
|
$strDropUsersDb = 'Die gleichnamigen Datenbanken löschen.';
|
||||||
$strDumpXRows = 'Exportiere %s Datensätze ab Zeile %s.';
|
$strDumpXRows = 'Exportiere %s Datensätze ab Zeile %s.';
|
||||||
@@ -242,6 +250,7 @@ $strInsertedRows = 'Eingefügte Zeilen:';
|
|||||||
$strInstructions = 'Befehle';
|
$strInstructions = 'Befehle';
|
||||||
$strInvalidName = '"%s" ist ein reserviertes Wort, welches nicht als Datenbank-, Feld- oder Tabellenname verwendet werden darf.';
|
$strInvalidName = '"%s" ist ein reserviertes Wort, welches nicht als Datenbank-, Feld- oder Tabellenname verwendet werden darf.';
|
||||||
|
|
||||||
|
$strJumpToDB = 'Zur Datenbank "%s" springen.';
|
||||||
$strJustDelete = 'Die Benutzer aus den Benutzertabellen löschen.';
|
$strJustDelete = 'Die Benutzer aus den Benutzertabellen löschen.';
|
||||||
$strJustDeleteDescr = 'Die "gelöschten" Benutzer könnten weiterhin wie gewohnt auf den Server zugreifen, bis die Benutzertabellen neu geladen werden.';
|
$strJustDeleteDescr = 'Die "gelöschten" Benutzer könnten weiterhin wie gewohnt auf den Server zugreifen, bis die Benutzertabellen neu geladen werden.';
|
||||||
|
|
||||||
@@ -286,6 +295,7 @@ $strName = 'Name';
|
|||||||
$strNext = 'Nächste';
|
$strNext = 'Nächste';
|
||||||
$strNo = 'Nein';
|
$strNo = 'Nein';
|
||||||
$strNoDatabases = 'Keine Datenbanken';
|
$strNoDatabases = 'Keine Datenbanken';
|
||||||
|
$strNoDatabasesSelected = 'Es wurden keine Datenbanken ausgewählt.';
|
||||||
$strNoDescription = 'keine Beschreibung';
|
$strNoDescription = 'keine Beschreibung';
|
||||||
$strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.';
|
$strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.';
|
||||||
$strNoExplain = 'SQL-Erklärung umgehen';
|
$strNoExplain = 'SQL-Erklärung umgehen';
|
||||||
@@ -561,11 +571,4 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.';
|
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.';
|
||||||
$strZip = 'Zip-komprimiert';
|
$strZip = 'Zip-komprimiert';
|
||||||
|
|
||||||
$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; //to translate
|
|
||||||
$strCheckPrivs = 'Check Privileges'; //to translate
|
|
||||||
$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
|
|
||||||
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
|
|
||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -598,4 +598,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -572,4 +572,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -573,4 +573,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -571,4 +571,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -583,4 +583,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -564,4 +564,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -583,4 +583,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -562,4 +562,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -568,4 +568,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -569,4 +569,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -568,4 +568,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -590,4 +590,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -589,4 +589,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -564,4 +564,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -559,4 +559,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -571,4 +571,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -572,4 +572,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -585,4 +585,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
|
|||||||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||||||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||||||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||||||
|
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||||||
|
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||||||
|
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -397,19 +397,16 @@ if ($server > 0) {
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
if (PMA_MYSQL_INT_VERSION >= 32303) {
|
}
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
|
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
|
||||||
<td>
|
<td>
|
||||||
<a href="db_stats.php3?<?php echo $common_url_query; ?>">
|
<a href="./server_databases.php3?<?php echo $common_url_query; ?>">
|
||||||
<?php echo $strDatabasesStats; ?></a>
|
<?php echo $strDatabases; ?></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Change password (needs another message)
|
// Change password (needs another message)
|
||||||
if ($cfg['ShowChgPassword']) {
|
if ($cfg['ShowChgPassword']) {
|
||||||
|
@@ -3,6 +3,15 @@
|
|||||||
// vim: expandtab sw=4 ts=4 sts=4:
|
// vim: expandtab sw=4 ts=4 sts=4:
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the left frame has to be reloaded
|
||||||
|
*/
|
||||||
|
require('./libraries/grab_globals.lib.php3');
|
||||||
|
if (!empty($drop_selected_dbs)) {
|
||||||
|
$reload = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Does the common work
|
* Does the common work
|
||||||
*/
|
*/
|
||||||
@@ -37,6 +46,32 @@ function PMA_dbCmp($a, $b)
|
|||||||
} // end of the 'PMA_dbCmp()' function
|
} // end of the 'PMA_dbCmp()' function
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Drops multiple databases
|
||||||
|
*/
|
||||||
|
if (!empty($drop_selected_dbs)) {
|
||||||
|
if (empty($selected_db)) {
|
||||||
|
$message = $strNoDatabasesSelected;
|
||||||
|
} else {
|
||||||
|
$sql_query = array();
|
||||||
|
while (list(, $current_db) = each($selected_db)) {
|
||||||
|
$current_query = 'DROP DATABASE ' . PMA_backquote($current_db) . ';';
|
||||||
|
$sql_query[] = $current_query;
|
||||||
|
PMA_mysql_query($current_query, $userlink)
|
||||||
|
// rabus: in case of an error, we display the full query in
|
||||||
|
// order to let the user know which databases have already been
|
||||||
|
// dropped.
|
||||||
|
or PMA_mysqlDie(PMA_mysql_error($userlink), join("\n", $sql_query));
|
||||||
|
}
|
||||||
|
// PMA_showMessage() needs a string...
|
||||||
|
$sql_query = join("\n", $sql_query);
|
||||||
|
$message = sprintf($strDatabasesDropped, count($selected_db));
|
||||||
|
// we need to reload the database list now.
|
||||||
|
PMA_availableDatabases();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Displays the links
|
* Displays the links
|
||||||
*/
|
*/
|
||||||
@@ -294,7 +329,13 @@ if (count($statistics) > 0) {
|
|||||||
. ' </a>' . "\n"
|
. ' </a>' . "\n"
|
||||||
. ' </b>' . "\n";
|
. ' </b>' . "\n";
|
||||||
}
|
}
|
||||||
echo ' </li>' . "\n"
|
echo ' </li><br />' . "\n"
|
||||||
|
. ' <li>' . "\n"
|
||||||
|
. ' <b>' . "\n"
|
||||||
|
. ' ' . $strDropSelectedDatabases . "\n"
|
||||||
|
. ' </b><br />' . "\n"
|
||||||
|
. ' <input type="submit" name="drop_selected_dbs" value="' . $strGo . '" />' . "\n"
|
||||||
|
. ' </li>' . "\n"
|
||||||
. ' </ul>' . "\n"
|
. ' </ul>' . "\n"
|
||||||
. '</form>' . "\n";
|
. '</form>' . "\n";
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user