Same name and namespace in other branches
  1. 4.6.x modules/locale.module \locale_perm()
  2. 4.7.x modules/locale.module \locale_perm()
  3. 5.x modules/locale/locale.module \locale_perm()

Implementation of hook_perm().

File

modules/locale/locale.module, line 185
Add language handling functionality and enables the translation of the user interface to languages other than English.

Code

function locale_perm() {
  return array(
    'administer languages',
    'translate interface',
  );
}