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$ $Id$
$Source$ $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> 2002-11-27 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php3: bug 644030 part 1: syntax error * libraries/sqlparser.lib.php3: bug 644030 part 1: syntax error
on a REVOKE on a REVOKE

View File

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

View File

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

View File

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

View File

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

View File

@@ -384,7 +384,7 @@ $strSubmit = 'Stuur';
$strSuccess = 'Jou SQL-navraag is suksesvol uitgevoer'; $strSuccess = 'Jou SQL-navraag is suksesvol uitgevoer';
$strSum = 'Som'; $strSum = 'Som';
$strTable = 'tabel '; $strTable = 'Tabel';
$strTableComments = 'Tabel kommentaar'; $strTableComments = 'Tabel kommentaar';
$strTableEmpty = 'Die tabel naam is leeg!'; $strTableEmpty = 'Die tabel naam is leeg!';
$strTableHasBeenDropped = 'Tabel %s is verwyder'; $strTableHasBeenDropped = 'Tabel %s is verwyder';
@@ -440,4 +440,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Jou SQL-navraag is suksesvol uitgevoer';
$strSum = 'Som'; $strSum = 'Som';
$strTable = 'tabel '; $strTable = 'Tabel';
$strTableComments = 'Tabel kommentaar'; $strTableComments = 'Tabel kommentaar';
$strTableEmpty = 'Die tabel naam is leeg!'; $strTableEmpty = 'Die tabel naam is leeg!';
$strTableHasBeenDropped = 'Tabel %s is verwyder'; $strTableHasBeenDropped = 'Tabel %s is verwyder';
@@ -441,4 +441,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Query u zbatua me sukses';
$strSum = 'Gjithsej'; $strSum = 'Gjithsej';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komente mbi tabel<65>n'; $strTableComments = 'Komente mbi tabel<65>n';
$strTableEmpty = 'Emri i tabel<65>s <20>sht<68> bosh!'; $strTableEmpty = 'Emri i tabel<65>s <20>sht<68> bosh!';
$strTableHasBeenDropped = 'Tabela %s u eleminua'; $strTableHasBeenDropped = 'Tabela %s u eleminua';
@@ -442,4 +442,6 @@ $strZip = '"kompresuar me zip"';
// To translate // To translate
$strCompression = 'Compression'; //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'; $strSuccess = 'Query u zbatua me sukses';
$strSum = 'Gjithsej'; $strSum = 'Gjithsej';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komente mbi tabelën'; $strTableComments = 'Komente mbi tabelën';
$strTableEmpty = 'Emri i tabelës është bosh!'; $strTableEmpty = 'Emri i tabelës është bosh!';
$strTableHasBeenDropped = 'Tabela %s u eleminua'; $strTableHasBeenDropped = 'Tabela %s u eleminua';
@@ -443,4 +443,6 @@ $strZip = '"kompresuar me zip"';
// To translate // To translate
$strCompression = 'Compression'; //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 $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 $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 $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 $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 $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 $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'; $strSuccess = 'Seu comando SQL foi executado com sucesso';
$strSum = 'Soma'; $strSum = 'Soma';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Coment<6E>rios da tabela'; $strTableComments = 'Coment<6E>rios da tabela';
$strTableEmpty = 'O Nome da Tabela est<73> vazio!'; $strTableEmpty = 'O Nome da Tabela est<73> vazio!';
$strTableHasBeenDropped = 'Tabela %s foi deletada'; $strTableHasBeenDropped = 'Tabela %s foi deletada';
@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Seu comando SQL foi executado com sucesso';
$strSum = 'Soma'; $strSum = 'Soma';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Comentários da tabela'; $strTableComments = 'Comentários da tabela';
$strTableEmpty = 'O Nome da Tabela está vazio!'; $strTableEmpty = 'O Nome da Tabela está vazio!';
$strTableHasBeenDropped = 'Tabela %s foi deletada'; $strTableHasBeenDropped = 'Tabela %s foi deletada';
@@ -455,4 +455,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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 $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 $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 $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 $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 $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 $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 $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 $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 $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'; $strSuccess = 'La vostra comanda SQL ha estat executada amb <20>xit';
$strSum = 'Suma'; $strSum = 'Suma';
$strTable = 'taula '; $strTable = 'Taula';
$strTableComments = 'Comentaris de la taula'; $strTableComments = 'Comentaris de la taula';
$strTableEmpty = 'El nom de la taula <20>s buit!'; $strTableEmpty = 'El nom de la taula <20>s buit!';
$strTableHasBeenDropped = 'S\'ha esborrat la taula %s'; $strTableHasBeenDropped = 'S\'ha esborrat la taula %s';
@@ -434,4 +434,6 @@ $strYes = 'Si';
$strZip = '"comprimit amb zip"'; $strZip = '"comprimit amb zip"';
// To translate // 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'; $strSuccess = 'La vostra comanda SQL ha estat executada amb èxit';
$strSum = 'Suma'; $strSum = 'Suma';
$strTable = 'taula '; $strTable = 'Taula';
$strTableComments = 'Comentaris de la taula'; $strTableComments = 'Comentaris de la taula';
$strTableEmpty = 'El nom de la taula és buit!'; $strTableEmpty = 'El nom de la taula és buit!';
$strTableHasBeenDropped = 'S\'ha esborrat la taula %s'; $strTableHasBeenDropped = 'S\'ha esborrat la taula %s';
@@ -435,4 +435,6 @@ $strYes = 'Si';
$strZip = '"comprimit amb zip"'; $strZip = '"comprimit amb zip"';
// To translate // To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

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

View File

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

View File

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

View File

