You are here

function ajax_facets_i18n_string_info in Ajax facets 7.3

Implements hook_i18n_string_info().

File

./ajax_facets.module, line 350

Code

function ajax_facets_i18n_string_info() {
  $groups['ajax_facets'] = [
    'title' => t('Ajax facets'),
    'description' => t('Translatable ajax facets: label.'),
    // This group doesn't have strings with format.
    'format' => FALSE,
    // This group can list all strings.
    'list' => TRUE,
  ];
  return $groups;
}