You are here

function taxonomy_title_i18n_string_info in Taxonomy Title 7

Implements hook_i18n_string_info()

File

./taxonomy_title.module, line 231
Enhanced control over the heading tag for the taxonomy term list pages.

Code

function taxonomy_title_i18n_string_info() {
  $groups['taxonomy_title'] = array(
    'title' => t('Taxonomy title'),
    'description' => t('Translatable custom page titles for taxonomy terms.'),
    'format' => FALSE,
    // This group doesn't have strings with format
    'list' => FALSE,
    // This group cannot list all strings
    'refresh callback' => 'taxonomy_title_locale_refresh',
  );
  return $groups;
}