1 locale.module | locale_config_info() |
Implements hook_config_info().
File
- core/
modules/ locale/ locale.module, line 152 - 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;
}