summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-15 06:27:49 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-15 06:27:49 +0000
commit6935b396cbf2240545667e2aef284fc9538701a7 (patch)
treed6badc135a1550d04fa33debbb0b8372ee8fbd1d /modules
parent4762bbf88c96331a8f92b2a32d48a8f8a36f674a (diff)
downloadbrdo-6935b396cbf2240545667e2aef284fc9538701a7.tar.gz
brdo-6935b396cbf2240545667e2aef284fc9538701a7.tar.bz2
#548182 by yoroy: Better admin theme descriptions.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.admin.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 54f7cca16..89eca1392 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -264,13 +264,12 @@ function system_themes_form() {
'#type' => 'select',
'#options' => array(0 => t('Default theme')) + $options,
'#title' => t('Administration theme'),
- '#description' => t('Choose which theme the administration pages should display in. If you choose "Default theme" the administration pages will use the same theme as the rest of the site.'),
+ '#description' => t('Choose "Default theme" to always use the same theme as the rest of the site.'),
'#default_value' => variable_get('admin_theme', 0),
);
$form['admin_theme']['node_admin_theme'] = array(
'#type' => 'checkbox',
- '#title' => t('Use administration theme for content editing'),
- '#description' => t('Use the administration theme when editing existing posts or creating new ones.'),
+ '#title' => t('Use the administration theme when editing or creating content'),
'#default_value' => variable_get('node_admin_theme', '0'),
);