You are here

function sbp_paths_i18n_string_info in Search by Page 7

Implements hook_i18n_string_info().

File

./sbp_paths.module, line 230
Module file for Search by Page Paths, a sub-module for Search by Page.

Code

function sbp_paths_i18n_string_info() {
  $groups = array();
  $groups['sbp_paths'] = array(
    'title' => t('Search by Page Paths'),
    'description' => t('Path setting text for Search by Page Paths'),
    'format' => FALSE,
    'list' => FALSE,
    'refresh callback' => '_sbp_paths_refresh_all_translations',
  );
  return $groups;
}