@@ -437,4 +437,6 @@ $strZip = '"zipped"';
// To translate // To translate
$strCompression = 'Compression'; //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'; $strSuccess = 'Va<56> SQL upit je uspje<6A>no izvr<76>en';
$strSum = 'Ukupno'; $strSum = 'Ukupno';
$strTable = 'tablica '; $strTable = 'Tablica';
$strTableComments = 'Komentar tablice'; $strTableComments = 'Komentar tablice';
$strTableEmpty = 'Ime tablice je prazno!'; $strTableEmpty = 'Ime tablice je prazno!';
$strTableHasBeenDropped = 'Tablica %s je izbrisana'; $strTableHasBeenDropped = 'Tablica %s je izbrisana';
@@ -453,4 +453,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Vaš SQL upit je uspješno izvršen';
$strSum = 'Ukupno'; $strSum = 'Ukupno';
$strTable = 'tablica '; $strTable = 'Tablica';
$strTableComments = 'Komentar tablice'; $strTableComments = 'Komentar tablice';
$strTableEmpty = 'Ime tablice je prazno!'; $strTableEmpty = 'Ime tablice je prazno!';
$strTableHasBeenDropped = 'Tablica %s je izbrisana'; $strTableHasBeenDropped = 'Tablica %s je izbrisana';
@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Va<56> SQL upit je uspje<6A>no izvr<76>en';
$strSum = 'Ukupno'; $strSum = 'Ukupno';
$strTable = 'tablica '; $strTable = 'Tablica';
$strTableComments = 'Komentar tablice'; $strTableComments = 'Komentar tablice';
$strTableEmpty = 'Ime tablice je prazno!'; $strTableEmpty = 'Ime tablice je prazno!';
$strTableHasBeenDropped = 'Tablica %s je izbrisana'; $strTableHasBeenDropped = 'Tablica %s je izbrisana';
@@ -453,4 +453,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -390,7 +390,7 @@ $strSubmit = 'Ode
$strSuccess = 'V<><56> SQL-dotaz byl <20>sp<73><70>n<EFBFBD> vykon<6F>n'; $strSuccess = 'V<><56> SQL-dotaz byl <20>sp<73><70>n<EFBFBD> vykon<6F>n';
$strSum = 'Celkem'; $strSum = 'Celkem';
$strTable = 'Tabulka '; $strTable = 'Tabulka';
$strTableComments = 'Koment<6E><74>e k tabulce'; $strTableComments = 'Koment<6E><74>e k tabulce';
$strTableEmpty = 'Jm<4A>no tabulky je pr<70>zdn<64>!'; $strTableEmpty = 'Jm<4A>no tabulky je pr<70>zdn<64>!';
$strTableHasBeenDropped = 'Tabulka %s byla odstran<61>na'; $strTableHasBeenDropped = 'Tabulka %s byla odstran<61>na';
@@ -437,6 +437,9 @@ $strWrongUser = '
$strYes = 'Ano'; $strYes = 'Ano';
$strZip = '"zazipov<6F>no"'; $strZip = '"zazipov<6F>no"';
// To translate // To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -391,7 +391,7 @@ $strSubmit = 'Odešli';
$strSuccess = 'Váš SQL-dotaz byl úspěšně vykonán'; $strSuccess = 'Váš SQL-dotaz byl úspěšně vykonán';
$strSum = 'Celkem'; $strSum = 'Celkem';
$strTable = 'Tabulka '; $strTable = 'Tabulka';
$strTableComments = 'Komentáře k tabulce'; $strTableComments = 'Komentáře k tabulce';
$strTableEmpty = 'Jméno tabulky je prázdné!'; $strTableEmpty = 'Jméno tabulky je prázdné!';
$strTableHasBeenDropped = 'Tabulka %s byla odstraněna'; $strTableHasBeenDropped = 'Tabulka %s byla odstraněna';
@@ -438,6 +438,9 @@ $strWrongUser = 'Špatné uživatelské jméno/heslo. Přístup odepřen.';
$strYes = 'Ano'; $strYes = 'Ano';
$strZip = '"zazipováno"'; $strZip = '"zazipováno"';
// To translate // To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -437,6 +437,8 @@ $strWrongUser = '
$strYes = 'Ano'; $strYes = 'Ano';
$strZip = '"zazipov<6F>no"'; $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'; $strSuccess = 'Din SQL-foresp<73>rgsel blev udf<64>rt korrekt';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'Tabel: '; $strTable = 'Tabel';
$strTableComments = 'Tabel kommentarer'; $strTableComments = 'Tabel kommentarer';
$strTableEmpty = 'Intet tabelnavn!'; $strTableEmpty = 'Intet tabelnavn!';
$strTableHasBeenDropped = 'Tabel %s er slettet'; $strTableHasBeenDropped = 'Tabel %s er slettet';
@@ -448,4 +448,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Din SQL-forespørgsel blev udført korrekt';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'Tabel: '; $strTable = 'Tabel';
$strTableComments = 'Tabel kommentarer'; $strTableComments = 'Tabel kommentarer';
$strTableEmpty = 'Intet tabelnavn!'; $strTableEmpty = 'Intet tabelnavn!';
$strTableHasBeenDropped = 'Tabel %s er slettet'; $strTableHasBeenDropped = 'Tabel %s er slettet';
@@ -449,4 +449,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -389,7 +389,7 @@ $strSubmit = 'Verzenden';
$strSuccess = 'Uw SQL-query is succesvol uitgevoerd.'; $strSuccess = 'Uw SQL-query is succesvol uitgevoerd.';
$strSum = 'Som'; $strSum = 'Som';
$strTable = 'Tabel '; $strTable = 'Tabel';
$strTableComments = 'Tabel opmerkingen'; $strTableComments = 'Tabel opmerkingen';
$strTableEmpty = 'De tabel naam is leeg!'; $strTableEmpty = 'De tabel naam is leeg!';
$strTableHasBeenDropped = 'Tabel %s is vervallen'; $strTableHasBeenDropped = 'Tabel %s is vervallen';
@@ -438,4 +438,6 @@ $strYes = 'Ja';
$strZip = '"Gezipt"'; $strZip = '"Gezipt"';
// To translate // To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -390,7 +390,7 @@ $strSubmit = 'Verzenden';
$strSuccess = 'Uw SQL-query is succesvol uitgevoerd.'; $strSuccess = 'Uw SQL-query is succesvol uitgevoerd.';
$strSum = 'Som'; $strSum = 'Som';
$strTable = 'Tabel '; $strTable = 'Tabel';
$strTableComments = 'Tabel opmerkingen'; $strTableComments = 'Tabel opmerkingen';
$strTableEmpty = 'De tabel naam is leeg!'; $strTableEmpty = 'De tabel naam is leeg!';
$strTableHasBeenDropped = 'Tabel %s is vervallen'; $strTableHasBeenDropped = 'Tabel %s is vervallen';
@@ -439,4 +439,6 @@ $strYes = 'Ja';
$strZip = '"Gezipt"'; $strZip = '"Gezipt"';
// To translate // 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'; $strNull = 'Null';
$strNumSearchResultsInTable = '%s match(es) inside table <i>%s</i>'; $strNumSearchResultsInTable = '%s match(es) inside table <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> match(es)'; $strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> match(es)';
$strNumTables = 'Tables';
$strOK = 'OK'; $strOK = 'OK';
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; $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'; $strSuccess = 'Your SQL-query has been executed successfully';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'table '; $strTable = 'Table';
$strTableComments = 'Table comments'; $strTableComments = 'Table comments';
$strTableEmpty = 'The table name is empty!'; $strTableEmpty = 'The table name is empty!';
$strTableHasBeenDropped = 'Table %s has been dropped'; $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.'; $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.';
$strTotal = 'total'; $strTotal = 'total';
$strTotalUC = 'Total';
$strType = 'Type'; $strType = 'Type';
$strUncheckAll = 'Uncheck All'; $strUncheckAll = 'Uncheck All';

