summaryrefslogtreecommitdiff
path: root/modules/book
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-01 13:14:43 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-01 13:14:43 +0000
commit29368b4664a76225b0e7d1de712131b639a12104 (patch)
tree1729e3c2a0caa4db2566cce5282de5d1a99e8fb6 /modules/book
parent23acf0ebb30c7858f0f874f1ccdc0e54e631f419 (diff)
downloadbrdo-29368b4664a76225b0e7d1de712131b639a12104.tar.gz
brdo-29368b4664a76225b0e7d1de712131b639a12104.tar.bz2
- Patch #620446 by Xano: rewrite permission titles and descriptions.
Diffstat (limited to 'modules/book')
-rw-r--r--modules/book/book.module7
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index f31754598..a653261d3 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -70,18 +70,15 @@ function book_permission() {
return array(
'administer book outlines' => array(
'title' => t('Administer book outlines'),
- 'description' => t('Manage books through the administration panel.'),
),
'create new books' => array(
'title' => t('Create new books'),
- 'description' => t('Add new top-level books.'),
),
'add content to books' => array(
- 'title' => t('Add content to books'),
- 'description' => t('Add new content and child pages to books.'),
+ 'title' => t('Add content and child pages to books'),
),
'access printer-friendly version' => array(
- 'title' => t('Access printer-friendly version'),
+ 'title' => t('View printer-friendly books'),
'description' => t('View a book page and all of its sub-pages as a single document for ease of printing. Can be performance heavy.'),
),
);