summaryrefslogtreecommitdiff
path: root/modules/comment/comment.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r--modules/comment/comment.module7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index faf77f741..2eb985559 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -271,7 +271,12 @@ function comment_node_type($op, $info) {
* Implementation of hook_perm().
*/
function comment_perm() {
- return array('access comments', 'post comments', 'administer comments', 'post comments without approval');
+ return array(
+ 'access comments' => t('View comments attached to content.'),
+ 'post comments' => t('Add comments to content (approval required).'),
+ 'post comments without approval' => t('Add comments to content (no approval required).'),
+ 'administer comments' => t('Manage and approve comments, and configure comment administration settings.'),
+ );
}
/**