View File

@@ -254,6 +254,7 @@ $strNotValidNumber = ' is not a valid row number!';
$strNull = 'Null'; $strNull = 'Null';
$strNumSearchResultsInTable = '%s match(es) inside table <i>%s</i>'; $strNumSearchResultsInTable = '%s match(es) inside table <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> match(es)'; $strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> match(es)';
$strNumTables = 'Tables';
$strOK = 'OK'; $strOK = 'OK';
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; $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'; $strSuccess = 'Your SQL-query has been executed successfully';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'table '; $strTable = 'Table';
$strTableComments = 'Table comments'; $strTableComments = 'Table comments';
$strTableEmpty = 'The table name is empty!'; $strTableEmpty = 'The table name is empty!';
$strTableHasBeenDropped = 'Table %s has been dropped'; $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.'; $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.';
$strTotal = 'total'; $strTotal = 'total';
$strTotalUC = 'Total';
$strType = 'Type'; $strType = 'Type';
$strUncheckAll = 'Uncheck All'; $strUncheckAll = 'Uncheck All';

View File

@@ -381,7 +381,7 @@ $strSubmit = 'Vali';
$strSuccess = 'Teie SQL p<>ring t<>ideti edukalt'; $strSuccess = 'Teie SQL p<>ring t<>ideti edukalt';
$strSum = 'Summa'; $strSum = 'Summa';
$strTable = 'tabel '; $strTable = 'Tabel';
$strTableComments = 'Tabeli kommentaarid'; $strTableComments = 'Tabeli kommentaarid';
$strTableEmpty = 'Tabeli nimi on t<>hi!'; $strTableEmpty = 'Tabeli nimi on t<>hi!';
$strTableHasBeenDropped = 'Tabel %s kustutatud'; $strTableHasBeenDropped = 'Tabel %s kustutatud';
@@ -428,10 +428,13 @@ $strWrongUser = 'Vale kasutajanimi/parool. Ligip
$strYes = 'Jah'; $strYes = 'Jah';
$strZip = '"zipitud"'; $strZip = '"zipitud"';
// To translate // To translate
$strDataDict = 'Data Dictionary'; //to translate $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Teie SQL päring täideti edukalt';
$strSum = 'Summa'; $strSum = 'Summa';
$strTable = 'tabel '; $strTable = 'Tabel';
$strTableComments = 'Tabeli kommentaarid'; $strTableComments = 'Tabeli kommentaarid';
$strTableEmpty = 'Tabeli nimi on tühi!'; $strTableEmpty = 'Tabeli nimi on tühi!';
$strTableHasBeenDropped = 'Tabel %s kustutatud'; $strTableHasBeenDropped = 'Tabel %s kustutatud';
@@ -429,10 +429,13 @@ $strWrongUser = 'Vale kasutajanimi/parool. Ligipääd keelatud.';
$strYes = 'Jah'; $strYes = 'Jah';
$strZip = '"zipitud"'; $strZip = '"zipitud"';
// To translate // To translate
$strDataDict = 'Data Dictionary'; //to translate $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'SQL-lause on suoritettu';
$strSum = 'Summa'; $strSum = 'Summa';
$strTable = 'taulu '; $strTable = 'Taulu';
$strTableComments = 'Kommentoi taulua'; $strTableComments = 'Kommentoi taulua';
$strTableEmpty = 'Taulun nimi puuttuu!'; $strTableEmpty = 'Taulun nimi puuttuu!';
$strTableHasBeenDropped = 'Taulu %s on pudotettu'; $strTableHasBeenDropped = 'Taulu %s on pudotettu';
@@ -432,9 +432,13 @@ $strYes = 'Kyll
$strZip = '"zip-pakattu"'; $strZip = '"zip-pakattu"';
// To translate
$strImportDocSQL = 'Import docSQL Files'; //to translate $strImportDocSQL = 'Import docSQL Files'; //to translate
$strDataDict = 'Data Dictionary'; //to translate $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'SQL-lause on suoritettu';
$strSum = 'Summa'; $strSum = 'Summa';
$strTable = 'taulu '; $strTable = 'Taulu';
$strTableComments = 'Kommentoi taulua'; $strTableComments = 'Kommentoi taulua';
$strTableEmpty = 'Taulun nimi puuttuu!'; $strTableEmpty = 'Taulun nimi puuttuu!';
$strTableHasBeenDropped = 'Taulu %s on pudotettu'; $strTableHasBeenDropped = 'Taulu %s on pudotettu';
@@ -433,9 +433,13 @@ $strYes = 'Kyllä';
$strZip = '"zip-pakattu"'; $strZip = '"zip-pakattu"';
// To translate
$strImportDocSQL = 'Import docSQL Files'; //to translate $strImportDocSQL = 'Import docSQL Files'; //to translate
$strDataDict = 'Data Dictionary'; //to translate $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strNull = 'Null';
$strNumSearchResultsInTable = '%s occurence(s) dans la table <i>%s</i>'; $strNumSearchResultsInTable = '%s occurence(s) dans la table <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total :</b> <i>%s</i> occurence(s)'; $strNumSearchResultsTotal = '<b>Total :</b> <i>%s</i> occurence(s)';
$strNumTables = 'Tables';
$strOK = 'OK'; $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.'; $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'; $strSuccess = 'Votre requ<71>te SQL a <20>t<EFBFBD> ex<65>cut<75>e avec succ<63>s';
$strSum = 'Somme'; $strSum = 'Somme';
$strTable = 'table '; $strTable = 'Table';
$strTableComments = 'Commentaires sur la table'; $strTableComments = 'Commentaires sur la table';
$strTableEmpty = 'Le nom de la table est vide'; $strTableEmpty = 'Le nom de la table est vide';
$strTableHasBeenDropped = 'La table %s a <20>t<EFBFBD> effac<61>e'; $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.'; $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.';
$strTotal = 'total'; $strTotal = 'total';
$strTotalUC = 'Total';
$strType = 'Type'; $strType = 'Type';
$strUncheckAll = 'Tout d<>cocher'; $strUncheckAll = 'Tout d<>cocher';
@@ -432,6 +434,5 @@ $strWrongUser = 'Erreur d\'utilisateur/mot de passe. Acc
$strYes = 'Oui'; $strYes = 'Oui';
$strZip = '"zipp<70>"'; $strZip = '"zipp<70>"';
// To translate
?> ?>

