summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.module4
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(