function locale_permission

Implements hook_permission().

File

drupal/core/modules/locale/locale.module, line 200
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,
    ),
  );
}