summaryrefslogtreecommitdiff
path: root/modules/contact
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/contact
parent23acf0ebb30c7858f0f874f1ccdc0e54e631f419 (diff)
downloadbrdo-29368b4664a76225b0e7d1de712131b639a12104.tar.gz
brdo-29368b4664a76225b0e7d1de712131b639a12104.tar.bz2
- Patch #620446 by Xano: rewrite permission titles and descriptions.
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.module9
1 files changed, 3 insertions, 6 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index ced9df4db..9f0e3ca16 100644
--- a/modules/contact/contact.module
+++ b/modules/contact/contact.module
@@ -43,16 +43,13 @@ function contact_help($path, $arg) {
function contact_permission() {
return array(
'administer contact forms' => array(
- 'title' => t('Administer contact forms'),
- 'description' => t('Manage contact forms and configure contact form administrative settings.'),
+ 'title' => t('Administer contact forms and contact form settings'),
),
'access site-wide contact form' => array(
- 'title' => t('Access site-wide contact form'),
- 'description' => t('Send e-mails to administrator-defined recipients using the site-wide contact form.'),
+ 'title' => t('Use the site-wide contact form'),
),
'access user contact forms' => array(
- 'title' => t('Access user contact forms'),
- 'description' => t('Send e-mails to users using their contact forms.'),
+ 'title' => t("Use users' personal contact forms"),
),
);
}