summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-19 06:27:04 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-19 06:27:04 +0000
commit02206410b968bf96e59783e2eec484ab33679e19 (patch)
tree3f6578fc9053ad8b5844174e77ec7a7c562699d8 /modules/system/system.admin.inc
parent9b29e143ac046de157346af556eab20b3d06eabe (diff)
downloadbrdo-02206410b968bf96e59783e2eec484ab33679e19.tar.gz
brdo-02206410b968bf96e59783e2eec484ab33679e19.tar.bz2
- Patch #523214 by Bohjan: clean up text Site Information page.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 6ac8d2fe8..8b99c8d0b 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1176,9 +1176,8 @@ function system_ip_blocking_delete_submit($form, &$form_state) {
function system_site_information_settings() {
$form['site_name'] = array(
'#type' => 'textfield',
- '#title' => t('Name'),
+ '#title' => t('Site name'),
'#default_value' => 'Drupal',
- '#description' => t('The name of this website.'),
'#required' => TRUE
);
$form['site_mail'] = array(
@@ -1192,7 +1191,6 @@ function system_site_information_settings() {
'#type' => 'textfield',
'#title' => t('Slogan'),
'#default_value' => '',
- '#description' => t("Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).")
);
$form['site_frontpage'] = array(
'#type' => 'textfield',
@@ -1207,7 +1205,7 @@ function system_site_information_settings() {
'#type' => 'select', '#title' => t('Number of posts on front page'),
'#default_value' => 10,
'#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30)),
- '#description' => t('The maximum number of posts per page to display on overview pages like the front page above.')
+ '#description' => t('The maximum number of posts displayed on overview pages like the frontpage.')
);
$form['site_403'] = array(
'#type' => 'textfield',