You are here

function nivo_slider_i18n_string_info in Nivo Slider 7

Same name and namespace in other branches
  1. 8 nivo_slider.module \nivo_slider_i18n_string_info()

Implements hook_i18n_string_info()

File

./nivo_slider.module, line 163
Primarily Drupal hooks.

Code

function nivo_slider_i18n_string_info() {
  $groups['nivo_slider'] = array(
    'title' => t('Nivo Slider'),
    'description' => t('Slide titles and descriptions.'),
    'format' => TRUE,
    'list' => FALSE,
    'refresh callback' => 'nivo_slider_locale_refresh',
  );
  return $groups;
}