diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-07-01 20:36:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-07-01 20:36:40 +0000 |
commit | bb232c728af46441b22f071dd9cfb01d31ec69cf (patch) | |
tree | 289a4a22cd777ee24c34a6675f3bec241f533420 /modules/system/system.admin.inc | |
parent | fae9063c681b11cc48347a11b4dc0f06baffb4ce (diff) | |
download | brdo-bb232c728af46441b22f071dd9cfb01d31ec69cf.tar.gz brdo-bb232c728af46441b22f071dd9cfb01d31ec69cf.tar.bz2 |
- Patch #277073 by threexk: improve consistency of offline vs off-line and online vs on-line.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 0c8a50a7b..2314ea077 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1699,15 +1699,15 @@ function system_site_maintenance_settings() { '#type' => 'radios', '#title' => t('Site status'), '#default_value' => variable_get('site_offline', 0), - '#options' => array(t('Online'), t('Off-line')), - '#description' => t('When set to "Online", all visitors will be able to browse your site normally. When set to "Off-line", only users with the "administer site configuration" permission will be able to access your site to perform maintenance; all other visitors will see the site off-line message configured below. Authorized users can log in during "Off-line" mode directly via the <a href="@user-login">user login</a> page.', array('@user-login' => url('user'))), + '#options' => array(t('Online'), t('Offline')), + '#description' => t('When set to "Online", all visitors will be able to browse your site normally. When set to "Offline", only users with the "administer site configuration" permission will be able to access your site to perform maintenance; all other visitors will see the site offline message configured below. Authorized users can log in during "Offline" mode directly via the <a href="@user-login">user login</a> page.', array('@user-login' => url('user'))), ); $form['site_offline_message'] = array( '#type' => 'textarea', - '#title' => t('Site off-line message'), + '#title' => t('Site offline message'), '#default_value' => variable_get('site_offline_message', t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('@site' => variable_get('site_name', 'Drupal')))), - '#description' => t('Message to show visitors when the site is in off-line mode.') + '#description' => t('Message to show visitors when the site is in offline mode.') ); return system_settings_form($form); |