View File

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

View File

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

View File

@@ -261,6 +261,7 @@ $strNoValidateSQL = 'SQL-Validierung umgehen';
$strNull = 'Null'; $strNull = 'Null';
$strNumSearchResultsInTable = '%s Treffer in der Tabelle <i>%s</i>'; $strNumSearchResultsInTable = '%s Treffer in der Tabelle <i>%s</i>';
$strNumSearchResultsTotal = '<b>Insgesamt</b> <i>%s</i> Treffer'; $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.'; $strOftenQuotation = 'H<>ufig Anf<6E>hrungszeichen. Optional bedeutet, dass nur Textfelder von den angegeben Zeichen eingeschlossen sind.';
$strOK = 'OK'; $strOK = 'OK';
@@ -391,9 +392,9 @@ $strStructPropose = 'Tabellenstruktur analysieren';
$strStructure = 'Struktur'; $strStructure = 'Struktur';
$strSubmit = 'Abschicken'; $strSubmit = 'Abschicken';
$strSuccess = 'Ihr SQL-Befehl wurde erfolgreich ausgef<65>hrt.'; $strSuccess = 'Ihr SQL-Befehl wurde erfolgreich ausgef<65>hrt.';
$strSum = 'Summe'; $strSum = 'Gesamt';
$strTable = 'Tabelle '; $strTable = 'Tabelle';
$strTableComments = 'Tabellen-Kommentar'; $strTableComments = 'Tabellen-Kommentar';
$strTableEmpty = 'Der Tabellenname ist leer!'; $strTableEmpty = 'Der Tabellenname ist leer!';
$strTableHasBeenDropped = 'Die Tabelle %s wurde gel<65>scht.'; $strTableHasBeenDropped = 'Die Tabelle %s wurde gel<65>scht.';
@@ -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.'; $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.'; $strTheTerminator = 'Der Trenner zwischen den Feldern.';
$strTotal = 'insgesamt'; $strTotal = 'insgesamt';
$strTotalUC = 'Insgesamt';
$strType = 'Typ'; $strType = 'Typ';
$strUncheckAll = 'Auswahl entfernen'; $strUncheckAll = 'Auswahl entfernen';

View File

@@ -262,6 +262,7 @@ $strNoValidateSQL = 'SQL-Validierung umgehen';
$strNull = 'Null'; $strNull = 'Null';
$strNumSearchResultsInTable = '%s Treffer in der Tabelle <i>%s</i>'; $strNumSearchResultsInTable = '%s Treffer in der Tabelle <i>%s</i>';
$strNumSearchResultsTotal = '<b>Insgesamt</b> <i>%s</i> Treffer'; $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.'; $strOftenQuotation = 'Häufig Anführungszeichen. Optional bedeutet, dass nur Textfelder von den angegeben Zeichen eingeschlossen sind.';
$strOK = 'OK'; $strOK = 'OK';
@@ -392,9 +393,9 @@ $strStructPropose = 'Tabellenstruktur analysieren';
$strStructure = 'Struktur'; $strStructure = 'Struktur';
$strSubmit = 'Abschicken'; $strSubmit = 'Abschicken';
$strSuccess = 'Ihr SQL-Befehl wurde erfolgreich ausgeführt.'; $strSuccess = 'Ihr SQL-Befehl wurde erfolgreich ausgeführt.';
$strSum = 'Summe'; $strSum = 'Gesamt';
$strTable = 'Tabelle '; $strTable = 'Tabelle';
$strTableComments = 'Tabellen-Kommentar'; $strTableComments = 'Tabellen-Kommentar';
$strTableEmpty = 'Der Tabellenname ist leer!'; $strTableEmpty = 'Der Tabellenname ist leer!';
$strTableHasBeenDropped = 'Die Tabelle %s wurde gelöscht.'; $strTableHasBeenDropped = 'Die Tabelle %s wurde gelöscht.';
@@ -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.'; $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.'; $strTheTerminator = 'Der Trenner zwischen den Feldern.';
$strTotal = 'insgesamt'; $strTotal = 'insgesamt';
$strTotalUC = 'Insgesamt';
$strType = 'Typ'; $strType = 'Typ';
$strUncheckAll = 'Auswahl entfernen'; $strUncheckAll = 'Auswahl entfernen';

View File

