new database format string

This commit is contained in:
Marc Delisle
2010-07-28 13:05:24 -04:00
parent 3e2af13bf5
commit d0fc397fe1
2 changed files with 2 additions and 2 deletions

View File

@@ -1117,7 +1117,7 @@ $cfg['Export']['file_template_table'] = '@TABLE@';
* *
* @global string $cfg['Export']['file_template_database'] * @global string $cfg['Export']['file_template_database']
*/ */
$cfg['Export']['file_template_database'] = '@DB@'; $cfg['Export']['file_template_database'] = '@DATABASE@';
/** /**
* *

View File

@@ -144,7 +144,7 @@ echo PMA_pluginGetJavascript($export_list);
$trans->addMessage('@SERVER@/'); $trans->addMessage('@SERVER@/');
$trans->addString(__('server name')); $trans->addString(__('server name'));
if ($export_type == 'database' || $export_type == 'table') { if ($export_type == 'database' || $export_type == 'table') {
$trans->addMessage('@DB@/'); $trans->addMessage('@DATABASE@/');
$trans->addString(__('database name')); $trans->addString(__('database name'));
if ($export_type == 'table') { if ($export_type == 'table') {
$trans->addMessage('@TABLE@/'); $trans->addMessage('@TABLE@/');