summaryrefslogtreecommitdiff
path: root/modules/system
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/system
parent23acf0ebb30c7858f0f874f1ccdc0e54e631f419 (diff)
downloadbrdo-29368b4664a76225b0e7d1de712131b639a12104.tar.gz
brdo-29368b4664a76225b0e7d1de712131b639a12104.tar.bz2
- Patch #620446 by Xano: rewrite permission titles and descriptions.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module20
1 files changed, 6 insertions, 14 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 57048bbf8..9e771aa3f 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -198,39 +198,31 @@ function system_permission() {
return array(
'administer site configuration' => array(
'title' => t('Administer site configuration'),
- 'description' => t('Configure site-wide settings such as module or theme administration settings.'),
),
'administer software updates' => array(
- 'title' => t('Administer software updates'),
- 'description' => t('Run the update.php script.'),
+ 'title' => t('Run software updates'),
),
'administer actions' => array(
'title' => t('Administer actions'),
- 'description' => t('Manage the actions defined for your site.'),
),
'administer files' => array(
- 'title' => t('Administer files'),
- 'description' => t('Manage user-uploaded files.'),
+ 'title' => t('Administer user-uploaded files'),
),
'access administration pages' => array(
- 'title' => t('Access administration pages'),
- 'description' => t('View the administration panel and browse the help system.'),
+ 'title' => t('Use the administration pages and help'),
),
'access contextual links' => array(
- 'title' => t('Access contextual links'),
+ 'title' => t('Use contextual links'),
'description' => t('Use contextual links to perform actions related to elements on a page.'),
),
'access site in maintenance mode' => array(
- 'title' => t('Access site in maintenance mode'),
- 'description' => t('Log in when the site is in maintenance mode.'),
+ 'title' => t('Use the site in maintenance mode'),
),
'access site reports' => array(
- 'title' => t('Access site reports'),
- 'description' => t('View reports from system logs and other status information.'),
+ 'title' => t('View site reports'),
),
'block IP addresses' => array(
'title' => t('Block IP addresses'),
- 'description' => t('Block IP addresses from accessing your site.'),
),
);
}