@@ -452,4 +452,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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 $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 $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 $strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -344,7 +344,7 @@ $strSubmit = '
$strSuccess = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>- SQL <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'; $strSuccess = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>- SQL <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strSum = '<27><><EFBFBD><EFBFBD><EFBFBD>'; $strSum = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$strTable = '<27><><EFBFBD><EFBFBD> '; $strTable = '<27><><EFBFBD><EFBFBD>';
$strTableComments = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>'; $strTableComments = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$strTableEmpty = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> !'; $strTableEmpty = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> !';
$strTableHasBeenDropped = '<27><><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD><EFBFBD>'; $strTableHasBeenDropped = '<27><><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD><EFBFBD>';
@@ -450,4 +450,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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 $strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
$strZip = '"zipped"' ; //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'; $strSuccess = 'Az SQL-k<>r<EFBFBD>st sikeresen v<>grehajtottam';
$strSum = '<27>sszesen'; $strSum = '<27>sszesen';
$strTable = 't<EFBFBD>bla '; $strTable = 'T<EFBFBD>bla';
$strTableComments = 'T<>bla megjegyz<79>sek'; $strTableComments = 'T<>bla megjegyz<79>sek';
$strTableEmpty = 'A t<>blan<61>v helye <20>res!'; $strTableEmpty = 'A t<>blan<61>v helye <20>res!';
$strTableHasBeenDropped = '%s t<>bl<62>t eldobtam'; $strTableHasBeenDropped = '%s t<>bl<62>t eldobtam';
@@ -438,4 +438,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Az SQL-kérést sikeresen végrehajtottam';
$strSum = 'Összesen'; $strSum = 'Összesen';
$strTable = 'tábla '; $strTable = 'Tábla';
$strTableComments = 'Tábla megjegyzések'; $strTableComments = 'Tábla megjegyzések';
$strTableEmpty = 'A táblanév helye üres!'; $strTableEmpty = 'A táblanév helye üres!';
$strTableHasBeenDropped = '%s táblát eldobtam'; $strTableHasBeenDropped = '%s táblát eldobtam';
@@ -439,4 +439,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -383,7 +383,7 @@ $strSubmit = 'Kirim';
$strSuccess = 'Perintah SQL telah dilaksanakan dengan sukses'; $strSuccess = 'Perintah SQL telah dilaksanakan dengan sukses';
$strSum = 'Jumlah'; $strSum = 'Jumlah';
$strTable = 'Tabel '; $strTable = 'Tabel';
$strTableComments = 'Komentar tabel'; $strTableComments = 'Komentar tabel';
$strTableEmpty = 'Nama tabel kosong!'; $strTableEmpty = 'Nama tabel kosong!';
$strTableHasBeenDropped = 'Tabel %s telah dihapus'; $strTableHasBeenDropped = 'Tabel %s telah dihapus';
@@ -436,4 +436,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -384,7 +384,7 @@ $strSubmit = 'Kirim';
$strSuccess = 'Perintah SQL telah dilaksanakan dengan sukses'; $strSuccess = 'Perintah SQL telah dilaksanakan dengan sukses';
$strSum = 'Jumlah'; $strSum = 'Jumlah';
$strTable = 'Tabel '; $strTable = 'Tabel';
$strTableComments = 'Komentar tabel'; $strTableComments = 'Komentar tabel';
$strTableEmpty = 'Nama tabel kosong!'; $strTableEmpty = 'Nama tabel kosong!';
$strTableHasBeenDropped = 'Tabel %s telah dihapus'; $strTableHasBeenDropped = 'Tabel %s telah dihapus';
@@ -437,4 +437,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'La query <20> stata eseguita con successo';
$strSum = 'Totali'; $strSum = 'Totali';
$strTable = 'tabella '; $strTable = 'Tabella';
$strTableComments = 'Commenti sulla tabella'; $strTableComments = 'Commenti sulla tabella';
$strTableEmpty = 'Il nome della tabella <20> vuoto!'; $strTableEmpty = 'Il nome della tabella <20> vuoto!';
$strTableHasBeenDropped = 'La tabella %s <20> stata eliminata'; $strTableHasBeenDropped = 'La tabella %s <20> stata eliminata';
@@ -440,5 +440,7 @@ $strYes = ' Si ';
$strZip = '"compresso con zip"'; $strZip = '"compresso con zip"';
// To translate // 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'; $strSuccess = 'La query è stata eseguita con successo';
$strSum = 'Totali'; $strSum = 'Totali';
$strTable = 'tabella '; $strTable = 'Tabella';
$strTableComments = 'Commenti sulla tabella'; $strTableComments = 'Commenti sulla tabella';
$strTableEmpty = 'Il nome della tabella è vuoto!'; $strTableEmpty = 'Il nome della tabella è vuoto!';
$strTableHasBeenDropped = 'La tabella %s è stata eliminata'; $strTableHasBeenDropped = 'La tabella %s è stata eliminata';
@@ -441,5 +441,7 @@ $strYes = ' Si ';
$strZip = '"compresso con zip"'; $strZip = '"compresso con zip"';
// To translate // 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>"'; $strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
// To translate // 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>"'; $strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
// To translate // To translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -444,4 +444,6 @@ $strYes = 'はい';
$strZip = '"zipされる"'; $strZip = '"zipされる"';
// To translate // 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 $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 $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

@@ -306,7 +306,7 @@ $strSubmit = 'Nosūtīt';
$strSuccess = 'Jūsu SQL-vaicājums tika veiksmīgi izpildīts'; $strSuccess = 'Jūsu SQL-vaicājums tika veiksmīgi izpildīts';
$strSum = 'Kopumā'; $strSum = 'Kopumā';
$strTable = 'Tabula '; $strTable = 'Tabula';
$strTableComments = 'Komentārs tabulai'; $strTableComments = 'Komentārs tabulai';
$strTableEmpty = 'Tabulas nosaukums nav norādīts!'; $strTableEmpty = 'Tabulas nosaukums nav norādīts!';
$strTableHasBeenDropped = 'Tabula %s tika izdzēsta'; $strTableHasBeenDropped = 'Tabula %s tika izdzēsta';
@@ -454,4 +454,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

@@ -305,7 +305,7 @@ $strSubmit = 'Nos
$strSuccess = 'J<>su SQL-vaic<69>jums tika veiksm<73>gi izpild<6C>ts'; $strSuccess = 'J<>su SQL-vaic<69>jums tika veiksm<73>gi izpild<6C>ts';
$strSum = 'Kopum<75>'; $strSum = 'Kopum<75>';
$strTable = 'Tabula '; $strTable = 'Tabula';
$strTableComments = 'Koment<6E>rs tabulai'; $strTableComments = 'Koment<6E>rs tabulai';
$strTableEmpty = 'Tabulas nosaukums nav nor<6F>d<EFBFBD>ts!'; $strTableEmpty = 'Tabulas nosaukums nav nor<6F>d<EFBFBD>ts!';
$strTableHasBeenDropped = 'Tabula %s tika izdz<64>sta'; $strTableHasBeenDropped = 'Tabula %s tika izdz<64>sta';

View File

