You are here

function i18ntaxonomy_locale in Internationalization 6

Implementation of hook_locale().

File

i18ntaxonomy/i18ntaxonomy.module, line 127
i18n taxonomy module

Code

function i18ntaxonomy_locale($op = 'groups', $group = NULL) {
  switch ($op) {
    case 'groups':
      return array(
        'taxonomy' => t('Taxonomy'),
      );
    case 'info':
      $info['taxonomy']['refresh callback'] = 'i18ntaxonomy_locale_refresh';
      $info['taxonomy']['format'] = FALSE;
      return $info;
  }
}