Sorry i did not create a patch.

Is:

/**
 * Theme spellchecker results.
 */
function theme_apachesolr_panels_spellcheck($variables) {
  return '<div class="spelling-suggestions"><span class="did-you-mean">Did you mean?</span>' . $variables['link'] . '</div>';
}

Should be something like

/**
 * Theme spellchecker results.
 */
function theme_apachesolr_panels_spellcheck($variables) {
  return '<div class="spelling-suggestions"><span class="did-you-mean">'.t('Did you mean?').'</span>' . $variables['link'] . '</div>';
}

Comments

acbramley’s picture

Status: Active » Closed (fixed)

Committed to 7.x e0618d9 cheers