This commit is contained in:
Alexander M. Turek
2002-11-28 09:15:47 +00:00
parent b2656d8455
commit 84a657d286
97 changed files with 327 additions and 138 deletions

View File

@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-11-28 Alexander M. Turek <rabus@users.sourceforge.net>
* db_datadict.php3, db_details_structure.php3, db_printview.php3,
db_stats.php3, tbl_printview.php3, tbl_properties_structure.php3,
lang/*.inc.php3: Fixed bug #644526 (ucfirst php function causes trouble).
* lang/german-*.inc.php3: Clarification.
2002-11-27 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php3: bug 644030 part 1: syntax error
on a REVOKE

View File

@@ -165,19 +165,19 @@ while ($row = mysql_fetch_array($rowset)) {
<!-- TABLE INFORMATIONS -->
<table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse;background-color: white">
<tr>
<th width="50"><?php echo ucfirst($strField); ?></th>
<th width="50"><?php echo ucfirst($strType); ?></th>
<!--<th width="50"><?php echo ucfirst($strAttr); ?></th>-->
<th width="50"><?php echo ucfirst($strNull); ?></th>
<th width="50"><?php echo ucfirst($strDefault); ?></th>
<!--<th width="50"><?php echo ucfirst($strExtra); ?></th>-->
<th width="50"><?php echo $strField; ?></th>
<th width="50"><?php echo $strType; ?></th>
<!--<th width="50"><?php echo $strAttr; ?></th>-->
<th width="50"><?php echo $strNull; ?></th>
<th width="50"><?php echo $strDefault; ?></th>
<!--<th width="50"><?php echo $strExtra; ?></th>-->
<?php
echo "\n";
if ($have_rel) {
echo ' <th width="50">' . ucfirst($strLinksTo) . '</th>' . "\n";
echo ' <th width="50">' . $strLinksTo . '</th>' . "\n";
}
if ($cfgRelation['commwork']) {
echo ' <th width="400">' . ucfirst($strComments) . '</th>' . "\n";
echo ' <th width="400">' . $strComments . '</th>' . "\n";
}
?>
</tr>

View File

@@ -58,13 +58,13 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
<table border="<?php echo $cfg['Border']; ?>">
<tr>
<td></td>
<th>&nbsp;<?php echo ucfirst($strTable); ?>&nbsp;</th>
<th colspan="6"><?php echo ucfirst($strAction); ?></th>
<th><?php echo ucfirst($strRecords); ?></th>
<th><?php echo ucfirst($strType); ?></th>
<th>&nbsp;<?php echo $strTable; ?>&nbsp;</th>
<th colspan="6"><?php echo $strAction; ?></th>
<th><?php echo $strRecords; ?></th>
<th><?php echo $strType; ?></th>
<?php
if ($cfg['ShowStats']) {
echo '<th>' . ucfirst($strSize) . '</th>';
echo '<th>' . $strSize . '</th>';
}
echo "\n";
?>
@@ -334,9 +334,9 @@ else {
<table border="<?php echo $cfg['Border']; ?>">
<tr>
<td></td>
<th>&nbsp;<?php echo ucfirst($strTable); ?>&nbsp;</th>
<th colspan="6"><?php echo ucfirst($strAction); ?></th>
<th><?php echo ucfirst($strRecords); ?></th>
<th>&nbsp;<?php echo $strTable; ?>&nbsp;</th>
<th colspan="6"><?php echo $strAction; ?></th>
<th><?php echo $strRecords; ?></th>
</tr>
<?php
$checked = (!empty($checkall) ? ' checked="checked"' : '');

View File

@@ -97,12 +97,12 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
<!-- The tables list -->
<table border="<?php echo $cfg['Border']; ?>">
<tr>
<th>&nbsp;<?php echo ucfirst($strTable); ?>&nbsp;</th>
<th><?php echo ucfirst($strRecords); ?></th>
<th><?php echo ucfirst($strType); ?></th>
<th>&nbsp;<?php echo $strTable; ?>&nbsp;</th>
<th><?php echo $strRecords; ?></th>
<th><?php echo $strType; ?></th>
<?php
if ($cfg['ShowStats']) {
echo '<th>' . ucfirst($strSize) . '</th>';
echo '<th>' . $strSize . '</th>';
}
echo "\n";
?>
@@ -232,8 +232,8 @@ else {
<!-- The tables list -->
<table border="<?php echo $cfg['Border']; ?>">
<tr>
<th>&nbsp;<?php echo ucfirst($strTable); ?>&nbsp;</th>
<th><?php echo ucfirst($strRecords); ?></th>
<th>&nbsp;<?php echo $strTable; ?>&nbsp;</th>
<th><?php echo $strRecords; ?></th>
</tr>
<?php
while ($i < $num_tables) {

View File

@@ -123,7 +123,7 @@ if ($server > 0) {
*/
?>
<h1 align="center">
<?php echo ucfirst($strDatabasesStats); ?>
<?php echo $strDatabasesStats; ?>
</h1>
<table align="center" border="<?php echo $cfg['Border']; ?>" cellpadding="5">
<tr>
@@ -195,27 +195,27 @@ if ($num_dbs > 0) {
<th>
&nbsp;
<a href="<?php echo $common_url . '&amp;sort_by=db_name&amp;sort_order=' . $url_sort[0]['order']; ?>">
<?php echo ucfirst($strDatabase) . $url_sort[0]['img_tag']; ?></a>&nbsp;
<?php echo $strDatabase . $url_sort[0]['img_tag']; ?></a>&nbsp;
</th>
<th>
&nbsp;
<a href="<?php echo $common_url . '&amp;sort_by=tbl_cnt&amp;sort_order=' . $url_sort[1]['order']; ?>">
<?php echo ucfirst(trim(sprintf($strTables, ''))) . $url_sort[1]['img_tag']; ?></a>&nbsp;
<?php echo $strNumTables . $url_sort[1]['img_tag']; ?></a>&nbsp;
</th>
<th>
&nbsp;
<a href="<?php echo $common_url . '&amp;sort_by=data_sz&amp;sort_order=' . $url_sort[2]['order']; ?>">
<?php echo ucfirst($strData) . $url_sort[2]['img_tag']; ?></a>&nbsp;
<?php echo $strData . $url_sort[2]['img_tag']; ?></a>&nbsp;
</th>
<th>
&nbsp;
<a href="<?php echo $common_url . '&amp;sort_by=idx_sz&amp;sort_order=' . $url_sort[3]['order']; ?>">
<?php echo ucfirst($strIndexes) . $url_sort[3]['img_tag']; ?></a>&nbsp;
<?php echo $strIndexes . $url_sort[3]['img_tag']; ?></a>&nbsp;
</th>
<th>
&nbsp;
<a href="<?php echo $common_url . '&amp;sort_by=tot_sz&amp;sort_order=' . $url_sort[4]['order']; ?>">
<?php echo ucfirst($strTotal) . $url_sort[4]['img_tag']; ?></a>&nbsp;
<?php echo $strTotalUC . $url_sort[4]['img_tag']; ?></a>&nbsp;
</th>
</tr>
<?php

View File

@@ -384,7 +384,7 @@ $strSubmit = 'Stuur';
$strSuccess = 'Jou SQL-navraag is suksesvol uitgevoer';
$strSum = 'Som';
$strTable = 'tabel ';
$strTable = 'Tabel';
$strTableComments = 'Tabel kommentaar';
$strTableEmpty = 'Die tabel naam is leeg!';
$strTableHasBeenDropped = 'Tabel %s is verwyder';
@@ -440,4 +440,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -385,7 +385,7 @@ $strSubmit = 'Stuur';
$strSuccess = 'Jou SQL-navraag is suksesvol uitgevoer';
$strSum = 'Som';
$strTable = 'tabel ';
$strTable = 'Tabel';
$strTableComments = 'Tabel kommentaar';
$strTableEmpty = 'Die tabel naam is leeg!';
$strTableHasBeenDropped = 'Tabel %s is verwyder';
@@ -441,4 +441,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -392,7 +392,7 @@ $strSubmit = 'D
$strSuccess = 'Query u zbatua me sukses';
$strSum = 'Gjithsej';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komente mbi tabel<65>n';
$strTableEmpty = 'Emri i tabel<65>s <20>sht<68> bosh!';
$strTableHasBeenDropped = 'Tabela %s u eleminua';
@@ -442,4 +442,6 @@ $strZip = '"kompresuar me zip"';
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -393,7 +393,7 @@ $strSubmit = 'Dërgoje';
$strSuccess = 'Query u zbatua me sukses';
$strSum = 'Gjithsej';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komente mbi tabelën';
$strTableEmpty = 'Emri i tabelës është bosh!';
$strTableHasBeenDropped = 'Tabela %s u eleminua';
@@ -443,4 +443,6 @@ $strZip = '"kompresuar me zip"';
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -455,4 +455,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -303,7 +303,7 @@ $strSubmit = 'Submete';
$strSuccess = 'Seu comando SQL foi executado com sucesso';
$strSum = 'Soma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Coment<6E>rios da tabela';
$strTableEmpty = 'O Nome da Tabela est<73> vazio!';
$strTableHasBeenDropped = 'Tabela %s foi deletada';
@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -304,7 +304,7 @@ $strSubmit = 'Submete';
$strSuccess = 'Seu comando SQL foi executado com sucesso';
$strSum = 'Soma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Comentários da tabela';
$strTableEmpty = 'O Nome da Tabela está vazio!';
$strTableHasBeenDropped = 'Tabela %s foi deletada';
@@ -455,4 +455,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -455,4 +455,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -385,7 +385,7 @@ $strSubmit = 'Enviar';
$strSuccess = 'La vostra comanda SQL ha estat executada amb <20>xit';
$strSum = 'Suma';
$strTable = 'taula ';
$strTable = 'Taula';
$strTableComments = 'Comentaris de la taula';
$strTableEmpty = 'El nom de la taula <20>s buit!';
$strTableHasBeenDropped = 'S\'ha esborrat la taula %s';
@@ -434,4 +434,6 @@ $strYes = 'Si';
$strZip = '"comprimit amb zip"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -386,7 +386,7 @@ $strSubmit = 'Enviar';
$strSuccess = 'La vostra comanda SQL ha estat executada amb èxit';
$strSum = 'Suma';
$strTable = 'taula ';
$strTable = 'Taula';
$strTableComments = 'Comentaris de la taula';
$strTableEmpty = 'El nom de la taula és buit!';
$strTableHasBeenDropped = 'S\'ha esborrat la taula %s';
@@ -435,4 +435,6 @@ $strYes = 'Si';
$strZip = '"comprimit amb zip"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -440,4 +440,6 @@ $strZip = '"zipped"';
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -439,4 +439,6 @@ $strZip = '"zipped"';
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -438,4 +438,6 @@ $strZip = '"zipped"';
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -437,4 +437,6 @@ $strZip = '"zipped"';
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -306,7 +306,7 @@ $strSubmit = 'Pokreni';
$strSuccess = 'Va<56> SQL upit je uspje<6A>no izvr<76>en';
$strSum = 'Ukupno';
$strTable = 'tablica ';
$strTable = 'Tablica';
$strTableComments = 'Komentar tablice';
$strTableEmpty = 'Ime tablice je prazno!';
$strTableHasBeenDropped = 'Tablica %s je izbrisana';
@@ -453,4 +453,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -307,7 +307,7 @@ $strSubmit = 'Pokreni';
$strSuccess = 'Vaš SQL upit je uspješno izvršen';
$strSum = 'Ukupno';
$strTable = 'tablica ';
$strTable = 'Tablica';
$strTableComments = 'Komentar tablice';
$strTableEmpty = 'Ime tablice je prazno!';
$strTableHasBeenDropped = 'Tablica %s je izbrisana';
@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -306,7 +306,7 @@ $strSubmit = 'Pokreni';
$strSuccess = 'Va<56> SQL upit je uspje<6A>no izvr<76>en';
$strSum = 'Ukupno';
$strTable = 'tablica ';
$strTable = 'Tablica';
$strTableComments = 'Komentar tablice';
$strTableEmpty = 'Ime tablice je prazno!';
$strTableHasBeenDropped = 'Tablica %s je izbrisana';
@@ -453,4 +453,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -437,6 +437,9 @@ $strWrongUser = '
$strYes = 'Ano';
$strZip = '"zazipov<6F>no"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -438,6 +438,9 @@ $strWrongUser = 'Špatné uživatelské jméno/heslo. Přístup odepřen.';
$strYes = 'Ano';
$strZip = '"zazipováno"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -437,6 +437,8 @@ $strWrongUser = '
$strYes = 'Ano';
$strZip = '"zazipov<6F>no"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -301,7 +301,7 @@ $strSubmit = 'Send';
$strSuccess = 'Din SQL-foresp<73>rgsel blev udf<64>rt korrekt';
$strSum = 'Sum';
$strTable = 'Tabel: ';
$strTable = 'Tabel';
$strTableComments = 'Tabel kommentarer';
$strTableEmpty = 'Intet tabelnavn!';
$strTableHasBeenDropped = 'Tabel %s er slettet';
@@ -448,4 +448,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -302,7 +302,7 @@ $strSubmit = 'Send';
$strSuccess = 'Din SQL-forespørgsel blev udført korrekt';
$strSum = 'Sum';
$strTable = 'Tabel: ';
$strTable = 'Tabel';
$strTableComments = 'Tabel kommentarer';
$strTableEmpty = 'Intet tabelnavn!';
$strTableHasBeenDropped = 'Tabel %s er slettet';
@@ -449,4 +449,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -438,4 +438,6 @@ $strYes = 'Ja';
$strZip = '"Gezipt"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -439,4 +439,6 @@ $strYes = 'Ja';
$strZip = '"Gezipt"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -253,6 +253,7 @@ $strNotValidNumber = ' is not a valid row number!';
$strNull = 'Null';
$strNumSearchResultsInTable = '%s match(es) inside table <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> match(es)';
$strNumTables = 'Tables';
$strOK = 'OK';
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.';
@@ -385,7 +386,7 @@ $strSubmit = 'Submit';
$strSuccess = 'Your SQL-query has been executed successfully';
$strSum = 'Sum';
$strTable = 'table ';
$strTable = 'Table';
$strTableComments = 'Table comments';
$strTableEmpty = 'The table name is empty!';
$strTableHasBeenDropped = 'Table %s has been dropped';
@@ -400,6 +401,7 @@ $strTheContent = 'The content of your file has been inserted.';
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.';
$strTheTerminator = 'The terminator of the fields.';
$strTotal = 'total';
$strTotalUC = 'Total';
$strType = 'Type';
$strUncheckAll = 'Uncheck All';

View File

@@ -254,6 +254,7 @@ $strNotValidNumber = ' is not a valid row number!';
$strNull = 'Null';
$strNumSearchResultsInTable = '%s match(es) inside table <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> match(es)';
$strNumTables = 'Tables';
$strOK = 'OK';
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.';
@@ -386,7 +387,7 @@ $strSubmit = 'Submit';
$strSuccess = 'Your SQL-query has been executed successfully';
$strSum = 'Sum';
$strTable = 'table ';
$strTable = 'Table';
$strTableComments = 'Table comments';
$strTableEmpty = 'The table name is empty!';
$strTableHasBeenDropped = 'Table %s has been dropped';
@@ -401,6 +402,7 @@ $strTheContent = 'The content of your file has been inserted.';
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.';
$strTheTerminator = 'The terminator of the fields.';
$strTotal = 'total';
$strTotalUC = 'Total';
$strType = 'Type';
$strUncheckAll = 'Uncheck All';

View File

@@ -381,7 +381,7 @@ $strSubmit = 'Vali';
$strSuccess = 'Teie SQL p<>ring t<>ideti edukalt';
$strSum = 'Summa';
$strTable = 'tabel ';
$strTable = 'Tabel';
$strTableComments = 'Tabeli kommentaarid';
$strTableEmpty = 'Tabeli nimi on t<>hi!';
$strTableHasBeenDropped = 'Tabel %s kustutatud';
@@ -428,10 +428,13 @@ $strWrongUser = 'Vale kasutajanimi/parool. Ligip
$strYes = 'Jah';
$strZip = '"zipitud"';
// To translate
$strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -382,7 +382,7 @@ $strSubmit = 'Vali';
$strSuccess = 'Teie SQL päring täideti edukalt';
$strSum = 'Summa';
$strTable = 'tabel ';
$strTable = 'Tabel';
$strTableComments = 'Tabeli kommentaarid';
$strTableEmpty = 'Tabeli nimi on tühi!';
$strTableHasBeenDropped = 'Tabel %s kustutatud';
@@ -429,10 +429,13 @@ $strWrongUser = 'Vale kasutajanimi/parool. Ligipääd keelatud.';
$strYes = 'Jah';
$strZip = '"zipitud"';
// To translate
$strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -384,7 +384,7 @@ $strSubmit = 'L
$strSuccess = 'SQL-lause on suoritettu';
$strSum = 'Summa';
$strTable = 'taulu ';
$strTable = 'Taulu';
$strTableComments = 'Kommentoi taulua';
$strTableEmpty = 'Taulun nimi puuttuu!';
$strTableHasBeenDropped = 'Taulu %s on pudotettu';
@@ -432,9 +432,13 @@ $strYes = 'Kyll
$strZip = '"zip-pakattu"';
// To translate
$strImportDocSQL = 'Import docSQL Files'; //to translate
$strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -385,7 +385,7 @@ $strSubmit = 'Lähetä';
$strSuccess = 'SQL-lause on suoritettu';
$strSum = 'Summa';
$strTable = 'taulu ';
$strTable = 'Taulu';
$strTableComments = 'Kommentoi taulua';
$strTableEmpty = 'Taulun nimi puuttuu!';
$strTableHasBeenDropped = 'Taulu %s on pudotettu';
@@ -433,9 +433,13 @@ $strYes = 'Kyllä';
$strZip = '"zip-pakattu"';
// To translate
$strImportDocSQL = 'Import docSQL Files'; //to translate
$strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -253,6 +253,7 @@ $strNotValidNumber = ' n\'est pas un nombre valide !';
$strNull = 'Null';
$strNumSearchResultsInTable = '%s occurence(s) dans la table <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total :</b> <i>%s</i> occurence(s)';
$strNumTables = 'Tables';
$strOK = 'OK';
$strOftenQuotation = 'Souvent des guillemets. OPTIONNEL signifie que seuls les champs de type char et varchar sont entour<75>s par ce caract<63>re.';
@@ -385,7 +386,7 @@ $strSubmit = 'Ex
$strSuccess = 'Votre requ<71>te SQL a <20>t<EFBFBD> ex<65>cut<75>e avec succ<63>s';
$strSum = 'Somme';
$strTable = 'table ';
$strTable = 'Table';
$strTableComments = 'Commentaires sur la table';
$strTableEmpty = 'Le nom de la table est vide';
$strTableHasBeenDropped = 'La table %s a <20>t<EFBFBD> effac<61>e';
@@ -400,6 +401,7 @@ $strTheContent = 'Le contenu de votre fichier a
$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.';
$strTotal = 'total';
$strTotalUC = 'Total';
$strType = 'Type';
$strUncheckAll = 'Tout d<>cocher';
@@ -432,6 +434,5 @@ $strWrongUser = 'Erreur d\'utilisateur/mot de passe. Acc
$strYes = 'Oui';
$strZip = '"zipp<70>"';
// To translate
?>

View File

@@ -254,6 +254,7 @@ $strNotValidNumber = ' n\'est pas un nombre valide !';
$strNull = 'Null';
$strNumSearchResultsInTable = '%s occurence(s) dans la table <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total :</b> <i>%s</i> occurence(s)';
$strNumTables = 'Tables';
$strOK = 'OK';
$strOftenQuotation = 'Souvent des guillemets. OPTIONNEL signifie que seuls les champs de type char et varchar sont entourés par ce caractère.';
@@ -386,7 +387,7 @@ $strSubmit = 'Exécuter';
$strSuccess = 'Votre requête SQL a été exécutée avec succès';
$strSum = 'Somme';
$strTable = 'table ';
$strTable = 'Table';
$strTableComments = 'Commentaires sur la table';
$strTableEmpty = 'Le nom de la table est vide';
$strTableHasBeenDropped = 'La table %s a été effacée';
@@ -401,6 +402,7 @@ $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.';
$strTheTerminator = 'Le caractère qui sépare chacun des champs.';
$strTotal = 'total';
$strTotalUC = 'Total';
$strType = 'Type';
$strUncheckAll = 'Tout décocher';
@@ -433,6 +435,5 @@ $strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accès refusé';
$strYes = 'Oui';
$strZip = '"zippé"';
// To translate
?>

View File

@@ -388,7 +388,7 @@ $strSubmit = 'Submeter';
$strSuccess = 'O seu comando de SQL executou-se com <20>xito';
$strSum = 'Suma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Comentarios da tabela';
$strTableEmpty = 'O nome da tabela est<73> vac<61>o!';
$strTableHasBeenDropped = 'Eliminouse a tabela %s';
@@ -435,8 +435,11 @@ $strWrongUser = 'Usuario ou contrasinal errado. Acceso negado.';
$strYes = 'Si';
$strZip = 'comprimido no formato "zipped"';
// To translate
$strImportDocSQL = 'Import docSQL Files'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -389,7 +389,7 @@ $strSubmit = 'Submeter';
$strSuccess = 'O seu comando de SQL executou-se com éxito';
$strSum = 'Suma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Comentarios da tabela';
$strTableEmpty = 'O nome da tabela está vacío!';
$strTableHasBeenDropped = 'Eliminouse a tabela %s';
@@ -436,8 +436,11 @@ $strWrongUser = 'Usuario ou contrasinal errado. Acceso negado.';
$strYes = 'Si';
$strZip = 'comprimido no formato "zipped"';
// To translate
$strImportDocSQL = 'Import docSQL Files'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -453,4 +453,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -261,6 +261,7 @@ $strNoValidateSQL = 'SQL-Validierung umgehen';
$strNull = 'Null';
$strNumSearchResultsInTable = '%s Treffer in der Tabelle <i>%s</i>';
$strNumSearchResultsTotal = '<b>Insgesamt</b> <i>%s</i> Treffer';
$strNumTables = 'Tabellen';
$strOftenQuotation = 'H<>ufig Anf<6E>hrungszeichen. Optional bedeutet, dass nur Textfelder von den angegeben Zeichen eingeschlossen sind.';
$strOK = 'OK';
@@ -391,7 +392,7 @@ $strStructPropose = 'Tabellenstruktur analysieren';
$strStructure = 'Struktur';
$strSubmit = 'Abschicken';
$strSuccess = 'Ihr SQL-Befehl wurde erfolgreich ausgef<65>hrt.';
$strSum = 'Summe';
$strSum = 'Gesamt';
$strTable = 'Tabelle';
$strTableComments = 'Tabellen-Kommentar';
@@ -408,6 +409,7 @@ $strTheContent = 'Der Inhalt Ihrer Datei wurde eingef
$strTheContents = 'Der Inhalt der CSV-Datei ersetzt die Eintr<74>ge mit den gleichen Prim<69>r- oder Unique-Schl<68>sseln.';
$strTheTerminator = 'Der Trenner zwischen den Feldern.';
$strTotal = 'insgesamt';
$strTotalUC = 'Insgesamt';
$strType = 'Typ';
$strUncheckAll = 'Auswahl entfernen';

View File

@@ -262,6 +262,7 @@ $strNoValidateSQL = 'SQL-Validierung umgehen';
$strNull = 'Null';
$strNumSearchResultsInTable = '%s Treffer in der Tabelle <i>%s</i>';
$strNumSearchResultsTotal = '<b>Insgesamt</b> <i>%s</i> Treffer';
$strNumTables = 'Tabellen';
$strOftenQuotation = 'Häufig Anführungszeichen. Optional bedeutet, dass nur Textfelder von den angegeben Zeichen eingeschlossen sind.';
$strOK = 'OK';
@@ -392,7 +393,7 @@ $strStructPropose = 'Tabellenstruktur analysieren';
$strStructure = 'Struktur';
$strSubmit = 'Abschicken';
$strSuccess = 'Ihr SQL-Befehl wurde erfolgreich ausgeführt.';
$strSum = 'Summe';
$strSum = 'Gesamt';
$strTable = 'Tabelle';
$strTableComments = 'Tabellen-Kommentar';
@@ -409,6 +410,7 @@ $strTheContent = 'Der Inhalt Ihrer Datei wurde eingefügt.';
$strTheContents = 'Der Inhalt der CSV-Datei ersetzt die Einträge mit den gleichen Primär- oder Unique-Schlüsseln.';
$strTheTerminator = 'Der Trenner zwischen den Feldern.';
$strTotal = 'insgesamt';
$strTotalUC = 'Insgesamt';
$strType = 'Typ';
$strUncheckAll = 'Auswahl entfernen';

View File

@@ -452,4 +452,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -453,4 +453,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -450,4 +450,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -463,4 +463,7 @@ $strWebServerUploadDirectory = 'web-server upload directory'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
$strZip = '"zipped"' ; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -377,7 +377,7 @@ $strSubmit = 'V
$strSuccess = 'Az SQL-k<>r<EFBFBD>st sikeresen v<>grehajtottam';
$strSum = '<27>sszesen';
$strTable = 't<EFBFBD>bla ';
$strTable = 'T<EFBFBD>bla';
$strTableComments = 'T<>bla megjegyz<79>sek';
$strTableEmpty = 'A t<>blan<61>v helye <20>res!';
$strTableHasBeenDropped = '%s t<>bl<62>t eldobtam';
@@ -438,4 +438,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -378,7 +378,7 @@ $strSubmit = 'Végrehajt';
$strSuccess = 'Az SQL-kérést sikeresen végrehajtottam';
$strSum = 'Összesen';
$strTable = 'tábla ';
$strTable = 'Tábla';
$strTableComments = 'Tábla megjegyzések';
$strTableEmpty = 'A táblanév helye üres!';
$strTableHasBeenDropped = '%s táblát eldobtam';
@@ -439,4 +439,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -436,4 +436,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -437,4 +437,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -391,7 +391,7 @@ $strSubmit = 'Invia';
$strSuccess = 'La query <20> stata eseguita con successo';
$strSum = 'Totali';
$strTable = 'tabella ';
$strTable = 'Tabella';
$strTableComments = 'Commenti sulla tabella';
$strTableEmpty = 'Il nome della tabella <20> vuoto!';
$strTableHasBeenDropped = 'La tabella %s <20> stata eliminata';
@@ -440,5 +440,7 @@ $strYes = ' Si ';
$strZip = '"compresso con zip"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -392,7 +392,7 @@ $strSubmit = 'Invia';
$strSuccess = 'La query è stata eseguita con successo';
$strSum = 'Totali';
$strTable = 'tabella ';
$strTable = 'Tabella';
$strTableComments = 'Commenti sulla tabella';
$strTableEmpty = 'Il nome della tabella è vuoto!';
$strTableHasBeenDropped = 'La tabella %s è stata eliminata';
@@ -441,5 +441,7 @@ $strYes = ' Si ';
$strZip = '"compresso con zip"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -444,4 +444,6 @@ $strYes = '
$strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -444,4 +444,6 @@ $strYes = '
$strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -444,4 +444,6 @@ $strYes = 'はい';
$strZip = '"zipされる"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -452,4 +452,6 @@ $strValidatorError = 'The SQL validator could not be initialized. Please check i
$strWebServerUploadDirectory = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ε<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>丮'; //to translate
$strWebServerUploadDirectoryError = '<27><><EFBFBD>ε<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E4B8AE> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -386,7 +386,7 @@ $strSubmit = 'Siųsti';
$strSuccess = 'Jūsų SQL užklausa sėkmingai įvykdyta';
$strSum = 'Sumos';
$strTable = 'lentelė ';
$strTable = 'Lentelė';
$strTableComments = 'Lentelės komentarai';
$strTableEmpty = 'Tuščias lentelės vardas!';
$strTableHasBeenDropped = 'Lentelė %s panaikinta';
@@ -435,4 +435,6 @@ $strYes = 'Taip';
$strZip = '"zip"';
//To translate:
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -385,7 +385,7 @@ $strSubmit = 'Si
$strSuccess = 'J<>s<EFBFBD> SQL u<>klausa s<>kmingai <20>vykdyta';
$strSum = 'Sumos';
$strTable = 'lentel<EFBFBD> ';
$strTable = 'Lentel<EFBFBD>';
$strTableComments = 'Lentel<65>s komentarai';
$strTableEmpty = 'Tu<54><75>ias lentel<65>s vardas!';
$strTableHasBeenDropped = 'Lentel<65> %s panaikinta';
@@ -434,4 +434,6 @@ $strYes = 'Taip';
$strZip = '"zip"';
//To translate:
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -405,7 +405,7 @@ $strSubmit = 'Hantar';
$strSuccess = 'Kueri-SQL anda telah dilaksanakan dengan jaya';
$strSum = 'Jumlah';
$strTable = 'jadual ';
$strTable = 'Jadual';
$strTableComments = 'Komen jadual';
$strTableEmpty = 'Nama jadual adalah kosong';
$strTableHasBeenDropped = 'Jadual %s telah digugurkan';
@@ -453,4 +453,7 @@ $strYes = 'Ya';
$strZip = '"zipped"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -406,7 +406,7 @@ $strSubmit = 'Hantar';
$strSuccess = 'Kueri-SQL anda telah dilaksanakan dengan jaya';
$strSum = 'Jumlah';
$strTable = 'jadual ';
$strTable = 'Jadual';
$strTableComments = 'Komen jadual';
$strTableEmpty = 'Nama jadual adalah kosong';
$strTableHasBeenDropped = 'Jadual %s telah digugurkan';
@@ -454,4 +454,7 @@ $strYes = 'Ya';
$strZip = '"zipped"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -389,7 +389,7 @@ $strSubmit = 'Send';
$strSuccess = 'Kommandoen/sp<73>rringen er utf<74>rt';
$strSum = 'Sum';
$strTable = 'tabell ';
$strTable = 'Tabell';
$strTableComments = 'Tabell kommentarer';
$strTableEmpty = 'Tabellnavnet er tomt!';
$strTableHasBeenDropped = 'Tabellen %s har blitt slettet';

View File

@@ -390,7 +390,7 @@ $strSubmit = 'Send';
$strSuccess = 'Kommandoen/spørringen er utført';
$strSum = 'Sum';
$strTable = 'tabell ';
$strTable = 'Tabell';
$strTableComments = 'Tabell kommentarer';
$strTableEmpty = 'Tabellnavnet er tomt!';
$strTableHasBeenDropped = 'Tabellen %s har blitt slettet';
@@ -439,4 +439,6 @@ $strYes = 'Ja';
$strZip = 'Komprimert (zip)';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -385,7 +385,7 @@ $strSubmit = 'Wys
$strSuccess = 'Zapytanie SQL zosta<74>o pomy<6D>lnie wykonane';
$strSum = 'Suma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komentarze tabeli';
$strTableEmpty = 'Brak nazwy tabeli!';
$strTableHasBeenDropped = 'Tabela %s zosta<74>a usuni<6E>ta';
@@ -432,6 +432,8 @@ $strWrongUser = 'B
$strYes = 'Tak';
$strZip = '".zip"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -386,7 +386,7 @@ $strSubmit = 'Wysłanie';
$strSuccess = 'Zapytanie SQL zostało pomyślnie wykonane';
$strSum = 'Suma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komentarze tabeli';
$strTableEmpty = 'Brak nazwy tabeli!';
$strTableHasBeenDropped = 'Tabela %s została usunięta';

View File

@@ -371,7 +371,7 @@ $strSubmit = 'Submete';
$strSuccess = 'O seu comando SQL foi executado com sucesso';
$strSum = 'Soma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Coment<6E>rios da tabela';
$strTableEmpty = 'O nome da tabela est<73> vazio!';
$strTableHasBeenDropped = 'A tabela %s foi eliminada';
@@ -449,4 +449,6 @@ $strValidatorError = 'The SQL validator could not be initialized. Please check i
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -372,7 +372,7 @@ $strSubmit = 'Submete';
$strSuccess = 'O seu comando SQL foi executado com sucesso';
$strSum = 'Soma';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Comentários da tabela';
$strTableEmpty = 'O nome da tabela está vazio!';
$strTableHasBeenDropped = 'A tabela %s foi eliminada';
@@ -450,4 +450,6 @@ $strValidatorError = 'The SQL validator could not be initialized. Please check i
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -385,7 +385,7 @@ $strSubmit = 'Trimite';
$strSuccess = 'Comanda dumneavoastra SQL a fost executata cu succes';
$strSum = 'Sum';
$strTable = 'tabel ';
$strTable = 'Tabel';
$strTableComments = 'Comentarii tabel';
$strTableEmpty = 'Numele de tabel este gol!';
$strTableHasBeenDropped = 'Tabelul %s a fost aruncat';

View File

@@ -386,7 +386,7 @@ $strSubmit = 'Trimite';
$strSuccess = 'Comanda dumneavoastra SQL a fost executata cu succes';
$strSum = 'Sum';
$strTable = 'tabel ';
$strTable = 'Tabel';
$strTableComments = 'Comentarii tabel';
$strTableEmpty = 'Numele de tabel este gol!';
$strTableHasBeenDropped = 'Tabelul %s a fost aruncat';
@@ -433,6 +433,8 @@ $strWrongUser = 'Nume de utilizator/Parola incorecta. Accesul interzis.';
$strYes = 'Da';
$strZip = '"arhivat"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -439,4 +439,7 @@ $strYes = '
$strZip = '<27><><EFBFBD><EFBFBD><E0AEA2><EFBFBD> <20> zip';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -439,4 +439,7 @@ $strYes = '
$strZip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> zip';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -440,4 +440,7 @@ $strYes = 'Да';
$strZip = 'архивировать в zip';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -439,4 +439,7 @@ $strYes = '
$strZip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> zip';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -307,7 +307,7 @@ $strSubmit = 'Startuj';
$strSuccess = 'Vas SQL upit je uspesno izvrsen';
$strSum = 'Ukupno';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ima tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je obrisana';
@@ -456,4 +456,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -306,7 +306,7 @@ $strSubmit = 'Startuj';
$strSuccess = 'Vas SQL upit je uspesno izvrsen';
$strSum = 'Ukupno';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ima tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je obrisana';

View File

@@ -387,7 +387,7 @@ $strSubmit = 'Odo
$strSuccess = 'SQL dotaz bol <20>spe<70>ne vykonan<61>';
$strSum = 'Celkom';
$strTable = 'tabu<EFBFBD>ka ';
$strTable = 'Tabu<EFBFBD>ka';
$strTableComments = 'Koment<6E>r k tabu<62>ke';
$strTableEmpty = 'Tabu<62>ka je pr<70>zdna!';
$strTableHasBeenDropped = 'Tabu<62>ka %s bola odstr<74>nen<65>';
@@ -434,6 +434,8 @@ $strWrongUser = 'Zl
$strYes = '<27>no';
$strZip = '"zo zipovan<61>"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -388,7 +388,7 @@ $strSubmit = 'Odošli';
$strSuccess = 'SQL dotaz bol úspešne vykonaný';
$strSum = 'Celkom';
$strTable = 'tabuľka ';
$strTable = 'Tabuľka';
$strTableComments = 'Komentár k tabuľke';
$strTableEmpty = 'Tabuľka je prázdna!';
$strTableHasBeenDropped = 'Tabuľka %s bola odstránená';
@@ -435,6 +435,8 @@ $strWrongUser = 'Zlé používateľské meno alebo heslo. Prístup zamietnutý.'
$strYes = 'Áno';
$strZip = '"zo zipované"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -387,7 +387,7 @@ $strSubmit = 'Odo
$strSuccess = 'SQL dotaz bol <20>spe<70>ne vykonan<61>';
$strSum = 'Celkom';
$strTable = 'tabu<EFBFBD>ka ';
$strTable = 'Tabu<EFBFBD>ka';
$strTableComments = 'Koment<6E>r k tabu<62>ke';
$strTableEmpty = 'Tabu<62>ka je pr<70>zdna!';
$strTableHasBeenDropped = 'Tabu<62>ka %s bola odstr<74>nen<65>';

View File

@@ -389,7 +389,7 @@ $strSubmit = 'Po
$strSuccess = 'SQL-poizvedba je bila uspe<70>no izvedena';
$strSum = 'Vsota';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ime tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je zavr<76>ena';
@@ -436,6 +436,8 @@ $strWrongUser = 'Napa
$strYes = 'Da';
$strZip = '"zipano"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -390,7 +390,7 @@ $strSubmit = 'Pošlji';
$strSuccess = 'SQL-poizvedba je bila uspešno izvedena';
$strSum = 'Vsota';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ime tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je zavržena';
@@ -437,6 +437,8 @@ $strWrongUser = 'Napačno uporabniško ime/geslo. Dostop zavrnjen.';
$strYes = 'Da';
$strZip = '"zipano"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -389,7 +389,7 @@ $strSubmit = 'Po
$strSuccess = 'SQL-poizvedba je bila uspe<70>no izvedena';
$strSum = 'Vsota';
$strTable = 'tabela ';
$strTable = 'Tabela';
$strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ime tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je zavr<76>ena';

View File

@@ -384,7 +384,7 @@ $strSubmit = 'Enviar';
$strSuccess = 'Su consulta ha sido ejecutada con <20>xito';
$strSum = 'Tama<6D>o de las tablas';
$strTable = 'tabla ';
$strTable = 'Tabla';
$strTableComments = 'Comentarios de la tabla';
$strTableEmpty = '<27>El nombre de la tabla est<73> vac<61>o!';
$strTableHasBeenDropped = 'Se ha eliminado la tabla %s';
@@ -432,4 +432,7 @@ $strYes = 'S
$strZip = '"comprimido con zip"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -385,7 +385,7 @@ $strSubmit = 'Enviar';
$strSuccess = 'Su consulta ha sido ejecutada con éxito';
$strSum = 'Tamaño de las tablas';
$strTable = 'tabla ';
$strTable = 'Tabla';
$strTableComments = 'Comentarios de la tabla';
$strTableEmpty = '¡El nombre de la tabla está vacío!';
$strTableHasBeenDropped = 'Se ha eliminado la tabla %s';
@@ -433,4 +433,7 @@ $strYes = 'Sí';
$strZip = '"comprimido con zip"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -386,7 +386,7 @@ $strSubmit = 'S
$strSuccess = 'Din SQL-fr<66>ga utf<74>rdes korrekt';
$strSum = 'Summa';
$strTable = 'tabell ';
$strTable = 'Tabell';
$strTableComments = 'Tabellkommentarer';
$strTableEmpty = 'Tabellnamnet <20>r tomt!';
$strTableHasBeenDropped = 'Tabellen %s har tagits bort';

View File

@@ -387,7 +387,7 @@ $strSubmit = 'Sänd';
$strSuccess = 'Din SQL-fråga utfördes korrekt';
$strSum = 'Summa';
$strTable = 'tabell ';
$strTable = 'Tabell';
$strTableComments = 'Tabellkommentarer';
$strTableEmpty = 'Tabellnamnet är tomt!';
$strTableHasBeenDropped = 'Tabellen %s har tagits bort';
@@ -434,6 +434,8 @@ $strWrongUser = 'Fel användarnamn/lösenord. Åtkomst nekad.';
$strYes = 'Ja';
$strZip = '"zippad"';
// To translate
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -436,4 +436,8 @@ $strWrongUser = '͹حҵ
$strYes = '<27><><EFBFBD>';
$strZip = '"<22>١<EFBFBD>պ<EFBFBD>Ѵ<EFBFBD><D1B4><EFBFBD><EFBFBD> (zip)"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -437,4 +437,8 @@ $strWrongUser = 'อนุญาตให้เข้าใช้ไม่ได
$strYes = 'ใช่';
$strZip = '"ถูกบีบอัดอยู่ (zip)"';
// To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -370,7 +370,7 @@ $strSubmit = 'Onayla';
$strSuccess = 'SQL sorgunuz ba<62>ar<61>yla <20>al<61><6C>t<EFBFBD>r<EFBFBD>lm<6C><6D>t<EFBFBD>r';
$strSum = 'toplam';
$strTable = 'tablo ';
$strTable = 'Tablo';
$strTableComments = 'Tablo yorumlar<61>';
$strTableEmpty = 'Tablo ismi bo<62>!';
$strTableHasBeenDropped = '%s tablosu kald<6C>r<EFBFBD>lm<6C><6D>t<EFBFBD>r';

View File

@@ -371,7 +371,7 @@ $strSubmit = 'Onayla';
$strSuccess = 'SQL sorgunuz başarıyla çalıştırılmıştır';
$strSum = 'toplam';
$strTable = 'tablo ';
$strTable = 'Tablo';
$strTableComments = 'Tablo yorumları';
$strTableEmpty = 'Tablo ismi boş!';
$strTableHasBeenDropped = '%s tablosu kaldırılmıştır';
@@ -442,4 +442,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //to translate
$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -435,4 +435,6 @@ $strZip = 'запакувати в "zip"';
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -434,4 +434,6 @@ $strZip = '
// To translate
$strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?>

View File

@@ -183,19 +183,19 @@ while (list($key, $table) = each($the_tables)) {
<!-- TABLE INFORMATIONS -->
<table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
<tr>
<th width="50"><?php echo ucfirst($strField); ?></th>
<th width="50"><?php echo ucfirst($strType); ?></th>
<!--<th width="50"><?php echo ucfirst($strAttr); ?></th>-->
<th width="50"><?php echo ucfirst($strNull); ?></th>
<th width="50"><?php echo ucfirst($strDefault); ?></th>
<!--<th width="50"><?php echo ucfirst($strExtra); ?></th>-->
<th width="50"><?php echo $strField; ?></th>
<th width="50"><?php echo $strType; ?></th>
<!--<th width="50"><?php echo $strAttr; ?></th>-->
<th width="50"><?php echo $strNull; ?></th>
<th width="50"><?php echo $strDefault; ?></th>
<!--<th width="50"><?php echo $strExtra; ?></th>-->
<?php
echo "\n";
if ($have_rel) {
echo ' <th width="50">' . ucfirst($strLinksTo) . '</th>' . "\n";
echo ' <th width="50">' . $strLinksTo . '</th>' . "\n";
}
if ($cfgRelation['commwork']) {
echo ' <th width="400">' . ucfirst($strComments) . '</th>' . "\n";
echo ' <th width="400">' . $strComments . '</th>' . "\n";
}
?>
</tr>
@@ -414,7 +414,7 @@ while (list($key, $table) = each($the_tables)) {
<th colspan="2" align="center"><?php echo $strUsage; ?></th>
</tr>
<tr>
<td class="print" style="padding-right: 10px"><?php echo ucfirst($strData); ?></td>
<td class="print" style="padding-right: 10px"><?php echo $strData; ?></td>
<td align="right" class="print" nowrap="nowrap"><?php echo $data_size; ?></td>
<td class="print"><?php echo $data_unit; ?></td>
</tr>
@@ -423,7 +423,7 @@ while (list($key, $table) = each($the_tables)) {
echo "\n";
?>
<tr>
<td class="print" style="padding-right: 10px"><?php echo ucfirst($strIndex); ?></td>
<td class="print" style="padding-right: 10px"><?php echo $strIndex; ?></td>
<td align="right" class="print" nowrap="nowrap"><?php echo $index_size; ?></td>
<td class="print"><?php echo $index_unit; ?></td>
</tr>
@@ -433,12 +433,12 @@ while (list($key, $table) = each($the_tables)) {
echo "\n";
?>
<tr style="color: #bb0000">
<td class="print" style="padding-right: 10px"><?php echo ucfirst($strOverhead); ?></td>
<td class="print" style="padding-right: 10px"><?php echo $strOverhead; ?></td>
<td align="right" class="print" nowrap="nowrap"><?php echo $free_size; ?></td>
<td class="print"><?php echo $free_unit; ?></td>
</tr>
<tr>
<td class="print" style="padding-right: 10px"><?php echo ucfirst($strEffective); ?></td>
<td class="print" style="padding-right: 10px"><?php echo $strEffective; ?></td>
<td align="right" class="print" nowrap="nowrap"><?php echo $effect_size; ?></td>
<td class="print"><?php echo $effect_unit; ?></td>
</tr>
@@ -448,7 +448,7 @@ while (list($key, $table) = each($the_tables)) {
echo "\n";
?>
<tr>
<td class="print" style="padding-right: 10px"><?php echo ucfirst($strTotal); ?></td>
<td class="print" style="padding-right: 10px"><?php echo $strTotalUC; ?></td>
<td align="right" class="print" nowrap="nowrap"><?php echo $tot_size; ?></td>
<td class="print"><?php echo $tot_unit; ?></td>
</tr>

View File

@@ -65,13 +65,13 @@ $fields_cnt = mysql_num_rows($fields_rs);
<table border="<?php echo $cfg['Border']; ?>">
<tr>
<td></td>
<th>&nbsp;<?php echo ucfirst($strField); ?>&nbsp;</th>
<th><?php echo ucfirst($strType); ?></th>
<th><?php echo ucfirst($strAttr); ?></th>
<th><?php echo ucfirst($strNull); ?></th>
<th><?php echo ucfirst($strDefault); ?></th>
<th><?php echo ucfirst($strExtra); ?></th>
<th colspan="<?php echo((PMA_MYSQL_INT_VERSION >= 32323) ? '6' : '5'); ?>"><?php echo ucfirst($strAction); ?></th>
<th>&nbsp;<?php echo $strField; ?>&nbsp;</th>
<th><?php echo $strType; ?></th>
<th><?php echo $strAttr; ?></th>
<th><?php echo $strNull; ?></th>
<th><?php echo $strDefault; ?></th>
<th><?php echo $strExtra; ?></th>
<th colspan="<?php echo((PMA_MYSQL_INT_VERSION >= 32323) ? '6' : '5'); ?>"><?php echo $strAction; ?></th>
</tr>
<?php
@@ -332,7 +332,7 @@ if ($cfg['ShowStats']) {
<th colspan="2" align="center"><?php echo $strUsage; ?></th>
</tr>
<tr>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo ucfirst($strData); ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo $strData; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right" nowrap="nowrap"><?php echo $data_size; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><?php echo $data_unit; ?></td>
</tr>
@@ -341,7 +341,7 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo ucfirst($strIndex); ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo $strIndex; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right" nowrap="nowrap"><?php echo $index_size; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><?php echo $index_unit; ?></td>
</tr>
@@ -351,12 +351,12 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr style="color: #bb0000">
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo ucfirst($strOverhead); ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo $strOverhead; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right" nowrap="nowrap"><?php echo $free_size; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><?php echo $free_unit; ?></td>
</tr>
<tr>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" style="padding-right: 10px"><?php echo ucfirst($strEffective); ?></td>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" style="padding-right: 10px"><?php echo $strEffective; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right" nowrap="nowrap"><?php echo $effect_size; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><?php echo $effect_unit; ?></td>
</tr>
@@ -366,7 +366,7 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" style="padding-right: 10px"><?php echo ucfirst($strTotal); ?></td>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" style="padding-right: 10px"><?php echo $strTotalUC; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right" nowrap="nowrap"><?php echo $tot_size; ?></td>
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><?php echo $tot_unit; ?></td>
</tr>
@@ -404,7 +404,7 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo ucfirst($strFormat); ?></td>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strFormat; ?></td>
<td bgcolor="<?php echo $bgcolor; ?>" align="<?php echo $cell_align_left; ?>" nowrap="nowrap">
<?php
echo ' ';
@@ -428,7 +428,7 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo ucfirst($strRows); ?></td>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strRows; ?></td>
<td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
<?php echo number_format($showtable['Rows'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
</td>
@@ -440,7 +440,7 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo ucfirst($strRowLength); ?>&nbsp;&oslash;</td>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strRowLength; ?>&nbsp;&oslash;</td>
<td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
<?php echo number_format($showtable['Avg_row_length'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
</td>
@@ -452,7 +452,7 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo ucfirst($strRowSize); ?>&nbsp;&oslash;</td>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strRowSize; ?>&nbsp;&oslash;</td>
<td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
<?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
</td>
@@ -464,7 +464,7 @@ if ($cfg['ShowStats']) {
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo ucfirst($strNext); ?>&nbsp;Autoindex</td>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strNext; ?>&nbsp;Autoindex</td>
<td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
<?php echo number_format($showtable['Auto_increment'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
</td>