From c776e02e4474478429f9ba32d0d3286bd756f701 Mon Sep 17 00:00:00 2001 From: Brad Jorgensen Date: Mon, 13 May 2013 15:50:59 -0500 Subject: [PATCH 1/2] implementation of feature request #1423 --- libraries/config.values.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/config.values.php b/libraries/config.values.php index 4743cbc322..dc29772318 100644 --- a/libraries/config.values.php +++ b/libraries/config.values.php @@ -46,8 +46,8 @@ $cfg_db['NavigationTreeDefaultTabTable'] = array( $cfg_db['NavigationTreeDbSeparator'] = 'short_string'; $cfg_db['NavigationTreeTableSeparator'] = 'short_string'; $cfg_db['NavigationBarIconic'] = array( - true => __('Yes'), - false => __('No'), + true => __('Icons'), + false => __('Text'), 'both' => __('Both') ); $cfg_db['Order'] = array('ASC', 'DESC', 'SMART'); @@ -61,8 +61,8 @@ $cfg_db['ProtectBinary'] = array(false, 'blob', 'noblob', 'all'); $cfg_db['DefaultDisplay'] = array('horizontal', 'vertical', 'horizontalflipped'); $cfg_db['CharEditing'] = array('input', 'textarea'); $cfg_db['PropertiesIconic'] = array( - true => __('Yes'), - false => __('No'), + true => __('Icons'), + false => __('Text'), 'both' => __('Both') ); $cfg_db['GridEditing'] = array( From dd07a4a102be0e8607724cc808f9b361180eff15 Mon Sep 17 00:00:00 2001 From: Brad Jorgensen Date: Mon, 13 May 2013 15:51:59 -0500 Subject: [PATCH 2/2] implementation of feature request #1423 --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 6344b96cd1..7cf7c62ef7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog + PMA_DBI functions in database interface libraries renamed to be compliant with PEAR standards + rfe #1412 Creating a view from an empty set of results + Improved layout on db and table operations pages ++ rfe #1423 Clarify option text for icon/text settings 4.0.2.0 (not yet released) + center loading indicator for navigation refresh, related to bug #3920