bug #3938 PDFDefaultPageSize doc and easy configurability

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2013-12-23 13:41:14 -05:00
parent 5ebd1b89a3
commit a8b2e4cee1
4 changed files with 15 additions and 0 deletions

View File

@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog
======================
4.1.3.0 (not yet released)
- bug #3938 PDFDefaultPageSize doc and easy configurability
4.1.2.0 (2013-12-23)
- bug #4178 Quick edit for BIT type does not work

View File

@ -66,6 +66,13 @@ $cfg_db['TabsMode'] = array(
'text' => __('Text'),
'both' => __('Both')
);
$cfg_db['PDFDefaultPageSize'] = array(
'A3' => 'A3',
'A4' => 'A4',
'A5' => 'A5',
'letter' => 'letter',
'legal' => 'legal'
);
$cfg_db['ActionLinksMode'] = array(
'icons' => __('Icons'),
'text' => __('Text'),

View File

@ -227,6 +227,10 @@ $strConfigForm_TableStructure = __('Table structure');
$strConfigForm_TableStructure_desc = __('Settings for the table structure (list of columns)');
$strConfigForm_Tabs = __('Tabs');
$strConfigForm_Tabs_desc = __('Choose how you want tabs to work');
$strConfigForm_DisplayRelationalSchema = __('Display relational schema');
$strConfigForm_DisplayRelationalSchema_desc = '';
$strConfigPDFDefaultPageSize_name = __('Paper size');
$strConfigPDFDefaultPageSize_desc = '';
$strConfigForm_Text_fields = __('Text fields');
$strConfigForm_Text_fields_desc = __('Customize text input fields');
$strConfigForm_Texy = __('Texy! text');

View File

@ -133,6 +133,9 @@ $forms['Main_panel']['Tabs'] = array(
'DefaultTabServer',
'DefaultTabDatabase',
'DefaultTabTable');
$forms['Main_panel']['DisplayRelationalSchema'] = array(
'PDFDefaultPageSize');
$forms['Import']['Import_defaults'] = array(
'Import/format',
'Import/charset',