summaryrefslogtreecommitdiff
path: root/modules/locale
diff options
context:
space:
mode:
Diffstat (limited to 'modules/locale')
-rw-r--r--modules/locale/locale.module5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
index 3aafbda17..26d83ee4d 100644
--- a/modules/locale/locale.module
+++ b/modules/locale/locale.module
@@ -186,7 +186,10 @@ function locale_inc_callback() {
* Implementation of hook_perm().
*/
function locale_perm() {
- return array('administer languages', 'translate interface');
+ return array(
+ 'administer languages' => t('Manage the languages in which the website content and interface text may be displayed.'),
+ 'translate interface' => t('Translate the text of the website interface.'),
+ );
}
/**