From 02206410b968bf96e59783e2eec484ab33679e19 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 19 Jul 2009 06:27:04 +0000 Subject: [PATCH] - Patch #523214 by Bohjan: clean up text Site Information page. --- modules/system/system.admin.inc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 6ac8d2fe8cbd..8b99c8d0b477 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', -- GitLab