i18ntaxonomy_locale($op = 'groups', $group = NULL)
contributions/i18n/i18ntaxonomy/i18ntaxonomy.module, line 115
Implementation of hook_locale().
<?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();
}
}
}
?>