summaryrefslogtreecommitdiff
path: root/modules/book
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-11-21 08:58:23 +0000
committerDries Buytaert <dries@buytaert.net>2009-11-21 08:58:23 +0000
commitfc13ed0da4c95b1d6e0289179c5f6da4766d64a1 (patch)
tree0ca9dbdba8476ba883e6ae7e3ffdf154c9371cda /modules/book
parent59ceca0caf52002cf44206feec7c7213bc079939 (diff)
downloadbrdo-fc13ed0da4c95b1d6e0289179c5f6da4766d64a1.tar.gz
brdo-fc13ed0da4c95b1d6e0289179c5f6da4766d64a1.tar.bz2
- Patch #638222 by yoroy: clearer labels and descriptions on book settings page.
Diffstat (limited to 'modules/book')
-rw-r--r--modules/book/book.admin.inc7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/book/book.admin.inc b/modules/book/book.admin.inc
index 072908862..c20aaeb64 100644
--- a/modules/book/book.admin.inc
+++ b/modules/book/book.admin.inc
@@ -38,18 +38,17 @@ function book_admin_settings() {
$types = node_type_get_names();
$form['book_allowed_types'] = array(
'#type' => 'checkboxes',
- '#title' => t('Allowed book outline types'),
+ '#title' => t('Content types allowed in book outlines'),
'#default_value' => array('book'),
'#options' => $types,
- '#description' => t('Select content types which users with the %add-perm permission will be allowed to add to the book hierarchy. Users with the %outline-perm permission can add all content types.', array('%add-perm' => t('add content to books'), '%outline-perm' => t('administer book outlines'))),
+ '#description' => t('Users with the %outline-perm permission can add all content types.', array('%add-perm' => t('add content to books'), '%outline-perm' => t('administer book outlines'))),
'#required' => TRUE,
);
$form['book_child_type'] = array(
'#type' => 'radios',
- '#title' => t('Default child page type'),
+ '#title' => t('Content type for child pages'),
'#default_value' => 'book',
'#options' => $types,
- '#description' => t('The content type for the %add-child link must be one of those selected as an allowed book outline type.', array('%add-child' => t('Add child page'))),
'#required' => TRUE,
);
$form['array_filter'] = array('#type' => 'value', '#value' => TRUE);