diff options
Diffstat (limited to 'modules/locale/locale.module')
-rw-r--r-- | modules/locale/locale.module | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module index b48bb239f..128197247 100644 --- a/modules/locale/locale.module +++ b/modules/locale/locale.module @@ -190,8 +190,14 @@ function locale_inc_callback() { */ function locale_perm() { 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.'), + 'administer languages' => array( + 'title' => t('Administer languages'), + 'description' => t('Manage the languages in which the website content and interface text may be displayed.'), + ), + 'translate interface' => array( + 'title' => t('Translate the interface'), + 'description' => t('Translate the text of the website interface.'), + ), ); } |