diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-16 12:43:06 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-16 12:43:06 +0000 |
commit | 64def7cb3e97672797bc91e2ac6352cdcccf9937 (patch) | |
tree | e994c0bdc4ac01746fd9f2e14bee6cf0e8bc20ee /modules/taxonomy/taxonomy.module | |
parent | 4a65afa1321c98cfe9dd6b01857a10c33c358a20 (diff) | |
download | brdo-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/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 95612be4c..0ef4122d6 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -292,7 +292,7 @@ function taxonomy_form_vocabulary(&$form_state, $edit = array()) { '#description' => t('In listings, the heavier vocabularies will sink and the lighter vocabularies will be positioned nearer the top.'), ); - $form['submit'] = array('#type' => 'submit', '#value' => t('Submit')); + $form['submit'] = array('#type' => 'submit', '#value' => t('Save')); if (isset($edit['vid'])) { $form['delete'] = array('#type' => 'submit', '#value' => t('Delete')); $form['vid'] = array('#type' => 'value', '#value' => $edit['vid']); @@ -459,7 +459,7 @@ function taxonomy_form_term(&$form_state, $vocabulary, $edit = array()) { '#value' => $vocabulary->vid); $form['submit'] = array( '#type' => 'submit', - '#value' => t('Submit')); + '#value' => t('Save')); if ($edit['tid']) { $form['delete'] = array( |