summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.module5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module
index 87bd6cdfe..29db175a6 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -206,7 +206,10 @@ function path_form_alter(&$form, $form_state, $form_id) {
* Implementation of hook_perm().
*/
function path_perm() {
- return array('create url aliases', 'administer url aliases');
+ return array(
+ 'create url aliases' => t('Manage URL aliases on content.'),
+ 'administer url aliases' => t('Manage URL aliases across the entire website.'),
+ );
}
/**