1 locale.module | locale_permission() |
Implements hook_permission().
File
- core/
modules/ locale/ locale.module, line 112 - Add language handling functionality and enables the translation of the user interface to languages other than English.
Code
function locale_permission() {
return array(
'translate interface' => array(
'title' => t('Translate interface texts'),
'restrict access' => TRUE,
'warning' => t('Alter any user interface text on the site.'),
),
);
}