You are here

function webform_localization_i18n_string_info in Webform Localization 7.4

Same name and namespace in other branches
  1. 7 webform_localization.module \webform_localization_i18n_string_info()

Implements hook_i18n_string_info().

File

./webform_localization.module, line 37
Webform localization module.

Code

function webform_localization_i18n_string_info() {
  $groups['webform'] = array(
    'title' => t('Webform Localization'),
    'description' => t('Localizable properties of webforms, like title, select options, and others.'),
    // This group doesn't have strings with format.
    'format' => FALSE,
    // This group cannot list all strings.
    'list' => FALSE,
    'refresh callback' => 'webform_localization_i18n_string_refresh',
  );
  return $groups;
}