You are here

function i18n_taxonomy_i18n_string_info in Internationalization 7

Implements hook_i18n_string_info()

File

i18n_taxonomy/i18n_taxonomy.i18n.inc, line 90
Internationalization (i18n) hooks

Code

function i18n_taxonomy_i18n_string_info() {
  $groups['taxonomy'] = array(
    'title' => t('Taxonomy'),
    'description' => t('Vocabulary titles and term names for localizable vocabularies.'),
    'format' => FALSE,
    // This group doesn't have strings with format
    'list' => FALSE,
    // This group cannot list all strings
    'refresh callback' => 'i18n_taxonomy_i18n_string_refresh',
  );
  return $groups;
}