summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:21:30 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:21:30 +0000
commit24c66b82fc61af8e096dd66810e4c90604fffd67 (patch)
treea22cdc8487a82e34edf013db9aba88e132aa6bbf /install.php
parentb6532a4fdbb5e32f2ab3bd7250aedd435313e52e (diff)
downloadbrdo-24c66b82fc61af8e096dd66810e4c90604fffd67.tar.gz
brdo-24c66b82fc61af8e096dd66810e4c90604fffd67.tar.bz2
#199402 by keith.smith: standardize on 'Save and continue' text on installer submit buttons
Diffstat (limited to 'install.php')
-rw-r--r--install.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php
index fc9e061c3..303aaa67f 100644
--- a/install.php
+++ b/install.php
@@ -324,7 +324,7 @@ function install_settings_form(&$form_state, $profile, $install_locale, $setting
$form['save'] = array(
'#type' => 'submit',
- '#value' => st('Save configuration'),
+ '#value' => st('Save and continue'),
);
$form['errors'] = array();
@@ -471,7 +471,7 @@ function install_select_profile_form(&$form_state, $profiles) {
}
$form['submit'] = array(
'#type' => 'submit',
- '#value' => st('Save configuration'),
+ '#value' => st('Save and continue'),
);
return $form;
}
@@ -1058,7 +1058,7 @@ function install_configure_form(&$form_state, $url) {
$form['submit'] = array(
'#type' => 'submit',
- '#value' => st('Save'),
+ '#value' => st('Save and continue'),
'#weight' => 15,
);
$form['#action'] = $url;