diff --git a/ChangeLog b/ChangeLog
index 4d0ffb691..2586b69a9 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,15 +6,19 @@ $Id$
$Source$
2003-02-09 Alexander M. Turek
' . $strNoRights . '
' . "\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 - */ -?> -- | - |
---|---|
- | - |
- diff --git a/lang/afrikaans-iso-8859-1.inc.php3 b/lang/afrikaans-iso-8859-1.inc.php3 index 1c11d4114..daf2750f0 100644 --- a/lang/afrikaans-iso-8859-1.inc.php3 +++ b/lang/afrikaans-iso-8859-1.inc.php3 @@ -574,4 +574,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/afrikaans-utf-8.inc.php3 b/lang/afrikaans-utf-8.inc.php3 index d528fba1c..6809967e3 100644 --- a/lang/afrikaans-utf-8.inc.php3 +++ b/lang/afrikaans-utf-8.inc.php3 @@ -575,4 +575,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/albanian-iso-8859-1.inc.php3 b/lang/albanian-iso-8859-1.inc.php3 index b4bdafc21..30f20c3bc 100644 --- a/lang/albanian-iso-8859-1.inc.php3 +++ b/lang/albanian-iso-8859-1.inc.php3 @@ -567,4 +567,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/albanian-utf-8.inc.php3 b/lang/albanian-utf-8.inc.php3 index 23419da65..2cb23b605 100644 --- a/lang/albanian-utf-8.inc.php3 +++ b/lang/albanian-utf-8.inc.php3 @@ -568,4 +568,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/arabic-utf-8.inc.php3 b/lang/arabic-utf-8.inc.php3 index c148a0727..a0fdbb558 100644 --- a/lang/arabic-utf-8.inc.php3 +++ b/lang/arabic-utf-8.inc.php3 @@ -589,4 +589,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/arabic-windows-1256.inc.php3 b/lang/arabic-windows-1256.inc.php3 index 9ed48c406..a768a3669 100644 --- a/lang/arabic-windows-1256.inc.php3 +++ b/lang/arabic-windows-1256.inc.php3 @@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php3 b/lang/brazilian_portuguese-iso-8859-1.inc.php3 index fb01d72bc..faf2416fd 100644 --- a/lang/brazilian_portuguese-iso-8859-1.inc.php3 +++ b/lang/brazilian_portuguese-iso-8859-1.inc.php3 @@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/brazilian_portuguese-utf-8.inc.php3 b/lang/brazilian_portuguese-utf-8.inc.php3 index b880d6f27..dd0ba2d4e 100644 --- a/lang/brazilian_portuguese-utf-8.inc.php3 +++ b/lang/brazilian_portuguese-utf-8.inc.php3 @@ -589,4 +589,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/bulgarian-koi8-r.inc.php3 b/lang/bulgarian-koi8-r.inc.php3 index fc4c96334..ea9b32858 100644 --- a/lang/bulgarian-koi8-r.inc.php3 +++ b/lang/bulgarian-koi8-r.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/bulgarian-utf-8.inc.php3 b/lang/bulgarian-utf-8.inc.php3 index cbb739758..499d39929 100644 --- a/lang/bulgarian-utf-8.inc.php3 +++ b/lang/bulgarian-utf-8.inc.php3 @@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/bulgarian-windows-1251.inc.php3 b/lang/bulgarian-windows-1251.inc.php3 index 800e02c65..a2898473a 100644 --- a/lang/bulgarian-windows-1251.inc.php3 +++ b/lang/bulgarian-windows-1251.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/catalan-iso-8859-1.inc.php3 b/lang/catalan-iso-8859-1.inc.php3 index 3df121360..0e89a6dae 100644 --- a/lang/catalan-iso-8859-1.inc.php3 +++ b/lang/catalan-iso-8859-1.inc.php3 @@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/catalan-utf-8.inc.php3 b/lang/catalan-utf-8.inc.php3 index 11ac416fe..dcd289a96 100644 --- a/lang/catalan-utf-8.inc.php3 +++ b/lang/catalan-utf-8.inc.php3 @@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/chinese_big5-utf-8.inc.php3 b/lang/chinese_big5-utf-8.inc.php3 index e9f0118ef..f1d3ecff6 100644 --- a/lang/chinese_big5-utf-8.inc.php3 +++ b/lang/chinese_big5-utf-8.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/chinese_big5.inc.php3 b/lang/chinese_big5.inc.php3 index 509fad815..dbb9b7af1 100644 --- a/lang/chinese_big5.inc.php3 +++ b/lang/chinese_big5.inc.php3 @@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/chinese_gb-utf-8.inc.php3 b/lang/chinese_gb-utf-8.inc.php3 index 7a235574e..20ab120b6 100644 --- a/lang/chinese_gb-utf-8.inc.php3 +++ b/lang/chinese_gb-utf-8.inc.php3 @@ -64,4 +64,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/chinese_gb.inc.php3 b/lang/chinese_gb.inc.php3 index 9a5473cad..cd469e5b9 100644 --- a/lang/chinese_gb.inc.php3 +++ b/lang/chinese_gb.inc.php3 @@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/croatian-iso-8859-2.inc.php3 b/lang/croatian-iso-8859-2.inc.php3 index b60b8acc0..2b745acfa 100644 --- a/lang/croatian-iso-8859-2.inc.php3 +++ b/lang/croatian-iso-8859-2.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/croatian-utf-8.inc.php3 b/lang/croatian-utf-8.inc.php3 index b3e94152a..19b2edc78 100644 --- a/lang/croatian-utf-8.inc.php3 +++ b/lang/croatian-utf-8.inc.php3 @@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/croatian-windows-1250.inc.php3 b/lang/croatian-windows-1250.inc.php3 index 40f073e3c..789f2dfc3 100644 --- a/lang/croatian-windows-1250.inc.php3 +++ b/lang/croatian-windows-1250.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/czech-iso-8859-2.inc.php3 b/lang/czech-iso-8859-2.inc.php3 index 4227fcab7..fd5ac89db 100644 --- a/lang/czech-iso-8859-2.inc.php3 +++ b/lang/czech-iso-8859-2.inc.php3 @@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/czech-utf-8.inc.php3 b/lang/czech-utf-8.inc.php3 index 6f273b21f..2ba91d554 100644 --- a/lang/czech-utf-8.inc.php3 +++ b/lang/czech-utf-8.inc.php3 @@ -567,4 +567,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/czech-windows-1250.inc.php3 b/lang/czech-windows-1250.inc.php3 index 8c4fdbeb4..d8f5b1369 100644 --- a/lang/czech-windows-1250.inc.php3 +++ b/lang/czech-windows-1250.inc.php3 @@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/danish-iso-8859-1.inc.php3 b/lang/danish-iso-8859-1.inc.php3 index 3896bda72..bc287e63e 100644 --- a/lang/danish-iso-8859-1.inc.php3 +++ b/lang/danish-iso-8859-1.inc.php3 @@ -582,4 +582,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/danish-utf-8.inc.php3 b/lang/danish-utf-8.inc.php3 index 7b0b1ce59..75d656248 100644 --- a/lang/danish-utf-8.inc.php3 +++ b/lang/danish-utf-8.inc.php3 @@ -583,4 +583,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/dutch-iso-8859-1.inc.php3 b/lang/dutch-iso-8859-1.inc.php3 index cbae3b9ea..12baed586 100644 --- a/lang/dutch-iso-8859-1.inc.php3 +++ b/lang/dutch-iso-8859-1.inc.php3 @@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/dutch-utf-8.inc.php3 b/lang/dutch-utf-8.inc.php3 index fd8e4675f..bdf5a1f8c 100644 --- a/lang/dutch-utf-8.inc.php3 +++ b/lang/dutch-utf-8.inc.php3 @@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/english-iso-8859-1.inc.php3 b/lang/english-iso-8859-1.inc.php3 index a230d2165..0a263597a 100644 --- a/lang/english-iso-8859-1.inc.php3 +++ b/lang/english-iso-8859-1.inc.php3 @@ -19,7 +19,7 @@ $timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; $strAPrimaryKey = 'A primary key has been added on %s'; $strAbortedClients = 'Aborted'; -$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; +$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; $strAccessDenied = 'Access denied'; $strAction = 'Action'; $strAddDeleteColumn = 'Add/Delete Field Columns'; @@ -33,8 +33,8 @@ $strAddSearchConditions = 'Add search conditions (body of the "where" clause):'; $strAddToIndex = 'Add to index %s column(s)'; $strAddUser = 'Add a new User'; $strAddUserMessage = 'You have added a new user.'; -$strAddedColumnComment = 'Added comment for column'; -$strAddedColumnRelation = 'Added relation for column'; +$strAddedColumnComment = 'Added comment for column'; +$strAddedColumnRelation = 'Added relation for column'; $strAdministration = 'Administration'; $strAffectedRows = 'Affected rows:'; $strAfter = 'After %s'; @@ -85,6 +85,8 @@ $strChangePassword = 'Change password'; $strCharsetOfFile = 'Character set of the file:'; $strCheckAll = 'Check All'; $strCheckDbPriv = 'Check Database Privileges'; +$strCheckPrivs = 'Check Privileges'; +$strCheckPrivsLong = 'Check privileges for database "%s".'; $strCheckTable = 'Check table'; $strChoosePage = 'Please choose a Page to edit'; $strColComFeat = 'Displaying Column Comments'; @@ -112,15 +114,15 @@ $strCreatePage = 'Create a new Page'; $strCreatePdfFeat = 'Creation of PDFs'; $strCriteria = 'Criteria'; -$strDBGContext = 'Context'; -$strDBGContextID = 'Context ID'; -$strDBGHits = 'Hits'; -$strDBGLine = 'Line'; -$strDBGMaxTimeMs = 'Min time, ms'; -$strDBGMinTimeMs = 'Max time, ms'; -$strDBGModule = 'Module'; -$strDBGTimePerHitMs = 'Time/Hit, ms'; -$strDBGTotalTimeMs = 'Total time, ms'; +$strDBGContext = 'Context'; +$strDBGContextID = 'Context ID'; +$strDBGHits = 'Hits'; +$strDBGLine = 'Line'; +$strDBGMaxTimeMs = 'Min time, ms'; +$strDBGMinTimeMs = 'Max time, ms'; +$strDBGModule = 'Module'; +$strDBGTimePerHitMs = 'Time/Hit, ms'; +$strDBGTotalTimeMs = 'Total time, ms'; $strData = 'Data'; $strDataDict = 'Data Dictionary'; $strDataOnly = 'Data only'; @@ -128,7 +130,11 @@ $strDatabase = 'Database '; $strDatabaseHasBeenDropped = 'Database %s has been dropped.'; $strDatabaseWildcard = 'Database (wildcards allowed):'; $strDatabases = 'databases'; +$strDatabasesDropped = '%s databases have been dropped successfully.'; $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'; $strDefault = 'Default'; $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'; $strDrop = 'Drop'; $strDropDB = 'Drop database %s'; +$strDropSelectedDatabases = 'Drop Selected Databases'; $strDropTable = 'Drop table'; $strDropUsersDb = 'Drop the databases that have the same names as the users.'; $strDumpXRows = 'Dump %s row(s) starting at record # %s.'; @@ -183,7 +190,7 @@ $strFieldsEmpty = ' The field count is empty! '; $strFieldsEnclosedBy = 'Fields enclosed by'; $strFieldsEscapedBy = 'Fields escaped by'; $strFieldsTerminatedBy = 'Fields terminated by'; -$strFileCouldNotBeRead = 'File could not be read'; +$strFileCouldNotBeRead = 'File could not be read'; $strFixed = 'fixed'; $strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; $strFlushTable = 'Flush the table ("FLUSH")'; @@ -215,10 +222,10 @@ $strId = 'ID'; $strIdxFulltext = 'Fulltext'; $strIfYouWish = 'If you wish to load only some of a table\'s columns, specify a comma separated field list.'; $strIgnore = 'Ignore'; -$strIgnoringFile = 'Ignoring file %s'; +$strIgnoringFile = 'Ignoring file %s'; $strImportDocSQL = 'Import docSQL Files'; -$strImportFiles = 'Import files'; -$strImportFinished = 'Import finished'; +$strImportFiles = 'Import files'; +$strImportFinished = 'Import finished'; $strInUse = 'in use'; $strIndex = 'Index'; $strIndexHasBeenDropped = 'Index %s has been dropped'; @@ -234,6 +241,7 @@ $strInsertedRows = 'Inserted rows:'; $strInstructions = 'Instructions'; $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.'; $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'; $strNo = 'No'; $strNoDatabases = 'No databases'; +$strNoDatabasesSelected = 'No databases selected.'; $strNoDescription = 'no Description'; $strNoDropDatabases = '"DROP DATABASE" statements are disabled.'; $strNoExplain = 'Skip Explain SQL'; @@ -505,7 +514,7 @@ $strTheContent = 'The content of your file has been inserted.'; $strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheTerminator = 'The terminator of the fields.'; $strThisHost = 'This Host'; -$strThisNotDirectory = 'This was not a directory'; +$strThisNotDirectory = 'This was not a directory'; $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; $strTime = 'Time'; $strTotal = 'total'; @@ -544,8 +553,8 @@ $strWebServerUploadDirectory = 'web-server upload directory'; $strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; $strWelcome = 'Welcome to %s'; $strWithChecked = 'With selected:'; -$strWritingCommentNotPossible = 'Writing of comment not possible'; -$strWritingRelationNotPossible = 'Writing of relation not possible'; +$strWritingCommentNotPossible = 'Writing of comment not possible'; +$strWritingRelationNotPossible = 'Writing of relation not possible'; $strWrongUser = 'Wrong username/password. Access denied.'; $strYes = 'Yes'; @@ -553,10 +562,4 @@ $strYes = 'Yes'; $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; $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 ?> diff --git a/lang/english-utf-8.inc.php3 b/lang/english-utf-8.inc.php3 index 03b32c9ee..93f5660e4 100644 --- a/lang/english-utf-8.inc.php3 +++ b/lang/english-utf-8.inc.php3 @@ -20,7 +20,7 @@ $timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; $strAPrimaryKey = 'A primary key has been added on %s'; $strAbortedClients = 'Aborted'; -$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; +$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; $strAccessDenied = 'Access denied'; $strAction = 'Action'; $strAddDeleteColumn = 'Add/Delete Field Columns'; @@ -34,8 +34,8 @@ $strAddSearchConditions = 'Add search conditions (body of the "where" clause):'; $strAddToIndex = 'Add to index %s column(s)'; $strAddUser = 'Add a new User'; $strAddUserMessage = 'You have added a new user.'; -$strAddedColumnComment = 'Added comment for column'; -$strAddedColumnRelation = 'Added relation for column'; +$strAddedColumnComment = 'Added comment for column'; +$strAddedColumnRelation = 'Added relation for column'; $strAdministration = 'Administration'; $strAffectedRows = 'Affected rows:'; $strAfter = 'After %s'; @@ -86,6 +86,8 @@ $strChangePassword = 'Change password'; $strCharsetOfFile = 'Character set of the file:'; $strCheckAll = 'Check All'; $strCheckDbPriv = 'Check Database Privileges'; +$strCheckPrivs = 'Check Privileges'; +$strCheckPrivsLong = 'Check privileges for database "%s".'; $strCheckTable = 'Check table'; $strChoosePage = 'Please choose a Page to edit'; $strColComFeat = 'Displaying Column Comments'; @@ -113,15 +115,15 @@ $strCreatePage = 'Create a new Page'; $strCreatePdfFeat = 'Creation of PDFs'; $strCriteria = 'Criteria'; -$strDBGContext = 'Context'; -$strDBGContextID = 'Context ID'; -$strDBGHits = 'Hits'; -$strDBGLine = 'Line'; -$strDBGMaxTimeMs = 'Min time, ms'; -$strDBGMinTimeMs = 'Max time, ms'; -$strDBGModule = 'Module'; -$strDBGTimePerHitMs = 'Time/Hit, ms'; -$strDBGTotalTimeMs = 'Total time, ms'; +$strDBGContext = 'Context'; +$strDBGContextID = 'Context ID'; +$strDBGHits = 'Hits'; +$strDBGLine = 'Line'; +$strDBGMaxTimeMs = 'Min time, ms'; +$strDBGMinTimeMs = 'Max time, ms'; +$strDBGModule = 'Module'; +$strDBGTimePerHitMs = 'Time/Hit, ms'; +$strDBGTotalTimeMs = 'Total time, ms'; $strData = 'Data'; $strDataDict = 'Data Dictionary'; $strDataOnly = 'Data only'; @@ -129,7 +131,11 @@ $strDatabase = 'Database '; $strDatabaseHasBeenDropped = 'Database %s has been dropped.'; $strDatabaseWildcard = 'Database (wildcards allowed):'; $strDatabases = 'databases'; +$strDatabasesDropped = '%s databases have been dropped successfully.'; $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'; $strDefault = 'Default'; $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'; $strDrop = 'Drop'; $strDropDB = 'Drop database %s'; +$strDropSelectedDatabases = 'Drop Selected Databases'; $strDropTable = 'Drop table'; $strDropUsersDb = 'Drop the databases that have the same names as the users.'; $strDumpXRows = 'Dump %s row(s) starting at record # %s.'; @@ -184,7 +191,7 @@ $strFieldsEmpty = ' The field count is empty! '; $strFieldsEnclosedBy = 'Fields enclosed by'; $strFieldsEscapedBy = 'Fields escaped by'; $strFieldsTerminatedBy = 'Fields terminated by'; -$strFileCouldNotBeRead = 'File could not be read'; +$strFileCouldNotBeRead = 'File could not be read'; $strFixed = 'fixed'; $strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; $strFlushTable = 'Flush the table ("FLUSH")'; @@ -216,10 +223,10 @@ $strId = 'ID'; $strIdxFulltext = 'Fulltext'; $strIfYouWish = 'If you wish to load only some of a table\'s columns, specify a comma separated field list.'; $strIgnore = 'Ignore'; -$strIgnoringFile = 'Ignoring file %s'; +$strIgnoringFile = 'Ignoring file %s'; $strImportDocSQL = 'Import docSQL Files'; -$strImportFiles = 'Import files'; -$strImportFinished = 'Import finished'; +$strImportFiles = 'Import files'; +$strImportFinished = 'Import finished'; $strInUse = 'in use'; $strIndex = 'Index'; $strIndexHasBeenDropped = 'Index %s has been dropped'; @@ -235,6 +242,7 @@ $strInsertedRows = 'Inserted rows:'; $strInstructions = 'Instructions'; $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.'; $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'; $strNo = 'No'; $strNoDatabases = 'No databases'; +$strNoDatabasesSelected = 'No databases selected.'; $strNoDescription = 'no Description'; $strNoDropDatabases = '"DROP DATABASE" statements are disabled.'; $strNoExplain = 'Skip Explain SQL'; @@ -506,7 +515,7 @@ $strTheContent = 'The content of your file has been inserted.'; $strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheTerminator = 'The terminator of the fields.'; $strThisHost = 'This Host'; -$strThisNotDirectory = 'This was not a directory'; +$strThisNotDirectory = 'This was not a directory'; $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; $strTime = 'Time'; $strTotal = 'total'; @@ -545,8 +554,8 @@ $strWebServerUploadDirectory = 'web-server upload directory'; $strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; $strWelcome = 'Welcome to %s'; $strWithChecked = 'With selected:'; -$strWritingCommentNotPossible = 'Writing of comment not possible'; -$strWritingRelationNotPossible = 'Writing of relation not possible'; +$strWritingCommentNotPossible = 'Writing of comment not possible'; +$strWritingRelationNotPossible = 'Writing of relation not possible'; $strWrongUser = 'Wrong username/password. Access denied.'; $strYes = 'Yes'; @@ -554,10 +563,4 @@ $strYes = 'Yes'; $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; $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 ?> diff --git a/lang/estonian-iso-8859-1.inc.php3 b/lang/estonian-iso-8859-1.inc.php3 index d2736042e..4e5bb9f7d 100644 --- a/lang/estonian-iso-8859-1.inc.php3 +++ b/lang/estonian-iso-8859-1.inc.php3 @@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/estonian-utf-8.inc.php3 b/lang/estonian-utf-8.inc.php3 index eaadefc43..c37b4d667 100644 --- a/lang/estonian-utf-8.inc.php3 +++ b/lang/estonian-utf-8.inc.php3 @@ -564,4 +564,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/farsi-utf-8.inc.php3 b/lang/farsi-utf-8.inc.php3 index 6da0e0dcd..c957761c3 100644 --- a/lang/farsi-utf-8.inc.php3 +++ b/lang/farsi-utf-8.inc.php3 @@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/farsi-windows-1256.inc.php3 b/lang/farsi-windows-1256.inc.php3 index 781992cea..32a3a0b3f 100644 --- a/lang/farsi-windows-1256.inc.php3 +++ b/lang/farsi-windows-1256.inc.php3 @@ -562,4 +562,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/finnish-iso-8859-1.inc.php3 b/lang/finnish-iso-8859-1.inc.php3 index 00aa0259d..372b4c21d 100644 --- a/lang/finnish-iso-8859-1.inc.php3 +++ b/lang/finnish-iso-8859-1.inc.php3 @@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/finnish-utf-8.inc.php3 b/lang/finnish-utf-8.inc.php3 index 02150ab7d..7677755d3 100644 --- a/lang/finnish-utf-8.inc.php3 +++ b/lang/finnish-utf-8.inc.php3 @@ -585,4 +585,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/french-iso-8859-1.inc.php3 b/lang/french-iso-8859-1.inc.php3 index 97238f5d5..23fc6711a 100644 --- a/lang/french-iso-8859-1.inc.php3 +++ b/lang/french-iso-8859-1.inc.php3 @@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/french-utf-8.inc.php3 b/lang/french-utf-8.inc.php3 index f604538fe..a0bdf1a2f 100644 --- a/lang/french-utf-8.inc.php3 +++ b/lang/french-utf-8.inc.php3 @@ -562,4 +562,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/galician-iso-8859-1.inc.php3 b/lang/galician-iso-8859-1.inc.php3 index e905f9e90..46b7d1393 100644 --- a/lang/galician-iso-8859-1.inc.php3 +++ b/lang/galician-iso-8859-1.inc.php3 @@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/galician-utf-8.inc.php3 b/lang/galician-utf-8.inc.php3 index 7d1924670..2175b3f86 100644 --- a/lang/galician-utf-8.inc.php3 +++ b/lang/galician-utf-8.inc.php3 @@ -571,4 +571,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/georgian-utf-8.inc.php3 b/lang/georgian-utf-8.inc.php3 index 147e593e6..2283762d5 100644 --- a/lang/georgian-utf-8.inc.php3 +++ b/lang/georgian-utf-8.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/german-iso-8859-1.inc.php3 b/lang/german-iso-8859-1.inc.php3 index cbabe4e2d..e9b474f75 100644 --- a/lang/german-iso-8859-1.inc.php3 +++ b/lang/german-iso-8859-1.inc.php3 @@ -93,6 +93,8 @@ $strChangePassword = 'Kennwort $strCharsetOfFile = 'Zeichencodierung der Datei:'; $strCheckAll = 'Alle auswählen'; $strCheckDbPriv = 'Rechte einer Datenbank prüfen'; +$strCheckPrivs = 'Rechte überprüfen'; +$strCheckPrivsLong = 'Überprüft die Rechte für die Datenbank "%s".'; $strCheckTable = 'Überprüfe Tabelle'; $strChoosePage = 'Bitte wählen Sie die zu bearbeitende Seite.'; $strColComFeat = 'Darstellung von Spaltenkommentaren'; @@ -136,7 +138,11 @@ $strDatabase = 'Datenbank'; $strDatabaseHasBeenDropped = 'Datenbank %s wurde gelöscht.'; $strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):'; $strDatabases = 'Datenbanken'; +$strDatabasesDropped = 'Es wurden %s Datenbanken gelöscht.'; $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'; $strDefault = 'Standard'; $strDelete = 'Löschen'; @@ -147,6 +153,7 @@ $strDeleteUserMessage = 'Der Benutzer %s wurde gel $strDeleted = 'Die Zeile wurde gelöscht.'; $strDeletedRows = 'Gelöschte Zeilen:'; $strDeleting = 'Lösche %s'; +$strDefaultValueHelp = 'Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder Anführungszeichen an.'; $strDescending = 'absteigend'; $strDisabled = 'Deaktiviert'; $strDisplay = 'Zeige'; @@ -158,6 +165,7 @@ $strDoYouReally = 'M $strDocu = 'Dokumentation'; $strDrop = 'Löschen'; $strDropDB = 'Datenbank %s löschen'; +$strDropSelectedDatabases = 'Ausgewählte Datenbanken löschen'; $strDropTable = 'Tabelle löschen:'; $strDropUsersDb = 'Die gleichnamigen Datenbanken löschen.'; $strDumpXRows = 'Exportiere %s Datensätze ab Zeile %s.'; @@ -241,6 +249,7 @@ $strInsertedRows = 'Eingef $strInstructions = 'Befehle'; $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.'; $strJustDeleteDescr = 'Die "gelö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'; $strNo = 'Nein'; $strNoDatabases = 'Keine Datenbanken'; +$strNoDatabasesSelected = 'Es wurden keine Datenbanken ausgewählt.'; $strNoDescription = 'keine Beschreibung'; $strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.'; $strNoExplain = 'SQL-Erklärung umgehen'; @@ -560,11 +570,4 @@ $strYes = 'Ja'; $strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.'; $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 ?> diff --git a/lang/german-utf-8.inc.php3 b/lang/german-utf-8.inc.php3 index 6765defbc..ee23dd002 100644 --- a/lang/german-utf-8.inc.php3 +++ b/lang/german-utf-8.inc.php3 @@ -94,6 +94,8 @@ $strChangePassword = 'Kennwort ändern'; $strCharsetOfFile = 'Zeichencodierung der Datei:'; $strCheckAll = 'Alle auswählen'; $strCheckDbPriv = 'Rechte einer Datenbank prüfen'; +$strCheckPrivs = 'Rechte überprüfen'; +$strCheckPrivsLong = 'Überprüft die Rechte für die Datenbank "%s".'; $strCheckTable = 'Überprüfe Tabelle'; $strChoosePage = 'Bitte wählen Sie die zu bearbeitende Seite.'; $strColComFeat = 'Darstellung von Spaltenkommentaren'; @@ -137,7 +139,11 @@ $strDatabase = 'Datenbank'; $strDatabaseHasBeenDropped = 'Datenbank %s wurde gelöscht.'; $strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):'; $strDatabases = 'Datenbanken'; +$strDatabasesDropped = 'Es wurden %s Datenbanken gelöscht.'; $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'; $strDefault = 'Standard'; $strDelete = 'Löschen'; @@ -148,6 +154,7 @@ $strDeleteUserMessage = 'Der Benutzer %s wurde gelöscht.'; $strDeleted = 'Die Zeile wurde gelöscht.'; $strDeletedRows = 'Gelöschte Zeilen:'; $strDeleting = 'Lösche %s'; +$strDefaultValueHelp = 'Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder Anführungszeichen an.'; $strDescending = 'absteigend'; $strDisabled = 'Deaktiviert'; $strDisplay = 'Zeige'; @@ -159,6 +166,7 @@ $strDoYouReally = 'Möchten Sie wirklich diese Abfrage ausführen: '; $strDocu = 'Dokumentation'; $strDrop = 'Löschen'; $strDropDB = 'Datenbank %s löschen'; +$strDropSelectedDatabases = 'Ausgewählte Datenbanken löschen'; $strDropTable = 'Tabelle löschen:'; $strDropUsersDb = 'Die gleichnamigen Datenbanken löschen.'; $strDumpXRows = 'Exportiere %s Datensätze ab Zeile %s.'; @@ -242,6 +250,7 @@ $strInsertedRows = 'Eingefügte Zeilen:'; $strInstructions = 'Befehle'; $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.'; $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'; $strNo = 'Nein'; $strNoDatabases = 'Keine Datenbanken'; +$strNoDatabasesSelected = 'Es wurden keine Datenbanken ausgewählt.'; $strNoDescription = 'keine Beschreibung'; $strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.'; $strNoExplain = 'SQL-Erklärung umgehen'; @@ -561,11 +571,4 @@ $strYes = 'Ja'; $strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.'; $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 ?> diff --git a/lang/greek-iso-8859-7.inc.php3 b/lang/greek-iso-8859-7.inc.php3 index 2dafeab32..2e2473f19 100644 --- a/lang/greek-iso-8859-7.inc.php3 +++ b/lang/greek-iso-8859-7.inc.php3 @@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/greek-utf-8.inc.php3 b/lang/greek-utf-8.inc.php3 index 94506a975..82431b035 100644 --- a/lang/greek-utf-8.inc.php3 +++ b/lang/greek-utf-8.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/hebrew-iso-8859-8-i.inc.php3 b/lang/hebrew-iso-8859-8-i.inc.php3 index aae9c60d8..e5d73d798 100644 --- a/lang/hebrew-iso-8859-8-i.inc.php3 +++ b/lang/hebrew-iso-8859-8-i.inc.php3 @@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/hindi-utf-8.inc.php3 b/lang/hindi-utf-8.inc.php3 index c28bb6922..9a48a5381 100644 --- a/lang/hindi-utf-8.inc.php3 +++ b/lang/hindi-utf-8.inc.php3 @@ -598,4 +598,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/hungarian-iso-8859-2.inc.php3 b/lang/hungarian-iso-8859-2.inc.php3 index b5c541a8a..cb41080c3 100644 --- a/lang/hungarian-iso-8859-2.inc.php3 +++ b/lang/hungarian-iso-8859-2.inc.php3 @@ -572,4 +572,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/hungarian-utf-8.inc.php3 b/lang/hungarian-utf-8.inc.php3 index a36b7f742..fd0415342 100644 --- a/lang/hungarian-utf-8.inc.php3 +++ b/lang/hungarian-utf-8.inc.php3 @@ -573,4 +573,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/indonesian-iso-8859-1.inc.php3 b/lang/indonesian-iso-8859-1.inc.php3 index 707852dc7..dbb48bf18 100644 --- a/lang/indonesian-iso-8859-1.inc.php3 +++ b/lang/indonesian-iso-8859-1.inc.php3 @@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/indonesian-utf-8.inc.php3 b/lang/indonesian-utf-8.inc.php3 index 2330d5991..6372e9aaf 100644 --- a/lang/indonesian-utf-8.inc.php3 +++ b/lang/indonesian-utf-8.inc.php3 @@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/italian-iso-8859-1.inc.php3 b/lang/italian-iso-8859-1.inc.php3 index 5096f878d..622ffff64 100644 --- a/lang/italian-iso-8859-1.inc.php3 +++ b/lang/italian-iso-8859-1.inc.php3 @@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/italian-utf-8.inc.php3 b/lang/italian-utf-8.inc.php3 index 272969abc..0fd0fde40 100644 --- a/lang/italian-utf-8.inc.php3 +++ b/lang/italian-utf-8.inc.php3 @@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/japanese-euc.inc.php3 b/lang/japanese-euc.inc.php3 index e7e1ef3c3..533c69c58 100644 --- a/lang/japanese-euc.inc.php3 +++ b/lang/japanese-euc.inc.php3 @@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/japanese-sjis.inc.php3 b/lang/japanese-sjis.inc.php3 index 632c3365d..af69052b8 100644 --- a/lang/japanese-sjis.inc.php3 +++ b/lang/japanese-sjis.inc.php3 @@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/japanese-utf-8.inc.php3 b/lang/japanese-utf-8.inc.php3 index 991f91813..a24584aec 100644 --- a/lang/japanese-utf-8.inc.php3 +++ b/lang/japanese-utf-8.inc.php3 @@ -571,4 +571,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/korean-ks_c_5601-1987.inc.php3 b/lang/korean-ks_c_5601-1987.inc.php3 index 4f22e9cbd..622f0a7d8 100644 --- a/lang/korean-ks_c_5601-1987.inc.php3 +++ b/lang/korean-ks_c_5601-1987.inc.php3 @@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/latvian-utf-8.inc.php3 b/lang/latvian-utf-8.inc.php3 index ece9971ad..29d789b77 100644 --- a/lang/latvian-utf-8.inc.php3 +++ b/lang/latvian-utf-8.inc.php3 @@ -588,4 +588,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/latvian-windows-1257.inc.php3 b/lang/latvian-windows-1257.inc.php3 index 2969a87c5..ac1b837fd 100644 --- a/lang/latvian-windows-1257.inc.php3 +++ b/lang/latvian-windows-1257.inc.php3 @@ -587,4 +587,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/lithuanian-utf-8.inc.php3 b/lang/lithuanian-utf-8.inc.php3 index efe8d1d41..2e68cb44a 100644 --- a/lang/lithuanian-utf-8.inc.php3 +++ b/lang/lithuanian-utf-8.inc.php3 @@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/lithuanian-windows-1257.inc.php3 b/lang/lithuanian-windows-1257.inc.php3 index 248e25583..3f669e75a 100644 --- a/lang/lithuanian-windows-1257.inc.php3 +++ b/lang/lithuanian-windows-1257.inc.php3 @@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/malay-iso-8859-1.inc.php3 b/lang/malay-iso-8859-1.inc.php3 index 410ecae60..7790d6525 100644 --- a/lang/malay-iso-8859-1.inc.php3 +++ b/lang/malay-iso-8859-1.inc.php3 @@ -583,4 +583,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/malay-utf-8.inc.php3 b/lang/malay-utf-8.inc.php3 index 31c29b44b..759dde641 100644 --- a/lang/malay-utf-8.inc.php3 +++ b/lang/malay-utf-8.inc.php3 @@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/norwegian-iso-8859-1.inc.php3 b/lang/norwegian-iso-8859-1.inc.php3 index 457e1bf70..1eff37818 100644 --- a/lang/norwegian-iso-8859-1.inc.php3 +++ b/lang/norwegian-iso-8859-1.inc.php3 @@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/norwegian-utf-8.inc.php3 b/lang/norwegian-utf-8.inc.php3 index 471679cec..0a5b5af3a 100644 --- a/lang/norwegian-utf-8.inc.php3 +++ b/lang/norwegian-utf-8.inc.php3 @@ -564,4 +564,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/polish-iso-8859-2.inc.php3 b/lang/polish-iso-8859-2.inc.php3 index 0e64e070d..a4f2b4938 100644 --- a/lang/polish-iso-8859-2.inc.php3 +++ b/lang/polish-iso-8859-2.inc.php3 @@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/polish-utf-8.inc.php3 b/lang/polish-utf-8.inc.php3 index 2ded95229..7476695c0 100644 --- a/lang/polish-utf-8.inc.php3 +++ b/lang/polish-utf-8.inc.php3 @@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/portuguese-iso-8859-1.inc.php3 b/lang/portuguese-iso-8859-1.inc.php3 index 7bf5e3f56..0427cc3c3 100644 --- a/lang/portuguese-iso-8859-1.inc.php3 +++ b/lang/portuguese-iso-8859-1.inc.php3 @@ -583,4 +583,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/portuguese-utf-8.inc.php3 b/lang/portuguese-utf-8.inc.php3 index 04dfb7bc4..4aeab13ca 100644 --- a/lang/portuguese-utf-8.inc.php3 +++ b/lang/portuguese-utf-8.inc.php3 @@ -584,4 +584,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/romanian-iso-8859-1.inc.php3 b/lang/romanian-iso-8859-1.inc.php3 index 80a0c9bc2..6ea33b542 100644 --- a/lang/romanian-iso-8859-1.inc.php3 +++ b/lang/romanian-iso-8859-1.inc.php3 @@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/romanian-utf-8.inc.php3 b/lang/romanian-utf-8.inc.php3 index 313a382dc..82277db23 100644 --- a/lang/romanian-utf-8.inc.php3 +++ b/lang/romanian-utf-8.inc.php3 @@ -562,4 +562,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/russian-dos-866.inc.php3 b/lang/russian-dos-866.inc.php3 index beb1fa560..bc8f363f6 100644 --- a/lang/russian-dos-866.inc.php3 +++ b/lang/russian-dos-866.inc.php3 @@ -570,4 +570,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/russian-koi8-r.inc.php3 b/lang/russian-koi8-r.inc.php3 index 9a42ebc9e..c72445c8f 100644 --- a/lang/russian-koi8-r.inc.php3 +++ b/lang/russian-koi8-r.inc.php3 @@ -568,4 +568,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/russian-utf-8.inc.php3 b/lang/russian-utf-8.inc.php3 index ca9cab1f2..d81eb6183 100644 --- a/lang/russian-utf-8.inc.php3 +++ b/lang/russian-utf-8.inc.php3 @@ -569,4 +569,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/russian-windows-1251.inc.php3 b/lang/russian-windows-1251.inc.php3 index e8056f8c6..92ba68f41 100644 --- a/lang/russian-windows-1251.inc.php3 +++ b/lang/russian-windows-1251.inc.php3 @@ -568,4 +568,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/serbian-utf-8.inc.php3 b/lang/serbian-utf-8.inc.php3 index 25848c339..89b0c4f0e 100644 --- a/lang/serbian-utf-8.inc.php3 +++ b/lang/serbian-utf-8.inc.php3 @@ -590,4 +590,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/serbian-windows-1250.inc.php3 b/lang/serbian-windows-1250.inc.php3 index b90092284..a252deb72 100644 --- a/lang/serbian-windows-1250.inc.php3 +++ b/lang/serbian-windows-1250.inc.php3 @@ -589,4 +589,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/slovak-iso-8859-2.inc.php3 b/lang/slovak-iso-8859-2.inc.php3 index f209138b5..d67484c6f 100644 --- a/lang/slovak-iso-8859-2.inc.php3 +++ b/lang/slovak-iso-8859-2.inc.php3 @@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/slovak-utf-8.inc.php3 b/lang/slovak-utf-8.inc.php3 index 630058220..307448b9b 100644 --- a/lang/slovak-utf-8.inc.php3 +++ b/lang/slovak-utf-8.inc.php3 @@ -564,4 +564,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/slovak-windows-1250.inc.php3 b/lang/slovak-windows-1250.inc.php3 index 7933d6d2a..3a6955f11 100644 --- a/lang/slovak-windows-1250.inc.php3 +++ b/lang/slovak-windows-1250.inc.php3 @@ -563,4 +563,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/slovenian-iso-8859-2.inc.php3 b/lang/slovenian-iso-8859-2.inc.php3 index 070181a7c..67c180ec8 100644 --- a/lang/slovenian-iso-8859-2.inc.php3 +++ b/lang/slovenian-iso-8859-2.inc.php3 @@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/slovenian-utf-8.inc.php3 b/lang/slovenian-utf-8.inc.php3 index 15fd1824b..422e716e8 100644 --- a/lang/slovenian-utf-8.inc.php3 +++ b/lang/slovenian-utf-8.inc.php3 @@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/slovenian-windows-1250.inc.php3 b/lang/slovenian-windows-1250.inc.php3 index e99b74908..51475c0f0 100644 --- a/lang/slovenian-windows-1250.inc.php3 +++ b/lang/slovenian-windows-1250.inc.php3 @@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/spanish-iso-8859-1.inc.php3 b/lang/spanish-iso-8859-1.inc.php3 index ae604b78a..640ac86e7 100644 --- a/lang/spanish-iso-8859-1.inc.php3 +++ b/lang/spanish-iso-8859-1.inc.php3 @@ -559,4 +559,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/spanish-utf-8.inc.php3 b/lang/spanish-utf-8.inc.php3 index 78df31da1..df292bbbd 100644 --- a/lang/spanish-utf-8.inc.php3 +++ b/lang/spanish-utf-8.inc.php3 @@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/swedish-iso-8859-1.inc.php3 b/lang/swedish-iso-8859-1.inc.php3 index 74430b031..c6e20db9a 100644 --- a/lang/swedish-iso-8859-1.inc.php3 +++ b/lang/swedish-iso-8859-1.inc.php3 @@ -560,4 +560,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/swedish-utf-8.inc.php3 b/lang/swedish-utf-8.inc.php3 index 4b4aca078..add633b56 100644 --- a/lang/swedish-utf-8.inc.php3 +++ b/lang/swedish-utf-8.inc.php3 @@ -561,4 +561,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/thai-tis-620.inc.php3 b/lang/thai-tis-620.inc.php3 index ab258ad43..b4d74a886 100644 --- a/lang/thai-tis-620.inc.php3 +++ b/lang/thai-tis-620.inc.php3 @@ -571,4 +571,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/thai-utf-8.inc.php3 b/lang/thai-utf-8.inc.php3 index f1e62ff23..c133030d6 100644 --- a/lang/thai-utf-8.inc.php3 +++ b/lang/thai-utf-8.inc.php3 @@ -572,4 +572,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/turkish-iso-8859-9.inc.php3 b/lang/turkish-iso-8859-9.inc.php3 index a1e22d0e7..754b41968 100644 --- a/lang/turkish-iso-8859-9.inc.php3 +++ b/lang/turkish-iso-8859-9.inc.php3 @@ -585,4 +585,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/turkish-utf-8.inc.php3 b/lang/turkish-utf-8.inc.php3 index 1c32c30d9..6b4d25609 100644 --- a/lang/turkish-utf-8.inc.php3 +++ b/lang/turkish-utf-8.inc.php3 @@ -586,4 +586,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/ukrainian-utf-8.inc.php3 b/lang/ukrainian-utf-8.inc.php3 index 08ee5b338..202b83560 100644 --- a/lang/ukrainian-utf-8.inc.php3 +++ b/lang/ukrainian-utf-8.inc.php3 @@ -566,4 +566,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/lang/ukrainian-windows-1251.inc.php3 b/lang/ukrainian-windows-1251.inc.php3 index d04ff5c9c..8338324ac 100644 --- a/lang/ukrainian-windows-1251.inc.php3 +++ b/lang/ukrainian-windows-1251.inc.php3 @@ -565,4 +565,7 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi $strDatabasesStatsDisable = 'Disable Statistics'; //to translate $strDatabasesStatsEnable = 'Enable Statistics'; //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 ?> diff --git a/main.php3 b/main.php3 index b2c9f14c5..568252a8a 100755 --- a/main.php3 +++ b/main.php3 @@ -397,19 +397,16 @@ if ($server > 0) { = 32303) { - echo "\n"; - ?> + } + ?>