function locale_locale

7.x locale.module locale_locale($op = 'groups')
6.x locale.module locale_locale($op = 'groups')

Implements hook_locale().

File

drupal-7.x/modules/locale/locale.module, line 264
Add language handling functionality and enables the translation of the user interface to languages other than English.

Code

function locale_locale($op = 'groups') {
  switch ($op) {
    case 'groups':
      return array('default' => t('Built-in interface'));
  }
}