@@ -386,7 +386,7 @@ $strSubmit = 'Siųsti';
$strSuccess = 'Jūsų SQL užklausa sėkmingai įvykdyta'; $strSuccess = 'Jūsų SQL užklausa sėkmingai įvykdyta';
$strSum = 'Sumos'; $strSum = 'Sumos';
$strTable = 'lentelė '; $strTable = 'Lentelė';
$strTableComments = 'Lentelės komentarai'; $strTableComments = 'Lentelės komentarai';
$strTableEmpty = 'Tuščias lentelės vardas!'; $strTableEmpty = 'Tuščias lentelės vardas!';
$strTableHasBeenDropped = 'Lentelė %s panaikinta'; $strTableHasBeenDropped = 'Lentelė %s panaikinta';
@@ -435,4 +435,6 @@ $strYes = 'Taip';
$strZip = '"zip"'; $strZip = '"zip"';
//To translate: //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'; $strSuccess = 'J<>s<EFBFBD> SQL u<>klausa s<>kmingai <20>vykdyta';
$strSum = 'Sumos'; $strSum = 'Sumos';
$strTable = 'lentel<EFBFBD> '; $strTable = 'Lentel<EFBFBD>';
$strTableComments = 'Lentel<65>s komentarai'; $strTableComments = 'Lentel<65>s komentarai';
$strTableEmpty = 'Tu<54><75>ias lentel<65>s vardas!'; $strTableEmpty = 'Tu<54><75>ias lentel<65>s vardas!';
$strTableHasBeenDropped = 'Lentel<65> %s panaikinta'; $strTableHasBeenDropped = 'Lentel<65> %s panaikinta';
@@ -434,4 +434,6 @@ $strYes = 'Taip';
$strZip = '"zip"'; $strZip = '"zip"';
//To translate: //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'; $strSuccess = 'Kueri-SQL anda telah dilaksanakan dengan jaya';
$strSum = 'Jumlah'; $strSum = 'Jumlah';
$strTable = 'jadual '; $strTable = 'Jadual';
$strTableComments = 'Komen jadual'; $strTableComments = 'Komen jadual';
$strTableEmpty = 'Nama jadual adalah kosong'; $strTableEmpty = 'Nama jadual adalah kosong';
$strTableHasBeenDropped = 'Jadual %s telah digugurkan'; $strTableHasBeenDropped = 'Jadual %s telah digugurkan';
@@ -453,4 +453,7 @@ $strYes = 'Ya';
$strZip = '"zipped"'; $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'; $strSuccess = 'Kueri-SQL anda telah dilaksanakan dengan jaya';
$strSum = 'Jumlah'; $strSum = 'Jumlah';
$strTable = 'jadual '; $strTable = 'Jadual';
$strTableComments = 'Komen jadual'; $strTableComments = 'Komen jadual';
$strTableEmpty = 'Nama jadual adalah kosong'; $strTableEmpty = 'Nama jadual adalah kosong';
$strTableHasBeenDropped = 'Jadual %s telah digugurkan'; $strTableHasBeenDropped = 'Jadual %s telah digugurkan';
@@ -454,4 +454,7 @@ $strYes = 'Ya';
$strZip = '"zipped"'; $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'; $strSuccess = 'Kommandoen/sp<73>rringen er utf<74>rt';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'tabell '; $strTable = 'Tabell';
$strTableComments = 'Tabell kommentarer'; $strTableComments = 'Tabell kommentarer';
$strTableEmpty = 'Tabellnavnet er tomt!'; $strTableEmpty = 'Tabellnavnet er tomt!';
$strTableHasBeenDropped = 'Tabellen %s har blitt slettet'; $strTableHasBeenDropped = 'Tabellen %s har blitt slettet';

View File

@@ -390,7 +390,7 @@ $strSubmit = 'Send';
$strSuccess = 'Kommandoen/spørringen er utført'; $strSuccess = 'Kommandoen/spørringen er utført';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'tabell '; $strTable = 'Tabell';
$strTableComments = 'Tabell kommentarer'; $strTableComments = 'Tabell kommentarer';
$strTableEmpty = 'Tabellnavnet er tomt!'; $strTableEmpty = 'Tabellnavnet er tomt!';
$strTableHasBeenDropped = 'Tabellen %s har blitt slettet'; $strTableHasBeenDropped = 'Tabellen %s har blitt slettet';
@@ -439,4 +439,6 @@ $strYes = 'Ja';
$strZip = 'Komprimert (zip)'; $strZip = 'Komprimert (zip)';
// To translate // 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'; $strSuccess = 'Zapytanie SQL zosta<74>o pomy<6D>lnie wykonane';
$strSum = 'Suma'; $strSum = 'Suma';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komentarze tabeli'; $strTableComments = 'Komentarze tabeli';
$strTableEmpty = 'Brak nazwy tabeli!'; $strTableEmpty = 'Brak nazwy tabeli!';
$strTableHasBeenDropped = 'Tabela %s zosta<74>a usuni<6E>ta'; $strTableHasBeenDropped = 'Tabela %s zosta<74>a usuni<6E>ta';
@@ -432,6 +432,8 @@ $strWrongUser = 'B
$strYes = 'Tak'; $strYes = 'Tak';
$strZip = '".zip"'; $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'; $strSuccess = 'Zapytanie SQL zostało pomyślnie wykonane';
$strSum = 'Suma'; $strSum = 'Suma';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komentarze tabeli'; $strTableComments = 'Komentarze tabeli';
$strTableEmpty = 'Brak nazwy tabeli!'; $strTableEmpty = 'Brak nazwy tabeli!';
$strTableHasBeenDropped = 'Tabela %s została usunięta'; $strTableHasBeenDropped = 'Tabela %s została usunięta';

View File

@@ -371,7 +371,7 @@ $strSubmit = 'Submete';
$strSuccess = 'O seu comando SQL foi executado com sucesso'; $strSuccess = 'O seu comando SQL foi executado com sucesso';
$strSum = 'Soma'; $strSum = 'Soma';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Coment<6E>rios da tabela'; $strTableComments = 'Coment<6E>rios da tabela';
$strTableEmpty = 'O nome da tabela est<73> vazio!'; $strTableEmpty = 'O nome da tabela est<73> vazio!';
$strTableHasBeenDropped = 'A tabela %s foi eliminada'; $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 $strWebServerUploadDirectory = 'web-server upload directory'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //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'; $strSuccess = 'O seu comando SQL foi executado com sucesso';
$strSum = 'Soma'; $strSum = 'Soma';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Comentários da tabela'; $strTableComments = 'Comentários da tabela';
$strTableEmpty = 'O nome da tabela está vazio!'; $strTableEmpty = 'O nome da tabela está vazio!';
$strTableHasBeenDropped = 'A tabela %s foi eliminada'; $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 $strWebServerUploadDirectory = 'web-server upload directory'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //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'; $strSuccess = 'Comanda dumneavoastra SQL a fost executata cu succes';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'tabel '; $strTable = 'Tabel';
$strTableComments = 'Comentarii tabel'; $strTableComments = 'Comentarii tabel';
$strTableEmpty = 'Numele de tabel este gol!'; $strTableEmpty = 'Numele de tabel este gol!';
$strTableHasBeenDropped = 'Tabelul %s a fost aruncat'; $strTableHasBeenDropped = 'Tabelul %s a fost aruncat';

View File

