Added ability for synchronizing databases among servers.

Manual merge from branches/gsoc/zahra.
This commit is contained in:
Michal Čihař
2009-08-24 14:39:38 +00:00
parent 2fbe820b3d
commit 215b8fa174
72 changed files with 4024 additions and 42 deletions

View File

@@ -33,6 +33,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
thanks to Derek Schaefer thanks to Derek Schaefer
+ [core] Addded ability for tracking changes made through phpMyAdmin + [core] Addded ability for tracking changes made through phpMyAdmin
+ rfe #2839504 [engines] Support InnoDB plugin's new row formats + rfe #2839504 [engines] Support InnoDB plugin's new row formats
+ [core] Added ability for synchronizing databases among servers.
3.2.2.0 (not yet released) 3.2.2.0 (not yet released)
- bug #2825293 [structure] Default value for a BIT column - bug #2825293 [structure] Default value for a BIT column

View File

@@ -279,6 +279,308 @@ function checkSqlQuery(theForm)
return true; return true;
} // end of the 'checkSqlQuery()' function } // end of the 'checkSqlQuery()' function
// Global variable row_class is set to even
var row_class = 'even';
/**
* Generates a row dynamically in the differences table displaying
* the complete statistics of difference in table like number of
* rows to be updated, number of rows to be inserted, number of
* columns to be added, number of columns to be removed, etc.
*
* @param index index of matching table
* @param update_size number of rows/column to be updated
* @param insert_size number of rows/coulmns to be inserted
* @param remove_size number of columns to be removed
* @param insert_index number of indexes to be inserted
* @param remove_index number of indexes to be removed
* @param img_obj image object
* @param table_name name of the table
*/
function showDetails(i, update_size, insert_size, remove_size, insert_index, remove_index, img_obj, table_name)
{
// The path of the image is split to facilitate comparison
var relative_path = (img_obj.src).split("themes/");
// The image source is changed when the showDetails function is called.
if (relative_path[1] == 'original/img/new_data_hovered.jpg') {
img_obj.src = "./themes/original/img/new_data_selected_hovered.jpg";
img_obj.alt = "Click to Unselect"; //only for IE browser
} else if (relative_path[1] == 'original/img/new_struct_hovered.jpg') {
img_obj.src = "./themes/original/img/new_struct_selected_hovered.jpg";
img_obj.alt = "Click to Unselect";
} else if (relative_path[1] == 'original/img/new_struct_selected_hovered.jpg') {
img_obj.src = "./themes/original/img/new_struct_hovered.jpg";
img_obj.alt = "Click to Select";
} else if (relative_path[1] == 'original/img/new_data_selected_hovered.jpg') {
img_obj.src = "./themes/original/img/new_data_hovered.jpg";
img_obj.alt = "Click to Select";
}
var div = document.getElementById("list");
var table = div.getElementsByTagName("table")[0];
var table_body = table.getElementsByTagName("tbody")[0];
//Global variable row_class is being used
if (row_class == 'even') {
row_class = 'odd';
} else {
row_class = 'even';
}
// If the red or green button against a table name is pressed then append a new row to show the details of differences of this table.
if ((relative_path[1] != 'original/img/new_struct_selected_hovered.jpg') && (relative_path[1] != 'original/img/new_data_selected_hovered.jpg')) {
var newRow = document.createElement("tr");
newRow.setAttribute("class", row_class);
newRow.className = row_class;
// Id assigned to this row element is same as the index of this table name in the matching_tables/source_tables_uncommon array
newRow.setAttribute("id" , i);
var table_name_cell = document.createElement("td");
table_name_cell.align = "center";
table_name_cell.innerHTML = table_name ;
newRow.appendChild(table_name_cell);
var create_table = document.createElement("td");
create_table.align = "center";
var add_cols = document.createElement("td");
add_cols.align = "center";
var remove_cols = document.createElement("td");
remove_cols.align = "center";
var alter_cols = document.createElement("td");
alter_cols.align = "center";
var add_index = document.createElement("td");
add_index.align = "center";
var delete_index = document.createElement("td");
delete_index.align = "center";
var update_rows = document.createElement("td");
update_rows.align = "center";
var insert_rows = document.createElement("td");
insert_rows.align = "center";
var tick_image = document.createElement("img");
tick_image.src = "./themes/original/img/s_success.png";
if (update_size == '' && insert_size == '' && remove_size == '') {
/**
This is the case when the table needs to be created in target database.
*/
create_table.appendChild(tick_image);
add_cols.innerHTML = "--";
remove_cols.innerHTML = "--";
alter_cols.innerHTML = "--";
delete_index.innerHTML = "--";
add_index.innerHTML = "--";
update_rows.innerHTML = "--";
insert_rows.innerHTML = "--";
newRow.appendChild(create_table);
newRow.appendChild(add_cols);
newRow.appendChild(remove_cols);
newRow.appendChild(alter_cols);
newRow.appendChild(delete_index);
newRow.appendChild(add_index);
newRow.appendChild(update_rows);
newRow.appendChild(insert_rows);
} else if (update_size == '' && remove_size == '') {
/**
This is the case when data difference is displayed in the
table which is present in source but absent from target database
*/
create_table.innerHTML = "--";
add_cols.innerHTML = "--";
remove_cols.innerHTML = "--";
alter_cols.innerHTML = "--";
add_index.innerHTML = "--";
delete_index.innerHTML = "--";
update_rows.innerHTML = "--";
insert_rows.innerHTML = insert_size;
newRow.appendChild(create_table);
newRow.appendChild(add_cols);
newRow.appendChild(remove_cols);
newRow.appendChild(alter_cols);
newRow.appendChild(delete_index);
newRow.appendChild(add_index);
newRow.appendChild(update_rows);
newRow.appendChild(insert_rows);
} else if (remove_size == '') {
/**
This is the case when data difference between matching_tables is displayed.
*/
create_table.innerHTML = "--";
add_cols.innerHTML = "--";
remove_cols.innerHTML = "--";
alter_cols.innerHTML = "--";
add_index.innerHTML = "--";
delete_index.innerHTML = "--";
update_rows.innerHTML = update_size;
insert_rows.innerHTML = insert_size;
newRow.appendChild(create_table);
newRow.appendChild(add_cols);
newRow.appendChild(remove_cols);
newRow.appendChild(alter_cols);
newRow.appendChild(delete_index);
newRow.appendChild(add_index);
newRow.appendChild(update_rows);
newRow.appendChild(insert_rows);
} else {
/**
This is the case when structure difference between matching_tables id displayed
*/
create_table.innerHTML = "--";
add_cols.innerHTML = insert_size;
remove_cols.innerHTML = remove_size;
alter_cols.innerHTML = update_size;
delete_index.innerHTML = remove_index;
add_index.innerHTML = insert_index;
update_rows.innerHTML = "--";
insert_rows.innerHTML = "--";
newRow.appendChild(create_table);
newRow.appendChild(add_cols);
newRow.appendChild(remove_cols);
newRow.appendChild(alter_cols);
newRow.appendChild(delete_index);
newRow.appendChild(add_index);
newRow.appendChild(update_rows);
newRow.appendChild(insert_rows);
}
table_body.appendChild(newRow);
} else if ((relative_path[1] != 'original/img/new_struct_hovered.jpg') && (relative_path[1] != 'original/img/new_data_hovered.jpg')) {
//The case when the row showing the details need to be removed from the table i.e. the difference button is deselected now.
var table_rows = table_body.getElementsByTagName("tr");
var j;
var index;
for (j=0; j < table_rows.length; j++)
{
if (table_rows[j].id == i) {
index = j;
table_rows[j].parentNode.removeChild(table_rows[j]);
}
}
//The table row css is being adjusted. Class "odd" for odd rows and "even" for even rows should be maintained.
for(index; index < table_rows.length; index++)
{
row_class_element = table_rows[index].getAttribute('class');
if (row_class_element == "even") {
table_rows[index].setAttribute("class","odd"); // for Mozilla firefox
table_rows[index].className = "odd"; // for IE browser
} else {
table_rows[index].setAttribute("class","even"); // for Mozilla firefox
table_rows[index].className = "even"; // for IE browser
}
}
}
}
/**
* Changes the image on hover effects
*
* @param img_obj the image object whose source needs to be changed
*
*/
function change_Image(img_obj)
{
var relative_path = (img_obj.src).split("themes/");
if (relative_path[1] == 'original/img/new_data.jpg') {
img_obj.src = "./themes/original/img/new_data_hovered.jpg";
} else if (relative_path[1] == 'original/img/new_struct.jpg') {
img_obj.src = "./themes/original/img/new_struct_hovered.jpg";
} else if (relative_path[1] == 'original/img/new_struct_hovered.jpg') {
img_obj.src = "./themes/original/img/new_struct.jpg";
} else if (relative_path[1] == 'original/img/new_data_hovered.jpg') {
img_obj.src = "./themes/original/img/new_data.jpg";
} else if (relative_path[1] == 'original/img/new_data_selected.jpg') {
img_obj.src = "./themes/original/img/new_data_selected_hovered.jpg";
} else if(relative_path[1] == 'original/img/new_struct_selected.jpg') {
img_obj.src = "./themes/original/img/new_struct_selected_hovered.jpg";
} else if (relative_path[1] == 'original/img/new_struct_selected_hovered.jpg') {
img_obj.src = "./themes/original/img/new_struct_selected.jpg";
} else if (relative_path[1] == 'original/img/new_data_selected_hovered.jpg') {
img_obj.src = "./themes/original/img/new_data_selected.jpg";
}
}
/**
* Generates the URL containing the list of selected table ids for synchronization and
* a variable checked for confirmation of deleting previous rows from target tables
*
* @param token the token generated for each PMA form
*
*/
function ApplySelectedChanges(token)
{
var div = document.getElementById("list");
var table = div.getElementsByTagName('table')[0];
var table_body = table.getElementsByTagName('tbody')[0];
// Get all the rows from the details table
var table_rows = table_body.getElementsByTagName('tr');
var x = table_rows.length;
var i;
/**
Append the token at the beginning of the query string followed by
Table_ids that shows that "Apply Selected Changes" button is pressed
*/
var append_string = "?token="+token+"&Table_ids="+1;
for(i=0; i<x; i++){
append_string += "&";
append_string += i+"="+table_rows[i].id;
}
// Getting the value of checkbox delete_rows
var checkbox = document.getElementById("delete_rows");
if (checkbox.checked){
append_string += "&checked=true";
} else {
append_string += "&checked=false";
}
//Appending the token and list of table ids in the URL
location.href += token;
location.href += append_string;
}
/**
* Displays error message if any text field
* is left empty other than port field.
*
* @param string the form name
* @param object the form
*
* @return boolean whether the form field is empty or not
*/
function validateConnection(form_name, form_obj)
{
for (var i=1; i<form_name.elements.length; i++)
{
// All the text fields are checked excluding the port field because the default port can be used.
if ((form_name.elements[i].type == 'text') && (form_name.elements[i].name != 'src_port') && (form_name.elements[i].name != 'trg_port')) {
var check = emptyFormElements(form_obj, form_name.elements[i].name);
}
if (check === false) {
// alert('Password field can be empty.');
return false;
}
}
return true;
}
/** /**
* Check if a form's element is empty * Check if a form's element is empty

View File

@@ -1567,4 +1567,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1566,4 +1566,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1569,4 +1569,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1563,4 +1563,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1542,4 +1542,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1560,4 +1560,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1542,4 +1542,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1550,4 +1550,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1566,4 +1566,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1557,4 +1557,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1563,4 +1563,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1537,4 +1537,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1550,4 +1550,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1547,4 +1547,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1544,4 +1544,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1546,4 +1546,22 @@ $strSetupZipDump_desc = 'Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format
$strSetupZipDumpExportWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Zip compression[/a] requires functions (%s) which are unavailable on this system.'; //to translate $strSetupZipDumpExportWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Zip compression[/a] requires functions (%s) which are unavailable on this system.'; //to translate
$strSetupZipDumpImportWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Zip decompression[/a] requires functions (%s) which are unavailable on this system.'; //to translate $strSetupZipDumpImportWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Zip decompression[/a] requires functions (%s) which are unavailable on this system.'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1542,4 +1542,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1547,4 +1547,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -62,6 +62,7 @@ $strAnIndex = 'An index has been added on %s';
$strAny = 'Any'; $strAny = 'Any';
$strAnyHost = 'Any host'; $strAnyHost = 'Any host';
$strAnyUser = 'Any user'; $strAnyUser = 'Any user';
$strApplyChanges='Apply Selected Changes';
$strApproximateCount = 'May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]'; $strApproximateCount = 'May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]';
$strAPrimaryKey = 'A primary key has been added on %s'; $strAPrimaryKey = 'A primary key has been added on %s';
$strArabic = 'Arabic'; $strArabic = 'Arabic';
@@ -133,26 +134,6 @@ $strCardinality = 'Cardinality';
$strCaseInsensitive = 'case-insensitive'; $strCaseInsensitive = 'case-insensitive';
$strCaseSensitive = 'case-sensitive'; $strCaseSensitive = 'case-sensitive';
$strCentralEuropean = 'Central European'; $strCentralEuropean = 'Central European';
$strChange = 'Change';
$strChangeCopyModeCopy = '... keep the old one.';
$strChangeCopyMode = 'Create a new user with the same privileges and ...';
$strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.';
$strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.';
$strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.';
$strChangeCopyUser = 'Change Login Information / Copy User';
$strChangeDisplay = 'Choose field to display';
$strChangePassword = 'Change password';
$strCharset = 'Charset';
$strCharsetOfFile = 'Character set of the file:';
$strCharsetsAndCollations = 'Character Sets and Collations';
$strCharsets = 'Charsets';
$strCheckAll = 'Check All';
$strCheck = 'Check';
$strCheckOverhead = 'Check tables having overhead';
$strCheckPrivs = 'Check Privileges';
$strCheckPrivsLong = 'Check privileges for database &quot;%s&quot;.';
$strCheckTable = 'Check table';
$strChoosePage = 'Please choose a page to edit';
$strColComFeat = 'Displaying Column Comments'; $strColComFeat = 'Displaying Column Comments';
$strCollation = 'Collation'; $strCollation = 'Collation';
$strColumnNames = 'Column names'; $strColumnNames = 'Column names';
@@ -203,6 +184,26 @@ $strCustomColor = 'Custom color';
$strCyrillic = 'Cyrillic'; $strCyrillic = 'Cyrillic';
$strCzech = 'Czech'; $strCzech = 'Czech';
$strCzechSlovak = 'Czech-Slovak'; $strCzechSlovak = 'Czech-Slovak';
$strChangeCopyModeCopy = '... keep the old one.';
$strChangeCopyMode = 'Create a new user with the same privileges and ...';
$strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.';
$strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.';
$strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.';
$strChangeCopyUser = 'Change Login Information / Copy User';
$strChangeDisplay = 'Choose field to display';
$strChange = 'Change';
$strChangePassword = 'Change password';
$strCharset = 'Charset';
$strCharsetOfFile = 'Character set of the file:';
$strCharsetsAndCollations = 'Character Sets and Collations';
$strCharsets = 'Charsets';
$strCheckAll = 'Check All';
$strCheck = 'Check';
$strCheckOverhead = 'Check tables having overhead';
$strCheckPrivs = 'Check Privileges';
$strCheckPrivsLong = 'Check privileges for database &quot;%s&quot;.';
$strCheckTable = 'Check table';
$strChoosePage = 'Please choose a page to edit';
$strDanish = 'Danish'; $strDanish = 'Danish';
$strDatabase = 'Database'; $strDatabase = 'Database';
@@ -218,8 +219,10 @@ $strDatabasesStatsEnable = 'Enable Statistics';
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the database statistics here might cause heavy traffic between the web server and the MySQL server.'; $strDatabasesStatsHeavyTraffic = 'Note: Enabling the database statistics here might cause heavy traffic between the web server and the MySQL server.';
$strData = 'Data'; $strData = 'Data';
$strDataDict = 'Data Dictionary'; $strDataDict = 'Data Dictionary';
$strDataDiff = 'Data Difference';
$strDataOnly = 'Data only'; $strDataOnly = 'Data only';
$strDataPages = 'Pages containing data'; $strDataPages = 'Pages containing data';
$strDataSyn = 'Data Synchronization';
$strDBComment = 'Database comment: '; $strDBComment = 'Database comment: ';
$strDBCopy = 'Copy database to'; $strDBCopy = 'Copy database to';
$strDbIsEmpty = 'Database seems to be empty!'; $strDbIsEmpty = 'Database seems to be empty!';
@@ -455,7 +458,6 @@ $strKorean = 'Korean';
$strLandscape = 'Landscape'; $strLandscape = 'Landscape';
$strLanguage = 'Language'; $strLanguage = 'Language';
$strLanguageUnknown = 'Unknown language: %1$s.'; $strLanguageUnknown = 'Unknown language: %1$s.';
$strLatchedPages = 'Latched pages';
$strLatexCaption = 'Table caption'; $strLatexCaption = 'Table caption';
$strLatexContent = 'Content of table __TABLE__'; $strLatexContent = 'Content of table __TABLE__';
$strLatexContinuedCaption = 'Continued table caption'; $strLatexContinuedCaption = 'Continued table caption';
@@ -464,6 +466,7 @@ $strLatexIncludeCaption = 'Include table caption';
$strLatexLabel = 'Label key'; $strLatexLabel = 'Label key';
$strLaTeX = 'LaTeX'; $strLaTeX = 'LaTeX';
$strLatexStructure = 'Structure of table __TABLE__'; $strLatexStructure = 'Structure of table __TABLE__';
$strLatchedPages = 'Latched pages';
$strLatvian = 'Latvian'; $strLatvian = 'Latvian';
$strLDI = 'CSV using LOAD DATA'; $strLDI = 'CSV using LOAD DATA';
$strLDILocal = 'Use LOCAL keyword'; $strLDILocal = 'Use LOCAL keyword';
@@ -521,9 +524,9 @@ $strMyISAMRepairThreadsDesc = 'If this value is greater than 1, MyISAM table ind
$strMyISAMRepairThreads = 'Repair threads'; $strMyISAMRepairThreads = 'Repair threads';
$strMyISAMSortBufferSizeDesc = 'The buffer that is allocated when sorting MyISAM indexes during a REPAIR TABLE or when creating indexes with CREATE INDEX or ALTER TABLE.'; $strMyISAMSortBufferSizeDesc = 'The buffer that is allocated when sorting MyISAM indexes during a REPAIR TABLE or when creating indexes with CREATE INDEX or ALTER TABLE.';
$strMyISAMSortBufferSize = 'Sort buffer size'; $strMyISAMSortBufferSize = 'Sort buffer size';
$strMySQLCharset = 'MySQL charset';
$strMysqlClientVersion = 'MySQL client version'; $strMysqlClientVersion = 'MySQL client version';
$strMySQLConnectionCollation = 'MySQL connection collation'; $strMySQLConnectionCollation = 'MySQL connection collation';
$strMySQLCharset = 'MySQL charset';
$strMysqlLibDiffersServerVersion = 'Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'; $strMysqlLibDiffersServerVersion = 'Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.';
$strMySQLSaid = 'MySQL said: '; $strMySQLSaid = 'MySQL said: ';
$strMySQLShowProcess = 'Show processes'; $strMySQLShowProcess = 'Show processes';
@@ -592,19 +595,19 @@ $strPartitionDefinition = 'PARTITION definition';
$strPartitioned = 'partitioned'; $strPartitioned = 'partitioned';
$strPartitionMaintenance = 'Partition maintenance'; $strPartitionMaintenance = 'Partition maintenance';
$strPartition = 'Partition %s'; $strPartition = 'Partition %s';
$strPasswordChanged = 'The password for %s was changed successfully.';
$strPasswordEmpty = 'The password is empty!'; $strPasswordEmpty = 'The password is empty!';
$strPasswordHashing = 'Password Hashing'; $strPasswordHashing = 'Password Hashing';
$strPasswordChanged = 'The password for %s was changed successfully.';
$strPasswordNotSame = 'The passwords aren\'t the same!'; $strPasswordNotSame = 'The passwords aren\'t the same!';
$strPassword = 'Password'; $strPassword = 'Password';
$strPBXTCheckpointFrequency = 'Checkpoint frequency';
$strPBXTCheckpointFrequencyDesc = 'The amount of data written to the transaction log before a checkpoint is performed. The default value is 24MB.';
$strPBXTDataFileGrowSize = 'Data file grow size'; $strPBXTDataFileGrowSize = 'Data file grow size';
$strPBXTDataFileGrowSizeDesc = 'The grow size of the handle data (.xtd) files.'; $strPBXTDataFileGrowSizeDesc = 'The grow size of the handle data (.xtd) files.';
$strPBXTDataLogThreshold = 'Data log threshold'; $strPBXTDataLogThreshold = 'Data log threshold';
$strPBXTDataLogThresholdDesc = 'The maximum size of a data log file. The default value is 64MB. PBXT can create a maximum of 32000 data logs, which are used by all tables. So the value of this variable can be increased to increase the total amount of data that can be stored in the database.'; $strPBXTDataLogThresholdDesc = 'The maximum size of a data log file. The default value is 64MB. PBXT can create a maximum of 32000 data logs, which are used by all tables. So the value of this variable can be increased to increase the total amount of data that can be stored in the database.';
$strPBXTGarbageThresholdDesc = 'The percentage of garbage in a data log file before it is compacted. This is a value between 1 and 99. The default is 50.'; $strPBXTGarbageThresholdDesc = 'The percentage of garbage in a data log file before it is compacted. This is a value between 1 and 99. The default is 50.';
$strPBXTGarbageThreshold = 'Garbage threshold'; $strPBXTGarbageThreshold = 'Garbage threshold';
$strPBXTCheckpointFrequencyDesc = 'The amount of data written to the transaction log before a checkpoint is performed. The default value is 24MB.';
$strPBXTCheckpointFrequency = 'Checkpoint frequency';
$strPBXTIndexCacheSizeDesc = 'This is the amount of memory allocated to the index cache. Default value is 32MB. The memory allocated here is used only for caching index pages.'; $strPBXTIndexCacheSizeDesc = 'This is the amount of memory allocated to the index cache. Default value is 32MB. The memory allocated here is used only for caching index pages.';
$strPBXTIndexCacheSize = 'Index cache size'; $strPBXTIndexCacheSize = 'Index cache size';
$strPBXTLogBufferSizeDesc = 'The size of the buffer used when writing a data log. The default is 256MB. The engine allocates one buffer per thread, but only if the thread is required to write a data log.'; $strPBXTLogBufferSizeDesc = 'The size of the buffer used when writing a data log. The default is 256MB. The engine allocates one buffer per thread, but only if the thread is required to write a data log.';
@@ -664,8 +667,8 @@ $strPrivDescDelete = 'Allows deleting data.';
$strPrivDescDropDb = 'Allows dropping databases and tables.'; $strPrivDescDropDb = 'Allows dropping databases and tables.';
$strPrivDescDropTbl = 'Allows dropping tables.'; $strPrivDescDropTbl = 'Allows dropping tables.';
$strPrivDescEvent = 'Allows to set up events for the event scheduler'; $strPrivDescEvent = 'Allows to set up events for the event scheduler';
$strPrivDescExecute5 = 'Allows executing stored routines.';
$strPrivDescExecute = 'Allows running stored procedures; has no effect in this MySQL version.'; $strPrivDescExecute = 'Allows running stored procedures; has no effect in this MySQL version.';
$strPrivDescExecute5 = 'Allows executing stored routines.';
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; $strPrivDescFile = 'Allows importing data from and exporting data into files.';
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; $strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.';
$strPrivDescIndex = 'Allows creating and dropping indexes.'; $strPrivDescIndex = 'Allows creating and dropping indexes.';
@@ -819,8 +822,8 @@ $strSetupAllowArbitraryServer_desc = 'If enabled user can enter any MySQL server
$strSetupAllowArbitraryServerMsg = 'This [a@?page=form&amp;formset=features#tab_Security]option[/a] should be disabled as it allows attackers to bruteforce login to any MySQL server. If you feel this is necessary, use [a@?page=form&amp;formset=features#tab_Security]trusted proxies list[/a]. However, IP-based protection may not be reliable if your IP belongs to an ISP where thousands of users, including you, are connected to.'; $strSetupAllowArbitraryServerMsg = 'This [a@?page=form&amp;formset=features#tab_Security]option[/a] should be disabled as it allows attackers to bruteforce login to any MySQL server. If you feel this is necessary, use [a@?page=form&amp;formset=features#tab_Security]trusted proxies list[/a]. However, IP-based protection may not be reliable if your IP belongs to an ISP where thousands of users, including you, are connected to.';
$strSetupAllowArbitraryServer_name = 'Allow login to any MySQL server'; $strSetupAllowArbitraryServer_name = 'Allow login to any MySQL server';
$strSetupAllowUserDropDatabase_name = 'Show &quot;Drop database&quot; link to normal users'; $strSetupAllowUserDropDatabase_name = 'Show &quot;Drop database&quot; link to normal users';
$strSetupBlowfishSecretCharsMsg = 'Key should contain letters, numbers [em]and[/em] special characters';
$strSetupblowfish_secret_desc = 'Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] authentication'; $strSetupblowfish_secret_desc = 'Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] authentication';
$strSetupBlowfishSecretCharsMsg = 'Key should contain letters, numbers [em]and[/em] special characters';
$strSetupBlowfishSecretLengthMsg = 'Key is too short, it should have at least 8 characters'; $strSetupBlowfishSecretLengthMsg = 'Key is too short, it should have at least 8 characters';
$strSetupBlowfishSecretMsg = 'You didn\'t have blowfish secret set and have enabled cookie authentication, so a key was automatically generated for you. It is used to encrypt cookies; you don\'t need to remember it.'; $strSetupBlowfishSecretMsg = 'You didn\'t have blowfish secret set and have enabled cookie authentication, so a key was automatically generated for you. It is used to encrypt cookies; you don\'t need to remember it.';
$strSetupblowfish_secret_name = 'Blowfish secret'; $strSetupblowfish_secret_name = 'Blowfish secret';
@@ -833,13 +836,6 @@ $strSetupBZipDump_name = 'Bzip2';
$strSetupBZipDumpWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Bzip2 compression and decompression[/a] requires functions (%s) which are unavailable on this system.'; $strSetupBZipDumpWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Bzip2 compression and decompression[/a] requires functions (%s) which are unavailable on this system.';
$strSetupCannotLoadConfig = 'Cannot load or save configuration'; $strSetupCannotLoadConfig = 'Cannot load or save configuration';
$strSetupCannotLoadConfigMsg = 'Please create web server writable folder [em]config[/em] in phpMyAdmin top level directory as described in [a@../Documentation.html#setup_script]documentation[/a]. Otherwise you will be only able to download or display it.'; $strSetupCannotLoadConfigMsg = 'Please create web server writable folder [em]config[/em] in phpMyAdmin top level directory as described in [a@../Documentation.html#setup_script]documentation[/a]. Otherwise you will be only able to download or display it.';
$strSetupCharEditing_desc = 'Defines which type of editing controls should be used for CHAR and VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/kbd] - allows newlines in fields';
$strSetupCharEditing_name = 'CHAR fields editing';
$strSetupCharTextareaCols_desc = 'Number of columns for CHAR/VARCHAR textareas';
$strSetupCharTextareaCols_name = 'CHAR textarea columns';
$strSetupCharTextareaRows_desc = 'Number of rows for CHAR/VARCHAR textareas';
$strSetupCharTextareaRows_name = 'CHAR textarea rows';
$strSetupCheckConfigurationPermissions_name = 'Check config file permissions';
$strSetupClear = 'Clear'; $strSetupClear = 'Clear';
$strSetupCompressOnFly_desc = 'Compress gzip/bzip2 exports on the fly without the need for much memory; if you encounter problems with created gzip/bzip2 files disable this feature'; $strSetupCompressOnFly_desc = 'Compress gzip/bzip2 exports on the fly without the need for much memory; if you encounter problems with created gzip/bzip2 files disable this feature';
$strSetupCompressOnFly_name = 'Compress on the fly'; $strSetupCompressOnFly_name = 'Compress on the fly';
@@ -881,12 +877,12 @@ $strSetuperror_nan_p = 'Not a positive number';
$strSetupExecTimeLimit_desc = 'Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no limit)'; $strSetupExecTimeLimit_desc = 'Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no limit)';
$strSetupExecTimeLimit_name = 'Maximum execution time'; $strSetupExecTimeLimit_name = 'Maximum execution time';
$strSetupExport_asfile_name = 'Save as file'; $strSetupExport_asfile_name = 'Save as file';
$strSetupExport_charset_name = 'Character set of the file';
$strSetupExport_compression_name = 'Compression'; $strSetupExport_compression_name = 'Compression';
$strSetupExport_file_template_database_name = 'Database name template'; $strSetupExport_file_template_database_name = 'Database name template';
$strSetupExport_file_template_server_name = 'Server name template'; $strSetupExport_file_template_server_name = 'Server name template';
$strSetupExport_file_template_table_name = 'Table name template'; $strSetupExport_file_template_table_name = 'Table name template';
$strSetupExport_format_name = 'Format'; $strSetupExport_format_name = 'Format';
$strSetupExport_charset_name = 'Character set of the file';
$strSetupExport_onserver_name = 'Save on server'; $strSetupExport_onserver_name = 'Save on server';
$strSetupExport_onserver_overwrite_name = 'Overwrite existing file(s)'; $strSetupExport_onserver_overwrite_name = 'Overwrite existing file(s)';
$strSetupExport_remember_file_template_name = 'Remember file name template'; $strSetupExport_remember_file_template_name = 'Remember file name template';
@@ -949,6 +945,13 @@ $strSetupGZipDump_desc = 'Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] c
$strSetupGZipDump_name = 'GZip'; $strSetupGZipDump_name = 'GZip';
$strSetupGZipDumpWarning = '[a@?page=form&amp;formset=features#tab_Import_export]GZip compression and decompression[/a] requires functions (%s) which are unavailable on this system.'; $strSetupGZipDumpWarning = '[a@?page=form&amp;formset=features#tab_Import_export]GZip compression and decompression[/a] requires functions (%s) which are unavailable on this system.';
$strSetupHomepageLink = 'phpMyAdmin homepage'; $strSetupHomepageLink = 'phpMyAdmin homepage';
$strSetupCharEditing_desc = 'Defines which type of editing controls should be used for CHAR and VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/kbd] - allows newlines in fields';
$strSetupCharEditing_name = 'CHAR fields editing';
$strSetupCharTextareaCols_desc = 'Number of columns for CHAR/VARCHAR textareas';
$strSetupCharTextareaCols_name = 'CHAR textarea columns';
$strSetupCharTextareaRows_desc = 'Number of rows for CHAR/VARCHAR textareas';
$strSetupCharTextareaRows_name = 'CHAR textarea rows';
$strSetupCheckConfigurationPermissions_name = 'Check config file permissions';
$strSetupIconvExtraParams_name = 'Extra parameters for iconv'; $strSetupIconvExtraParams_name = 'Extra parameters for iconv';
$strSetupIgnoreErrors = 'Ignore errors'; $strSetupIgnoreErrors = 'Ignore errors';
$strSetupIgnoreMultiSubmitErrors_desc = 'If enabled, phpMyAdmin continues computing multiple-statement queries even if one of the queries failed'; $strSetupIgnoreMultiSubmitErrors_desc = 'If enabled, phpMyAdmin continues computing multiple-statement queries even if one of the queries failed';
@@ -996,10 +999,10 @@ $strSetupLoginCookieStore_name = 'Login cookie store';
$strSetupLoginCookieValidity_desc = 'Define how long (in seconds) a login cookie is valid'; $strSetupLoginCookieValidity_desc = 'Define how long (in seconds) a login cookie is valid';
$strSetupLoginCookieValidityMsg = '[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may pose a security risk such as impersonation.'; $strSetupLoginCookieValidityMsg = '[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may pose a security risk such as impersonation.';
$strSetupLoginCookieValidity_name = 'Login cookie validity'; $strSetupLoginCookieValidity_name = 'Login cookie validity';
$strSetupMaxCharactersInDisplayedSQL_desc = 'Maximum number of characters used when a SQL query is displayed';
$strSetupMaxCharactersInDisplayedSQL_name = 'Maximum displayed SQL length';
$strSetupMaxDbList_desc = 'Maximum number of databases displayed in left frame and database list'; $strSetupMaxDbList_desc = 'Maximum number of databases displayed in left frame and database list';
$strSetupMaxDbList_name = 'Maximum databases'; $strSetupMaxDbList_name = 'Maximum databases';
$strSetupMaxCharactersInDisplayedSQL_desc = 'Maximum number of characters used when a SQL query is displayed';
$strSetupMaxCharactersInDisplayedSQL_name = 'Maximum displayed SQL length';
$strSetupMaxRows_desc = 'Number of rows displayed when browsing a result set. If the result set contains more rows, &quot;Previous&quot; and &quot;Next&quot; links will be shown.'; $strSetupMaxRows_desc = 'Number of rows displayed when browsing a result set. If the result set contains more rows, &quot;Previous&quot; and &quot;Next&quot; links will be shown.';
$strSetupMaxRows_name = 'Maximum number of rows to display'; $strSetupMaxRows_name = 'Maximum number of rows to display';
$strSetupMaxTableList_desc = 'Maximum number of tables displayed in table list'; $strSetupMaxTableList_desc = 'Maximum number of tables displayed in table list';
@@ -1106,20 +1109,20 @@ $strSetupServers_table_info_desc = 'Table to describe the display fields, leave
$strSetupServers_table_info_name = 'Display fields table'; $strSetupServers_table_info_name = 'Display fields table';
$strSetupServers_user_desc = 'Leave empty if not using config auth'; $strSetupServers_user_desc = 'Leave empty if not using config auth';
$strSetupServers_user_name = 'User for config auth'; $strSetupServers_user_name = 'User for config auth';
$strSetupServers_verbose_desc = 'A user-friendly description of this server. Leave blank to display the hostname instead.';
$strSetupServers_verbose_check_desc = 'Disable if you know that your pma_* tables are up to date. This prevents compatibility checks and thereby increases performance'; $strSetupServers_verbose_check_desc = 'Disable if you know that your pma_* tables are up to date. This prevents compatibility checks and thereby increases performance';
$strSetupServers_verbose_check_name = 'Verbose check'; $strSetupServers_verbose_check_name = 'Verbose check';
$strSetupServers_verbose_desc = 'A user-friendly description of this server. Leave blank to display the hostname instead.';
$strSetupServers_verbose_name = 'Verbose name of this server'; $strSetupServers_verbose_name = 'Verbose name of this server';
$strSetupSetValue = 'Set value: %s'; $strSetupSetValue = 'Set value: %s';
$strSetupShowAll_desc = 'Whether a user should be displayed a &quot;show all (records)&quot; button'; $strSetupShowAll_desc = 'Whether a user should be displayed a &quot;show all (records)&quot; button';
$strSetupShowAll_name = 'Allow to display all the rows'; $strSetupShowAll_name = 'Allow to display all the rows';
$strSetupShowChgPassword_desc = 'Please note that enabling this has no effect with [kbd]config[/kbd] authentication mode because the password is hard coded in the configuration file; this does not limit the ability to execute the same command directly';
$strSetupShowChgPassword_name = 'Show password change form';
$strSetupShowCreateDb_name = 'Show create database form'; $strSetupShowCreateDb_name = 'Show create database form';
$strSetupShowForm = 'Show form'; $strSetupShowForm = 'Show form';
$strSetupShowFunctionFields_desc = 'Display the function fields in edit/insert mode'; $strSetupShowFunctionFields_desc = 'Display the function fields in edit/insert mode';
$strSetupShowFunctionFields_name = 'Show function fields'; $strSetupShowFunctionFields_name = 'Show function fields';
$strSetupShowHiddenMessages = 'Show hidden messages (#MSG_COUNT)'; $strSetupShowHiddenMessages = 'Show hidden messages (#MSG_COUNT)';
$strSetupShowChgPassword_desc = 'Please note that enabling this has no effect with [kbd]config[/kbd] authentication mode because the password is hard coded in the configuration file; this does not limit the ability to execute the same command directly';
$strSetupShowChgPassword_name = 'Show password change form';
$strSetupShowPhpInfo_desc = 'Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] output'; $strSetupShowPhpInfo_desc = 'Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] output';
$strSetupShowPhpInfo_name = 'Show phpinfo() link'; $strSetupShowPhpInfo_name = 'Show phpinfo() link';
$strSetupShowServerInfo_name = 'Show detailed MySQL server information'; $strSetupShowServerInfo_name = 'Show detailed MySQL server information';
@@ -1271,8 +1274,8 @@ $strShowStatusReset = 'Reset';
$strShowStatusRpl_statusDescr = 'The status of failsafe replication (not yet implemented).'; $strShowStatusRpl_statusDescr = 'The status of failsafe replication (not yet implemented).';
$strShowStatusSelect_full_joinDescr = 'The number of joins that do not use indexes. If this value is not 0, you should carefully check the indexes of your tables.'; $strShowStatusSelect_full_joinDescr = 'The number of joins that do not use indexes. If this value is not 0, you should carefully check the indexes of your tables.';
$strShowStatusSelect_full_range_joinDescr = 'The number of joins that used a range search on a reference table.'; $strShowStatusSelect_full_range_joinDescr = 'The number of joins that used a range search on a reference table.';
$strShowStatusSelect_range_checkDescr = 'The number of joins without keys that check for key usage after each row. (If this is not 0, you should carefully check the indexes of your tables.)';
$strShowStatusSelect_rangeDescr = 'The number of joins that used ranges on the first table. (It\'s normally not critical even if this is big.)'; $strShowStatusSelect_rangeDescr = 'The number of joins that used ranges on the first table. (It\'s normally not critical even if this is big.)';
$strShowStatusSelect_range_checkDescr = 'The number of joins without keys that check for key usage after each row. (If this is not 0, you should carefully check the indexes of your tables.)';
$strShowStatusSelect_scanDescr = 'The number of joins that did a full scan of the first table.'; $strShowStatusSelect_scanDescr = 'The number of joins that did a full scan of the first table.';
$strShowStatusSlave_open_temp_tablesDescr = 'The number of temporary tables currently open by the slave SQL thread.'; $strShowStatusSlave_open_temp_tablesDescr = 'The number of temporary tables currently open by the slave SQL thread.';
$strShowStatusSlave_retried_transactionsDescr = 'Total (since startup) number of times the replication slave SQL thread has retried transactions.'; $strShowStatusSlave_retried_transactionsDescr = 'Total (since startup) number of times the replication slave SQL thread has retried transactions.';
@@ -1318,9 +1321,9 @@ $strSQPBugInvalidIdentifer = 'Invalid Identifer';
$strSQPBugUnclosedQuote = 'Unclosed quote'; $strSQPBugUnclosedQuote = 'Unclosed quote';
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; $strSQPBugUnknownPunctuation = 'Unknown Punctuation String';
$strStandInStructureForView = 'Stand-in structure for view'; $strStandInStructureForView = 'Stand-in structure for view';
$strStatCheckTime = 'Last check';
$strStatCreateTime = 'Creation'; $strStatCreateTime = 'Creation';
$strStatement = 'Statements'; $strStatement = 'Statements';
$strStatCheckTime = 'Last check';
$strStatic = 'static'; $strStatic = 'static';
$strStatisticsOverrun = 'On a busy server, the byte counters may overrun, so those statistics as reported by the MySQL server may be incorrect.'; $strStatisticsOverrun = 'On a busy server, the byte counters may overrun, so those statistics as reported by the MySQL server may be incorrect.';
$strStatUpdateTime = 'Last update'; $strStatUpdateTime = 'Last update';
@@ -1333,9 +1336,11 @@ $strStrucExcelCSV = 'CSV for MS Excel';
$strStrucNativeExcel = 'Native MS Excel format'; $strStrucNativeExcel = 'Native MS Excel format';
$strStrucOnly = 'Structure only'; $strStrucOnly = 'Structure only';
$strStructPropose = 'Propose table structure'; $strStructPropose = 'Propose table structure';
$strStructureDiff = 'Structure Difference' ;
$strStructureForView = 'Structure for view'; $strStructureForView = 'Structure for view';
$strStructureLC = 'structure'; $strStructureLC = 'structure';
$strStructure = 'Structure'; $strStructure = 'Structure';
$strStructureSyn = 'Structure Synchronization';
$strSubmit = 'Submit'; $strSubmit = 'Submit';
$strSuccess = 'Your SQL query has been executed successfully'; $strSuccess = 'Your SQL query has been executed successfully';
$strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'; $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.';
@@ -1347,23 +1352,36 @@ $strSwekeyNoKeyId = 'File %s does not contain any key id';
$strSwekeyNoKey = 'No valid authentication key plugged'; $strSwekeyNoKey = 'No valid authentication key plugged';
$strSwitchToDatabase = 'Switch to copied database'; $strSwitchToDatabase = 'Switch to copied database';
$strSwitchToTable = 'Switch to copied table'; $strSwitchToTable = 'Switch to copied table';
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.';
$strSynchronizeDb= 'Synchronize Databases';
$strSynchronize = 'Synchronize';
$strTableAddColumn = 'Add Column(s)';
$strTableAlreadyExists = 'Table %s already exists!'; $strTableAlreadyExists = 'Table %s already exists!';
$strTableAlterColumn = 'Alter Column(s)';
$strTableAlteredSuccessfully = 'Table %1$s has been altered successfully'; $strTableAlteredSuccessfully = 'Table %1$s has been altered successfully';
$strTableAlterIndex = 'Alter Index(s)';
$strTableApplyIndex = 'Apply Index(s)';
$strTableComments = 'Table comments'; $strTableComments = 'Table comments';
$strTableCreate = 'Create Table';
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?';
$strTableEmpty = 'The table name is empty!'; $strTableEmpty = 'The table name is empty!';
$strTableHasBeenCreated = 'Table %1$s has been created.'; $strTableHasBeenCreated = 'Table %1$s has been created.';
$strTableHasBeenDropped = 'Table %s has been dropped'; $strTableHasBeenDropped = 'Table %s has been dropped';
$strTableHasBeenEmptied = 'Table %s has been emptied'; $strTableHasBeenEmptied = 'Table %s has been emptied';
$strTableHasBeenFlushed = 'Table %s has been flushed'; $strTableHasBeenFlushed = 'Table %s has been flushed';
$strTableInsertRow = 'Insert Row(s)';
$strTableIsEmpty = 'Table seems to be empty!'; $strTableIsEmpty = 'Table seems to be empty!';
$strTableMaintenance = 'Table maintenance'; $strTableMaintenance = 'Table maintenance';
$strTableName = 'Table name'; $strTableName = 'Table name';
$strTableOfContents = 'Table of contents'; $strTableOfContents = 'Table of contents';
$strTableOptions = 'Table options'; $strTableOptions = 'Table options';
$strTableRemoveColumn = 'Remove Column(s)';
$strTableRemoveIndex = 'Remove Index(s)';
$strTables = '%s table(s)'; $strTables = '%s table(s)';
$strTableStructure = 'Table structure for table'; $strTableStructure = 'Table structure for table';
$strTable = 'Table'; $strTable = 'Table';
$strTableUpdateRow = 'Update Row(s)';
$strTakeIt = 'take it'; $strTakeIt = 'take it';
$strTblPrivileges = 'Table-specific privileges'; $strTblPrivileges = 'Table-specific privileges';
$strTempData = 'Temporary data'; $strTempData = 'Temporary data';

View File

@@ -1548,4 +1548,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1543,4 +1543,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1539,4 +1539,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1541,4 +1541,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1547,4 +1547,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1557,4 +1557,22 @@ $strXMLExportStructs = 'Export Structure Schemas (recommended)'; //to translate
$strXMLExportTables = 'Export tables'; //to translate $strXMLExportTables = 'Export tables'; //to translate
$strXMLExportTriggers = 'Export triggers'; //to translate $strXMLExportTriggers = 'Export triggers'; //to translate
$strXMLExportViews = 'Export views'; //to translate $strXMLExportViews = 'Export views'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1565,4 +1565,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1560,4 +1560,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1568,4 +1568,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1544,4 +1544,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1558,4 +1558,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1547,4 +1547,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1548,4 +1548,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1563,4 +1563,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1565,4 +1565,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1557,4 +1557,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1543,4 +1543,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1580,4 +1580,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1563,4 +1563,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1540,4 +1540,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1594,4 +1594,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1536,4 +1536,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1569,4 +1569,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1549,4 +1549,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1553,4 +1553,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1542,4 +1542,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1542,4 +1542,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1545,4 +1545,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1543,4 +1543,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1562,4 +1562,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1540,4 +1540,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1539,4 +1539,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1553,4 +1553,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1564,4 +1564,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1546,4 +1546,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1562,4 +1562,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1544,4 +1544,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -1544,4 +1544,22 @@ $strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate $strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.'; //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate $strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate
$strTrackingDatabaseLog = 'Database Log'; //to translate $strTrackingDatabaseLog = 'Database Log'; //to translate
$strSynchronize = 'Synchronize'; //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.'; //to translate
$strSynchronizeDb= 'Synchronize Databases'; //to translate
$strApplyChanges='Apply Selected Changes'; //to translate
$strStructureSyn = 'Structure Synchronization'; //to translate
$strDataSyn = 'Data Synchronization'; //to translate
$strStructureDiff = 'Structure Difference' ; //to translate
$strDataDiff = 'Data Difference'; //to translate
$strTableCreate = 'Create Table'; //to translate
$strTableAddColumn = 'Add Column(s)'; //to translate
$strTableRemoveColumn = 'Remove Column(s)'; //to translate
$strTableAlterColumn = 'Alter Column(s)'; //to translate
$strTableRemoveIndex = 'Remove Index(s)'; //to translate
$strTableAlterIndex = 'Alter Index(s)'; //to translate
$strTableApplyIndex = 'Apply Index(s)'; //to translate
$strTableUpdateRow = 'Update Row(s)'; //to translate
$strTableInsertRow = 'Insert Row(s)'; //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?'; //to translate
?> ?>

View File

@@ -824,6 +824,79 @@ function PMA_DBI_get_columns($database, $table, $full = false, $link = null)
return $fields; return $fields;
} }
/**
* array PMA_DBI_get_column_values (string $database, string $table, string $column , mysql db link $link = null)
*
* @param string $database name of database
* @param string $table name of table to retrieve columns from
* @param string $column name of the column to retrieve data from
* @param mixed $link mysql link resource
* @return array $field_values
*/
function PMA_DBI_get_column_values($database, $table, $column, $link = null)
{
$query = 'SELECT ';
for($i=0; $i< sizeof($column); $i++)
{
$query.= PMA_backquote($column[$i]);
if($i < (sizeof($column)-1))
{
$query.= ', ';
}
}
$query.= ' FROM ' . PMA_backquote($database) . '.' . PMA_backquote($table);
$field_values = PMA_DBI_fetch_result($query, null, null, $link);
if (! is_array($field_values) || count($field_values) < 1) {
return false;
}
return $field_values;
}
/**
* array PMA_DBI_get_table_data (string $database, string $table, mysql db link $link = null)
*
* @param string $database name of database
* @param string $table name of table to retrieve columns from
* @param mixed $link mysql link resource
* @return array $result
*/
function PMA_DBI_get_table_data($database, $table, $link = null)
{
$result = PMA_DBI_fetch_result(
'SELECT * FROM ' . PMA_backquote($database) . '.' . PMA_backquote($table),
null,null, $link);
if (! is_array($result) || count($result) < 1) {
return false;
}
return $result;
}
/**
* array PMA_DBI_get_table_indexes($database, $table, $link = null)
*
* @param string $database name of database
* @param string $table name of the table whose indexes are to be retreived
* @param mixed $link mysql link resource
* @return array $indexes
*/
function PMA_DBI_get_table_indexes($database, $table, $link = null)
{
$indexes = PMA_DBI_fetch_result(
'SHOW INDEXES FROM ' .PMA_backquote($database) . '.' . PMA_backquote($table),
null, null, $link);
if (! is_array($indexes) || count($indexes) < 1) {
return false;
}
return $indexes;
}
/** /**
* returns value of given mysql server variable * returns value of given mysql server variable
* *
@@ -832,6 +905,8 @@ function PMA_DBI_get_columns($database, $table, $full = false, $link = null)
* @param mixed $link mysql link resource|object * @param mixed $link mysql link resource|object
* @return mixed value for mysql server variable * @return mixed value for mysql server variable
*/ */
function PMA_DBI_get_variable($var, $type = PMA_DBI_GETVAR_SESSION, $link = null) function PMA_DBI_get_variable($var, $type = PMA_DBI_GETVAR_SESSION, $link = null)
{ {
if ($link === null) { if ($link === null) {

View File

@@ -83,6 +83,10 @@ $tabs['import']['icon'] = 'b_import.png';
$tabs['import']['link'] = 'server_import.php'; $tabs['import']['link'] = 'server_import.php';
$tabs['import']['text'] = $strImport; $tabs['import']['text'] = $strImport;
$tabs['import']['icon'] = 's_sync.png';
$tabs['import']['link'] = 'server_synchronize.php';
$tabs['import']['text'] = $strSynchronize;
echo PMA_generate_html_tabs($tabs, array()); echo PMA_generate_html_tabs($tabs, array());
unset($tabs); unset($tabs);

File diff suppressed because it is too large Load Diff

1242
server_synchronize.php Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB