Closed (fixed)
Project:
Pollfield
Version:
6.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
4 Dec 2009 at 08:53 UTC
Updated:
9 Feb 2010 at 16:10 UTC
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
Comment #1
dddave commentedComment #2
Flying Drupalist commentedI've reviewed it, please make change in cvs.
Comment #3
mario_prkos commentedIt is already done in the little different way submitted in http://drupal.org/node/589918 in #5. Thanks any way!!!
Comment #4
dddave commentedper#3