@@ -386,7 +386,7 @@ $strSubmit = 'Trimite';
$strSuccess = 'Comanda dumneavoastra SQL a fost executata cu succes'; $strSuccess = 'Comanda dumneavoastra SQL a fost executata cu succes';
$strSum = 'Sum'; $strSum = 'Sum';
$strTable = 'tabel '; $strTable = 'Tabel';
$strTableComments = 'Comentarii tabel'; $strTableComments = 'Comentarii tabel';
$strTableEmpty = 'Numele de tabel este gol!'; $strTableEmpty = 'Numele de tabel este gol!';
$strTableHasBeenDropped = 'Tabelul %s a fost aruncat'; $strTableHasBeenDropped = 'Tabelul %s a fost aruncat';
@@ -433,6 +433,8 @@ $strWrongUser = 'Nume de utilizator/Parola incorecta. Accesul interzis.';
$strYes = 'Da'; $strYes = 'Da';
$strZip = '"arhivat"'; $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'; $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'; $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'; $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'; $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'; $strSuccess = 'Vas SQL upit je uspesno izvrsen';
$strSum = 'Ukupno'; $strSum = 'Ukupno';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komentar tabele'; $strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ima tabele je prazno!'; $strTableEmpty = 'Ima tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je obrisana'; $strTableHasBeenDropped = 'Tabela %s je obrisana';
@@ -456,4 +456,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $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'; $strSuccess = 'Vas SQL upit je uspesno izvrsen';
$strSum = 'Ukupno'; $strSum = 'Ukupno';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komentar tabele'; $strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ima tabele je prazno!'; $strTableEmpty = 'Ima tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je obrisana'; $strTableHasBeenDropped = 'Tabela %s je obrisana';

View File

@@ -387,7 +387,7 @@ $strSubmit = 'Odo
$strSuccess = 'SQL dotaz bol <20>spe<70>ne vykonan<61>'; $strSuccess = 'SQL dotaz bol <20>spe<70>ne vykonan<61>';
$strSum = 'Celkom'; $strSum = 'Celkom';
$strTable = 'tabu<EFBFBD>ka '; $strTable = 'Tabu<EFBFBD>ka';
$strTableComments = 'Koment<6E>r k tabu<62>ke'; $strTableComments = 'Koment<6E>r k tabu<62>ke';
$strTableEmpty = 'Tabu<62>ka je pr<70>zdna!'; $strTableEmpty = 'Tabu<62>ka je pr<70>zdna!';
$strTableHasBeenDropped = 'Tabu<62>ka %s bola odstr<74>nen<65>'; $strTableHasBeenDropped = 'Tabu<62>ka %s bola odstr<74>nen<65>';
@@ -434,6 +434,8 @@ $strWrongUser = 'Zl
$strYes = '<27>no'; $strYes = '<27>no';
$strZip = '"zo zipovan<61>"'; $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ý'; $strSuccess = 'SQL dotaz bol úspešne vykonaný';
$strSum = 'Celkom'; $strSum = 'Celkom';
$strTable = 'tabuľka '; $strTable = 'Tabuľka';
$strTableComments = 'Komentár k tabuľke'; $strTableComments = 'Komentár k tabuľke';
$strTableEmpty = 'Tabuľka je prázdna!'; $strTableEmpty = 'Tabuľka je prázdna!';
$strTableHasBeenDropped = 'Tabuľka %s bola odstránená'; $strTableHasBeenDropped = 'Tabuľka %s bola odstránená';
@@ -435,6 +435,8 @@ $strWrongUser = 'Zlé používateľské meno alebo heslo. Prístup zamietnutý.'
$strYes = 'Áno'; $strYes = 'Áno';
$strZip = '"zo zipované"'; $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>'; $strSuccess = 'SQL dotaz bol <20>spe<70>ne vykonan<61>';
$strSum = 'Celkom'; $strSum = 'Celkom';
$strTable = 'tabu<EFBFBD>ka '; $strTable = 'Tabu<EFBFBD>ka';
$strTableComments = 'Koment<6E>r k tabu<62>ke'; $strTableComments = 'Koment<6E>r k tabu<62>ke';
$strTableEmpty = 'Tabu<62>ka je pr<70>zdna!'; $strTableEmpty = 'Tabu<62>ka je pr<70>zdna!';
$strTableHasBeenDropped = 'Tabu<62>ka %s bola odstr<74>nen<65>'; $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'; $strSuccess = 'SQL-poizvedba je bila uspe<70>no izvedena';
$strSum = 'Vsota'; $strSum = 'Vsota';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komentar tabele'; $strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ime tabele je prazno!'; $strTableEmpty = 'Ime tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je zavr<76>ena'; $strTableHasBeenDropped = 'Tabela %s je zavr<76>ena';
@@ -436,6 +436,8 @@ $strWrongUser = 'Napa
$strYes = 'Da'; $strYes = 'Da';
$strZip = '"zipano"'; $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'; $strSuccess = 'SQL-poizvedba je bila uspešno izvedena';
$strSum = 'Vsota'; $strSum = 'Vsota';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komentar tabele'; $strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ime tabele je prazno!'; $strTableEmpty = 'Ime tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je zavržena'; $strTableHasBeenDropped = 'Tabela %s je zavržena';
@@ -437,6 +437,8 @@ $strWrongUser = 'Napačno uporabniško ime/geslo. Dostop zavrnjen.';
$strYes = 'Da'; $strYes = 'Da';
$strZip = '"zipano"'; $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'; $strSuccess = 'SQL-poizvedba je bila uspe<70>no izvedena';
$strSum = 'Vsota'; $strSum = 'Vsota';
$strTable = 'tabela '; $strTable = 'Tabela';
$strTableComments = 'Komentar tabele'; $strTableComments = 'Komentar tabele';
$strTableEmpty = 'Ime tabele je prazno!'; $strTableEmpty = 'Ime tabele je prazno!';
$strTableHasBeenDropped = 'Tabela %s je zavr<76>ena'; $strTableHasBeenDropped = 'Tabela %s je zavr<76>ena';

View File

@@ -384,7 +384,7 @@ $strSubmit = 'Enviar';
$strSuccess = 'Su consulta ha sido ejecutada con <20>xito'; $strSuccess = 'Su consulta ha sido ejecutada con <20>xito';
$strSum = 'Tama<6D>o de las tablas'; $strSum = 'Tama<6D>o de las tablas';
$strTable = 'tabla '; $strTable = 'Tabla';
$strTableComments = 'Comentarios de la tabla'; $strTableComments = 'Comentarios de la tabla';
$strTableEmpty = '<27>El nombre de la tabla est<73> vac<61>o!'; $strTableEmpty = '<27>El nombre de la tabla est<73> vac<61>o!';
$strTableHasBeenDropped = 'Se ha eliminado la tabla %s'; $strTableHasBeenDropped = 'Se ha eliminado la tabla %s';
@@ -432,4 +432,7 @@ $strYes = 'S
$strZip = '"comprimido con zip"'; $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'; $strSuccess = 'Su consulta ha sido ejecutada con éxito';
$strSum = 'Tamaño de las tablas'; $strSum = 'Tamaño de las tablas';
$strTable = 'tabla '; $strTable = 'Tabla';
$strTableComments = 'Comentarios de la tabla'; $strTableComments = 'Comentarios de la tabla';
$strTableEmpty = '¡El nombre de la tabla está vacío!'; $strTableEmpty = '¡El nombre de la tabla está vacío!';
$strTableHasBeenDropped = 'Se ha eliminado la tabla %s'; $strTableHasBeenDropped = 'Se ha eliminado la tabla %s';
@@ -433,4 +433,7 @@ $strYes = 'Sí';
$strZip = '"comprimido con zip"'; $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'; $strSuccess = 'Din SQL-fr<66>ga utf<74>rdes korrekt';
$strSum = 'Summa'; $strSum = 'Summa';
$strTable = 'tabell '; $strTable = 'Tabell';
$strTableComments = 'Tabellkommentarer'; $strTableComments = 'Tabellkommentarer';
$strTableEmpty = 'Tabellnamnet <20>r tomt!'; $strTableEmpty = 'Tabellnamnet <20>r tomt!';
$strTableHasBeenDropped = 'Tabellen %s har tagits bort'; $strTableHasBeenDropped = 'Tabellen %s har tagits bort';

