redesign part 3

This commit is contained in:
Marc Delisle
2004-06-13 21:39:08 +00:00
parent 47cd12f901
commit d9a21610d1
145 changed files with 3267 additions and 1790 deletions

View File

@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-06-13 Marc Delisle <lem9@users.sourceforge.net>
* many files: redesign part 3, thanks to Michael Keck (mkkeck).
New /themes structure for Theme management
TODO: code improvement, access to /lang from themes/index.php,
possible logo change
2004-06-11 Marc Delisle <lem9@users.sourceforge.net> 2004-06-11 Marc Delisle <lem9@users.sourceforge.net>
* lang/spanish: Updated, thanks to Daniel Hinostroza (hinostroza). * lang/spanish: Updated, thanks to Daniel Hinostroza (hinostroza).

View File

@@ -526,15 +526,24 @@ $cfg['NaturalOrder'] = TRUE; // Sort table and database in natura
// 2004-05-08 rabus: We need to rearrange these variables. // 2004-05-08 rabus: We need to rearrange these variables.
// 2004-06-03 nijel: We also need to add these to Documentation.html // 2004-06-03 nijel: We also need to add these to Documentation.html
$cfg['ShowHttpHostTitle'] = FALSE; // show HTTP host in browsers window title (true|false)? $cfg['ShowHttpHostTitle'] = TRUE; // show HttpHost in browsers window title (true|false)?
$cfg['SetHttpHostTitle'] = ''; // if ShowHttpHostTitle=true, please set your host (server) $cfg['SetHttpHostTitle'] = ''; // if ShowHttpHostTitle=true, please set your host (server)
// or an other string, wich should be shown in browsers window title. // or an other string, wich should be shown in browsers window title.
// If not set (or empty), the PMA will get your real host address. // If not set (or empty), the PMA will get your real Host-Adress.
$cfg['ErrorIconic'] = TRUE; // show some icons for warnings, errors and informations (true|false)? $cfg['ErrorIconic'] = TRUE; // show some icons for warnings, errors and informations (true|false)?
$cfg['MainPageIconic'] = TRUE; // show icons in list on main page (true|false)? $cfg['MainPageIconic'] = TRUE; // show icons in list on main page and on navigation bar (true|false)?
$cfg['ReplaceHelpImg'] = TRUE; // show help button instead of strDocumentation (true|false)? $cfg['ReplaceHelpImg'] = TRUE; // show help button instead of strDocumentation (true|false)?
// theme manager
$cfg['ThemePath'] = 'themes'; // using themes manager please set up here the path to 'themes'
// else leave empty
$cfg['ThemeManager'] = TRUE; // if you want to use selectable themes and if ThemesPath not empty
// set it to true, else set it to false (default is false);
$cfg['ThemeDefault'] = 'original'; // set up default theme, if ThemePath not empty
// you can set up here an valid path to themes or 'original' for
// the original pma-theme
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@@ -20,11 +20,26 @@ if (!isset($js_frame)) {
$js_frame = 'left'; $js_frame = 'left';
} }
// 2004-05-30: Michael Keck (mail@mnichaelkeck.de)
// check, if select_theme.lib.php exists
// and include it
$tmp_file_lib = './libraries/select_theme.lib.php';
if (@file_exists($tmp_file_lib) && isset($GLOBALS['cfg']['ThemePath']) && !empty($GLOBALS['cfg']['ThemePath'])){
require_once($tmp_file_lib);
}else{
$pmaTheme = 'original';
}
if ($js_frame == 'left') { if ($js_frame == 'left') {
/************************************************************************************ /************************************************************************************
* LEFT FRAME * LEFT FRAME
************************************************************************************/ ************************************************************************************/
// 2004-05-30: Michael Keck (mail@michaelkeck.de)
// Check, if theme_left.css.php exists and include
$tmp_file = './' . $GLOBALS['cfg']['ThemePath'] . '/' . $pmaTheme . '/css/theme_left.css.php';
if (@file_exists($tmp_file) && $pmaTheme != 'original') {
include($tmp_file);
}else{ // else use default styles
/** /**
* Add styles for positioned layers * Add styles for positioned layers
*/ */
@@ -70,8 +85,7 @@ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_
.item, .item:active, .item:hover, .tblItem, .tblItem:active {font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none} .item, .item:active, .item:hover, .tblItem, .tblItem:active {font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none}
.tblItem:hover {color: #FF0000; text-decoration: underline} .tblItem:hover {color: #FF0000; text-decoration: underline}
<?php <?php
} } else {
else {
?> ?>
/* Additional effects for NON-IE4 */ /* Additional effects for NON-IE4 */
.parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none; position: absolute; visibility: hidden} .parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none; position: absolute; visibility: hidden}
@@ -98,27 +112,38 @@ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_
body {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>} body {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>}
input {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>} input {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>}
select {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; background-color: #ffffff; color: #000000} select {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; background-color: #ffffff; color: #000000}
hr{ color: #ffffff; background-color: #ffffff; border: 0; height: 1px; }
<?php <?php
} // end of include theme_left.css.php
} elseif ($js_frame == 'print') { } elseif ($js_frame == 'print') {
/************************************************************************************ /************************************************************************************
* PRINT VIEW * PRINT VIEW
************************************************************************************/ ************************************************************************************/
// 2004-05-30: Michael Keck (mail@michaelkeck.de)
// Check, if theme_print.css.php exists and include
$tmp_file = './' . $GLOBALS['cfg']['ThemePath'] . '/' . $pmaTheme . '/css/theme_print.css.php';
if (@file_exists($tmp_file) && $pmaTheme != 'original') {
include($tmp_file);
} else { // else use default styles
?> ?>
/* For printview */ /* For printview */
body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #ffffff} body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #ffffff}
h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold} h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold}
table {border-width:1px; border-color:#000000; border-style:solid; border-collapse:collapse; border-spacing:0} table {border-width:1px; border-color:#000000; border-style:solid; border-collapse:collapse; border-spacing:0}
th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #000000; background-color: #ffffff; border-width:1px; border-color:#000000; border-style:solid; padding:2px} th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #000000; background-color: #ffffff; border-width:1px; border-color:#000000; border-style:solid; padding:2px}
th.td { color: transparent; background-color: transparent;}
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #ffffff; border-width:1px; border-color:#000000; border-style:solid; padding:2px} td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #ffffff; border-width:1px; border-color:#000000; border-style:solid; padding:2px}
th.td {font-weight: normal;}
<?php <?php
} // end of include theme_print.css.php
} else { } else {
/************************************************************************************ /************************************************************************************
* RIGHT FRAME * RIGHT FRAME
************************************************************************************/ ************************************************************************************/
// 2004-05-30: Michael Keck (mail@michaelkeck.de)
// Check, if theme_right.css.php exists and include
$tmp_file = './' . $GLOBALS['cfg']['ThemePath'] . '/' . $pmaTheme . '/css/theme_right.css.php';
if (@file_exists($tmp_file) && $pmaTheme != 'original') {
include($tmp_file);
} else { // else use default styles
?> ?>
/* Always enabled stylesheets (right frame) */ /* Always enabled stylesheets (right frame) */
body { body {
@@ -139,9 +164,8 @@ body {
pre, tt {font-size: <?php echo $font_size; ?>} pre, tt {font-size: <?php echo $font_size; ?>}
th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #000000; background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>} th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #000000; background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>}
th.td {font-weight: normal; color: inherit; background-color: inherit; ?>}
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>} td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
form {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>} form {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; padding: 0px; margin: 0px;}
input {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>} input {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
input.textfield {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF} input.textfield {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
select {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF} select {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
@@ -170,6 +194,7 @@ dfn {font-style: normal}
dfn:hover {font-style: normal; cursor: help} dfn:hover {font-style: normal; cursor: help}
.nav {font-family: <?php echo $right_font_family; ?>; color: #000000} .nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000} .warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
.tblcomment {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_smallest; ?>; font-weight: normal; color: #000099; }
td.topline {font-size: 1px} td.topline {font-size: 1px}
td.tab { td.tab {
border-top: 1px solid #999; border-top: 1px solid #999;
@@ -227,153 +252,6 @@ button.mult_submit {
border: 1px dashed #000000; border: 1px dashed #000000;
} }
/* Warning showing div with right border and optional icon */
div.warning {
border: 1px solid red;
<?php if ($cfg['ErrorIconic']) { ?>
background-image: url(../images/s_warn.png);
background-repeat: no-repeat;
background-position: 10px 50%;
padding: 10px 10px 10px 36px;
margin: 0px;
<?php } ?>
width: 90%;
}
div.error {
width: 100%;
border: 1px solid #cc0000;
background-color: #ffffcc;
padding: 0px;
}
div.error div.text {
padding: 5px;
}
div.error div.head {
background-color: #cc0000;
font-weight: bold;
color: #ffffff;
<?php if ($cfg['ErrorIconic']) { ?>
background-image: url(../images/s_error.png);
background-repeat: no-repeat;
background-position: 10px 50%;
padding: 2px 2px 2px 30px;
<?php } ?>
margin: 0px;
}
/* some new styles added 20047-05-05 by Michael Keck (mkkeck) */
/* tables */
.tblHeaders {
background-color: #9999CC;
font-weight: bold;
color: #000000;
}
.tblFooters {
background-color: #9999CC;
font-weight: normal;
color: #000000;
}
/* forbidden, no privilegs */
.noPrivileges{
color: #cc0000;
font-weight: bold;
}
/* list elements */
ul.mainRight {
margin: 0px;
padding-left:2em;
padding-right:2em;
}
ul.mainRight li {
white-space: nowrap;
padding-left: 0.5em;
padding-top: 0.1em;
padding-bottom: 0.1em;
}
ul.mainLeft {
margin: 0px;
padding-left:2em;
padding-right:2em;
}
ul.mainLeft li {
white-space: nowrap;
padding-left: 0.5em;
padding-top: 0.1em;
padding-bottom: 0.1em;
}
<?php if ($cfg['MainPageIconic']) { ?>
li.lstPhpInfo {
list-style: url(../images/php_sym.png);
}
li.lstPmaDocs {
list-style: url(../images/b_docs.png);
}
li.lstPmaPage {
list-style: url(../images/b_home.png);
}
li.lstPmaLang {
list-style: url(../images/s_lang.png);
}
li.lstPmaChar {
list-style: url(../images/s_rights.png);
}
li.lstNewdb {
list-style: url(../images/b_newdb.png);
}
li.lstStatus {
list-style: url(../images/s_status.png);
}
li.lstVars {
list-style: url(../images/s_vars.png);
}
li.lstProcess {
list-style: url(../images/s_process.png);
}
li.lstPrivileges {
list-style: url(../images/s_rights.png);
}
li.lstCollations {
list-style: url(../images/s_asci.png);
}
li.lstReload {
list-style: url(../images/s_reload.png);
}
li.lstDatabases {
list-style: url(../images/s_db.png);
}
li.lstExport {
list-style: url(../images/b_export.png);
}
li.lstLogoff {
list-style: url(../images/s_loggoff.png);
}
li.lstPasswd {
list-style: url(../images/s_passwd.png);
}
<?php } ?>
<?php if ($cfg['MainPageIconic']) { ?>
li.lstUsradd {
list-style: url(../images/b_usradd.png);
}
li.lstUsrdrop {
list-style: url(../images/b_usrdrop.png);
}
<?php } ?>
hr{ color: #666699; background-color: #6666cc; border: 0; height: 1px; }
/* end of some new styles added 20047-05-05 by Michael Keck (mkkeck) */
.print{font-family:arial;font-size:8pt;} .print{font-family:arial;font-size:8pt;}
/* MySQL Parser */ /* MySQL Parser */
@@ -394,7 +272,160 @@ hr{ color: #666699; background-color: #6666cc; border: 0; height: 1px; }
.syntax_alpha_variable {} .syntax_alpha_variable {}
.syntax_quote {white-space: pre;} .syntax_quote {white-space: pre;}
.syntax_quote_backtick {} .syntax_quote_backtick {}
hr{ color: #666666; background-color: #666666; border: 0; height: 1px; }
/* new styles for navigation */
.nav {
font-family: <?php echo $right_font_family; ?>;
color: #000000;
border-top: none;
border-right: none;
border-left: none;
border-bottom: 1px solid #666;
}
.navSpacer {
width: 5px;
height: 16px;
}
.navNormal, .navDrop, .navActive {
font-family: <?php echo $right_font_family; ?>;
font-size: <?php echo $font_size; ?>;
font-weight: bold;
border-top: 1px solid #999;
border-right: 1px solid #666;
border-left: 1px solid #999;
border-bottom: none;
border-radius: 2px;
-moz-border-radius: 2px;
padding: 2px 5px 2px 5px;
}
.navNormal {
color: #000000;
background-color: #E5E5E5;
}
.navActive{
font-family: <?php echo $right_font_family; ?>;
font-size: <?php echo $font_size; ?>;
font-weight: bold;
color: #000000;
background-color: #CCCCCC;
}
.navDrop{
color: #000000;
background-color: #E5E5E5;
}
.navNormal a:link, .navNormal a:active, .navNormal a:visited, .navActive a:link, .navActive a:active, .navActive a:visited{
color: #0000FF;
}
.navDrop a:link, .navDrop a:active, .navDrop a:visited{
color: #FF0000;
}
.navDrop a:hover{
color: #FFFFFF;
background-color: #FF0000;
}
.navNormal a:hover, .navActive a:hover{
color: #FF0000;
}
/* Warning showing div with right border and optional icon */
div.errorhead {
font-weight: bold;
color: #ffffff;
text-align: left;
<?php if ($cfg['ErrorIconic'] && isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../images/s_error.png);
background-repeat: no-repeat;
background-position: 5px 50%;
padding: 0px 0px 0px 25px;
<?php } ?>
margin: 0px;
}
/* tables */
.tblError {
border: 1px solid #FF0000;
background-color: #FFFFCC;
}
.tblWarn, div.tblWarn {
border: 1px solid #FF0000;
background-color: #FFFFFF;
}
div.tblWarn {
padding: 5px 5px 5px 5px;
margin: 0px 0px 5px 0px;
width: 100%;
}
.tblHeaders {
background-color: <?php echo $cfg['LeftBgColor']; ?>;
font-weight: bold;
color: #000000;
}
.tblFooters {
background-color: <?php echo $cfg['LeftBgColor']; ?>;
font-weight: normal;
color: #000000;
}
.tblHeaders a:link, .tblHeaders a:active, .tblHeaders a:visited, .tblFooters a:link, .tblFooters a:active, .tblFooters a:visited {
color: #0000FF;
}
.tblHeaders a:hover, .tblFooters a:hover { color: #FF0000; }
.tblHeadError {
background-color: #FF0000;
font-weight: bold;
color: #FFFFFF;
}
.tblHeadWarn {
background-color: #FFCC00;
font-weight: bold;
color: #000000;
}
/* forbidden, no privilegs */
.noPrivileges{
color: #FF0000;
font-weight: bold;
}
/* Heading */
.serverinfo {
font-family: <?php echo $right_font_family; ?>;
font-size: <?php echo $font_size; ?>;
font-weight: normal;
white-space: nowrap;
vertical-align: middle;
padding: 0px 0px 10px 0px;
}
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
.serverinfo a:link, .serverinfo a:activ, .serverinfo a:visited {
font-family: <?php echo $right_font_family; ?>;
font-size: <?php echo $font_size; ?>;
font-weight: bolder;
}
.serverinfo a img{
vertical-align: middle;
margin: 0px 1px 0px 2px;
}
.serverinfo div{
background-image: url(../images/item_ltr.png);
background-repeat: no-repeat;
background-position: 50% 50%;
width: 20px;
height: 16px;
}
#textSQLDUMP {
width: 95%;
height: 95%;
font-family: "Courier New", Courier, mono;
font-size: 12px;
}
<?php } // end of isDom ?>
<?php <?php
} // end of include theme_right.css.php
echo PMA_SQP_buildCssData(); echo PMA_SQP_buildCssData();
} }
@@ -486,8 +517,7 @@ td.tab a {
} }
/* For light */ /* For light */
div.tab { div.tab { }
}
/* Highlight active tab */ /* Highlight active tab */
td.activetab { td.activetab {
@@ -504,54 +534,3 @@ textarea {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
/* Heading */
div.spacer {
clear: both;
}
h1 span {
display: block;
float: left;
clear: none;
width: auto;
padding: 2px 2px 5px 2px;
margin: 0px;
font-family: <?php echo $right_font_family; ?>;
font-size: <?php echo $font_size; ?>;
font-weight: normal;
white-space: nowrap;
}
h1 span a {
<?php if ($cfg['ErrorIconic']) { ?>
background-repeat: no-repeat;
background-position: 2px 50%;
padding-left: 20px;
<?php } ?>
}
h1 span a {
font-weight: bolder;
}
<?php if ($cfg['PropertiesIconic']) { ?>
h1 span.server a {
background-image: url(../images/s_host.png);
}
h1 span.database a {
background-image: url(../images/s_db.png);
}
h1 span.table a {
background-image: url(../images/s_tbl.png);
}
<?php } ?>
h1 span.database:before , h1 span.table:before {
content: '>';
padding-left: 5px;
padding-right: 5px;
}

View File

@@ -59,12 +59,14 @@ $strHiddenFields = ' <input type="hidden" name="is_js_confirmed" value="0
. ' <input type="hidden" name="prev_sql_query" value="' . ((!empty($query_to_display)) ? htmlspecialchars($query_to_display) : '') . '" />' . "\n"; . ' <input type="hidden" name="prev_sql_query" value="' . ((!empty($query_to_display)) ? htmlspecialchars($query_to_display) : '') . '" />' . "\n";
?> ?>
<!-- Query box, sql file loader and bookmark support --> <!-- Query box, sql file loader and bookmark support -->
<a name="querybox"></a>
<table border="0" cellpadding="2" cellspacing="0">
<form method="post" action="read_dump.php"<?php if ($is_upload) echo ' enctype="multipart/form-data"'; ?> onsubmit="return checkSqlQuery(this)" name="sqlform"> <form method="post" action="read_dump.php"<?php if ($is_upload) echo ' enctype="multipart/form-data"'; ?> onsubmit="return checkSqlQuery(this)" name="sqlform">
<tr><td class="tblHeaders" colspan="2">
<?php <?php
echo $strHiddenFields; echo $strHiddenFields;
?>
<a name="querybox"></a>
<table border="0" cellpadding="2" cellspacing="0">
<tr><td class="tblHeaders" colspan="2">
<?php
// if you want navigation: // if you want navigation:
$strDBLink = '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . $header_url_qry . '&amp;db=' . urlencode($db) . '">' $strDBLink = '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . $header_url_qry . '&amp;db=' . urlencode($db) . '">'
. htmlspecialchars($db) . '</a>'; . htmlspecialchars($db) . '</a>';
@@ -95,7 +97,7 @@ if (!empty($query_to_display)) {
// loic1: displays import dump feature only if file upload available // loic1: displays import dump feature only if file upload available
if ($is_upload) { if ($is_upload) {
?> ?>
<tr><td colspan="2"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr> <tr><td colspan="2"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
<tr> <tr>
<td colspan="2" class="tblHeaders"> <td colspan="2" class="tblHeaders">
<?php <?php
@@ -173,9 +175,10 @@ if (!empty($cfg['UploadDir'])) {
@closedir($handle); @closedir($handle);
} }
else { else {
$upload_dir_error = '<tr><td colspan="2"><div class="error"><div class="head">' . $strError . '</div>' $upload_dir_error = '<tr><td colspan="2"><img src="./images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>' . "\n"
. '<div class="text">' . $strWebServerUploadDirectoryError . '<tr><th colspan="2" class="tblHeadError"><div class="errorhead">' . $strError . '</div></th></tr>' . "\n"
. '</div></div></td></tr>'; . '<tr><td colspan="2" class="tblError">' . $strWebServerUploadDirectoryError
. '</td></tr>' . "\n";
} }
} // end if (web-server upload directory) } // end if (web-server upload directory)
// Charset conversion options // Charset conversion options
@@ -208,7 +211,7 @@ if ($is_upload || $is_upload_dir) {
// Bookmark Support // Bookmark Support
if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) { if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) {
if (($bookmark_list = PMA_listBookmarks($db, $cfg['Bookmark'])) && count($bookmark_list) > 0) { if (($bookmark_list = PMA_listBookmarks($db, $cfg['Bookmark'])) && count($bookmark_list) > 0) {
echo ' <tr><td colspan="2"><img src="./images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>' . "\n"; echo ' <tr><td colspan="2"><img src="./images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>' . "\n";
echo ' <tr><td colspan="2" class="tblHeaders">&nbsp;<i>' . $strOr . '</i></td></tr>' . "\n"; echo ' <tr><td colspan="2" class="tblHeaders">&nbsp;<i>' . $strOr . '</i></td></tr>' . "\n";
echo ' <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td colspan="2">' . "\n"; echo ' <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td colspan="2">' . "\n";
echo ' <b>' . $strBookmarkQuery . ':</b>&nbsp;' . "\n"; echo ' <b>' . $strBookmarkQuery . ':</b>&nbsp;' . "\n";
@@ -222,7 +225,7 @@ if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) {
echo ' ' . $strVar . ' '; echo ' ' . $strVar . ' ';
if ($cfg['ReplaceHelpImg']){ if ($cfg['ReplaceHelpImg']){
echo '<a href="./Documentation.html#faqbookmark" target="documentation">' echo '<a href="./Documentation.html#faqbookmark" target="documentation">'
. '<img src="./images/b_help.png" border="0" width="11" height="11" align="absmiddle" alt="' . $strDocu . '" /></a>'; . '<img src="' .$pmaThemeImage . 'b_help.png" border="0" width="11" height="11" align="absmiddle" alt="' . $strDocu . '" /></a>';
}else{ }else{
echo '(<a href="./Documentation.html#faqbookmark" target="documentation">' . $strDocu . '</a>):&nbsp;'; echo '(<a href="./Documentation.html#faqbookmark" target="documentation">' . $strDocu . '</a>):&nbsp;';
} }
@@ -247,8 +250,8 @@ if (isset($upload_dir_error)) {
echo $upload_dir_error; echo $upload_dir_error;
} }
?> ?>
</form>
</table> </table>
</form>
<?php <?php
/** /**
* Displays the footer * Displays the footer

View File

@@ -10,16 +10,14 @@ $sub_part = '_export';
require('./db_details_common.php'); require('./db_details_common.php');
$url_query .= '&amp;goto=db_details_export.php'; $url_query .= '&amp;goto=db_details_export.php';
require('./db_details_db_info.php'); require('./db_details_db_info.php');
?>
<!-- Dump of Database -->
<?php
/** /**
* Displays the form * Displays the form
*/ */
?> $export_page_title = $strViewDumpDB;
<h2>
<?php echo $strViewDumpDB . "\n"; ?>
</h2>
<?php
$multi_values = ''; $multi_values = '';
if ($num_tables > 1) { if ($num_tables > 1) {
@@ -48,8 +46,7 @@ if ($num_tables > 1) {
$multi_values .= '<br /> $multi_values .= '<br />
<a href="' . $checkall_url . '&amp;selectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a> <a href="' . $checkall_url . '&amp;selectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
&nbsp;/&nbsp; &nbsp;/&nbsp;
<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a> <a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
<br /><br />';
} elseif ($num_tables == 0) { } elseif ($num_tables == 0) {
echo $strDatabaseNoTable; echo $strDatabaseNoTable;
require_once('./footer.inc.php'); require_once('./footer.inc.php');

View File

@@ -48,10 +48,11 @@ if ($cfg['AllowUserDropDatabase']) {
. urlencode(sprintf($strDatabaseHasBeenDropped, htmlspecialchars(PMA_backquote($db)))) . urlencode(sprintf($strDatabaseHasBeenDropped, htmlspecialchars(PMA_backquote($db))))
. '&amp;goto=main.php&amp;back=db_details' . $sub_part . '.php&amp;reload=1&amp;purge=1'; . '&amp;goto=main.php&amp;back=db_details' . $sub_part . '.php&amp;reload=1&amp;purge=1';
$att5 = 'onclick="return confirmLinkDropDB(this, \'DROP DATABASE ' . PMA_jsFormat($db) . '\')"'; $att5 = 'onclick="return confirmLinkDropDB(this, \'DROP DATABASE ' . PMA_jsFormat($db) . '\')"';
$class5 = 'drop'; $class5 = 'Drop';
} }
else { else {
$lnk5 = ''; $lnk5 = '';
$class5 = 'Drop';
} }
@@ -62,25 +63,32 @@ else {
if ($cfg['LightTabs']) { if ($cfg['LightTabs']) {
echo '&nbsp;'; echo '&nbsp;';
} else { } else {
echo '<table border="0" cellspacing="0" cellpadding="3" width="100%" class="tabs"> echo '<table border="0" cellspacing="0" cellpadding="0" width="100%">' . "\n"
<tr> . ' <tr>' . "\n"
<td width="8">&nbsp;</td>'; . ' <td class="nav" align="left" nowrap="nowrap" valign="bottom">'
. ' <table border="0" cellpadding="0" cellspacing="0"><tr>'
. ' <td nowrap="nowrap"><img src="./images/spacer.gif" width="2" height="1" border="0" alt="" /></td>'
. ' <td class="navSpacer"><img src="./images/spacer.gif" width="1" height="1" border="0" alt="" /></td>';
} }
echo PMA_printTab($strStructure, 'db_details_structure.php', $url_query); echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_props.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strStructure.'" />' : '') . $strStructure, 'db_details_structure.php', $url_query);
echo PMA_printTab($strSQL, 'db_details.php', $url_query . '&amp;db_query_force=1'); echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_sql.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strSQL.'" />' : '') . $strSQL, 'db_details.php', $url_query . '&amp;db_query_force=1');
echo PMA_printTab($strExport, $lnk3, $arg3); echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_export.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strExport.'" />' : '') . $strExport, $lnk3, $arg3);
echo PMA_printTab($strSearch, $lnk4, $arg4); echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_search.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strSearch.'" />' : '') . $strSearch, $lnk4, $arg4);
echo PMA_printTab($strQBE, ($num_tables > 0) ? 'db_details_qbe.php' : '', $url_query); echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_db.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strQBE.'" />' : '') . $strQBE, ($num_tables > 0) ? 'db_details_qbe.php' : '', $url_query);
// Displays drop link // Displays drop link
if ($lnk5) { if ($lnk5) {
echo PMA_printTab($strDrop, $lnk5, $arg5, $att5, $class5); echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_deltbl.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strDrop.'" />' : '') . $strDrop, $lnk5, $arg5, $att5, $class5);
} // end if } // end if
echo "\n"; echo "\n";
if (!$cfg['LightTabs']) { if (!$cfg['LightTabs']) {
echo '</tr></table>'; echo ' <td nowrap="nowrap"><img src="./images/spacer.gif" width="2" height="1" border="0" alt="" /></td>'
. ' </tr></table>' . "\n"
. ' </td>' . "\n"
. ' </tr>' . "\n"
. '</table>';
} else { } else {
echo '<br />'; echo '<br />';
} }

View File

@@ -172,12 +172,12 @@ $realwidth = $wid . 'ex';
<!-- Query by example form --> <!-- Query by example form -->
<form action="db_details_qbe.php" method="post"> <form action="db_details_qbe.php" method="post">
<table border="<?php echo $cfg['Border']; ?>"> <table border="<?php echo $cfg['Border']; ?>" cellpadding="2" cellspacing="1">
<!-- Fields row --> <!-- Fields row -->
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>"> <td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
<b><?php echo $strField; ?>&nbsp;:&nbsp;</b> <b><?php echo $strField; ?>:&nbsp;</b>
</td> </td>
<?php <?php
$z = 0; $z = 0;
@@ -238,7 +238,7 @@ for ($x = 0; $x < $col; $x++) {
<!-- Sort row --> <!-- Sort row -->
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>"> <td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
<b><?php echo $strSort; ?>&nbsp;:&nbsp;</b> <b><?php echo $strSort; ?>:&nbsp;</b>
</td> </td>
<?php <?php
$z = 0; $z = 0;
@@ -303,7 +303,7 @@ for ($x = 0; $x < $col; $x++) {
<!-- Show row --> <!-- Show row -->
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>"> <td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
<b><?php echo $strShow; ?>&nbsp;:&nbsp;</b> <b><?php echo $strShow; ?>:&nbsp;</b>
</td> </td>
<?php <?php
$z = 0; $z = 0;
@@ -341,7 +341,7 @@ for ($x = 0; $x < $col; $x++) {
<!-- Criteria row --> <!-- Criteria row -->
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>"> <td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
<b><?php echo $strCriteria; ?>&nbsp;:&nbsp;</b> <b><?php echo $strCriteria; ?>:&nbsp;</b>
</td> </td>
<?php <?php
$z = 0; $z = 0;
@@ -394,10 +394,10 @@ for ($y = 0; $y <= $row; $y++) {
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"> <td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<!-- Row controls --> <!-- Row controls -->
<table bgcolor="<?php echo $bgcolor; ?>"> <table bgcolor="<?php echo $bgcolor; ?>" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap"> <td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
<small><?php echo $strQBEIns; ?>&nbsp;:</small> <small><?php echo $strQBEIns; ?>:</small>
<input type="checkbox" name="InsRow[<?php echo $w; ?>]" /> <input type="checkbox" name="InsRow[<?php echo $w; ?>]" />
</td> </td>
<td align="<?php echo $cell_align_right; ?>"> <td align="<?php echo $cell_align_right; ?>">
@@ -410,11 +410,11 @@ for ($y = 0; $y <= $row; $y++) {
</tr> </tr>
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap"> <td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
<small><?php echo $strQBEDel; ?>&nbsp;:</small> <small><?php echo $strQBEDel; ?>:</small>
<input type="checkbox" name="DelRow[<?php echo $w; ?>]" /> <input type="checkbox" name="DelRow[<?php echo $w; ?>]" />
</td> </td>
<td align="<?php echo $cell_align_right; ?>"> <td align="<?php echo $cell_align_right; ?>">
<b><?php echo $strOr; ?>&nbsp;:</b> <b><?php echo $strOr; ?>:</b>
</td> </td>
<td> <td>
<input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> /> <input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> />
@@ -473,16 +473,16 @@ for ($y = 0; $y <= $row; $y++) {
echo "\n"; echo "\n";
?> ?>
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap"> <td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<!-- Row controls --> <!-- Row controls -->
<table bgcolor="<?php echo $bgcolor; ?>"> <table bgcolor="<?php echo $bgcolor; ?>" border="0" cellpadding="0" cellspacing="0">
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap"> <td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
<small><?php echo $strQBEIns; ?>&nbsp;:</small> <small><?php echo $strQBEIns; ?>:</small>
<input type="checkbox" name="InsRow[<?php echo $w; ?>]" /> <input type="checkbox" name="InsRow[<?php echo $w; ?>]" />
</td> </td>
<td align="<?php echo $cell_align_right; ?>"> <td align="<?php echo $cell_align_right; ?>">
<b><?php echo $strAnd; ?>&nbsp;:</b> <b><?php echo $strAnd; ?>:</b>
</td> </td>
<td> <td>
<input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="and"<?php echo $chk['and']; ?> /> <input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="and"<?php echo $chk['and']; ?> />
@@ -490,11 +490,11 @@ for ($y = 0; $y <= $row; $y++) {
</tr> </tr>
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap"> <td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
<small><?php echo $strQBEDel; ?>&nbsp;:</small> <small><?php echo $strQBEDel; ?>:</small>
<input type="checkbox" name="DelRow[<?php echo $w; ?>]" /> <input type="checkbox" name="DelRow[<?php echo $w; ?>]" />
</td> </td>
<td align="<?php echo $cell_align_right; ?>"> <td align="<?php echo $cell_align_right; ?>">
<b><?php echo $strOr; ?>&nbsp;:</b> <b><?php echo $strOr; ?>:</b>
</td> </td>
<td> <td>
<input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> /> <input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> />
@@ -551,7 +551,7 @@ for ($y = 0; $y <= $row; $y++) {
<!-- Modify columns --> <!-- Modify columns -->
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>"> <td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
<b><?php echo $strModify; ?>&nbsp;:&nbsp;</b> <b><?php echo $strModify; ?>:&nbsp;</b>
</td> </td>
<?php <?php
$z = 0; $z = 0;
@@ -567,9 +567,9 @@ for ($x = 0; $x < $col; $x++) {
} }
?> ?>
<td align="center" bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"> <td align="center" bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">
<b><?php echo $strOr; ?>&nbsp;:</b> <b><?php echo $strOr; ?>:</b>
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> /> <input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> />
&nbsp;&nbsp;<b><?php echo $strAnd; ?>&nbsp;:</b> &nbsp;&nbsp;<b><?php echo $strAnd; ?>:</b>
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> /> <input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> />
<br /> <br />
<?php echo $strQBEIns . "\n"; ?> <?php echo $strQBEIns . "\n"; ?>
@@ -598,9 +598,9 @@ for ($x = 0; $x < $col; $x++) {
} }
?> ?>
<td align="center" bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"> <td align="center" bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">
<b><?php echo $strOr; ?>&nbsp;:</b> <b><?php echo $strOr; ?>:</b>
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> /> <input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> />
&nbsp;&nbsp;<b><?php echo $strAnd; ?>&nbsp;:</b> &nbsp;&nbsp;<b><?php echo $strAnd; ?>:</b>
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> /> <input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> />
<br /> <br />
<?php echo $strQBEIns . "\n"; ?> <?php echo $strQBEIns . "\n"; ?>
@@ -616,34 +616,18 @@ for ($x = 0; $x < $col; $x++) {
</tr> </tr>
</table> </table>
<!-- Other controls --> <!-- Other controls -->
<table border="0"> <?php echo PMA_generate_common_hidden_inputs(); ?>
<table border="0" cellpadding="2" cellspacing="1">
<tr> <tr>
<td valign="top"> <td nowrap="nowrap"><input type="hidden" value="<?php echo htmlspecialchars($db); ?>" name="db" />
<table border="0" align="<?php echo $cell_align_left; ?>">
<tr>
<td rowspan="4" valign="top">
<?php echo $strUseTables; ?>&nbsp;:
<br />
<select name="TableList[]" size="7" multiple="multiple">
<?php
foreach ($tbl_names AS $key => $val) {
echo ' ';
echo '<option value="' . htmlspecialchars($key) . '"' . $val . '>' . htmlspecialchars($key) . '</option>' . "\n";
}
?>
</select>
</td>
<td align="<?php echo $cell_align_right; ?>" valign="bottom">
<input type="hidden" value="<?php echo htmlspecialchars($db); ?>" name="db" />
<input type="hidden" value="<?php echo $z; ?>" name="Columns" /> <input type="hidden" value="<?php echo $z; ?>" name="Columns" />
<?php <?php
$w--; $w--;
?> ?>
<input type="hidden" value="<?php echo $w; ?>" name="Rows" /> <input type="hidden" value="<?php echo $w; ?>" name="Rows" />
<?php echo $strAddDeleteRow; ?>&nbsp;: <?php echo $strAddDeleteRow; ?>:
<select size="1" name="Add_Row"> <select size="1" name="Add_Row" style="vertical-align: middle">
<option value="-3">-3</option> <option value="-3">-3</option>
<option value="-2">-2</option> <option value="-2">-2</option>
<option value="-1">-1</option> <option value="-1">-1</option>
@@ -653,40 +637,49 @@ $w--;
<option value="3">3</option> <option value="3">3</option>
</select> </select>
</td> </td>
<td width="10">&nbsp;</td>
<td nowrap="nowrap"><?php echo $strAddDeleteColumn; ?>:
<select size="1" name="Add_Col" style="vertical-align: middle">
<option value="-3">-3</option>
<option value="-2">-2</option>
<option value="-1">-1</option>
<option value="0" selected="selected">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</td>
<td width="10">&nbsp;</td>
<!-- Generates a query -->
<td><input type="submit" name="modify" value="<?php echo $strUpdateQuery; ?>" /></td>
</tr>
</table><br />
<table border="0" cellpadding="2" cellspacing="1">
<tr>
<td class="tblHeaders">&nbsp;<?php echo $strUseTables; ?>:&nbsp;</td>
<td width="20">&nbsp;</td>
<td class="tblHeaders">&nbsp;<?php echo sprintf($strQueryOnDb, htmlspecialchars($db)); ?>&nbsp;</td>
</tr> </tr>
<tr> <tr>
<td align="<?php echo $cell_align_right; ?>" valign="bottom"> <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<?php echo $strAddDeleteColumn; ?>&nbsp;: <?php
<select size="1" name="Add_Col"> $strTableListOptions = '';
<option value="-3">-3</option> $numTableListOptions = 0;
<option value="-2">-2</option> foreach($tbl_names AS $key => $val) {
<option value="-1">-1</option> $strTableListOptions .= ' ';
<option value="0" selected="selected">0</option> $strTableListOptions .= '<option value="' . htmlspecialchars($key) . '"' . $val . '>' . htmlspecialchars($key) . '</option>' . "\n";
<option value="1">1</option> $numTableListOptions++;
<option value="2">2</option> }
<option value="3">3</option> ?>
<select name="TableList[]" size="<?php echo ($numTableListOptions > 30) ? '15' : '7'; ?>" multiple="multiple" id="listTable">
<?php echo $strTableListOptions; ?>
</select> </select>
</td> </td>
</tr> <td>&nbsp;&nbsp;</td>
<!-- Generates a query -->
<tr align="center" valign="top">
<td>
<input type="submit" name="modify" value="<?php echo $strUpdateQuery; ?>" />
<?php echo PMA_generate_common_hidden_inputs(); ?>
</td>
</tr>
<!-- Executes a query -->
<tr align="center" valign="top">
<td>
<input type="submit" name="submit_sql" value="<?php echo $strRunQuery; ?>" />
</td>
</tr>
</table>
</td>
<td>
<!-- Displays the current query --> <!-- Displays the current query -->
<?php echo sprintf($strQueryOnDb, htmlspecialchars($db)); ?><br /> <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<textarea cols="30" rows="7" name="sql_query" dir="<?php echo $text_dir; ?>"> <textarea cols="30" rows="<?php echo ($numTableListOptions > 30) ? '15' : '7'; ?>" name="sql_query" dir="<?php echo $text_dir; ?>" id="textSqlquery">
<?php <?php
// 1. SELECT // 1. SELECT
$last_select = 0; $last_select = 0;
@@ -1067,11 +1060,15 @@ if (!empty($qry_orderby)) {
<input type="hidden" name="encoded_sql_query" value="<?php echo $encoded_qry; ?>" /> <input type="hidden" name="encoded_sql_query" value="<?php echo $encoded_qry; ?>" />
</td> </td>
</tr> </tr>
<tr>
<!-- Generates a query -->
<td align="right" class="tblHeaders"><input type="submit" name="modify" value="<?php echo $strUpdateQuery; ?>" /></td>
<td>&nbsp;</td>
<!-- Execute a query -->
<td align="right" class="tblHeaders"><input type="submit" name="submit_sql" value="<?php echo $strRunQuery; ?>" /></td>
</tr>
</table> </table>
</form> </form>
<?php <?php
/** /**
* Displays the footer * Displays the footer

View File

@@ -180,15 +180,15 @@ if ($cfg['PropertiesIconic'] == true) {
$iconic_spacer = ''; $iconic_spacer = '';
} }
$titles['Browse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />'; $titles['Browse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />';
$titles['Search'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />'; $titles['Search'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />';
$titles['NoBrowse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/bd_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />'; $titles['NoBrowse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'bd_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />';
$titles['NoSearch'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/bd_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />'; $titles['NoSearch'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'bd_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />';
$titles['Insert'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" border="0" />'; $titles['Insert'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" border="0" />';
$titles['Properties'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_props.png" alt="' . $strProperties . '" title="' . $strProperties . '" border="0" />'; $titles['Properties'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_props.png" alt="' . $strProperties . '" title="' . $strProperties . '" border="0" />';
$titles['Drop'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" border="0" />'; $titles['Drop'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" border="0" />';
$titles['Empty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />'; $titles['Empty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />';
$titles['NoEmpty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/bd_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />'; $titles['NoEmpty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'bd_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />';
if ($propicon == 'both') { if ($propicon == 'both') {
$titles['Browse'] .= '&nbsp;' . $strBrowse . '</div>'; $titles['Browse'] .= '&nbsp;' . $strBrowse . '</div>';
@@ -229,7 +229,7 @@ else {
if (is_array($comment)) { if (is_array($comment)) {
?> ?>
<!-- DB comment --> <!-- DB comment -->
<p><i> <p id="dbComment"><i>
<?php echo htmlspecialchars(implode(' ', $comment)) . "\n"; ?> <?php echo htmlspecialchars(implode(' ', $comment)) . "\n"; ?>
</i></p> </i></p>
<?php <?php
@@ -244,7 +244,7 @@ else {
?> ?>
<table cellspacing="0" cellpadding="0" border="0"> <table cellspacing="0" cellpadding="0" border="0">
<tr> <tr>
<td valign="top" bgcolor="#cc0000"> <td valign="top">
<?php <?php
} }
@@ -307,7 +307,7 @@ else {
</tr> </tr>
</table> </table>
</td> </td>
<td><img src="./images/spacer.png" border="0" width="10" height="1" alt="" /></td> <td><img src="./images/spacer.gif" border="0" width="10" height="1" alt="" /></td>
<td valign="top"> <td valign="top">
<?php <?php
pma_TableHeader(); pma_TableHeader();
@@ -563,7 +563,7 @@ else {
?> ?>
<tr> <tr>
<td colspan="<?php echo $basecolspan; ?>" valign="bottom"> <td colspan="<?php echo $basecolspan; ?>" valign="bottom">
<img src="./images/arrow_<?php echo $text_dir; ?>.png" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" /> <img src="<?php echo $pmaThemeImage .'arrow_'.$text_dir.'.png'; ?>" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
<a href="<?php echo $checkall_url; ?>&amp;checkall=1" onclick="setCheckboxes('tablesForm', true); return false;"> <a href="<?php echo $checkall_url; ?>&amp;checkall=1" onclick="setCheckboxes('tablesForm', true); return false;">
<?php echo $strCheckAll; ?></a> <?php echo $strCheckAll; ?></a>
&nbsp;/&nbsp; &nbsp;/&nbsp;
@@ -575,7 +575,7 @@ else {
<?php echo $strCheckOverhead; ?></a> <?php echo $strCheckOverhead; ?></a>
<?php } ?> <?php } ?>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
<img src="./images/spacer.png" border="0" width="38" height="1" alt="" /> <img src="./images/spacer.gif" border="0" width="38" height="1" alt="" />
<select name="submit_mult" dir="ltr" onchange="this.form.submit();"> <select name="submit_mult" dir="ltr" onchange="this.form.submit();">
<?php <?php
echo "\n"; echo "\n";
@@ -641,18 +641,18 @@ if ($num_tables > 0) {
<tr><td nowrap="nowrap" colspan="3"><?php <tr><td nowrap="nowrap" colspan="3"><?php
echo '<a href="db_printview.php?' . $url_query . '">'; echo '<a href="db_printview.php?' . $url_query . '">';
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="./images/b_print.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_print.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
echo $strPrintView . '</a>'; echo $strPrintView . '</a>';
?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<?php <?php
echo '<a href="./db_datadict.php?' . $url_query . '">'; echo '<a href="./db_datadict.php?' . $url_query . '">';
if($cfg['PropertiesIconic']){ if($cfg['PropertiesIconic']){
echo '<img src="./images/b_tblanalyse.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_tblanalyse.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
echo $strDataDict . '</a>'; echo $strDataDict . '</a>';
?></td></tr> ?></td></tr>
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr></table> <tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr></table>
<?php <?php
} // end if } // end if
?> ?>
@@ -662,7 +662,7 @@ if ($num_tables > 0) {
<tr> <tr>
<td class="tblHeaders" colspan="3" nowrap="nowrap"><?php <td class="tblHeaders" colspan="3" nowrap="nowrap"><?php
echo PMA_generate_common_hidden_inputs($db); echo PMA_generate_common_hidden_inputs($db);
if ($cfg['PropertiesIconic']){ echo '<img src="images/b_newtbl.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; } if($cfg['PropertiesIconic']){ echo '<img src="' . $pmaThemeImage . 'b_newtbl.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; }
// if you want navigation: // if you want navigation:
$strDBLink = '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url() . '&amp;db=' . urlencode($GLOBALS['db']) . '">' $strDBLink = '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url() . '&amp;db=' . urlencode($GLOBALS['db']) . '">'
. htmlspecialchars($GLOBALS['db']) . '</a>'; . htmlspecialchars($GLOBALS['db']) . '</a>';
@@ -694,12 +694,12 @@ echo ' ' . '&nbsp;<input type="submit" value="' . $strGo . '" />' .
if ($cfgRelation['commwork']) { if ($cfgRelation['commwork']) {
?> ?>
<!-- Alter/Enter db-comment --> <!-- Alter/Enter db-comment -->
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr> <tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
<tr> <tr>
<td colspan="3" class="tblHeaders"><?php <td colspan="3" class="tblHeaders"><?php
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="images/b_comment.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_comment.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
echo $strDBComment; echo $strDBComment;
?></td></tr> ?></td></tr>
@@ -716,10 +716,10 @@ if ($cfgRelation['commwork']) {
} }
?> ?>
<!-- Rename database --> <!-- Rename database -->
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr> <tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
<tr><td colspan="3" class="tblHeaders"><?php <tr><td colspan="3" class="tblHeaders"><?php
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="images/b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
echo $strDBRename.':&nbsp;'; echo $strDBRename.':&nbsp;';
?></td></tr> ?></td></tr>
@@ -738,10 +738,10 @@ if (PMA_MYSQL_INT_VERSION >= 40101) {
// MySQL supports setting default charsets / collations for databases since // MySQL supports setting default charsets / collations for databases since
// version 4.1.1. // version 4.1.1.
echo ' <!-- Change database charset -->' . "\n" echo ' <!-- Change database charset -->' . "\n"
. ' <tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>' . "\n" . ' <tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>' . "\n"
. ' <tr><td colspan="3" class="tblHeaders">'; . ' <tr><td colspan="3" class="tblHeaders">';
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="./images/s_asci.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 's_asci.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
echo ' <label for="select_db_collation">' . $strCollation . '</label>:&nbsp;' . "\n" echo ' <label for="select_db_collation">' . $strCollation . '</label>:&nbsp;' . "\n"
. ' </td></tr>' . "\n" . ' </td></tr>' . "\n"
@@ -782,13 +782,13 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
<tr><td colspan="3" class="tblHeaders"> <tr><td colspan="3" class="tblHeaders">
<?php <?php
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="./images/b_pdfdoc.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_pdfdoc.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
?>PDF</td></tr><tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"> ?>PDF</td></tr><tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<td colspan="3"><?php <td colspan="3"><?php
echo '<a href="pdf_pages.php?' . $takeaway . '">'; echo '<a href="pdf_pages.php?' . $takeaway . '">';
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="./images/b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
echo ''. $strEditPDFPages . '</a>'; echo ''. $strEditPDFPages . '</a>';
?></td></tr> ?></td></tr>
@@ -808,10 +808,10 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
<?php <?php
echo PMA_generate_common_hidden_inputs($db); echo PMA_generate_common_hidden_inputs($db);
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="./images/b_view.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_view.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
?> echo $strDisplayPDF;
<?php echo $strDisplayPDF; ?>:&nbsp;</td></tr> ?>:&nbsp;</td></tr>
<tr bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><td width="20">&nbsp;</td><td colspan="2"> <tr bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><td width="20">&nbsp;</td><td colspan="2">
<?php echo $strPageNumber; ?>&nbsp; <?php echo $strPageNumber; ?>&nbsp;
<select name="pdf_page_number"> <select name="pdf_page_number">
@@ -870,7 +870,7 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
<td width="20">&nbsp;</td><td colspan="3" align="right"> <td width="20">&nbsp;</td><td colspan="3" align="right">
&nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" /></td> &nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" /></td>
</form></tr> </form></tr>
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr> <tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
<?php <?php
} // end if } // end if
?> ?>
@@ -887,7 +887,7 @@ if ($num_tables > 0
<tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="3"><?php <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="3"><?php
echo '<a href="db_details_importdocsql.php?' . $takeaway . '">'; echo '<a href="db_details_importdocsql.php?' . $takeaway . '">';
if ($cfg['PropertiesIconic']) { if ($cfg['PropertiesIconic']) {
echo '<img src="./images/b_docsql.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; echo '<img src="' . $pmaThemeImage . 'b_docsql.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
} }
echo $strImportDocSQL . '</a>'; echo $strImportDocSQL . '</a>';
?> ?>

View File

@@ -262,31 +262,28 @@ if (empty($search_option)) {
} }
?> ?>
<!-- Display search form --> <!-- Display search form -->
<p align="center">
<b><?php echo $strSearchFormTitle; ?></b>
</p>
<a name="db_search"></a> <a name="db_search"></a>
<form method="post" action="db_search.php" name="db_search"> <form method="post" action="db_search.php" name="db_search">
<?php echo PMA_generate_common_hidden_inputs($db); ?> <?php echo PMA_generate_common_hidden_inputs($db); ?>
<table> <table border="0" cellpadding="3" cellspacing="0">
<tr> <tr>
<td> <th class="tblHeaders" align="center" colspan="2"><?php echo $strSearchFormTitle; ?></th>
<?php echo $strSearchNeedle; ?>&nbsp; </tr>
<tr><td colspan="2"></td></tr>
<tr>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<?php echo $strSearchNeedle; ?>&nbsp;<br />
</td> </td>
<td> <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<input type="text" name="search_str" size="30" value="<?php echo $searched; ?>" /> <input type="text" name="search_str" size="60" value="<?php echo $searched; ?>" />
</td> </td>
</tr> </tr>
<tr> <tr><td colspan="2"></td></tr><tr>
<td colspan="2">&nbsp;</td> <td align="right" valign="top" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
</tr>
<tr>
<td valign="top">
<?php echo $strSearchType; ?>&nbsp; <?php echo $strSearchType; ?>&nbsp;
</td> </td>
<td> <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<input type="radio" id="search_option_1" name="search_option" value="1"<?php if ($search_option == 1) echo ' checked="checked"'; ?> /> <input type="radio" id="search_option_1" name="search_option" value="1"<?php if ($search_option == 1) echo ' checked="checked"'; ?> />
<label for="search_option_1"><?php echo $strSearchOption1; ?></label>&nbsp;*<br /> <label for="search_option_1"><?php echo $strSearchOption1; ?></label>&nbsp;*<br />
<input type="radio" id="search_option_2" name="search_option" value="2"<?php if ($search_option == 2) echo ' checked="checked"'; ?> /> <input type="radio" id="search_option_2" name="search_option" value="2"<?php if ($search_option == 2) echo ' checked="checked"'; ?> />
@@ -294,20 +291,19 @@ if (empty($search_option)) {
<input type="radio" id="search_option_3" name="search_option" value="3"<?php if ($search_option == 3) echo ' checked="checked"'; ?> /> <input type="radio" id="search_option_3" name="search_option" value="3"<?php if ($search_option == 3) echo ' checked="checked"'; ?> />
<label for="search_option_3"><?php echo $strSearchOption3; ?></label><br /> <label for="search_option_3"><?php echo $strSearchOption3; ?></label><br />
<input type="radio" id="search_option_4" name="search_option" value="4"<?php if ($search_option == 4) echo ' checked="checked"'; ?> /> <input type="radio" id="search_option_4" name="search_option" value="4"<?php if ($search_option == 4) echo ' checked="checked"'; ?> />
<label for="search_option_4"><?php echo $strSearchOption4 . '</label> ' . PMA_showMySQLDocu('Regexp', 'Regexp'); ?><br /> <label for="search_option_4"><?php echo $strSearchOption4; ?></label><?php echo PMA_showMySQLDocu('Regexp', 'Regexp'); ?><br />
<br /> <br />
*&nbsp;<?php echo $strSplitWordsWithSpace . "\n"; ?> *&nbsp;<?php echo $strSplitWordsWithSpace . "\n"; ?>
</td> </td>
</tr> </tr>
<tr><td colspan="2"></td></tr>
<tr> <tr>
<td colspan="2">&nbsp;</td> <td align="right" valign="top" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
</tr>
<tr>
<td valign="top">
<?php echo $strSearchInTables; ?>&nbsp; <?php echo $strSearchInTables; ?>&nbsp;
</td> </td>
<td> <td rowspan="2" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
<?php <?php
$strDoSelectAll='&nbsp;';
if ($num_tables > 1) { if ($num_tables > 1) {
$i = 0; $i = 0;
@@ -329,12 +325,11 @@ if ($num_tables > 1) {
$i++; $i++;
} // end while } // end while
echo ' </select>' . "\n"; echo ' </select>' . "\n";
?> $strDoSelectAll = '<a href="db_search.php?' . $url_query . '&amp;selectall=1#db_search"'
<br /> . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>'
<a href="db_search.php?<?php echo $url_query; ?>&amp;selectall=1#db_search" onclick="setSelectOptions('db_search', 'table_select[]', true); return false;"><?php echo $strSelectAll; ?></a> . '&nbsp;/&nbsp;'
&nbsp;/&nbsp; . '<a href="db_search.php?' . $url_query . '&amp;unselectall=1#db_search"'
<a href="db_search.php?<?php echo $url_query; ?>&amp;unselectall=1#db_search" onclick="setSelectOptions('db_search', 'table_select[]', false); return false;"><?php echo $strUnselectAll; ?></a> . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
<?php
} }
else { else {
echo "\n"; echo "\n";
@@ -345,13 +340,10 @@ else {
echo"\n"; echo"\n";
?> ?>
</td> </td>
</tr> </tr><tr><td align="right" valign="bottom" bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><?php echo $strDoSelectAll; ?></td></tr>
<tr><td colspan="2"></td>
<tr> </tr><tr>
<td colspan="2">&nbsp;</td> <td colspan="2" align="right" class="tblHeaders"><input type="submit" name="submit_search" value="<?php echo $strGo; ?>" id="buttonGo" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit_search" value="<?php echo $strGo; ?>" /></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@@ -306,8 +306,10 @@ if (!$save_on_server) {
require_once('./header.inc.php'); require_once('./header.inc.php');
$cfg['Server'] = $backup_cfgServer; $cfg['Server'] = $backup_cfgServer;
unset($backup_cfgServer); unset($backup_cfgServer);
echo '<div align="' . $cell_align_left . '">' . "\n"; echo "\n" . '<div align="' . $cell_align_left . '">' . "\n";
echo ' <pre>' . "\n"; //echo ' <pre>' . "\n";
echo ' <form name="nofunction">' . "\n"
. ' <textarea name="sqldump" cols="50" rows="30" onclick="this.select();" id="textSQLDUMP" wrap="OFF">' . "\n";
} // end download } // end download
} }
@@ -544,9 +546,32 @@ else {
/** /**
* Close the html tags and add the footers in dump is displayed on screen * Close the html tags and add the footers in dump is displayed on screen
*/ */
echo ' </pre>' . "\n"; //echo ' </pre>' . "\n";
echo ' </textarea>' . "\n"
. ' </form>' . "\n";
echo '</div>' . "\n"; echo '</div>' . "\n";
echo "\n"; echo "\n";
?><script language="JavaScript" type="text/javascript">
<!--
var bodyWidth=null; var bodyHeight=null;
if (document.getElementById('textSQLDUMP')) {
bodyWidth = self.innerWidth;
bodyHeight = self.innerHeight;
if(!bodyWidth && !bodyHeight){
if (document.compatMode && document.compatMode == "BackCompat") {
bodyWidth = document.body.clientWidth;
bodyHeight = document.body.clientHeight;
} else if (document.compatMode && document.compatMode == "CSS1Compat") {
bodyWidth = document.documentElement.clientWidth;
bodyHeight = document.documentElement.clientHeight;
}
}
document.getElementById('textSQLDUMP').style.width=(bodyWidth-50) + 'px';
document.getElementById('textSQLDUMP').style.height=(bodyHeight-100) + 'px';
}
//-->
</script>
<?php
require_once('./footer.inc.php'); require_once('./footer.inc.php');
} // end if } // end if
?> ?>

View File

@@ -41,7 +41,7 @@ if (empty($GLOBALS['is_header_sent'])) {
*/ */
$title = ''; $title = '';
if ($cfg['ShowHttpHostTitle']) { if ($cfg['ShowHttpHostTitle']) {
$title .= (empty($cfg['SetHttpHostTitle']) ? $GLOBALS['HTTP_HOST'] : $cfg['SetHttpHostTitle']) . ' >> '; $title .= (empty($GLOBALS['cfg']['SetHttpHostTitle']) ? $GLOBALS['HTTP_HOST'] : $GLOBALS['cfg']['SetHttpHostTitle']) . ' >> ';
} }
if (!empty($GLOBALS['cfg']['Server']) && isset($GLOBALS['cfg']['Server']['host'])) { if (!empty($GLOBALS['cfg']['Server']) && isset($GLOBALS['cfg']['Server']['host'])) {
$title.=str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['host']); $title.=str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['host']);
@@ -140,7 +140,6 @@ if (empty($GLOBALS['is_header_sent'])) {
} }
?> ?>
<body bgcolor="<?php echo $GLOBALS['cfg']['RightBgColor'] . '"' . $bkg_img; ?>> <body bgcolor="<?php echo $GLOBALS['cfg']['RightBgColor'] . '"' . $bkg_img; ?>>
<?php <?php
include('./config.header.inc.php'); include('./config.header.inc.php');
@@ -151,6 +150,11 @@ if (empty($GLOBALS['is_header_sent'])) {
/** /**
* Display heading if needed. Design can be set in css file. * Display heading if needed. Design can be set in css file.
*/ */
/*
// InternetExplorer have problems to show content with style called 'content:'
// and IE swaps images, of mouse over an icon
// some other Browsers have Problem with the div class="spacer"
// the show of icons is now based on param 'MainPageIconic'
if (PMA_DISPLAY_HEADING) { if (PMA_DISPLAY_HEADING) {
echo "<h1>\n\n"; echo "<h1>\n\n";
$header_url_qry = '?' . PMA_generate_common_url(); $header_url_qry = '?' . PMA_generate_common_url();
@@ -181,8 +185,52 @@ if (empty($GLOBALS['is_header_sent'])) {
} }
echo '</h1>'; echo '</h1>';
} }
echo "\n" . '<div class="spacer"></div>'; */
if (PMA_DISPLAY_HEADING) {
echo '<table border="0" cellpadding="0" cellspacing="0">' . "\n"
. ' <tr>' . "\n";
$header_url_qry = '?' . PMA_generate_common_url();
$server_info = (!empty($cfg['Server']['verbose'])
? $cfg['Server']['verbose']
: $server_info = $cfg['Server']['host'] . (empty($cfg['Server']['port'])
? ''
: ':' . $cfg['Server']['port']
)
);
echo ' '
. '<td class="serverinfo">' . $GLOBALS['strServer'] . ':'
. '<a href="' . $GLOBALS['cfg']['DefaultTabServer'] . '?' . PMA_generate_common_url() . '">';
if ($GLOBALS['cfg']['MainPageIconic']) {
echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_host.png" width="16" height="16" border="0" alt="' . htmlspecialchars($server_info) . '" />';
}
echo htmlspecialchars($server_info) . '</a>' . "\n"
. '</td>' . "\n\n";
if (!empty($GLOBALS['db'])) {
echo ' '
. '<td class="serverinfo"><div></div></td>' . "\n" . ' '
. '<td class="serverinfo">' . $GLOBALS['strDatabase'] . ':'
. '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($GLOBALS['db']) . '">';
if ($GLOBALS['cfg']['MainPageIconic']) {
echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_db.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['db']) . '" />';
}
echo htmlspecialchars($GLOBALS['db']) . '</a>' . "\n"
. '</td>' . "\n\n";
if (!empty($GLOBALS['table'])) {
echo ' '
. '<td class="serverinfo"><div></div></td>' . "\n" . ' '
. '<td class="serverinfo">' . $GLOBALS['strTable'] . ':'
. '<a href="' . $GLOBALS['cfg']['DefaultTabTable'] . '?' . PMA_generate_common_url($GLOBALS['db'], $GLOBALS['table']) . '">';
if ($GLOBALS['cfg']['MainPageIconic']) {
echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_tbl.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['table']) . '" />';
}
echo htmlspecialchars($GLOBALS['table']) . '</a>' . "\n"
. '</td>' . "\n\n";
}
}
echo ' </tr>' . "\n" . '</table>';
}
/** /**
* Sets a variable to remember headers have been sent * Sets a variable to remember headers have been sent
*/ */

View File

@@ -8,7 +8,10 @@
*/ */
require_once('./libraries/grab_globals.lib.php'); require_once('./libraries/grab_globals.lib.php');
require_once('./libraries/common.lib.php'); require_once('./libraries/common.lib.php');
/**
* Includes the ThemeManager if it hasn't been included yet
*/
require_once('./libraries/select_theme.lib.php');
// Gets the default font sizes // Gets the default font sizes
PMA_setFontSizes(); PMA_setFontSizes();
@@ -25,8 +28,6 @@ if (empty($HTTP_HOST)) {
$HTTP_HOST = ''; $HTTP_HOST = '';
} }
} }
/** /**
* Defines the frameset * Defines the frameset
*/ */
@@ -38,7 +39,6 @@ if (isset($lightm_db)) {
unset($lightm_db); unset($lightm_db);
} }
$url_query = PMA_generate_common_url(isset($db) ? $db : ''); $url_query = PMA_generate_common_url(isset($db) ? $db : '');
header('Content-Type: text/html; charset=' . $GLOBALS['charset']); header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
require_once('./libraries/relation.lib.php'); require_once('./libraries/relation.lib.php');
@@ -61,17 +61,33 @@ $phpmain_hash_js = time();
</head> </head>
<?php <?php
$query_frame_height = 60;
if ($cfg['LeftDisplayServers'] && !$cfg['LeftDisplayServersList']) {
$query_frame_height = $query_frame_height + 40;
}
if ($server > 0) {
PMA_availableDatabases(); // this function is defined in "common.lib.php"
} else {
$num_dbs = 0;
}
if ($num_dbs > 1) {
if ($cfg['LeftFrameLight']) {
$query_frame_height = $query_frame_height + 40;
}
}
if ($cfg['LeftDisplayLogo']) {
$query_frame_height = $query_frame_height + 50;
}
if ($cfg['QueryFrame']) { if ($cfg['QueryFrame']) {
if ($cfg['QueryFrameJS']) { if ($cfg['QueryFrameJS']) {
echo '<script type="text/javascript">' . "\n"; echo '<script type="text/javascript">' . "\n";
echo '<!--' . "\n"; echo '<!--' . "\n";
echo ' document.writeln(\'<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">\');' . "\n"; echo ' document.writeln(\'<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">\');' . "\n";
echo ' document.writeln(\' <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">\');' . "\n"; echo ' document.writeln(\' <frameset rows="' . $query_frame_height . ', *" framespacing="0" frameborder="0" border="0">\');' . "\n";
echo ' document.writeln(\' <frame src="left.php?' . $url_query . '&amp;hash=' . $phpmain_hash . $phpmain_hash_js . '" name="nav" frameborder="0" />\');' . "\n";
echo ' document.writeln(\' <frame src="queryframe.php?' . $url_query . '&amp;hash=' . $phpmain_hash . $phpmain_hash_js . '" name="queryframe" frameborder="0" scrolling="no" />\');' . "\n"; echo ' document.writeln(\' <frame src="queryframe.php?' . $url_query . '&amp;hash=' . $phpmain_hash . $phpmain_hash_js . '" name="queryframe" frameborder="0" scrolling="no" />\');' . "\n";
echo ' document.writeln(\' <frame src="left.php?' . $url_query . '&amp;hash=' . $phpmain_hash . $phpmain_hash_js . '" name="nav" frameborder="0" />\');' . "\n";
echo ' document.writeln(\' </frameset>\');' . "\n"; echo ' document.writeln(\' </frameset>\');' . "\n";
echo ' document.writeln(\' <frame src="' . (empty($db) ? $cfg['DefaultTabServer'] : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . $phpmain_hash_js . '" border="0" frameborder="0" />\');' . "\n"; echo ' document.writeln(\' <frame src="' . (empty($db) ? $cfg['DefaultTabServer'] : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . $phpmain_hash_js . '" border="0" frameborder="0" style="border-left: 1px solid #000000;" />\');' . "\n";
echo ' document.writeln(\' <noframes>\');' . "\n"; echo ' document.writeln(\' <noframes>\');' . "\n";
echo ' document.writeln(\' <body bgcolor="#FFFFFF">\');' . "\n"; echo ' document.writeln(\' <body bgcolor="#FFFFFF">\');' . "\n";
echo ' document.writeln(\' <p>' . str_replace("'", "\'", $strNoFrames) . '</p>\');' . "\n"; echo ' document.writeln(\' <p>' . str_replace("'", "\'", $strNoFrames) . '</p>\');' . "\n";
@@ -85,9 +101,9 @@ if ($cfg['QueryFrame']) {
} }
echo '<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">' . "\n"; echo '<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">' . "\n";
echo ' <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">' . "\n"; echo ' <frameset rows="' . $query_frame_height . ', *" framespacing="0" frameborder="0" border="0">' . "\n";
echo ' <frame src="left.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="nav" frameborder="0" />' . "\n";
echo ' <frame src="queryframe.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="queryframe" frameborder="0" scrolling="no" />' . "\n"; echo ' <frame src="queryframe.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="queryframe" frameborder="0" scrolling="no" />' . "\n";
echo ' <frame src="left.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="nav" frameborder="0" />' . "\n";
echo ' </frameset>' . "\n"; echo ' </frameset>' . "\n";
echo ' <frame src="' . (empty($db) ? $cfg['DefaultTabServer'] : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . '" frameborder="0" />' . "\n"; echo ' <frame src="' . (empty($db) ? $cfg['DefaultTabServer'] : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . '" frameborder="0" />' . "\n";

View File

@@ -758,4 +758,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -759,4 +759,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -747,4 +747,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -748,4 +748,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -757,4 +757,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -772,4 +772,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -773,4 +773,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -755,4 +755,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -755,4 +755,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -771,4 +771,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -772,4 +772,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -771,4 +771,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -749,4 +749,7 @@ $strZeroRemovesTheLimit = 'Pozn
$strZip = '"zazipov<6F>no"'; $strZip = '"zazipov<6F>no"';
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -750,4 +750,7 @@ $strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu)
$strZip = '"zazipováno"'; $strZip = '"zazipováno"';
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -749,4 +749,7 @@ $strZeroRemovesTheLimit = 'Pozn
$strZip = '"zazipov<6F>no"'; $strZip = '"zazipov<6F>no"';
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -746,4 +746,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -594,6 +594,7 @@ $strSelectAll = 'Select All';
$strSelectFields = 'Select fields (at least one):'; $strSelectFields = 'Select fields (at least one):';
$strSelectNumRows = 'in query'; $strSelectNumRows = 'in query';
$strSelectTables = 'Select Tables'; $strSelectTables = 'Select Tables';
$strSelectTheme = 'please select...';
$strSend = 'Save as file'; $strSend = 'Save as file';
$strSent = 'Sent'; $strSent = 'Sent';
$strServer = 'Server'; $strServer = 'Server';
@@ -659,12 +660,14 @@ $strTableOptions = 'Table options';
$strTableStructure = 'Table structure for table'; $strTableStructure = 'Table structure for table';
$strTableType = 'Table type'; $strTableType = 'Table type';
$strTables = '%s table(s)'; $strTables = '%s table(s)';
$strTakeIt = 'take it';
$strTblPrivileges = 'Table-specific privileges'; $strTblPrivileges = 'Table-specific privileges';
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; $strTextAreaLength = ' Because of its length,<br /> this field might not be editable ';
$strThai = 'Thai'; $strThai = 'Thai';
$strTheContent = 'The content of your file has been inserted.'; $strTheContent = 'The content of your file has been inserted.';
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.';
$strTheTerminator = 'The terminator of the fields.'; $strTheTerminator = 'The terminator of the fields.';
$strTheme = 'Theme / Style';
$strThisHost = 'This Host'; $strThisHost = 'This Host';
$strThisNotDirectory = 'This was not a directory'; $strThisNotDirectory = 'This was not a directory';
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.';

View File

@@ -595,6 +595,7 @@ $strSelectAll = 'Select All';
$strSelectFields = 'Select fields (at least one):'; $strSelectFields = 'Select fields (at least one):';
$strSelectNumRows = 'in query'; $strSelectNumRows = 'in query';
$strSelectTables = 'Select Tables'; $strSelectTables = 'Select Tables';
$strSelectTheme = 'please select...';
$strSend = 'Save as file'; $strSend = 'Save as file';
$strSent = 'Sent'; $strSent = 'Sent';
$strServer = 'Server'; $strServer = 'Server';
@@ -660,12 +661,14 @@ $strTableOptions = 'Table options';
$strTableStructure = 'Table structure for table'; $strTableStructure = 'Table structure for table';
$strTableType = 'Table type'; $strTableType = 'Table type';
$strTables = '%s table(s)'; $strTables = '%s table(s)';
$strTakeIt = 'take it';
$strTblPrivileges = 'Table-specific privileges'; $strTblPrivileges = 'Table-specific privileges';
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; $strTextAreaLength = ' Because of its length,<br /> this field might not be editable ';
$strThai = 'Thai'; $strThai = 'Thai';
$strTheContent = 'The content of your file has been inserted.'; $strTheContent = 'The content of your file has been inserted.';
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.';
$strTheTerminator = 'The terminator of the fields.'; $strTheTerminator = 'The terminator of the fields.';
$strTheme = 'Theme / Style';
$strThisHost = 'This Host'; $strThisHost = 'This Host';
$strThisNotDirectory = 'This was not a directory'; $strThisNotDirectory = 'This was not a directory';
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.';

View File

@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -768,4 +768,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -769,4 +769,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -595,6 +595,7 @@ $strSelectAll = 'Tout s
$strSelectFields = 'Choisir les champs <20> afficher (au moins un)'; $strSelectFields = 'Choisir les champs <20> afficher (au moins un)';
$strSelectNumRows = 'dans la requ<71>te'; $strSelectNumRows = 'dans la requ<71>te';
$strSelectTables = 'Choisissez les tables'; $strSelectTables = 'Choisissez les tables';
$strSelectTheme = 'veuillez choisir...';
$strSend = 'Transmettre'; $strSend = 'Transmettre';
$strSent = 'Envoy<6F>'; $strSent = 'Envoy<6F>';
$strServer = 'Serveur'; $strServer = 'Serveur';
@@ -660,12 +661,14 @@ $strTableOptions = '<b>Options</b> pour cette table';
$strTableStructure = 'Structure de la table'; $strTableStructure = 'Structure de la table';
$strTableType = '<b>Type</b> de la table'; $strTableType = '<b>Type</b> de la table';
$strTables = '%s table(s)'; $strTables = '%s table(s)';
$strTakeIt = 'utiliser celui-ci';
$strTblPrivileges = 'Privil<69>ges sp<73>cifiques <20> une table'; $strTblPrivileges = 'Privil<69>ges sp<73>cifiques <20> une table';
$strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas <20>ditable<br />en raison de sa longueur'; $strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas <20>ditable<br />en raison de sa longueur';
$strThai = 'tha<68>'; $strThai = 'tha<68>';
$strTheContent = 'Le contenu de votre fichier a <20>t<EFBFBD> ins<6E>r<EFBFBD>.'; $strTheContent = 'Le contenu de votre fichier a <20>t<EFBFBD> ins<6E>r<EFBFBD>.';
$strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de cl<63> primaire ou unique identique.'; $strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de cl<63> primaire ou unique identique.';
$strTheTerminator = 'Le caract<63>re qui s<>pare chacun des champs.'; $strTheTerminator = 'Le caract<63>re qui s<>pare chacun des champs.';
$strTheme = 'Th<54>me / Style';
$strThisHost = 'Ce serveur'; $strThisHost = 'Ce serveur';
$strThisNotDirectory = 'Ceci n\'est pas un r<>pertoire'; $strThisNotDirectory = 'Ceci n\'est pas un r<>pertoire';
$strThreadSuccessfullyKilled = 'Le processus %s a <20>t<EFBFBD> <20>limin<69>.'; $strThreadSuccessfullyKilled = 'Le processus %s a <20>t<EFBFBD> <20>limin<69>.';

View File

@@ -596,6 +596,7 @@ $strSelectAll = 'Tout sélectionner';
$strSelectFields = 'Choisir les champs à afficher (au moins un)'; $strSelectFields = 'Choisir les champs à afficher (au moins un)';
$strSelectNumRows = 'dans la requête'; $strSelectNumRows = 'dans la requête';
$strSelectTables = 'Choisissez les tables'; $strSelectTables = 'Choisissez les tables';
$strSelectTheme = 'veuillez choisir...';
$strSend = 'Transmettre'; $strSend = 'Transmettre';
$strSent = 'Envoyé'; $strSent = 'Envoyé';
$strServer = 'Serveur'; $strServer = 'Serveur';
@@ -661,12 +662,14 @@ $strTableOptions = '<b>Options</b> pour cette table';
$strTableStructure = 'Structure de la table'; $strTableStructure = 'Structure de la table';
$strTableType = '<b>Type</b> de la table'; $strTableType = '<b>Type</b> de la table';
$strTables = '%s table(s)'; $strTables = '%s table(s)';
$strTakeIt = 'utiliser celui-ci';
$strTblPrivileges = 'Privilèges spécifiques à une table'; $strTblPrivileges = 'Privilèges spécifiques à une table';
$strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas éditable<br />en raison de sa longueur'; $strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas éditable<br />en raison de sa longueur';
$strThai = 'thaï'; $strThai = 'thaï';
$strTheContent = 'Le contenu de votre fichier a été inséré.'; $strTheContent = 'Le contenu de votre fichier a été inséré.';
$strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de clé primaire ou unique identique.'; $strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de clé primaire ou unique identique.';
$strTheTerminator = 'Le caractère qui sépare chacun des champs.'; $strTheTerminator = 'Le caractère qui sépare chacun des champs.';
$strTheme = 'Thème / Style';
$strThisHost = 'Ce serveur'; $strThisHost = 'Ce serveur';
$strThisNotDirectory = 'Ceci n\'est pas un répertoire'; $strThisNotDirectory = 'Ceci n\'est pas un répertoire';
$strThreadSuccessfullyKilled = 'Le processus %s a été éliminé.'; $strThreadSuccessfullyKilled = 'Le processus %s a été éliminé.';

View File

@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -772,4 +772,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strZip = 'Zip-komprimiert';
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -752,4 +752,7 @@ $strZip = 'Zip-komprimiert';
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -753,4 +753,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -768,4 +768,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -776,4 +776,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -757,4 +757,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -748,4 +748,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -757,4 +757,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -766,4 +766,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -767,4 +767,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -748,4 +748,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -767,4 +767,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -768,4 +768,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -774,4 +774,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -773,4 +773,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -763,4 +763,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -764,4 +764,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -754,4 +754,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -753,4 +753,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -754,4 +754,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -753,4 +753,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -746,4 +746,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

View File

@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate $strStrucNativeExcel = 'Native MS Excel data'; //to translate
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate $strDisableForeignChecks = 'Disable foreign key checks'; //to translate
$strServerNotResponding = 'The server is not responding'; //to translate $strServerNotResponding = 'The server is not responding'; //to translate
$strSelectTheme = 'please select...'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strTakeIt = 'take it'; //to translate
?> ?>

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