Contributions API

i18ntaxonomy_locale

Definition

i18ntaxonomy_locale($op = 'groups', $group = NULL)
contributions/i18n/i18ntaxonomy/i18ntaxonomy.module, line 115

Description

Implementation of hook_locale().

Code

<?php
function i18ntaxonomy_locale($op = 'groups', $group = NULL) {
  switch ($op) {
    case 'groups':
      return array('taxonomy' => t('Taxonomy'));
    case 'refresh':
      if ($group == 'taxonomy') {
        return i18ntaxonomy_locale_refresh();
      }
  }
}
?>