View File

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

View File

@@ -436,4 +436,8 @@ $strWrongUser = '͹حҵ
$strYes = '<27><><EFBFBD>'; $strYes = '<27><><EFBFBD>';
$strZip = '"<22>١<EFBFBD>պ<EFBFBD>Ѵ<EFBFBD><D1B4><EFBFBD><EFBFBD> (zip)"'; $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 = 'ใช่'; $strYes = 'ใช่';
$strZip = '"ถูกบีบอัดอยู่ (zip)"'; $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'; $strSuccess = 'SQL sorgunuz ba<62>ar<61>yla <20>al<61><6C>t<EFBFBD>r<EFBFBD>lm<6C><6D>t<EFBFBD>r';
$strSum = 'toplam'; $strSum = 'toplam';
$strTable = 'tablo '; $strTable = 'Tablo';
$strTableComments = 'Tablo yorumlar<61>'; $strTableComments = 'Tablo yorumlar<61>';
$strTableEmpty = 'Tablo ismi bo<62>!'; $strTableEmpty = 'Tablo ismi bo<62>!';
$strTableHasBeenDropped = '%s tablosu kald<6C>r<EFBFBD>lm<6C><6D>t<EFBFBD>r'; $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'; $strSuccess = 'SQL sorgunuz başarıyla çalıştırılmıştır';
$strSum = 'toplam'; $strSum = 'toplam';
$strTable = 'tablo '; $strTable = 'Tablo';
$strTableComments = 'Tablo yorumları'; $strTableComments = 'Tablo yorumları';
$strTableEmpty = 'Tablo ismi boş!'; $strTableEmpty = 'Tablo ismi boş!';
$strTableHasBeenDropped = '%s tablosu kaldırılmıştır'; $strTableHasBeenDropped = '%s tablosu kaldırılmıştır';
@@ -442,4 +442,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strPrint = 'Print'; //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 $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 $strCompression = 'Compression'; //to translate
$strNumTables = 'Tables'; //to translate
$strTotalUC = 'Total'; //to translate
?> ?>

View File

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

View File

@@ -434,4 +434,6 @@ $strZip = '
// To translate // To translate
$strCompression = 'Compression'; //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 INFORMATIONS -->
<table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white"> <table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
<tr> <tr>
<th width="50"><?php echo ucfirst($strField); ?></th> <th width="50"><?php echo $strField; ?></th>
<th width="50"><?php echo ucfirst($strType); ?></th> <th width="50"><?php echo $strType; ?></th>
<!--<th width="50"><?php echo ucfirst($strAttr); ?></th>--> <!--<th width="50"><?php echo $strAttr; ?></th>-->
<th width="50"><?php echo ucfirst($strNull); ?></th> <th width="50"><?php echo $strNull; ?></th>
<th width="50"><?php echo ucfirst($strDefault); ?></th> <th width="50"><?php echo $strDefault; ?></th>
<!--<th width="50"><?php echo ucfirst($strExtra); ?></th>--> <!--<th width="50"><?php echo $strExtra; ?></th>-->
<?php <?php
echo "\n"; echo "\n";
if ($have_rel) { if ($have_rel) {
echo ' <th width="50">' . ucfirst($strLinksTo) . '</th>' . "\n"; echo ' <th width="50">' . $strLinksTo . '</th>' . "\n";
} }
if ($cfgRelation['commwork']) { if ($cfgRelation['commwork']) {
echo ' <th width="400">' . ucfirst($strComments) . '</th>' . "\n"; echo ' <th width="400">' . $strComments . '</th>' . "\n";
} }
?> ?>
</tr> </tr>
@@ -414,7 +414,7 @@ while (list($key, $table) = each($the_tables)) {
<th colspan="2" align="center"><?php echo $strUsage; ?></th> <th colspan="2" align="center"><?php echo $strUsage; ?></th>
</tr> </tr>
<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 align="right" class="print" nowrap="nowrap"><?php echo $data_size; ?></td>
<td class="print"><?php echo $data_unit; ?></td> <td class="print"><?php echo $data_unit; ?></td>
</tr> </tr>
@@ -423,7 +423,7 @@ while (list($key, $table) = each($the_tables)) {
echo "\n"; echo "\n";
?> ?>
<tr> <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 align="right" class="print" nowrap="nowrap"><?php echo $index_size; ?></td>
<td class="print"><?php echo $index_unit; ?></td> <td class="print"><?php echo $index_unit; ?></td>
</tr> </tr>
@@ -433,12 +433,12 @@ while (list($key, $table) = each($the_tables)) {
echo "\n"; echo "\n";
?> ?>
<tr style="color: #bb0000"> <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 align="right" class="print" nowrap="nowrap"><?php echo $free_size; ?></td>
<td class="print"><?php echo $free_unit; ?></td> <td class="print"><?php echo $free_unit; ?></td>
</tr> </tr>
<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 align="right" class="print" nowrap="nowrap"><?php echo $effect_size; ?></td>
<td class="print"><?php echo $effect_unit; ?></td> <td class="print"><?php echo $effect_unit; ?></td>
</tr> </tr>
@@ -448,7 +448,7 @@ while (list($key, $table) = each($the_tables)) {
echo "\n"; echo "\n";
?> ?>
<tr> <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 align="right" class="print" nowrap="nowrap"><?php echo $tot_size; ?></td>
<td class="print"><?php echo $tot_unit; ?></td> <td class="print"><?php echo $tot_unit; ?></td>
</tr> </tr>

View File

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