Skip to content

Commit

Permalink
CreateDatabaseBeforeCopying
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed Jun 4, 2005
1 parent c2e0d70 commit 51b4118
Show file tree
Hide file tree
Showing 117 changed files with 126 additions and 6 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Expand Up @@ -11,6 +11,8 @@ $Source$
* lang/norwegian: Update, thanks to Sven-Erik Andersen
* db_details_structure.php: optional message $strNumberOfFields,
will use $strFields if not defined
* db_operations.php, lang/*: bug #1212997, db copy should not
always perform CREATE DATABASE

2005-06-03 Marc Delisle <lem9@users.sourceforge.net>
* lang/tatar*, /sync_lang.sh, libraries/select_lang.lib.php,
Expand Down
9 changes: 6 additions & 3 deletions db_operations.php
Expand Up @@ -25,9 +25,11 @@
if (!isset($newname) || empty($newname)) {
$message = $strDatabaseEmpty;
} else {
$local_query = 'CREATE DATABASE ' . PMA_backquote($newname) . ';';
$sql_query = $local_query;
PMA_DBI_query($local_query);
if ($create_database_before_copying) {
$local_query = 'CREATE DATABASE ' . PMA_backquote($newname) . ';';
$sql_query = $local_query;
PMA_DBI_query($local_query);
}
$tables = PMA_DBI_get_tables($db);
foreach ($tables as $table) {
$back = $sql_query;
Expand Down Expand Up @@ -196,6 +198,7 @@
<input type="radio" name="what" value="data" id="radio_copy_data" checked="checked" style="vertical-align: middle" /><label for="radio_copy_data"><?php echo $strStrucData; ?></label>&nbsp;&nbsp;<br />
<input type="radio" name="what" value="dataonly" id="radio_copy_dataonly" style="vertical-align: middle" /><label for="radio_copy_dataonly"><?php echo $strDataOnly; ?></label>&nbsp;&nbsp;<br />

<input type="checkbox" name="create_database_before_copying" value="1" id="checkbox_create_database_before_copying" style="vertical-align: middle" checked="checked" /><label for="checkbox_create_database_before_copying"><?php echo $strCreateDatabaseBeforeCopying; ?></label><br />
<input type="checkbox" name="auto_increment" value="1" id="checkbox_auto_increment" style="vertical-align: middle" /><label for="checkbox_auto_increment"><?php echo $strAddAutoIncrement; ?></label><br />
<input type="checkbox" name="constraints" value="1" id="checkbox_constraints" style="vertical-align: middle" /><label for="checkbox_constraints"><?php echo $strAddConstraints; ?></label><br />
<?php
Expand Down
1 change: 1 addition & 0 deletions lang/afrikaans-iso-8859-1.inc.php
Expand Up @@ -818,4 +818,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/afrikaans-utf-8.inc.php
Expand Up @@ -819,4 +819,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/albanian-iso-8859-1.inc.php
Expand Up @@ -808,4 +808,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/albanian-utf-8.inc.php
Expand Up @@ -809,4 +809,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/arabic-utf-8.inc.php
Expand Up @@ -812,4 +812,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/arabic-windows-1256.inc.php
Expand Up @@ -811,4 +811,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/azerbaijani-iso-8859-9.inc.php
Expand Up @@ -807,4 +807,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/azerbaijani-utf-8.inc.php
Expand Up @@ -808,4 +808,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/basque-iso-8859-1.inc.php
Expand Up @@ -810,4 +810,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/basque-utf-8.inc.php
Expand Up @@ -811,4 +811,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/belarusian-utf-8.inc.php
Expand Up @@ -814,4 +814,5 @@

$strRoutines = 'Routines'; //to translate

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/belarusian-windows-1251.inc.php
Expand Up @@ -813,4 +813,5 @@

$strRoutines = 'Routines'; //to translate

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/bosnian-utf-8.inc.php
Expand Up @@ -817,4 +817,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/bosnian-windows-1250.inc.php
Expand Up @@ -816,4 +816,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/brazilian_portuguese-iso-8859-1.inc.php
Expand Up @@ -825,4 +825,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/brazilian_portuguese-utf-8.inc.php
Expand Up @@ -826,4 +826,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/bulgarian-koi8-r.inc.php
Expand Up @@ -828,4 +828,5 @@

$strWriteRequests = 'Write requests'; //to translate

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/bulgarian-utf-8.inc.php
Expand Up @@ -829,4 +829,5 @@

$strWriteRequests = 'Write requests'; //to translate

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/bulgarian-windows-1251.inc.php
Expand Up @@ -828,4 +828,5 @@

$strWriteRequests = 'Write requests'; //to translate

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/catalan-iso-8859-1.inc.php
Expand Up @@ -789,4 +789,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/catalan-utf-8.inc.php
Expand Up @@ -790,4 +790,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/chinese_simplified-gb2312.inc.php
Expand Up @@ -825,4 +825,5 @@

$strWriteRequests = 'Write requests'; //to translate

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/chinese_simplified-utf-8.inc.php
Expand Up @@ -826,4 +826,5 @@

$strWriteRequests = 'Write requests'; //to translate

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/chinese_traditional-big5.inc.php
Expand Up @@ -809,4 +809,5 @@
$strZeroRemovesTheLimit = '註: 設定這些選項為 0 (零) 可解除限制.';
$strZip = '"zipped"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/chinese_traditional-utf-8.inc.php
Expand Up @@ -810,4 +810,5 @@
$strZeroRemovesTheLimit = '註: 設定這些選項為 0 (零) 可解除限制.';
$strZip = '"zipped"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/croatian-iso-8859-2.inc.php
Expand Up @@ -831,4 +831,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/croatian-utf-8.inc.php
Expand Up @@ -832,4 +832,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/croatian-windows-1250.inc.php
Expand Up @@ -831,4 +831,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/czech-iso-8859-2.inc.php
Expand Up @@ -809,4 +809,5 @@
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
$strZip = '"zazipováno"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/czech-utf-8.inc.php
Expand Up @@ -810,4 +810,5 @@
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
$strZip = '"zazipováno"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/czech-windows-1250.inc.php
Expand Up @@ -809,4 +809,5 @@
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
$strZip = '"zazipováno"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/danish-iso-8859-1.inc.php
Expand Up @@ -804,4 +804,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/danish-utf-8.inc.php
Expand Up @@ -805,4 +805,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/dutch-iso-8859-1.inc.php
Expand Up @@ -807,4 +807,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/dutch-iso-8859-15.inc.php
Expand Up @@ -807,4 +807,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/dutch-utf-8.inc.php
Expand Up @@ -808,4 +808,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/english-iso-8859-1.inc.php
Expand Up @@ -155,6 +155,7 @@
$strCopyTableSameNames = 'Can\'t copy table to same one!';
$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.';
$strCreate = 'Create';
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying';
$strCreateIndex = 'Create an index on&nbsp;%s&nbsp;columns';
$strCreateIndexTopic = 'Create a new index';
$strCreateNewDatabase = 'Create new database';
Expand Down
1 change: 1 addition & 0 deletions lang/english-iso-8859-15.inc.php
Expand Up @@ -155,6 +155,7 @@
$strCopyTableSameNames = 'Can\'t copy table to same one!';
$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.';
$strCreate = 'Create';
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying';
$strCreateIndex = 'Create an index on&nbsp;%s&nbsp;columns';
$strCreateIndexTopic = 'Create a new index';
$strCreateNewDatabase = 'Create new database';
Expand Down
1 change: 1 addition & 0 deletions lang/english-utf-8.inc.php
Expand Up @@ -156,6 +156,7 @@
$strCopyTableSameNames = 'Can\'t copy table to same one!';
$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.';
$strCreate = 'Create';
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying';
$strCreateIndex = 'Create an index on&nbsp;%s&nbsp;columns';
$strCreateIndexTopic = 'Create a new index';
$strCreateNewDatabase = 'Create new database';
Expand Down
1 change: 1 addition & 0 deletions lang/estonian-iso-8859-1.inc.php
Expand Up @@ -815,4 +815,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/estonian-utf-8.inc.php
Expand Up @@ -816,4 +816,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/finnish-iso-8859-1.inc.php
Expand Up @@ -817,4 +817,5 @@
$strZeroRemovesTheLimit = 'Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen.';
$strZip = '"zip-pakattu"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/finnish-iso-8859-15.inc.php
Expand Up @@ -817,4 +817,5 @@
$strZeroRemovesTheLimit = 'Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen.';
$strZip = '"zip-pakattu"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/finnish-utf-8.inc.php
Expand Up @@ -818,4 +818,5 @@
$strZeroRemovesTheLimit = 'Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen.';
$strZip = '"zip-pakattu"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
3 changes: 2 additions & 1 deletion lang/french-iso-8859-1.inc.php
Expand Up @@ -170,7 +170,7 @@
$strCzechSlovak = 'tchèque-slovaque';

$strDBComment = '<b>Commentaire</b> sur la base de données: ';
$strDBCopy = 'Copier la base de données vers:';
$strDBCopy = 'Copier la base de données vers';
$strDBGContext = 'Contexte';
$strDBGContextID = 'Identificateur de contexte';
$strDBGHits = 'Occurences';
Expand Down Expand Up @@ -809,4 +809,5 @@

$strRoutines = 'Routines'; //to translate

$strCreateDatabaseBeforeCopying = 'Faire CREATE DATABASE avant la copie';
?>
3 changes: 2 additions & 1 deletion lang/french-iso-8859-15.inc.php
Expand Up @@ -170,7 +170,7 @@
$strCzechSlovak = 'tchèque-slovaque';

$strDBComment = '<b>Commentaire</b> sur la base de données: ';
$strDBCopy = 'Copier la base de données vers:';
$strDBCopy = 'Copier la base de données vers';
$strDBGContext = 'Contexte';
$strDBGContextID = 'Identificateur de contexte';
$strDBGHits = 'Occurences';
Expand Down Expand Up @@ -809,4 +809,5 @@

$strRoutines = 'Routines'; //to translate

$strCreateDatabaseBeforeCopying = 'Faire CREATE DATABASE avant la copie';
?>
3 changes: 2 additions & 1 deletion lang/french-utf-8.inc.php
Expand Up @@ -171,7 +171,7 @@
$strCzechSlovak = 'tchèque-slovaque';

$strDBComment = '<b>Commentaire</b> sur la base de données: ';
$strDBCopy = 'Copier la base de données vers:';
$strDBCopy = 'Copier la base de données vers';
$strDBGContext = 'Contexte';
$strDBGContextID = 'Identificateur de contexte';
$strDBGHits = 'Occurences';
Expand Down Expand Up @@ -810,4 +810,5 @@

$strRoutines = 'Routines'; //to translate

$strCreateDatabaseBeforeCopying = 'Faire CREATE DATABASE avant la copie';
?>
1 change: 1 addition & 0 deletions lang/galician-iso-8859-1.inc.php
Expand Up @@ -808,4 +808,5 @@
$strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) elimina-se o limite.';
$strZip = 'comprimido no formato "zip"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/galician-utf-8.inc.php
Expand Up @@ -809,4 +809,5 @@
$strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) elimina-se o limite.';
$strZip = 'comprimido no formato "zip"';

$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/georgian-utf-8.inc.php
Expand Up @@ -832,4 +832,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/german-iso-8859-1.inc.php
Expand Up @@ -811,4 +811,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/german-iso-8859-15.inc.php
Expand Up @@ -811,4 +811,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/german-utf-8.inc.php
Expand Up @@ -812,4 +812,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/greek-iso-8859-7.inc.php
Expand Up @@ -812,4 +812,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>
1 change: 1 addition & 0 deletions lang/greek-utf-8.inc.php
Expand Up @@ -813,4 +813,5 @@
$strRoutines = 'Routines'; //to translate
$strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to translate
$strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate
?>

0 comments on commit 51b4118

Please sign in to comment.