Support for saving to file on server (part of RFE #730197).

This commit is contained in:
Michal Čihař
2003-05-13 16:27:16 +00:00
parent 57e72b0541
commit bf88b4e077
100 changed files with 737 additions and 33 deletions

View File

@@ -1,3 +1,4 @@
config.inc.developer.php3
phpmyadmin.wpj
upload
save

View File

@@ -36,6 +36,10 @@ $Source$
parameters.
* libraries/build_dump.lib.php3: Fix eporting without backquotes (bug
#737023).
* .cvsignore, config.inc.php3, db_details_db_info.php3, tbl_dump.php3,
lang/*, libraries/common.lib.php3, libraries/display_export.lib.php3,
Documentation.html: Support for saving to file on server (part of RFE
#730197).
2003-05-12 Garvin Hicking <me@supergarv.de>
* queryframe.php3: Remove left/bottom margin to better fit the link title

View File

@@ -1510,6 +1510,19 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
<br /><br />
</dd>
<dt><b>$cfg['SaveDir'] </b>string</dt>
<dd>
The name of the directory, ending with a slash, where dumps can
be saved.
<br /><br />
Please note that the directory has to be writable for user running
webserver.
<br /><br />
Please note that if PHP is running in safe mode, this directory must
be owned by the same user as the owner of the phpMyAdmin scripts.
<br /><br />
</dd>
<dt><b>$cfg['RepeatCells'] </b>integer</dt>
<dd>
Repeat the headers every X cells, or 0 to deactivate.

View File

@@ -440,6 +440,9 @@ $cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLVa
$cfg['UploadDir'] = ''; // for example, './upload/'; you must end it with
// a slash, and you leave it empty for no upload
// directory
$cfg['SaveDir'] = ''; // for example, './save/'; you must end it with
// a slash, and you leave it empty for no save
// directory
/**

View File

@@ -7,6 +7,7 @@
* tables if possible
*/
// staybyte: speedup view on locked tables - 11 June 2001
$tables = array();
if (PMA_MYSQL_INT_VERSION >= 32303) {
// Special speedup for newer MySQL Versions (in 4.0 format changed)
if ($cfg['SkipLockedTables'] == TRUE && PMA_MYSQL_INT_VERSION >= 32330) {

View File

@@ -643,4 +643,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -644,4 +644,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -635,4 +635,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -636,4 +636,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -658,4 +658,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -657,4 +657,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -657,4 +657,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -658,4 +658,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -650,4 +650,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -651,4 +651,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -650,4 +650,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -632,4 +632,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -655,4 +655,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -654,4 +654,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -635,4 +635,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -634,4 +634,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -656,4 +656,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -657,4 +657,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -656,4 +656,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -80,6 +80,8 @@ $strBzError = 'phpMyAdminovi se nepoda
$strBzip = '"zabzipov<6F>no"';
$strCSVOptions = 'Nastaven<65> CSV exportu';
$strCanNotOpenFile = 'Nelze otev<65><76>t soubor %s pro z<>pis, zkontrolujte nastaven<65>.';
$strCanNotWriteFile = 'Nelze zapisovat do souboru %s, zkontrolujte nastaven<65>.';
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />pros<6F>m zkontolujte nastaven<65> PHP';
$strCantLoadMySQL = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> pro MySQL,<br />pros<6F>m zkontrolujte nastaven<65> PHP.';
@@ -120,6 +122,7 @@ $strConnections = 'P
$strCookiesRequired = 'B<>hem tohoto kroku mus<75>te m<>t povoleny cookies.';
$strCopyTable = 'Kop<6F>rovat tabulku do (datab<61>ze<b>.</b>tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkop<6F>rov<6F>na do %s.';
$strCopyTableSameNames = 'Nelze kop<6F>rovat tabulku na sebe samu!';
$strCouldNotKill = 'phpMyAdminovi se nepoda<64>ilo zab<61>t vl<76>kno %s. Pravd<76>podobne jeho b<>h ji<6A> skon<6F>il.';
$strCreate = 'Vytvo<76>it';
$strCreateIndex = 'Vytvo<76>it index na&nbsp;%s&nbsp;sloupc<70>ch';
@@ -180,8 +183,9 @@ $strDropSelectedDatabases = 'Zru
$strDropTable = 'Smazat tabulku';
$strDropUsersDb = 'Odstranit datab<61>ze se stejn<6A>mi jm<6A>ny jako u<>ivatel<65>.';
$strDumpComments = 'Vlo<6C>it koment<6E><74>e ke sloupc<70>m jako SQL koment<6E><74>e';
$strDumpSaved = 'V<>pis byl ulo<6C>en do souboru %s.';
$strDumpXRows = 'Vypsat %s <20><>dk<64> od %s.';
$strDumpingData = 'Dumpuji data pro tabulku';
$strDumpingData = 'Vypisuji data pro tabulku';
$strDynamic = 'dynamick<63>';
$strEdit = 'Upravit';
@@ -210,10 +214,12 @@ $strFieldsEmpty = ' Nebyl zad
$strFieldsEnclosedBy = 'N<>zvy sloupc<70> uzav<61>en<65> do';
$strFieldsEscapedBy = 'N<>zvy sloupc<70> escapov<6F>ny';
$strFieldsTerminatedBy = 'Sloupce odd<64>len<65>';
$strFileAlreadyExists = 'Soubor %s ji<6A> na serveru existuje, zm<7A>nt<6E> jm<6A>no souboru, nebo zvolte p<>eps<70>n<EFBFBD> souboru.';
$strFileCouldNotBeRead = 'Soubor nelze p<>e<EFBFBD><65>st';
$strFileNameTemplate = 'Vzor pro jm<6A>no souboru';
$strFileNameTemplateHelp = 'Pou<6F>ijte __DB__ pro jm<6A>no datab<61>ze, __TABLE__ pro jm<6A>no tabulky a jak<61>koliv parametry pro %sfunkci strftime%s pro vlo<6C>en<65> data. P<><50>pona souboru bude automaticky p<>id<69>na podle typu. Jak<61>koliv jin<69> text bude zachov<6F>n.';
$strFileNameTemplateRemember = 'zapamatovat si hodnotu';
$strFileNotWriteble = 'Do souboru %s nelze zapisovat, zkontrolujte nastaven<65>.';
$strFixed = 'pevn<76>';
$strFlushPrivilegesNote = 'Pozn<7A>mka: phpMyAdmin z<>sk<73>v<EFBFBD> opr<70>vn<76>n<EFBFBD> p<><70>mo z&nbsp;tabulek MySQL. Obsah t<>chto tabulek se m<><6D>e li<6C>it od opr<70>vn<76>n<EFBFBD>, kter<65> server pr<70>v<EFBFBD> pou<6F><75>v<EFBFBD>, pokud byly tyto tabulky upravov<6F>ny. V&nbsp;tomto p<><70>pad<61> je vhodn<64> prov<6F>st %sznovuna<6E>ten<65> opr<70>vn<76>n<EFBFBD>%s p<>ed pokra<72>ov<6F>n<EFBFBD>m.';
$strFlushTable = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> pro tabulku ("FLUSH")';
@@ -311,6 +317,8 @@ $strModifyIndexTopic = 'Upravit index';
$strMoreStatusVars = 'Dal<61><6C> informace o&nbsp;stavu';
$strMoveTable = 'P<>esunout tabulku do (datab<61>ze<b>.</b>tabulka):';
$strMoveTableOK = 'Tabulka %s byla p<>esunuta do %s.';
$strMoveTableSameNames = 'Nelze p<>eunout tabulku na sebe samu!';
$strMustSelectFile = 'Zvolte soubor, kter<65> chcete vlo<6C>it.';
$strMySQLCharset = 'Znakov<6F> sada v&nbsp;MySQL';
$strMySQLReloaded = 'MySQL znovu na<6E>teno.';
$strMySQLSaid = 'MySQL hl<68>s<EFBFBD>: ';
@@ -360,6 +368,7 @@ $strOptionally = 'Voliteln
$strOptions = 'Vlastnosti';
$strOr = 'nebo';
$strOverhead = 'Nav<61>c';
$strOverwriteExisting = 'P<>epsat existuj<75>c<EFBFBD> soubor(y)';
$strPHP40203 = 'Pou<6F><75>v<EFBFBD>te PHP 4.2.3, kter<65> m<> z<>va<76>nou chybu p<>i pr<70>ci s&nbsp;v<>cebajtov<6F>mi znaky (mbsting), jedn<64> se o&nbsp;chybu PHP <20><>slo 19404. Nedoporu<72>ujeme pou<6F><75>vat tuto verzi PHP s&nbsp;phpMyAdminem.';
$strPHPVersion = 'Verze PHP';
@@ -486,6 +495,7 @@ $strSQPBugInvalidIdentifer = 'Chybn
$strSQPBugUnclosedQuote = 'Neuzav<61>en<65> uvozovky';
$strSQPBugUnknownPunctuation = 'Nezn<7A>m<EFBFBD> interpunk<6E>n<EFBFBD> znam<61>nko';
$strSave = 'Ulo<6C>';
$strSaveOnServer = 'Ulo<6C>it na serveru v adres<65><73>i %s';
$strScaleFactorSmall = 'M<><4D><EFBFBD>tko je p<><70>li<6C> mal<61>, aby se sch<63>ma ve<76>lo na jednu str<74>nku';
$strSearch = 'Vyhled<65>v<EFBFBD>n<EFBFBD>';
$strSearchFormTitle = 'Vyhled<65>v<EFBFBD>n<EFBFBD> v&nbsp;datab<61>zi';
@@ -503,7 +513,7 @@ $strSelectAll = 'Vybrat v
$strSelectFields = 'Zvolte sloupec (alespo<70> jeden):';
$strSelectNumRows = 'v&nbsp;dotazu';
$strSelectTables = 'Vybrat tabulky';
$strSend = 'Poslat';
$strSend = 'Do souboru';
$strSent = 'Odesl<73>no';
$strServer = 'Server %s';
$strServerChoice = 'V<>b<EFBFBD>r serveru';
@@ -633,7 +643,4 @@ $strZeroRemovesTheLimit = 'Pozn
$strZip = '"zazipov<6F>no"';
// To translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
?>

View File

@@ -81,6 +81,8 @@ $strBzError = 'phpMyAdminovi se nepodařilo zkomprimovat výpis, protože rozš
$strBzip = '"zabzipováno"';
$strCSVOptions = 'Nastavení CSV exportu';
$strCanNotOpenFile = 'Nelze otevřít soubor %s pro zápis, zkontrolujte nastavení.';
$strCanNotWriteFile = 'Nelze zapisovat do souboru %s, zkontrolujte nastavení.';
$strCannotLogin = 'Nepodařilo se přihlášení k MySQL serveru';
$strCantLoad = 'nelze nahrát rozšíření %s,<br />prosím zkontolujte nastavení PHP';
$strCantLoadMySQL = 'nelze nahrát rozšíření pro MySQL,<br />prosím zkontrolujte nastavení PHP.';
@@ -121,6 +123,7 @@ $strConnections = 'Připojení';
$strCookiesRequired = 'Během tohoto kroku musíte mít povoleny cookies.';
$strCopyTable = 'Kopírovat tabulku do (databáze<b>.</b>tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkopírována do %s.';
$strCopyTableSameNames = 'Nelze kopírovat tabulku na sebe samu!';
$strCouldNotKill = 'phpMyAdminovi se nepodařilo zabít vlákno %s. Pravděpodobne jeho běh již skončil.';
$strCreate = 'Vytvořit';
$strCreateIndex = 'Vytvořit index na&nbsp;%s&nbsp;sloupcích';
@@ -181,8 +184,9 @@ $strDropSelectedDatabases = 'Zrušit vybranou databázi';
$strDropTable = 'Smazat tabulku';
$strDropUsersDb = 'Odstranit databáze se stejnými jmény jako uživatelé.';
$strDumpComments = 'Vložit komentáře ke sloupcům jako SQL komentáře';
$strDumpSaved = 'Výpis byl uložen do souboru %s.';
$strDumpXRows = 'Vypsat %s řádků od %s.';
$strDumpingData = 'Dumpuji data pro tabulku';
$strDumpingData = 'Vypisuji data pro tabulku';
$strDynamic = 'dynamický';
$strEdit = 'Upravit';
@@ -211,10 +215,12 @@ $strFieldsEmpty = ' Nebyl zadán počet sloupců! ';
$strFieldsEnclosedBy = 'Názvy sloupců uzavřené do';
$strFieldsEscapedBy = 'Názvy sloupců escapovány';
$strFieldsTerminatedBy = 'Sloupce oddělené';
$strFileAlreadyExists = 'Soubor %s již na serveru existuje, změntě jméno souboru, nebo zvolte přepsání souboru.';
$strFileCouldNotBeRead = 'Soubor nelze přečíst';
$strFileNameTemplate = 'Vzor pro jméno souboru';
$strFileNameTemplateHelp = 'Použijte __DB__ pro jméno databáze, __TABLE__ pro jméno tabulky a jakékoliv parametry pro %sfunkci strftime%s pro vložení data. Přípona souboru bude automaticky přidána podle typu. Jakýkoliv jiný text bude zachován.';
$strFileNameTemplateRemember = 'zapamatovat si hodnotu';
$strFileNotWriteble = 'Do souboru %s nelze zapisovat, zkontrolujte nastavení.';
$strFixed = 'pevný';
$strFlushPrivilegesNote = 'Poznámka: phpMyAdmin získává oprávnění přímo z&nbsp;tabulek MySQL. Obsah těchto tabulek se může lišit od oprávnění, která server právě používá, pokud byly tyto tabulky upravovány. V&nbsp;tomto případě je vhodné provést %sznovunačtení oprávnění%s před pokračováním.';
$strFlushTable = 'Vyprázdnit vyrovnávací paměť pro tabulku ("FLUSH")';
@@ -312,6 +318,8 @@ $strModifyIndexTopic = 'Upravit index';
$strMoreStatusVars = 'Další informace o&nbsp;stavu';
$strMoveTable = 'Přesunout tabulku do (databáze<b>.</b>tabulka):';
$strMoveTableOK = 'Tabulka %s byla přesunuta do %s.';
$strMoveTableSameNames = 'Nelze přeunout tabulku na sebe samu!';
$strMustSelectFile = 'Zvolte soubor, který chcete vložit.';
$strMySQLCharset = 'Znaková sada v&nbsp;MySQL';
$strMySQLReloaded = 'MySQL znovu načteno.';
$strMySQLSaid = 'MySQL hlásí: ';
@@ -361,6 +369,7 @@ $strOptionally = 'Volitelně';
$strOptions = 'Vlastnosti';
$strOr = 'nebo';
$strOverhead = 'Navíc';
$strOverwriteExisting = 'Přepsat existující soubor(y)';
$strPHP40203 = 'Používáte PHP 4.2.3, které má závažnou chybu při práci s&nbsp;vícebajtovými znaky (mbsting), jedná se o&nbsp;chybu PHP číslo 19404. Nedoporučujeme používat tuto verzi PHP s&nbsp;phpMyAdminem.';
$strPHPVersion = 'Verze PHP';
@@ -487,6 +496,7 @@ $strSQPBugInvalidIdentifer = 'Chybný identifikátor';
$strSQPBugUnclosedQuote = 'Neuzavřené uvozovky';
$strSQPBugUnknownPunctuation = 'Neznámé interpunkční znaménko';
$strSave = 'Ulož';
$strSaveOnServer = 'Uložit na serveru v adresáři %s';
$strScaleFactorSmall = 'Měřítko je příliš malé, aby se schéma vešlo na jednu stránku';
$strSearch = 'Vyhledávání';
$strSearchFormTitle = 'Vyhledávání v&nbsp;databázi';
@@ -504,7 +514,7 @@ $strSelectAll = 'Vybrat vše';
$strSelectFields = 'Zvolte sloupec (alespoň jeden):';
$strSelectNumRows = 'v&nbsp;dotazu';
$strSelectTables = 'Vybrat tabulky';
$strSend = 'Poslat';
$strSend = 'Do souboru';
$strSent = 'Odesláno';
$strServer = 'Server %s';
$strServerChoice = 'Výběr serveru';
@@ -634,7 +644,4 @@ $strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu)
$strZip = '"zazipováno"';
// To translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
?>

View File

@@ -80,6 +80,8 @@ $strBzError = 'phpMyAdminovi se nepoda
$strBzip = '"zabzipov<6F>no"';
$strCSVOptions = 'Nastaven<65> CSV exportu';
$strCanNotOpenFile = 'Nelze otev<65><76>t soubor %s pro z<>pis, zkontrolujte nastaven<65>.';
$strCanNotWriteFile = 'Nelze zapisovat do souboru %s, zkontrolujte nastaven<65>.';
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />pros<6F>m zkontolujte nastaven<65> PHP';
$strCantLoadMySQL = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> pro MySQL,<br />pros<6F>m zkontrolujte nastaven<65> PHP.';
@@ -120,6 +122,7 @@ $strConnections = 'P
$strCookiesRequired = 'B<>hem tohoto kroku mus<75>te m<>t povoleny cookies.';
$strCopyTable = 'Kop<6F>rovat tabulku do (datab<61>ze<b>.</b>tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkop<6F>rov<6F>na do %s.';
$strCopyTableSameNames = 'Nelze kop<6F>rovat tabulku na sebe samu!';
$strCouldNotKill = 'phpMyAdminovi se nepoda<64>ilo zab<61>t vl<76>kno %s. Pravd<76>podobne jeho b<>h ji<6A> skon<6F>il.';
$strCreate = 'Vytvo<76>it';
$strCreateIndex = 'Vytvo<76>it index na&nbsp;%s&nbsp;sloupc<70>ch';
@@ -180,8 +183,9 @@ $strDropSelectedDatabases = 'Zru
$strDropTable = 'Smazat tabulku';
$strDropUsersDb = 'Odstranit datab<61>ze se stejn<6A>mi jm<6A>ny jako u<>ivatel<65>.';
$strDumpComments = 'Vlo<6C>it koment<6E><74>e ke sloupc<70>m jako SQL koment<6E><74>e';
$strDumpSaved = 'V<>pis byl ulo<6C>en do souboru %s.';
$strDumpXRows = 'Vypsat %s <20><>dk<64> od %s.';
$strDumpingData = 'Dumpuji data pro tabulku';
$strDumpingData = 'Vypisuji data pro tabulku';
$strDynamic = 'dynamick<63>';
$strEdit = 'Upravit';
@@ -210,10 +214,12 @@ $strFieldsEmpty = ' Nebyl zad
$strFieldsEnclosedBy = 'N<>zvy sloupc<70> uzav<61>en<65> do';
$strFieldsEscapedBy = 'N<>zvy sloupc<70> escapov<6F>ny';
$strFieldsTerminatedBy = 'Sloupce odd<64>len<65>';
$strFileAlreadyExists = 'Soubor %s ji<6A> na serveru existuje, zm<7A>nt<6E> jm<6A>no souboru, nebo zvolte p<>eps<70>n<EFBFBD> souboru.';
$strFileCouldNotBeRead = 'Soubor nelze p<>e<EFBFBD><65>st';
$strFileNameTemplate = 'Vzor pro jm<6A>no souboru';
$strFileNameTemplateHelp = 'Pou<6F>ijte __DB__ pro jm<6A>no datab<61>ze, __TABLE__ pro jm<6A>no tabulky a jak<61>koliv parametry pro %sfunkci strftime%s pro vlo<6C>en<65> data. P<><50>pona souboru bude automaticky p<>id<69>na podle typu. Jak<61>koliv jin<69> text bude zachov<6F>n.';
$strFileNameTemplateRemember = 'zapamatovat si hodnotu';
$strFileNotWriteble = 'Do souboru %s nelze zapisovat, zkontrolujte nastaven<65>.';
$strFixed = 'pevn<76>';
$strFlushPrivilegesNote = 'Pozn<7A>mka: phpMyAdmin z<>sk<73>v<EFBFBD> opr<70>vn<76>n<EFBFBD> p<><70>mo z&nbsp;tabulek MySQL. Obsah t<>chto tabulek se m<><6D>e li<6C>it od opr<70>vn<76>n<EFBFBD>, kter<65> server pr<70>v<EFBFBD> pou<6F><75>v<EFBFBD>, pokud byly tyto tabulky upravov<6F>ny. V&nbsp;tomto p<><70>pad<61> je vhodn<64> prov<6F>st %sznovuna<6E>ten<65> opr<70>vn<76>n<EFBFBD>%s p<>ed pokra<72>ov<6F>n<EFBFBD>m.';
$strFlushTable = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> pro tabulku ("FLUSH")';
@@ -311,6 +317,8 @@ $strModifyIndexTopic = 'Upravit index';
$strMoreStatusVars = 'Dal<61><6C> informace o&nbsp;stavu';
$strMoveTable = 'P<>esunout tabulku do (datab<61>ze<b>.</b>tabulka):';
$strMoveTableOK = 'Tabulka %s byla p<>esunuta do %s.';
$strMoveTableSameNames = 'Nelze p<>eunout tabulku na sebe samu!';
$strMustSelectFile = 'Zvolte soubor, kter<65> chcete vlo<6C>it.';
$strMySQLCharset = 'Znakov<6F> sada v&nbsp;MySQL';
$strMySQLReloaded = 'MySQL znovu na<6E>teno.';
$strMySQLSaid = 'MySQL hl<68>s<EFBFBD>: ';
@@ -360,6 +368,7 @@ $strOptionally = 'Voliteln
$strOptions = 'Vlastnosti';
$strOr = 'nebo';
$strOverhead = 'Nav<61>c';
$strOverwriteExisting = 'P<>epsat existuj<75>c<EFBFBD> soubor(y)';
$strPHP40203 = 'Pou<6F><75>v<EFBFBD>te PHP 4.2.3, kter<65> m<> z<>va<76>nou chybu p<>i pr<70>ci s&nbsp;v<>cebajtov<6F>mi znaky (mbsting), jedn<64> se o&nbsp;chybu PHP <20><>slo 19404. Nedoporu<72>ujeme pou<6F><75>vat tuto verzi PHP s&nbsp;phpMyAdminem.';
$strPHPVersion = 'Verze PHP';
@@ -486,6 +495,7 @@ $strSQPBugInvalidIdentifer = 'Chybn
$strSQPBugUnclosedQuote = 'Neuzav<61>en<65> uvozovky';
$strSQPBugUnknownPunctuation = 'Nezn<7A>m<EFBFBD> interpunk<6E>n<EFBFBD> znam<61>nko';
$strSave = 'Ulo<6C>';
$strSaveOnServer = 'Ulo<6C>it na serveru v adres<65><73>i %s';
$strScaleFactorSmall = 'M<><4D><EFBFBD>tko je p<><70>li<6C> mal<61>, aby se sch<63>ma ve<76>lo na jednu str<74>nku';
$strSearch = 'Vyhled<65>v<EFBFBD>n<EFBFBD>';
$strSearchFormTitle = 'Vyhled<65>v<EFBFBD>n<EFBFBD> v&nbsp;datab<61>zi';
@@ -503,7 +513,7 @@ $strSelectAll = 'Vybrat v
$strSelectFields = 'Zvolte sloupec (alespo<70> jeden):';
$strSelectNumRows = 'v&nbsp;dotazu';
$strSelectTables = 'Vybrat tabulky';
$strSend = 'Poslat';
$strSend = 'Do souboru';
$strSent = 'Odesl<73>no';
$strServer = 'Server %s';
$strServerChoice = 'V<>b<EFBFBD>r serveru';
@@ -633,7 +643,4 @@ $strZeroRemovesTheLimit = 'Pozn
$strZip = '"zazipov<6F>no"';
// To translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
?>

View File

@@ -651,4 +651,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -652,4 +652,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -646,4 +646,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -647,4 +647,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -74,6 +74,8 @@ $strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz
$strBzip = '"bzipped"';
$strCSVOptions = 'CSV options';
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.';
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.';
$strCannotLogin = 'Cannot login to MySQL server';
$strCantLoad = 'cannot load %s extension,<br />please check PHP Configuration';
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.';
@@ -114,6 +116,7 @@ $strConnections = 'Connections';
$strCookiesRequired = 'Cookies must be enabled past this point.';
$strCopyTable = 'Copy table to (database<b>.</b>table):';
$strCopyTableOK = 'Table %s has been copied to %s.';
$strCopyTableSameNames = 'Can\'t copy table to same one!';
$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.';
$strCreate = 'Create';
$strCreateIndex = 'Create an index on&nbsp;%s&nbsp;columns';
@@ -174,6 +177,7 @@ $strDropSelectedDatabases = 'Drop Selected Databases';
$strDropTable = 'Drop table';
$strDropUsersDb = 'Drop the databases that have the same names as the users.';
$strDumpComments = 'Include column comments as inline SQL-comments';
$strDumpSaved = 'Dump has been saved to file %s.';
$strDumpXRows = 'Dump %s row(s) starting at record # %s.';
$strDumpingData = 'Dumping data for table';
$strDynamic = 'dynamic';
@@ -204,10 +208,12 @@ $strFieldsEmpty = ' The field count is empty! ';
$strFieldsEnclosedBy = 'Fields enclosed by';
$strFieldsEscapedBy = 'Fields escaped by';
$strFieldsTerminatedBy = 'Fields terminated by';
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.';
$strFileCouldNotBeRead = 'File could not be read';
$strFileNameTemplate = 'File name template';
$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.';
$strFileNameTemplateRemember = 'remember template';
$strFileNotWriteble = 'File %s is not writable, check your configuration.';
$strFixed = 'fixed';
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.';
$strFlushTable = 'Flush the table ("FLUSH")';
@@ -305,6 +311,8 @@ $strModifyIndexTopic = 'Modify an index';
$strMoreStatusVars = 'More status variables';
$strMoveTable = 'Move table to (database<b>.</b>table):';
$strMoveTableOK = 'Table %s has been moved to %s.';
$strMoveTableSameNames = 'Can\'t move table to same one!';
$strMustSelectFile = 'You should select file which you want to insert.';
$strMySQLCharset = 'MySQL charset';
$strMySQLReloaded = 'MySQL reloaded.';
$strMySQLSaid = 'MySQL said: ';
@@ -354,6 +362,7 @@ $strOptionally = 'OPTIONALLY';
$strOptions = 'Options';
$strOr = 'Or';
$strOverhead = 'Overhead';
$strOverwriteExisting = 'Overwrite existing file(s)';
$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.';
$strPHPVersion = 'PHP Version';
@@ -480,6 +489,7 @@ $strSQPBugInvalidIdentifer = 'Invalid Identifer';
$strSQPBugUnclosedQuote = 'Unclosed quote';
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String';
$strSave = 'Save';
$strSaveOnServer = 'Save on server in %s directory';
$strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page';
$strSearch = 'Search';
$strSearchFormTitle = 'Search in database';
@@ -626,7 +636,4 @@ $strYes = 'Yes';
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
$strZip = '"zipped"';
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
?>

View File

@@ -75,6 +75,8 @@ $strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz
$strBzip = '"bzipped"';
$strCSVOptions = 'CSV options';
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.';
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.';
$strCannotLogin = 'Cannot login to MySQL server';
$strCantLoad = 'cannot load %s extension,<br />please check PHP Configuration';
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.';
@@ -115,6 +117,7 @@ $strConnections = 'Connections';
$strCookiesRequired = 'Cookies must be enabled past this point.';
$strCopyTable = 'Copy table to (database<b>.</b>table):';
$strCopyTableOK = 'Table %s has been copied to %s.';
$strCopyTableSameNames = 'Can\'t copy table to same one!';
$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.';
$strCreate = 'Create';
$strCreateIndex = 'Create an index on&nbsp;%s&nbsp;columns';
@@ -175,6 +178,7 @@ $strDropSelectedDatabases = 'Drop Selected Databases';
$strDropTable = 'Drop table';
$strDropUsersDb = 'Drop the databases that have the same names as the users.';
$strDumpComments = 'Include column comments as inline SQL-comments';
$strDumpSaved = 'Dump has been saved to file %s.';
$strDumpXRows = 'Dump %s row(s) starting at record # %s.';
$strDumpingData = 'Dumping data for table';
$strDynamic = 'dynamic';
@@ -205,10 +209,12 @@ $strFieldsEmpty = ' The field count is empty! ';
$strFieldsEnclosedBy = 'Fields enclosed by';
$strFieldsEscapedBy = 'Fields escaped by';
$strFieldsTerminatedBy = 'Fields terminated by';
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.';
$strFileCouldNotBeRead = 'File could not be read';
$strFileNameTemplate = 'File name template';
$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.';
$strFileNameTemplateRemember = 'remember template';
$strFileNotWriteble = 'File %s is not writable, check your configuration.';
$strFixed = 'fixed';
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.';
$strFlushTable = 'Flush the table ("FLUSH")';
@@ -306,6 +312,8 @@ $strModifyIndexTopic = 'Modify an index';
$strMoreStatusVars = 'More status variables';
$strMoveTable = 'Move table to (database<b>.</b>table):';
$strMoveTableOK = 'Table %s has been moved to %s.';
$strMoveTableSameNames = 'Can\'t move table to same one!';
$strMustSelectFile = 'You should select file which you want to insert.';
$strMySQLCharset = 'MySQL charset';
$strMySQLReloaded = 'MySQL reloaded.';
$strMySQLSaid = 'MySQL said: ';
@@ -355,6 +363,7 @@ $strOptionally = 'OPTIONALLY';
$strOptions = 'Options';
$strOr = 'Or';
$strOverhead = 'Overhead';
$strOverwriteExisting = 'Overwrite existing file(s)';
$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.';
$strPHPVersion = 'PHP Version';
@@ -481,6 +490,7 @@ $strSQPBugInvalidIdentifer = 'Invalid Identifer';
$strSQPBugUnclosedQuote = 'Unclosed quote';
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String';
$strSave = 'Save';
$strSaveOnServer = 'Save on server in %s directory';
$strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page';
$strSearch = 'Search';
$strSearchFormTitle = 'Search in database';
@@ -627,7 +637,4 @@ $strYes = 'Yes';
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
$strZip = '"zipped"';
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -632,4 +632,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -632,4 +632,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -653,4 +653,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -654,4 +654,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -632,4 +632,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -637,4 +637,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -638,4 +638,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -656,4 +656,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -637,4 +637,11 @@ $strRelations = 'Tabellenverkn
$strMoveTableSameNames = 'Tabelle kann nicht mit gleichem Namen verschoben werden!';
$strCopyTableSameNames = 'Tabelle kann nicht mit gleichem Namen kopiert werden!';
$strMustSelectFile = 'Bitte geben Sie eine Datei an, die eingef<65>gt werden soll.';
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -638,4 +638,11 @@ $strRelations = 'Tabellenverknüpfungen';
$strMoveTableSameNames = 'Tabelle kann nicht mit gleichem Namen verschoben werden!';
$strCopyTableSameNames = 'Tabelle kann nicht mit gleichem Namen kopiert werden!';
$strMustSelectFile = 'Bitte geben Sie eine Datei an, die eingefügt werden soll.';
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -655,4 +655,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -656,4 +656,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -653,4 +653,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -667,4 +667,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -641,4 +641,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -642,4 +642,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -630,4 +630,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -635,4 +635,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -636,4 +636,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -641,4 +641,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -641,4 +641,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -642,4 +642,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -655,4 +655,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -635,4 +635,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -634,4 +634,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -634,4 +634,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -633,4 +633,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -652,4 +652,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -653,4 +653,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -634,4 +634,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -635,4 +635,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -630,4 +630,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -652,4 +652,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -653,4 +653,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -632,4 +632,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -639,4 +639,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -637,4 +637,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -638,4 +638,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -637,4 +637,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -659,4 +659,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -658,4 +658,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -630,4 +630,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -630,4 +630,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -636,4 +636,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -637,4 +637,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -636,4 +636,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -630,4 +630,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -630,4 +630,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -641,4 +641,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -642,4 +642,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -654,4 +654,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -655,4 +655,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -632,4 +632,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -631,4 +631,11 @@ $strRelations = 'Relations'; //to translate
$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
$strSaveOnServer = 'Save on server in %s directory'; //to translate
$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
$strFileNotWriteble = 'File %s is not writable, check your configuration.'; //to translate
$strCanNotOpenFile = 'Can not open file %s for writing, check your configuration.'; //to translate
$strCanNotWriteFile = 'Can not write to file %s, check your configuration.'; //to translate
$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
?>

View File

@@ -1680,7 +1680,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
if ((basename($PHP_SELF) == $link ||
$active ||
(isset($GLOBALS['goto']) && basename($PHP_SELF) == 'read_dump.php3' && $GLOBALS['goto'] == $link)
(isset($GLOBALS['goto']) && (basename($PHP_SELF) == 'tbl_dump.php3' || basename($PHP_SELF) == 'read_dump.php3') && $GLOBALS['goto'] == $link)
) && ($text != $GLOBALS['strEmpty'] && $text != $GLOBALS['strDrop'])) {
$bgcolor = 'silver';
} else {

View File

@@ -293,6 +293,14 @@ if (isset($table) && !empty($table) && !isset($num_tables)) {
<label for="checkbox_dump_asfile"><?php echo $strSend; ?></label>
</legend>
<?php if (isset($cfg['SaveDir']) && !empty($cfg['SaveDir'])) { ?>
<input type="checkbox" name="onserver" value="saveit" id="checkbox_dump_onserver" onclick="gE('checkbox_dump_asfile').checked = true;" />
<label for="checkbox_dump_onserver"><?php echo sprintf($strSaveOnServer, htmlspecialchars($cfg['SaveDir'])); ?></label>,
<input type="checkbox" name="onserverover" value="saveitover" id="checkbox_dump_onserverover" onclick="gE('checkbox_dump_onserver').checked = true;gE('checkbox_dump_asfile').checked = true;" />
<label for="checkbox_dump_onserverover"><?php echo $strOverwriteExisting; ?></label>
<br />
<?php } ?>
<?php echo $strFileNameTemplate; ?>&nbsp;:
<input type="text" name="filename_template"
<?php

View File

@@ -418,19 +418,49 @@ if (!empty($asfile)) {
}
}
// finally send the headers and the file
header('Content-Type: ' . $mime_type);
header('Expires: ' . $now);
// lem9 & loic1: IE need specific headers
if (PMA_USR_BROWSER_AGENT == 'IE') {
header('Content-Disposition: inline; filename="' . $filename . '.' . $ext . '"');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
/* Should ve save on server? */
if (isset($cfg['SaveDir']) && !empty($cfg['SaveDir']) && !empty($onserver) ) {
$fname = $cfg['SaveDir'] . $filename . '.' . $ext;
if (file_exists($fname) && empty($onserverover)) {
$message = sprintf($strFileAlreadyExists, $fname);
} else {
if (is_file($fname) && !is_writable($fname)) {
$message = sprintf($strFileNotWriteble, $fname);
} else {
if (!$file = fopen($fname, 'w')) {
$message = sprintf($strCanNotOpenFile, $fname);
} else {
if (!fwrite($file, $dump_buffer)) {
$message = sprintf($strCanNotWriteFile, $fname);
} else {
fclose($file);
$message = sprintf($strDumpSaved, $fname);
}
}
}
}
include('./header.inc.php3');
if (!isset($single)) {
include('./db_details_export.php3');
} else {
include('./tbl_properties_export.php3');
}
/* Send dump over HTTP */
} else {
header('Content-Disposition: attachment; filename="' . $filename . '.' . $ext . '"');
header('Pragma: no-cache');
// finally send the headers and the file
header('Content-Type: ' . $mime_type);
header('Expires: ' . $now);
// lem9 & loic1: IE need specific headers
if (PMA_USR_BROWSER_AGENT == 'IE') {
header('Content-Disposition: inline; filename="' . $filename . '.' . $ext . '"');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
} else {
header('Content-Disposition: attachment; filename="' . $filename . '.' . $ext . '"');
header('Pragma: no-cache');
}
echo $dump_buffer;
}
echo $dump_buffer;
}
/**
* Displays the dump...