Hi,

Just to say the legend tag labeled Pollfield settings should be translatable, however it has never been.

function theme_pollfield($element) {

  $output = '<fieldset class="menu-item-form collapsible collapsed pollfield-form"><legend>Pollfield settings</legend>'. $element['#children'] .'</fieldset>';
  return $output;
}

should become

function theme_pollfield($element) {

  $output = '<fieldset class="menu-item-form collapsible collapsed pollfield-form"><legend>'.t('Pollfield settings').'</legend>'. $element['#children'] .'</fieldset>';
  return $output;
}

Cheers

Comments

dddave’s picture

Status: Active » Needs review
Flying Drupalist’s picture

Status: Needs review » Reviewed & tested by the community

I've reviewed it, please make change in cvs.

mario_prkos’s picture

It is already done in the little different way submitted in http://drupal.org/node/589918 in #5. Thanks any way!!!

dddave’s picture

Status: Reviewed & tested by the community » Fixed

per#3

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.