summaryrefslogtreecommitdiff
path: root/modules/book
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-07 20:02:08 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-07 20:02:08 +0000
commita2f90c7d969dca8cdb1f3590565568e28f69edcf (patch)
treed8a5a12ca21160421d8cb042e55fc44261401e89 /modules/book
parent34789dce2a636a034996bb09ae0eba9becaa06a3 (diff)
downloadbrdo-a2f90c7d969dca8cdb1f3590565568e28f69edcf.tar.gz
brdo-a2f90c7d969dca8cdb1f3590565568e28f69edcf.tar.bz2
- Patch #677526 by jhodgdon: help text fixes.
Diffstat (limited to 'modules/book')
-rw-r--r--modules/book/book.admin.inc2
-rw-r--r--modules/book/book.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/book/book.admin.inc b/modules/book/book.admin.inc
index 52e67d36e..fe0a30d6d 100644
--- a/modules/book/book.admin.inc
+++ b/modules/book/book.admin.inc
@@ -36,7 +36,7 @@ function book_admin_settings() {
'#title' => t('Content types allowed in book outlines'),
'#default_value' => array('book'),
'#options' => $types,
- '#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'))),
+ '#description' => t('Users with the %outline-perm permission can add all content types.', array('%outline-perm' => t('Administer book outlines'))),
'#required' => TRUE,
);
$form['book_child_type'] = array(
diff --git a/modules/book/book.module b/modules/book/book.module
index bd3b07dd9..c8b82a88e 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -17,7 +17,7 @@ function book_help($path, $arg) {
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Adding and managing book content') . '</dt>';
- $output .= '<dd>' . t('You can assign separate permissions for <em>creating</em>, <em>editing</em>, and <em>deleting</em> book content, as well as <em>adding content to books</em>, and <em>creating new books</em>. Users with the <em>administer book outlines</em> permission can add <em>any</em> type of content to a book by selecting the appropriate book outline while editing the content. They can also view a list of all books, and edit and rearrange section titles on the <a href="@admin-book">Book administration page</a>.', array('@admin-book' => url('admin/content/book'))) . '</dd>';
+ $output .= '<dd>' . t('You can assign separate permissions for <em>creating</em>, <em>editing</em>, and <em>deleting</em> book content, as well as <em>adding content to books</em>, and <em>creating new books</em>. Users with the <em>Administer book outlines</em> permission can add <em>any</em> type of content to a book by selecting the appropriate book outline while editing the content. They can also view a list of all books, and edit and rearrange section titles on the <a href="@admin-book">Book administration page</a>.', array('@admin-book' => url('admin/content/book'))) . '</dd>';
$output .= '<dt>' . t('Book navigation') . '</dt>';
$output .= '<dd>' . t("Book pages have a default book-specific navigation block. This navigation block contains links that lead to the previous and next pages in the book, and to the level above the current page in the book's structure. This block can be enabled on the <a href='@admin-block'>Blocks administration page</a>. For book pages to show up in the book navigation, they must be added to a book outline.", array('@admin-block' => url('admin/structure/block'))) . '</dd>';
$output .= '<dt>' . t('Collaboration') . '</dt>';