summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-06-27 18:01:59 +0000
committerDries Buytaert <dries@buytaert.net>2009-06-27 18:01:59 +0000
commit1f48b118550e2b266dab8842f56e59d593df3a77 (patch)
treeef7cf4f58bfbc99b721264573fb86368610b134c /modules
parent55f42709ad4a0e24f0f6010e89da0c40c07f3778 (diff)
downloadbrdo-1f48b118550e2b266dab8842f56e59d593df3a77.tar.gz
brdo-1f48b118550e2b266dab8842f56e59d593df3a77.tar.bz2
- Patch #503996 by kika, Sutharsan: changed label from 'Expanded' to 'Show as expanded' for better usability.
Diffstat (limited to 'modules')
-rw-r--r--modules/menu/menu.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/menu/menu.admin.inc b/modules/menu/menu.admin.inc
index 054476d6a..481728402 100644
--- a/modules/menu/menu.admin.inc
+++ b/modules/menu/menu.admin.inc
@@ -189,7 +189,7 @@ function theme_menu_overview_form($form) {
$header = array(
t('Menu link'),
array('data' => t('Enabled'), 'class' => 'checkbox'),
- array('data' => t('Expanded'), 'class' => 'checkbox'),
+ array('data' => t('Show as expanded'), 'class' => 'checkbox'),
t('Weight'),
array('data' => t('Operations'), 'colspan' => '3'),
);
@@ -311,7 +311,7 @@ function menu_edit_item(&$form_state, $type, $item, $menu) {
);
$form['menu']['expanded'] = array(
'#type' => 'checkbox',
- '#title' => t('Expanded'),
+ '#title' => t('Show as expanded'),
'#default_value' => $item['expanded'],
'#description' => t('If selected and this menu link has children, the menu will always appear expanded.'),
);