function locale_locale
Same name and namespace in other branches
- 7.x drupal-7.x/modules/locale/locale.module \locale_locale()
Implementation of hook_locale().
Archivo
- drupal-6.x/
modules/ locale/ locale.module, line 192 - Add language handling functionality and enables the translation of the user interface to languages other than English.
Código
function locale_locale($op = 'groups') {
switch ($op) {
case 'groups':
return array('default' => t('Built-in interface'));
}
}