summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-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);