summaryrefslogtreecommitdiff
path: root/modules/menu
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-07-16 12:43:06 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-07-16 12:43:06 +0000
commit64def7cb3e97672797bc91e2ac6352cdcccf9937 (patch)
treee994c0bdc4ac01746fd9f2e14bee6cf0e8bc20ee /modules/menu
parent4a65afa1321c98cfe9dd6b01857a10c33c358a20 (diff)
downloadbrdo-64def7cb3e97672797bc91e2ac6352cdcccf9937.tar.gz
brdo-64def7cb3e97672797bc91e2ac6352cdcccf9937.tar.bz2
#100641 by kkaefer, ChrisKennedy and RobRoy: change 'Submit' buttons to 'Save' to compliy with the desktop metaphor and actually tell what the button does ('we know it submits the form, but what it does?')
Diffstat (limited to 'modules/menu')
-rw-r--r--modules/menu/menu.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/menu/menu.module b/modules/menu/menu.module
index 54377caab..63aaf79e9 100644
--- a/modules/menu/menu.module
+++ b/modules/menu/menu.module
@@ -323,7 +323,7 @@ function menu_edit_item(&$form_state, $type, $item, $menu) {
'#default_value' => $item['weight'],
'#description' => t('Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.'),
);
- $form['submit'] = array('#type' => 'submit', '#value' => t('Submit'));
+ $form['submit'] = array('#type' => 'submit', '#value' => t('Save'));
return $form;
@@ -428,7 +428,7 @@ function menu_edit_menu(&$form_state, $type, $menu = array()) {
);
$form['submit'] = array(
'#type' => 'submit',
- '#value' => t('Submit'),
+ '#value' => t('Save'),
);
return $form;