summaryrefslogtreecommitdiff
path: root/modules/statistics
diff options
context:
space:
mode:
Diffstat (limited to 'modules/statistics')
-rw-r--r--modules/statistics/statistics.module5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module
index 1242e973b..b92f79c90 100644
--- a/modules/statistics/statistics.module
+++ b/modules/statistics/statistics.module
@@ -69,7 +69,10 @@ function statistics_exit() {
* Implementation of hook_perm().
*/
function statistics_perm() {
- return array('access statistics', 'view post access counter');
+ return array(
+ 'access statistics' => t('View content access statistics.'),
+ 'view post access counter' => t('View the total number of times a piece of content has been accessed.'),
+ );
}
/**