Implemented database copying (RFE #996730), this forced separating code for copying tables.

This commit is contained in:
Michal Čihař
2004-10-20 17:29:18 +00:00
parent 8ed40bb772
commit 1293dc1a24
107 changed files with 655 additions and 418 deletions

View File

@@ -26,6 +26,9 @@ $Source$
* db_operations.php, db_details_links.php, db_details_structure.php: * db_operations.php, db_details_links.php, db_details_structure.php:
Separate operations from structure (RFE #808029). Separate operations from structure (RFE #808029).
* tbl_move_copy.php: Remove unused PMA_myHandler(). * tbl_move_copy.php: Remove unused PMA_myHandler().
* lang/*, libraries/tbl_move_copy.php, libraries/export/sql.php,
db_operations.php, tbl_move_copy.php: Implemented database copying (RFE
#996730), this forced separating code for copying tables.
2004-10-19 Marc Delisle <lem9@users.sourceforge.net> 2004-10-19 Marc Delisle <lem9@users.sourceforge.net>
* libraries/database_interface.lib.php: bug #1041667, correctly * libraries/database_interface.lib.php: bug #1041667, correctly

View File

@@ -9,7 +9,15 @@ require_once('./libraries/mysql_charsets.lib.php');
/** /**
* Rename database * Rename database
*/ */
if (isset($db) && isset($db_rename) && $db_rename == 'true') { if (isset($db) &&
((isset($db_rename) && $db_rename == 'true') ||
(isset($db_copy) && $db_copy == 'true'))) {
require_once('./libraries/tbl_move_copy.php');
if (isset($db_rename) && $db_rename == 'true') $move = TRUE;
else $move = FALSE;
if (!isset($newname) || empty($newname)) { if (!isset($newname) || empty($newname)) {
$message = $strDatabaseEmpty; $message = $strDatabaseEmpty;
} else { } else {
@@ -18,61 +26,33 @@ if (isset($db) && isset($db_rename) && $db_rename == 'true') {
PMA_DBI_query($local_query); PMA_DBI_query($local_query);
$tables = PMA_DBI_get_tables($db); $tables = PMA_DBI_get_tables($db);
foreach ($tables as $table) { foreach ($tables as $table) {
$local_query = 'RENAME TABLE ' $back = $sql_query;
. PMA_backquote($db) . '.' . PMA_backquote($table) $sql_query = '';
. ' TO ' PMA_table_move_copy($db, $table, $newname, $table, isset($what) ? $what : 'data', $move);
. PMA_backquote($newname) . '.' . PMA_backquote($table) $sql_query = $back . $sql_query;
. ';'; }
if ($move) {
$local_query = 'DROP DATABASE ' . PMA_backquote($db) . ';';
$sql_query .= "\n" . $local_query; $sql_query .= "\n" . $local_query;
PMA_DBI_query($local_query); PMA_DBI_query($local_query);
$message = sprintf($strRenameDatabaseOK, htmlspecialchars($db), htmlspecialchars($newname));
} else {
$message = sprintf($strCopyDatabaseOK, htmlspecialchars($db), htmlspecialchars($newname));
} }
$local_query = 'DROP DATABASE ' . PMA_backquote($db) . ';';
$sql_query .= "\n" . $local_query;
PMA_DBI_query($local_query);
$reload = TRUE; $reload = TRUE;
$message = sprintf($strRenameDatabaseOK, htmlspecialchars($db), htmlspecialchars($newname));
/* Update relations */
require_once('./libraries/relation.lib.php');
$cfgRelation = PMA_getRelationsParam();
if ($cfgRelation['commwork']) {
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['column_info'])
. ' SET db_name = \'' . PMA_sqlAddslashes($newname) . '\''
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'');
}
if ($cfgRelation['bookmarkwork']) {
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['bookmark'])
. ' SET dbase = \'' . PMA_sqlAddslashes($newname) . '\''
. ' WHERE dbase = \'' . PMA_sqlAddslashes($db) . '\'');
}
if ($cfgRelation['displaywork']) {
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['table_info'])
. ' SET db_name = \'' . PMA_sqlAddslashes($newname) . '\''
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'');
}
if ($cfgRelation['relwork']) {
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['relation'])
. ' SET foreign_db = \'' . PMA_sqlAddslashes($newname) . '\''
. ' WHERE foreign_db = \'' . PMA_sqlAddslashes($db) . '\'');
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['relation'])
. ' SET master_db = \'' . PMA_sqlAddslashes($newname) . '\''
. ' WHERE master_db = \'' . PMA_sqlAddslashes($db) . '\'');
}
if ($cfgRelation['historywork']) {
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['history'])
. ' SET db = \'' . PMA_sqlAddslashes($newname) . '\''
. ' WHERE db = \'' . PMA_sqlAddslashes($db) . '\'');
}
if ($cfgRelation['pdfwork']) {
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['table_info'])
. ' SET db_name = \'' . PMA_sqlAddslashes($newname) . '\''
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'');
}
/* Change database to be used */ /* Change database to be used */
$db = $newname; if ($move) {
$db = $newname;
} else {
$pma_uri_parts = parse_url($cfg['PmaAbsoluteUri']);
if (isset($switch_to_new) && $switch_to_new == 'true') {
setcookie('pma_switch_to_new', 'true', 0, substr($pma_uri_parts['path'], 0, strrpos($pma_uri_parts['path'], '/')), '', ($pma_uri_parts['scheme'] == 'https'));
$db = $newname;
} else {
setcookie('pma_switch_to_new', '', 0, substr($pma_uri_parts['path'], 0, strrpos($pma_uri_parts['path'], '/')), '', ($pma_uri_parts['scheme'] == 'https'));
}
}
} }
} }
/** /**
@@ -81,7 +61,7 @@ if (isset($db) && isset($db_rename) && $db_rename == 'true') {
*/ */
if (empty($is_info)) { if (empty($is_info)) {
require('./db_details_common.php'); require('./db_details_common.php');
$url_query .= '&amp;goto=db_details_structure.php'; $url_query .= '&amp;goto=db_operations.php';
// Gets the database structure // Gets the database structure
$sub_part = '_structure'; $sub_part = '_structure';
@@ -141,7 +121,7 @@ if ($cfgRelation['commwork']) {
} }
echo $strDBRename.':&nbsp;'; echo $strDBRename.':&nbsp;';
?></td></tr> ?></td></tr>
<form method="post" action="db_details_structure.php" <form method="post" action="db_operations.php"
onsubmit="return emptyFormElements(this, 'newname')"> onsubmit="return emptyFormElements(this, 'newname')">
<tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="2"><?php <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="2"><?php
echo '<input type="hidden" name="db_rename" value="true" />' echo '<input type="hidden" name="db_rename" value="true" />'
@@ -150,6 +130,41 @@ if ($cfgRelation['commwork']) {
<td align="right"><input type="submit" value="<?php echo $strGo; ?>" /></td> <td align="right"><input type="submit" value="<?php echo $strGo; ?>" /></td>
</form></tr> </form></tr>
<!-- Copy database -->
<tr><td colspan="3"><img src="<?php echo $GLOBALS['pmaThemeImage'] . 'spacer.png'; ?>" width="1" height="1" border="0" alt="" /></td></tr>
<tr><td colspan="3" class="tblHeaders"><?php
if ($cfg['PropertiesIconic']) {
echo '<img src="' . $pmaThemeImage . 'b_edit.png" border="0" width="16" height="16" hspace="2" align="middle" />';
}
echo $strDBCopy.':&nbsp;';
?></td></tr>
<form method="post" action="db_operations.php"
onsubmit="return emptyFormElements(this, 'newname')">
<tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="3"><?php
echo '<input type="hidden" name="db_copy" value="true" />'
. PMA_generate_common_hidden_inputs($db);
?><input type="text" name="newname" size="30" class="textfield" value="" /></td>
</tr><tr>
<td nowrap="nowrap" bgcolor="<?php echo $cfg['BgcolorOne']; ?>" colspan="2">
<input type="radio" name="what" value="structure" id="radio_copy_structure" style="vertical-align: middle" /><label for="radio_copy_structure"><?php echo $strStrucOnly; ?></label>&nbsp;&nbsp;<br />
<input type="radio" name="what" value="data" id="radio_copy_data" checked="checked" style="vertical-align: middle" /><label for="radio_copy_data"><?php echo $strStrucData; ?></label>&nbsp;&nbsp;<br />
<input type="radio" name="what" value="dataonly" id="radio_copy_dataonly" style="vertical-align: middle" /><label for="radio_copy_dataonly"><?php echo $strDataOnly; ?></label>&nbsp;&nbsp;<br />
<input type="checkbox" name="auto_increment" value="1" id="checkbox_auto_increment" style="vertical-align: middle" /><label for="checkbox_auto_increment"><?php echo $strAddAutoIncrement; ?></label><br />
<input type="checkbox" name="constraints" value="1" id="checkbox_constraints" style="vertical-align: middle" /><label for="checkbox_constraints"><?php echo $strAddConstraints; ?></label><br />
<?php
if (isset($_COOKIE) && isset($_COOKIE['pma_switch_to_new']) && $_COOKIE['pma_switch_to_new'] == 'true') {
$pma_switch_to_new = 'true';
}
?>
<input type="checkbox" name="switch_to_new" value="true" id="checkbox_switch"<?php echo ((isset($pma_switch_to_new) && $pma_switch_to_new == 'true') ? ' checked="checked"' : ''); ?> style="vertical-align: middle" /><label for="checkbox_switch"><?php echo $strSwitchToTable; ?></label>&nbsp;&nbsp;
</td>
<td align="<?php echo $cell_align_right; ?>" valign="bottom" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<input type="submit" name="submit_copy" value="<?php echo $strGo; ?>" />
</td>
</tr>
</form>
<?php <?php
if (PMA_MYSQL_INT_VERSION >= 40101) { if (PMA_MYSQL_INT_VERSION >= 40101) {
@@ -163,7 +178,7 @@ if (PMA_MYSQL_INT_VERSION >= 40101) {
} }
echo ' <label for="select_db_collation">' . $strCollation . '</label>:&nbsp;' . "\n" echo ' <label for="select_db_collation">' . $strCollation . '</label>:&nbsp;' . "\n"
. ' </td></tr>' . "\n" . ' </td></tr>' . "\n"
. ' <form method="post" action="./db_details_structure.php">' . "\n" . ' <form method="post" action="./db_operations.php">' . "\n"
. ' <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td colspan="2" nowrap="nowrap">' . ' <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td colspan="2" nowrap="nowrap">'
. PMA_generate_common_hidden_inputs($db, $table, 3) . PMA_generate_common_hidden_inputs($db, $table, 3)
. PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, 'db_collation', 'select_db_collation', $db_collation, FALSE, 3) . PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, 'db_collation', 'select_db_collation', $db_collation, FALSE, 3)

View File

@@ -745,4 +745,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -746,4 +746,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -735,4 +735,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -739,4 +739,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -738,4 +738,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -734,4 +734,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -735,4 +735,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -737,4 +737,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -738,4 +738,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -744,4 +744,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -743,4 +743,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -759,4 +759,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -760,4 +760,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -744,4 +744,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -745,4 +745,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -744,4 +744,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -737,4 +737,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -740,4 +740,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -758,4 +758,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -759,4 +759,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -758,4 +758,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -144,6 +144,7 @@ $strConnections = 'P
$strConstraintsForDumped = 'Omezen<65> pro exportovan<61> tabulky'; $strConstraintsForDumped = 'Omezen<65> pro exportovan<61> tabulky';
$strConstraintsForTable = 'Omezen<65> pro tabulku'; $strConstraintsForTable = 'Omezen<65> pro tabulku';
$strCookiesRequired = 'B<>hem tohoto kroku mus<75>te m<>t povoleny cookies.'; $strCookiesRequired = 'B<>hem tohoto kroku mus<75>te m<>t povoleny cookies.';
$strCopyDatabaseOK = 'Datab<61>ze %s byla zkop<6F>rov<6F>na na %s';
$strCopyTable = 'Kop<6F>rovat tabulku do (datab<61>ze<b>.</b>tabulka):'; $strCopyTable = 'Kop<6F>rovat tabulku do (datab<61>ze<b>.</b>tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkop<6F>rov<6F>na do %s.'; $strCopyTableOK = 'Tabulka %s byla zkop<6F>rov<6F>na do %s.';
$strCopyTableSameNames = 'Nelze kop<6F>rovat tabulku na sebe samu!'; $strCopyTableSameNames = 'Nelze kop<6F>rovat tabulku na sebe samu!';
@@ -163,6 +164,7 @@ $strCzech = '
$strCzechSlovak = '<27>e<EFBFBD>tina/Sloven<65>tina'; $strCzechSlovak = '<27>e<EFBFBD>tina/Sloven<65>tina';
$strDBComment = 'Koment<6E><74> k datab<61>zi: '; $strDBComment = 'Koment<6E><74> k datab<61>zi: ';
$strDBCopy = 'Zkop<6F>rovat datab<61>zi na';
$strDBGContext = 'Kontext'; $strDBGContext = 'Kontext';
$strDBGContextID = 'Kontext ID'; $strDBGContextID = 'Kontext ID';
$strDBGHits = 'Z<>sah<61>'; $strDBGHits = 'Z<>sah<61>';

View File

@@ -145,6 +145,7 @@ $strConnections = 'Připojení';
$strConstraintsForDumped = 'Omezení pro exportované tabulky'; $strConstraintsForDumped = 'Omezení pro exportované tabulky';
$strConstraintsForTable = 'Omezení pro tabulku'; $strConstraintsForTable = 'Omezení pro tabulku';
$strCookiesRequired = 'Během tohoto kroku musíte mít povoleny cookies.'; $strCookiesRequired = 'Během tohoto kroku musíte mít povoleny cookies.';
$strCopyDatabaseOK = 'Databáze %s byla zkopírována na %s';
$strCopyTable = 'Kopírovat tabulku do (databáze<b>.</b>tabulka):'; $strCopyTable = 'Kopírovat tabulku do (databáze<b>.</b>tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkopírována do %s.'; $strCopyTableOK = 'Tabulka %s byla zkopírována do %s.';
$strCopyTableSameNames = 'Nelze kopírovat tabulku na sebe samu!'; $strCopyTableSameNames = 'Nelze kopírovat tabulku na sebe samu!';
@@ -164,6 +165,7 @@ $strCzech = 'Čeština';
$strCzechSlovak = 'Čeština/Slovenština'; $strCzechSlovak = 'Čeština/Slovenština';
$strDBComment = 'Komentář k databázi: '; $strDBComment = 'Komentář k databázi: ';
$strDBCopy = 'Zkopírovat databázi na';
$strDBGContext = 'Kontext'; $strDBGContext = 'Kontext';
$strDBGContextID = 'Kontext ID'; $strDBGContextID = 'Kontext ID';
$strDBGHits = 'Zásahů'; $strDBGHits = 'Zásahů';

View File

@@ -144,6 +144,7 @@ $strConnections = 'P
$strConstraintsForDumped = 'Omezen<65> pro exportovan<61> tabulky'; $strConstraintsForDumped = 'Omezen<65> pro exportovan<61> tabulky';
$strConstraintsForTable = 'Omezen<65> pro tabulku'; $strConstraintsForTable = 'Omezen<65> pro tabulku';
$strCookiesRequired = 'B<>hem tohoto kroku mus<75>te m<>t povoleny cookies.'; $strCookiesRequired = 'B<>hem tohoto kroku mus<75>te m<>t povoleny cookies.';
$strCopyDatabaseOK = 'Datab<61>ze %s byla zkop<6F>rov<6F>na na %s';
$strCopyTable = 'Kop<6F>rovat tabulku do (datab<61>ze<b>.</b>tabulka):'; $strCopyTable = 'Kop<6F>rovat tabulku do (datab<61>ze<b>.</b>tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkop<6F>rov<6F>na do %s.'; $strCopyTableOK = 'Tabulka %s byla zkop<6F>rov<6F>na do %s.';
$strCopyTableSameNames = 'Nelze kop<6F>rovat tabulku na sebe samu!'; $strCopyTableSameNames = 'Nelze kop<6F>rovat tabulku na sebe samu!';
@@ -163,6 +164,7 @@ $strCzech = '
$strCzechSlovak = '<27>e<EFBFBD>tina/Sloven<65>tina'; $strCzechSlovak = '<27>e<EFBFBD>tina/Sloven<65>tina';
$strDBComment = 'Koment<6E><74> k datab<61>zi: '; $strDBComment = 'Koment<6E><74> k datab<61>zi: ';
$strDBCopy = 'Zkop<6F>rovat datab<61>zi na';
$strDBGContext = 'Kontext'; $strDBGContext = 'Kontext';
$strDBGContextID = 'Kontext ID'; $strDBGContextID = 'Kontext ID';
$strDBGHits = 'Z<>sah<61>'; $strDBGHits = 'Z<>sah<61>';

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -734,4 +734,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -735,4 +735,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -69,8 +69,15 @@ $strBack = 'Back';
$strBaltic = 'Baltic'; $strBaltic = 'Baltic';
$strBeginCut = 'BEGIN CUT'; $strBeginCut = 'BEGIN CUT';
$strBeginRaw = 'BEGIN RAW'; $strBeginRaw = 'BEGIN RAW';
$strBinLogEventType = 'Event type';
$strBinLogInfo = 'Information';
$strBinLogName = 'Log name';
$strBinLogOriginalPosition = 'Original position';
$strBinLogPosition = 'Position';
$strBinLogServerId = 'Server ID';
$strBinary = 'Binary'; $strBinary = 'Binary';
$strBinaryDoNotEdit = 'Binary - do not edit'; $strBinaryDoNotEdit = 'Binary - do not edit';
$strBinaryLog = 'Binary log';
$strBookmarkAllUsers = 'Let every user access this bookmark'; $strBookmarkAllUsers = 'Let every user access this bookmark';
$strBookmarkDeleted = 'The bookmark has been deleted.'; $strBookmarkDeleted = 'The bookmark has been deleted.';
$strBookmarkLabel = 'Label'; $strBookmarkLabel = 'Label';
@@ -131,6 +138,7 @@ $strConnections = 'Connections';
$strConstraintsForDumped = 'Constraints for dumped tables'; $strConstraintsForDumped = 'Constraints for dumped tables';
$strConstraintsForTable = 'Constraints for table'; $strConstraintsForTable = 'Constraints for table';
$strCookiesRequired = 'Cookies must be enabled past this point.'; $strCookiesRequired = 'Cookies must be enabled past this point.';
$strCopyDatabaseOK = 'Database %s has been copied to %s';
$strCopyTable = 'Copy table to (database<b>.</b>table):'; $strCopyTable = 'Copy table to (database<b>.</b>table):';
$strCopyTableOK = 'Table %s has been copied to %s.'; $strCopyTableOK = 'Table %s has been copied to %s.';
$strCopyTableSameNames = 'Can\'t copy table to same one!'; $strCopyTableSameNames = 'Can\'t copy table to same one!';
@@ -150,6 +158,7 @@ $strCzech = 'Czech';
$strCzechSlovak = 'Czech-Slovak'; $strCzechSlovak = 'Czech-Slovak';
$strDBComment = 'Database comment: '; $strDBComment = 'Database comment: ';
$strDBCopy = 'Copy database to';
$strDBGContext = 'Context'; $strDBGContext = 'Context';
$strDBGContextID = 'Context ID'; $strDBGContextID = 'Context ID';
$strDBGHits = 'Hits'; $strDBGHits = 'Hits';
@@ -567,6 +576,7 @@ $strSearchType = 'Find:';
$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; $strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).';
$strSelectADb = 'Please select a database'; $strSelectADb = 'Please select a database';
$strSelectAll = 'Select All'; $strSelectAll = 'Select All';
$strSelectBinaryLog = 'Select binary log to view';
$strSelectFields = 'Select fields (at least one):'; $strSelectFields = 'Select fields (at least one):';
$strSelectNumRows = 'in query'; $strSelectNumRows = 'in query';
$strSelectTables = 'Select Tables'; $strSelectTables = 'Select Tables';
@@ -722,12 +732,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"';
$strBinLogName = 'Log name'; //to translate
$strBinLogPosition = 'Position'; //to translate
$strBinLogEventType = 'Event type'; //to translate
$strBinLogServerId = 'Server ID'; //to translate
$strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate
?> ?>

