Skip to content

Commit

Permalink
Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Apr 3, 2015
2 parents 8b1cbaf + 5aa8097 commit 07220f8
Show file tree
Hide file tree
Showing 82 changed files with 20,430 additions and 17,250 deletions.
8 changes: 4 additions & 4 deletions libraries/plugins/export/ExportPdf.class.php
Expand Up @@ -227,7 +227,7 @@ public function exportData(
'aliases' => $aliases
);
$pdf->setAttributes($attr);
$pdf->purpose = __('Dumping Data');
$pdf->purpose = __('Dumping data');
$pdf->mysqlReport($sql_query);

return true;
Expand Down Expand Up @@ -275,16 +275,16 @@ public function exportStructure(
// getting purpose to show at top
switch($export_mode) {
case 'create_table':
$purpose = __('Table Structure');
$purpose = __('Table structure');
break;
case 'triggers':
$purpose = __('Triggers');
break;
case 'create_view':
$purpose = __('View Structure');
$purpose = __('View structure');
break;
case 'stand_in':
$purpose = __('Stand In');
$purpose = __('Stand in');
} // end switch

$attr = array(
Expand Down

0 comments on commit 07220f8

Please sign in to comment.