Implement database renaming (RFE #792463).
This commit is contained in:
@@ -23,6 +23,8 @@ $Source$
|
|||||||
* libraries/export/sql.php, lang/*: Remove some hardcoded strings.
|
* libraries/export/sql.php, lang/*: Remove some hardcoded strings.
|
||||||
* tbl_change.php, tbl_replace.php, lang/*: New "Go back to this page"
|
* tbl_change.php, tbl_replace.php, lang/*: New "Go back to this page"
|
||||||
while editing.
|
while editing.
|
||||||
|
* db_details_structure.php, lang/*: Implement database renaming (RFE
|
||||||
|
#792463).
|
||||||
|
|
||||||
2004-03-09 Marc Delisle <lem9@users.sourceforge.net>
|
2004-03-09 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/common.lib.php, libraries/display*, lang/*:
|
* libraries/common.lib.php, libraries/display*, lang/*:
|
||||||
|
@@ -7,6 +7,76 @@ require_once('./libraries/grab_globals.lib.php');
|
|||||||
require_once('./libraries/common.lib.php');
|
require_once('./libraries/common.lib.php');
|
||||||
require_once('./libraries/mysql_charsets.lib.php');
|
require_once('./libraries/mysql_charsets.lib.php');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rename database
|
||||||
|
*/
|
||||||
|
if (isset($db) && isset($db_rename) && $db_rename == 'true') {
|
||||||
|
if (!isset($newname) || empty($newname)) {
|
||||||
|
$message = $strDatabaseEmpty;
|
||||||
|
} else {
|
||||||
|
$local_query = 'CREATE DATABASE ' . PMA_backquote($newname) . ';';
|
||||||
|
$sql_query = $local_query;
|
||||||
|
PMA_DBI_query($local_query);
|
||||||
|
$tables = PMA_DBI_get_tables($db);
|
||||||
|
foreach ($tables as $table) {
|
||||||
|
$local_query = 'RENAME TABLE '
|
||||||
|
. PMA_backquote($db) . '.' . PMA_backquote($table)
|
||||||
|
. ' TO '
|
||||||
|
. PMA_backquote($newname) . '.' . PMA_backquote($table)
|
||||||
|
. ';';
|
||||||
|
$sql_query .= "\n" . $local_query;
|
||||||
|
PMA_DBI_query($local_query);
|
||||||
|
}
|
||||||
|
$local_query = 'DROP DATABASE ' . PMA_backquote($db) . ';';
|
||||||
|
$sql_query .= "\n" . $local_query;
|
||||||
|
PMA_DBI_query($local_query);
|
||||||
|
$reload = TRUE;
|
||||||
|
$message = sprintf($strRenameDatabaseOK, htmlspecialchars($db), htmlspecialchars($newname));
|
||||||
|
|
||||||
|
/* Update relations */
|
||||||
|
require_once('./libraries/relation.lib.php');
|
||||||
|
$cfgRelation = PMA_getRelationsParam();
|
||||||
|
|
||||||
|
if ($cfgRelation['commwork']) {
|
||||||
|
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['column_info'])
|
||||||
|
. ' SET db_name = \'' . PMA_sqlAddslashes($newname) . '\''
|
||||||
|
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'');
|
||||||
|
}
|
||||||
|
if ($cfgRelation['bookmarkwork']) {
|
||||||
|
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['bookmark'])
|
||||||
|
. ' SET dbase = \'' . PMA_sqlAddslashes($newname) . '\''
|
||||||
|
. ' WHERE dbase = \'' . PMA_sqlAddslashes($db) . '\'');
|
||||||
|
}
|
||||||
|
if ($cfgRelation['displaywork']) {
|
||||||
|
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['table_info'])
|
||||||
|
. ' SET db_name = \'' . PMA_sqlAddslashes($newname) . '\''
|
||||||
|
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($cfgRelation['relwork']) {
|
||||||
|
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['relation'])
|
||||||
|
. ' SET foreign_db = \'' . PMA_sqlAddslashes($newname) . '\''
|
||||||
|
. ' WHERE foreign_db = \'' . PMA_sqlAddslashes($db) . '\'');
|
||||||
|
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['relation'])
|
||||||
|
. ' SET master_db = \'' . PMA_sqlAddslashes($newname) . '\''
|
||||||
|
. ' WHERE master_db = \'' . PMA_sqlAddslashes($db) . '\'');
|
||||||
|
}
|
||||||
|
if ($cfgRelation['historywork']) {
|
||||||
|
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['history'])
|
||||||
|
. ' SET db = \'' . PMA_sqlAddslashes($newname) . '\''
|
||||||
|
. ' WHERE db = \'' . PMA_sqlAddslashes($db) . '\'');
|
||||||
|
}
|
||||||
|
if ($cfgRelation['pdfwork']) {
|
||||||
|
PMA_query_as_cu('UPDATE ' . PMA_backquote($cfgRelation['table_info'])
|
||||||
|
. ' SET db_name = \'' . PMA_sqlAddslashes($newname) . '\''
|
||||||
|
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Change database to be used */
|
||||||
|
$db = $newname;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prepares the tables list if the user where not redirected to this script
|
* Prepares the tables list if the user where not redirected to this script
|
||||||
* because there is no table in the database ($is_info is TRUE)
|
* because there is no table in the database ($is_info is TRUE)
|
||||||
@@ -599,6 +669,17 @@ echo ' ' . ' <input type="submit" value="' . $strGo . '" />' . "\n";
|
|||||||
</form>
|
</form>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<!-- Rename database -->
|
||||||
|
<li>
|
||||||
|
<form method="post" action="db_details_structure.php"
|
||||||
|
onsubmit="return emptyFormElements(this, 'newname')">
|
||||||
|
<?php echo $strDBRename; ?>:
|
||||||
|
<input type="hidden" name="db_rename" value="true" />
|
||||||
|
<?php echo PMA_generate_common_hidden_inputs($db); ?>
|
||||||
|
<input type="text" name="newname" class="textfield" value="" />
|
||||||
|
<input type="submit" value="<?php echo $strGo; ?>" />
|
||||||
|
</form>
|
||||||
|
</li>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
if (PMA_MYSQL_INT_VERSION >= 40101) {
|
if (PMA_MYSQL_INT_VERSION >= 40101) {
|
||||||
|
@@ -744,4 +744,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -745,4 +745,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -758,4 +758,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -759,4 +759,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -730,4 +730,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -10,6 +10,7 @@ $charset = 'utf-8';
|
|||||||
$allow_recoding = TRUE;
|
$allow_recoding = TRUE;
|
||||||
$allow_recoding = TRUE;
|
$allow_recoding = TRUE;
|
||||||
$allow_recoding = TRUE;
|
$allow_recoding = TRUE;
|
||||||
|
$allow_recoding = TRUE;
|
||||||
$text_dir = 'ltr';
|
$text_dir = 'ltr';
|
||||||
$left_font_family = 'verdana, arial, helvetica, geneva, sans-serif';
|
$left_font_family = 'verdana, arial, helvetica, geneva, sans-serif';
|
||||||
$right_font_family = 'helvetica, sans-serif';
|
$right_font_family = 'helvetica, sans-serif';
|
||||||
@@ -738,4 +739,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -757,4 +757,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -758,4 +758,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -757,4 +757,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -171,11 +171,13 @@ $strDBGMinTimeMs = 'Max.
|
|||||||
$strDBGModule = 'Modul';
|
$strDBGModule = 'Modul';
|
||||||
$strDBGTimePerHitMs = '<27>as/Z<>sah, ms';
|
$strDBGTimePerHitMs = '<27>as/Z<>sah, ms';
|
||||||
$strDBGTotalTimeMs = 'Celkov<6F> <20>as, ms';
|
$strDBGTotalTimeMs = 'Celkov<6F> <20>as, ms';
|
||||||
|
$strDBRename = 'P<>ejmenovat datab<61>zi na';
|
||||||
$strDanish = 'D<>nsky';
|
$strDanish = 'D<>nsky';
|
||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Datov<6F> slovn<76>k';
|
$strDataDict = 'Datov<6F> slovn<76>k';
|
||||||
$strDataOnly = ' Jen data';
|
$strDataOnly = ' Jen data';
|
||||||
$strDatabase = 'Datab<61>ze ';
|
$strDatabase = 'Datab<61>ze ';
|
||||||
|
$strDatabaseEmpty = 'Jm<4A>no datab<61>ze je pr<70>zdn<64>!';
|
||||||
$strDatabaseExportOptions = 'Nastaven<65> exportu datab<61>z<EFBFBD>';
|
$strDatabaseExportOptions = 'Nastaven<65> exportu datab<61>z<EFBFBD>';
|
||||||
$strDatabaseHasBeenDropped = 'Datab<61>ze %s byla zru<72>ena.';
|
$strDatabaseHasBeenDropped = 'Datab<61>ze %s byla zru<72>ena.';
|
||||||
$strDatabaseNoTable = 'Tato datab<61>ze neobsahuje <20><>dn<64> tabulky!';
|
$strDatabaseNoTable = 'Tato datab<61>ze neobsahuje <20><>dn<64> tabulky!';
|
||||||
@@ -530,6 +532,7 @@ $strReloadMySQL = 'Znovuna
|
|||||||
$strReloadingThePrivileges = 'Znovuna<6E><61>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
$strReloadingThePrivileges = 'Znovuna<6E><61>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
||||||
$strRememberReload = 'Nezapome<6D>te znovu na<6E><61>st server.';
|
$strRememberReload = 'Nezapome<6D>te znovu na<6E><61>st server.';
|
||||||
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
||||||
|
$strRenameDatabaseOK = 'Datab<61>ze %s byla p<>ejmenov<6F>na na %s';
|
||||||
$strRenameTable = 'P<>ejmenovat tabulku na';
|
$strRenameTable = 'P<>ejmenovat tabulku na';
|
||||||
$strRenameTableOK = 'Tabulka %s byla p<>ejmenov<6F>na na %s';
|
$strRenameTableOK = 'Tabulka %s byla p<>ejmenov<6F>na na %s';
|
||||||
$strRepairTable = 'Opravit tabulku';
|
$strRepairTable = 'Opravit tabulku';
|
||||||
|
@@ -172,11 +172,13 @@ $strDBGMinTimeMs = 'Max. čas, ms';
|
|||||||
$strDBGModule = 'Modul';
|
$strDBGModule = 'Modul';
|
||||||
$strDBGTimePerHitMs = 'Čas/Zásah, ms';
|
$strDBGTimePerHitMs = 'Čas/Zásah, ms';
|
||||||
$strDBGTotalTimeMs = 'Celkový čas, ms';
|
$strDBGTotalTimeMs = 'Celkový čas, ms';
|
||||||
|
$strDBRename = 'Přejmenovat databázi na';
|
||||||
$strDanish = 'Dánsky';
|
$strDanish = 'Dánsky';
|
||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Datový slovník';
|
$strDataDict = 'Datový slovník';
|
||||||
$strDataOnly = ' Jen data';
|
$strDataOnly = ' Jen data';
|
||||||
$strDatabase = 'Databáze ';
|
$strDatabase = 'Databáze ';
|
||||||
|
$strDatabaseEmpty = 'Jméno databáze je prázdné!';
|
||||||
$strDatabaseExportOptions = 'Nastavení exportu databází';
|
$strDatabaseExportOptions = 'Nastavení exportu databází';
|
||||||
$strDatabaseHasBeenDropped = 'Databáze %s byla zrušena.';
|
$strDatabaseHasBeenDropped = 'Databáze %s byla zrušena.';
|
||||||
$strDatabaseNoTable = 'Tato databáze neobsahuje žádné tabulky!';
|
$strDatabaseNoTable = 'Tato databáze neobsahuje žádné tabulky!';
|
||||||
@@ -531,6 +533,7 @@ $strReloadMySQL = 'Znovunačtení MySQL';
|
|||||||
$strReloadingThePrivileges = 'Znovunačítám oprávnění';
|
$strReloadingThePrivileges = 'Znovunačítám oprávnění';
|
||||||
$strRememberReload = 'Nezapomeňte znovu načíst server.';
|
$strRememberReload = 'Nezapomeňte znovu načíst server.';
|
||||||
$strRemoveSelectedUsers = 'Odstranit vybrané uživatele';
|
$strRemoveSelectedUsers = 'Odstranit vybrané uživatele';
|
||||||
|
$strRenameDatabaseOK = 'Databáze %s byla přejmenována na %s';
|
||||||
$strRenameTable = 'Přejmenovat tabulku na';
|
$strRenameTable = 'Přejmenovat tabulku na';
|
||||||
$strRenameTableOK = 'Tabulka %s byla přejmenována na %s';
|
$strRenameTableOK = 'Tabulka %s byla přejmenována na %s';
|
||||||
$strRepairTable = 'Opravit tabulku';
|
$strRepairTable = 'Opravit tabulku';
|
||||||
|
@@ -171,11 +171,13 @@ $strDBGMinTimeMs = 'Max.
|
|||||||
$strDBGModule = 'Modul';
|
$strDBGModule = 'Modul';
|
||||||
$strDBGTimePerHitMs = '<27>as/Z<>sah, ms';
|
$strDBGTimePerHitMs = '<27>as/Z<>sah, ms';
|
||||||
$strDBGTotalTimeMs = 'Celkov<6F> <20>as, ms';
|
$strDBGTotalTimeMs = 'Celkov<6F> <20>as, ms';
|
||||||
|
$strDBRename = 'P<>ejmenovat datab<61>zi na';
|
||||||
$strDanish = 'D<>nsky';
|
$strDanish = 'D<>nsky';
|
||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Datov<6F> slovn<76>k';
|
$strDataDict = 'Datov<6F> slovn<76>k';
|
||||||
$strDataOnly = ' Jen data';
|
$strDataOnly = ' Jen data';
|
||||||
$strDatabase = 'Datab<61>ze ';
|
$strDatabase = 'Datab<61>ze ';
|
||||||
|
$strDatabaseEmpty = 'Jm<4A>no datab<61>ze je pr<70>zdn<64>!';
|
||||||
$strDatabaseExportOptions = 'Nastaven<65> exportu datab<61>z<EFBFBD>';
|
$strDatabaseExportOptions = 'Nastaven<65> exportu datab<61>z<EFBFBD>';
|
||||||
$strDatabaseHasBeenDropped = 'Datab<61>ze %s byla zru<72>ena.';
|
$strDatabaseHasBeenDropped = 'Datab<61>ze %s byla zru<72>ena.';
|
||||||
$strDatabaseNoTable = 'Tato datab<61>ze neobsahuje <20><>dn<64> tabulky!';
|
$strDatabaseNoTable = 'Tato datab<61>ze neobsahuje <20><>dn<64> tabulky!';
|
||||||
@@ -530,6 +532,7 @@ $strReloadMySQL = 'Znovuna
|
|||||||
$strReloadingThePrivileges = 'Znovuna<6E><61>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
$strReloadingThePrivileges = 'Znovuna<6E><61>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
||||||
$strRememberReload = 'Nezapome<6D>te znovu na<6E><61>st server.';
|
$strRememberReload = 'Nezapome<6D>te znovu na<6E><61>st server.';
|
||||||
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
||||||
|
$strRenameDatabaseOK = 'Datab<61>ze %s byla p<>ejmenov<6F>na na %s';
|
||||||
$strRenameTable = 'P<>ejmenovat tabulku na';
|
$strRenameTable = 'P<>ejmenovat tabulku na';
|
||||||
$strRenameTableOK = 'Tabulka %s byla p<>ejmenov<6F>na na %s';
|
$strRenameTableOK = 'Tabulka %s byla p<>ejmenov<6F>na na %s';
|
||||||
$strRepairTable = 'Opravit tabulku';
|
$strRepairTable = 'Opravit tabulku';
|
||||||
|
@@ -733,4 +733,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -47,6 +47,7 @@ $strAffectedRows = 'Affected rows:';
|
|||||||
$strAfter = 'After %s';
|
$strAfter = 'After %s';
|
||||||
$strAfterInsertBack = 'Go back to previous page';
|
$strAfterInsertBack = 'Go back to previous page';
|
||||||
$strAfterInsertNewInsert = 'Insert another new row';
|
$strAfterInsertNewInsert = 'Insert another new row';
|
||||||
|
$strAfterInsertSame = 'Go back to this page';
|
||||||
$strAll = 'All';
|
$strAll = 'All';
|
||||||
$strAllTableSameWidth = 'display all Tables with same width?';
|
$strAllTableSameWidth = 'display all Tables with same width?';
|
||||||
$strAlterOrderBy = 'Alter table order by';
|
$strAlterOrderBy = 'Alter table order by';
|
||||||
@@ -164,11 +165,13 @@ $strDBGMinTimeMs = 'Min time, ms';
|
|||||||
$strDBGModule = 'Module';
|
$strDBGModule = 'Module';
|
||||||
$strDBGTimePerHitMs = 'Time/Hit, ms';
|
$strDBGTimePerHitMs = 'Time/Hit, ms';
|
||||||
$strDBGTotalTimeMs = 'Total time, ms';
|
$strDBGTotalTimeMs = 'Total time, ms';
|
||||||
|
$strDBRename = 'Rename database to';
|
||||||
$strDanish = 'Danish';
|
$strDanish = 'Danish';
|
||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Data Dictionary';
|
$strDataDict = 'Data Dictionary';
|
||||||
$strDataOnly = 'Data only';
|
$strDataOnly = 'Data only';
|
||||||
$strDatabase = 'Database ';
|
$strDatabase = 'Database ';
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!';
|
||||||
$strDatabaseExportOptions = 'Database export options';
|
$strDatabaseExportOptions = 'Database export options';
|
||||||
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
||||||
$strDatabaseNoTable = 'This database contains no table!';
|
$strDatabaseNoTable = 'This database contains no table!';
|
||||||
@@ -523,6 +526,7 @@ $strReloadMySQL = 'Reload MySQL';
|
|||||||
$strReloadingThePrivileges = 'Reloading the privileges';
|
$strReloadingThePrivileges = 'Reloading the privileges';
|
||||||
$strRememberReload = 'Remember to reload the server.';
|
$strRememberReload = 'Remember to reload the server.';
|
||||||
$strRemoveSelectedUsers = 'Remove selected users';
|
$strRemoveSelectedUsers = 'Remove selected users';
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s';
|
||||||
$strRenameTable = 'Rename table to';
|
$strRenameTable = 'Rename table to';
|
||||||
$strRenameTableOK = 'Table %s has been renamed to %s';
|
$strRenameTableOK = 'Table %s has been renamed to %s';
|
||||||
$strRepairTable = 'Repair table';
|
$strRepairTable = 'Repair table';
|
||||||
@@ -728,7 +732,4 @@ $strYes = 'Yes';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$strZip = '"zipped"';
|
||||||
|
|
||||||
// To translate:
|
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@@ -48,6 +48,7 @@ $strAffectedRows = 'Affected rows:';
|
|||||||
$strAfter = 'After %s';
|
$strAfter = 'After %s';
|
||||||
$strAfterInsertBack = 'Go back to previous page';
|
$strAfterInsertBack = 'Go back to previous page';
|
||||||
$strAfterInsertNewInsert = 'Insert another new row';
|
$strAfterInsertNewInsert = 'Insert another new row';
|
||||||
|
$strAfterInsertSame = 'Go back to this page';
|
||||||
$strAll = 'All';
|
$strAll = 'All';
|
||||||
$strAllTableSameWidth = 'display all Tables with same width?';
|
$strAllTableSameWidth = 'display all Tables with same width?';
|
||||||
$strAlterOrderBy = 'Alter table order by';
|
$strAlterOrderBy = 'Alter table order by';
|
||||||
@@ -165,11 +166,13 @@ $strDBGMinTimeMs = 'Min time, ms';
|
|||||||
$strDBGModule = 'Module';
|
$strDBGModule = 'Module';
|
||||||
$strDBGTimePerHitMs = 'Time/Hit, ms';
|
$strDBGTimePerHitMs = 'Time/Hit, ms';
|
||||||
$strDBGTotalTimeMs = 'Total time, ms';
|
$strDBGTotalTimeMs = 'Total time, ms';
|
||||||
|
$strDBRename = 'Rename database to';
|
||||||
$strDanish = 'Danish';
|
$strDanish = 'Danish';
|
||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Data Dictionary';
|
$strDataDict = 'Data Dictionary';
|
||||||
$strDataOnly = 'Data only';
|
$strDataOnly = 'Data only';
|
||||||
$strDatabase = 'Database ';
|
$strDatabase = 'Database ';
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!';
|
||||||
$strDatabaseExportOptions = 'Database export options';
|
$strDatabaseExportOptions = 'Database export options';
|
||||||
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
$strDatabaseHasBeenDropped = 'Database %s has been dropped.';
|
||||||
$strDatabaseNoTable = 'This database contains no table!';
|
$strDatabaseNoTable = 'This database contains no table!';
|
||||||
@@ -524,6 +527,7 @@ $strReloadMySQL = 'Reload MySQL';
|
|||||||
$strReloadingThePrivileges = 'Reloading the privileges';
|
$strReloadingThePrivileges = 'Reloading the privileges';
|
||||||
$strRememberReload = 'Remember to reload the server.';
|
$strRememberReload = 'Remember to reload the server.';
|
||||||
$strRemoveSelectedUsers = 'Remove selected users';
|
$strRemoveSelectedUsers = 'Remove selected users';
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s';
|
||||||
$strRenameTable = 'Rename table to';
|
$strRenameTable = 'Rename table to';
|
||||||
$strRenameTableOK = 'Table %s has been renamed to %s';
|
$strRenameTableOK = 'Table %s has been renamed to %s';
|
||||||
$strRepairTable = 'Repair table';
|
$strRepairTable = 'Repair table';
|
||||||
@@ -729,7 +733,4 @@ $strYes = 'Yes';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$strZip = '"zipped"';
|
||||||
|
|
||||||
// To translate:
|
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -730,4 +730,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -754,4 +754,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -755,4 +755,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -758,4 +758,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -754,4 +754,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -762,4 +762,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -732,4 +732,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -752,4 +752,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -753,4 +753,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -730,4 +730,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -755,4 +755,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -756,4 +756,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -760,4 +760,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -759,4 +759,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -730,4 +730,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -731,4 +731,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -749,4 +749,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -731,4 +731,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -732,4 +732,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -732,4 +732,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -732,4 +732,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -730,4 +730,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,7 @@ $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate
|
|||||||
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; //to translate
|
||||||
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
$strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate
|
||||||
$strAfterInsertSame = 'Go back to this page'; //to translate
|
$strAfterInsertSame = 'Go back to this page'; //to translate
|
||||||
|
$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
||||||
|
$strDatabaseEmpty = 'The database name is empty!'; //to translate
|
||||||
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
?>
|
?>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user