summaryrefslogtreecommitdiff
path: root/modules/book
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-14 20:38:15 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-14 20:38:15 +0000
commit28714aa363f433c440159ca5c32d9f505e89c7b4 (patch)
treeaae6caa77d3dbd833ef4f5ca5724d24bb35bd734 /modules/book
parent378d39f4bcb9bf6878974ff1d3bf956284062fd4 (diff)
downloadbrdo-28714aa363f433c440159ca5c32d9f505e89c7b4.tar.gz
brdo-28714aa363f433c440159ca5c32d9f505e89c7b4.tar.bz2
- Patch #658140 by jhodgdon: various small help text fixes.
Diffstat (limited to 'modules/book')
-rw-r--r--modules/book/book.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index befc8258a..dda0d12fb 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -13,7 +13,7 @@ function book_help($path, $arg) {
switch ($path) {
case 'admin/help#book':
$output = '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('The Book module is used for creating structured, multi-page content, such as site resource guides, manuals, and wikis. It allows you to create content that has chapters, sections, subsections, or any similarly tiered structure. For more information, see the online handbook entry for <a href="@book">Book module</a>.', array('@book' => 'http://drupal.org/handbook/modules/book/')) . '</p>';
+ $output .= '<p>' . t('The Book module is used for creating structured, multi-page content, such as site resource guides, manuals, and wikis. It allows you to create content that has chapters, sections, subsections, or any similarly-tiered structure. For more information, see the online handbook entry for <a href="@book">Book module</a>.', array('@book' => 'http://drupal.org/handbook/modules/book/')) . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Adding and managing book content') . '</dt>';
@@ -23,7 +23,7 @@ function book_help($path, $arg) {
$output .= '<dt>' . t('Collaboration') . '</dt>';
$output .= '<dd>' . t('Books can be created collaboratively, as they allow users with appropriate permissions to add pages into existing books, and add those pages to a custom table of contents menu.') . '</dd>';
$output .= '<dt>' . t('Printing books') . '</dt>';
- $output .= '<dd>' . t("Users with the <em>access printer-friendly version</em> permission can select the <em>printer-friendly version</em> link visible at the bottom of a book page's content to generate a printer-friendly display of the page and all of its subsections.") . '</dd>';
+ $output .= '<dd>' . t("Users with the <em>View printer-friendly books</em> permission can select the <em>printer-friendly version</em> link visible at the bottom of a book page's content to generate a printer-friendly display of the page and all of its subsections.") . '</dd>';
$output .= '</dl>';
return $output;
case 'admin/content/book':