You are here

function date_facets_i18n_string_info in Date Facets 7

Implements hook_i18n_string_info().

File

./date_facets.module, line 269
Provides date range facets that are similar to implementations in major search engines.

Code

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