View File

@@ -70,8 +70,15 @@ $strBack = 'Back';
$strBaltic = 'Baltic'; $strBaltic = 'Baltic';
$strBeginCut = 'BEGIN CUT'; $strBeginCut = 'BEGIN CUT';
$strBeginRaw = 'BEGIN RAW'; $strBeginRaw = 'BEGIN RAW';
$strBinLogEventType = 'Event type';
$strBinLogInfo = 'Information';
$strBinLogName = 'Log name';
$strBinLogOriginalPosition = 'Original position';
$strBinLogPosition = 'Position';
$strBinLogServerId = 'Server ID';
$strBinary = 'Binary'; $strBinary = 'Binary';
$strBinaryDoNotEdit = 'Binary - do not edit'; $strBinaryDoNotEdit = 'Binary - do not edit';
$strBinaryLog = 'Binary log';
$strBookmarkAllUsers = 'Let every user access this bookmark'; $strBookmarkAllUsers = 'Let every user access this bookmark';
$strBookmarkDeleted = 'The bookmark has been deleted.'; $strBookmarkDeleted = 'The bookmark has been deleted.';
$strBookmarkLabel = 'Label'; $strBookmarkLabel = 'Label';
@@ -132,6 +139,7 @@ $strConnections = 'Connections';
$strConstraintsForDumped = 'Constraints for dumped tables'; $strConstraintsForDumped = 'Constraints for dumped tables';
$strConstraintsForTable = 'Constraints for table'; $strConstraintsForTable = 'Constraints for table';
$strCookiesRequired = 'Cookies must be enabled past this point.'; $strCookiesRequired = 'Cookies must be enabled past this point.';
$strCopyDatabaseOK = 'Database %s has been copied to %s';
$strCopyTable = 'Copy table to (database<b>.</b>table):'; $strCopyTable = 'Copy table to (database<b>.</b>table):';
$strCopyTableOK = 'Table %s has been copied to %s.'; $strCopyTableOK = 'Table %s has been copied to %s.';
$strCopyTableSameNames = 'Can\'t copy table to same one!'; $strCopyTableSameNames = 'Can\'t copy table to same one!';
@@ -151,6 +159,7 @@ $strCzech = 'Czech';
$strCzechSlovak = 'Czech-Slovak'; $strCzechSlovak = 'Czech-Slovak';
$strDBComment = 'Database comment: '; $strDBComment = 'Database comment: ';
$strDBCopy = 'Copy database to';
$strDBGContext = 'Context'; $strDBGContext = 'Context';
$strDBGContextID = 'Context ID'; $strDBGContextID = 'Context ID';
$strDBGHits = 'Hits'; $strDBGHits = 'Hits';
@@ -568,6 +577,7 @@ $strSearchType = 'Find:';
$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; $strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).';
$strSelectADb = 'Please select a database'; $strSelectADb = 'Please select a database';
$strSelectAll = 'Select All'; $strSelectAll = 'Select All';
$strSelectBinaryLog = 'Select binary log to view';
$strSelectFields = 'Select fields (at least one):'; $strSelectFields = 'Select fields (at least one):';
$strSelectNumRows = 'in query'; $strSelectNumRows = 'in query';
$strSelectTables = 'Select Tables'; $strSelectTables = 'Select Tables';
@@ -723,12 +733,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"';
$strBinLogName = 'Log name'; //to translate
$strBinLogPosition = 'Position'; //to translate
$strBinLogEventType = 'Event type'; //to translate
$strBinLogServerId = 'Server ID'; //to translate
$strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate
?> ?>

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -755,4 +755,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -756,4 +756,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -732,4 +732,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -735,4 +735,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -759,4 +759,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -738,4 +738,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -739,4 +739,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -739,4 +739,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -740,4 +740,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -755,4 +755,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -756,4 +756,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -763,4 +763,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -737,4 +737,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -738,4 +738,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -735,4 +735,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -751,4 +751,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -752,4 +752,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -752,4 +752,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -753,4 +753,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -754,4 +754,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -737,4 +737,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -754,4 +754,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -755,4 +755,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -734,4 +734,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -735,4 +735,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -760,4 +760,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -759,4 +759,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -750,4 +750,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -751,4 +751,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -732,4 +732,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -738,4 +738,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -738,4 +738,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -739,4 +739,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -738,4 +738,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -737,4 +737,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -737,4 +737,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -736,4 +736,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -732,4 +732,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -733,4 +733,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -732,4 +732,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -732,4 +732,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -733,4 +733,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -732,4 +732,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -730,4 +730,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -731,4 +731,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -755,4 +755,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

View File

@@ -756,4 +756,6 @@ $strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate $strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate $strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate $strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
?> ?>

Some files were not shown because too many files have changed in this diff Show More