1.20.x locale.module locale_config_info()

Implements hook_config_info().

File

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

Code

function locale_config_info() {
  $prefixes['locale.settings'] = array(
    'label' => t('Locale settings'),
    'group' => t('Configuration'),
  );

  return $prefixes;
}