You are here

function nivo_slider_i18n_string_info in Nivo Slider 8

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

Implements hook_i18n_string_info()

File

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

Code

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