summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 16:22:46 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 16:22:46 +0000
commit7f2ca820752f7330114db7256b14a78cc4bad85c (patch)
tree0cb9a32ca2a86b904d57969a8467ce7e223014be /modules
parent46f4672962cd25ede0d46ac798a264dcdb0b225e (diff)
downloadbrdo-7f2ca820752f7330114db7256b14a78cc4bad85c.tar.gz
brdo-7f2ca820752f7330114db7256b14a78cc4bad85c.tar.bz2
#199874 by gaele, keith.smith and JirkaRybka: better explanation of site email address, slogan and mission based on usability feedback
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.admin.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index ec8ecc898..efa316a69 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1116,20 +1116,20 @@ function system_site_information_settings() {
'#type' => 'textfield',
'#title' => t('E-mail address'),
'#default_value' => variable_get('site_mail', ini_get('sendmail_from')),
- '#description' => t('A valid e-mail address to be used as the "From" address by the auto-mailer during registration, new password requests, notifications, etc. To lessen the likelihood of e-mail being marked as spam, this e-mail address should use the same domain as the website.'),
+ '#description' => t("The <em>From</em> address in automated e-mails sent during registration and new password requests, and other notifications. (Use an address ending in your site's domain to help prevent this e-mail being flagged as spam.)"),
'#required' => TRUE,
);
$form['site_slogan'] = array(
'#type' => 'textfield',
'#title' => t('Slogan'),
'#default_value' => variable_get('site_slogan', ''),
- '#description' => t('The slogan of this website. Some themes display a slogan when available.')
+ '#description' => t("Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).")
);
$form['site_mission'] = array(
'#type' => 'textarea',
'#title' => t('Mission'),
'#default_value' => variable_get('site_mission', ''),
- '#description' => t('Your site\'s mission statement or focus.')
+ '#description' => t("Your site's mission or focus statement (often prominently displayed on the front page).")
);
$form['site_footer'] = array(
'#type' => 'textarea',