diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-27 13:45:24 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-27 13:45:24 +0000 |
commit | 4f5c52e2499d26fcc8756f43ff781ef3b9331450 (patch) | |
tree | f2830953c6785d7557b724f74cb69a2160915e98 | |
parent | f45df0065e1f8b73e116fd96d8825c302179fd43 (diff) | |
download | brdo-4f5c52e2499d26fcc8756f43ff781ef3b9331450.tar.gz brdo-4f5c52e2499d26fcc8756f43ff781ef3b9331450.tar.bz2 |
#100569 by keith.smith: improve explanation of what a book is about (in book.module)
-rw-r--r-- | modules/book/book.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book/book.module b/modules/book/book.module index da000663d..d4cf70441 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -1010,7 +1010,7 @@ function book_help($path, $arg) { $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@book">Book page</a>.', array('@book' => 'http://drupal.org/handbook/modules/book/')) .'</p>'; return $output; case 'admin/content/book': - return '<p>'. t('The book module offers a means to organize content, authored by many users, in an online manual, outline or FAQ.') .'</p>'; + return '<p>'. t('The book module offers a means to organize a collection of related posts, collectively known as a book. When viewed, these posts automatically display links to adjacent book pages, providing a simple navigation system for creating and reviewing structured content.') .'</p>'; case 'node/%/outline': return '<p>'. t('The outline feature allows you to include posts in the <a href="@book">book hierarchy</a>, as well as move them within the hierarchy or to <a href="@book-admin">reorder an entire book</a>.', array('@book' => url('book'), '@book-admin' => url('admin/content/book'))) .'</p>'; } |