You are here

function path_metatags_i18n_i18n_string_info in Path metatags 7

Implements hook_i18n_string_info().

File

path_metatags_i18n/path_metatags_i18n.module, line 11
Internationalization (i18n) integration.

Code

function path_metatags_i18n_i18n_string_info() {
  $groups['path_metatags'] = array(
    'title' => t('Path metatags'),
    'description' => t('Translatable path metatags values.'),
    'format' => FALSE,
    'list' => FALSE,
  );
  return $groups;
}