Index: feedapi.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/feedapi.module,v
retrieving revision 1.23.2.128
diff -r1.23.2.128 feedapi.module
398c398,401
<       $form['feedapi']['defaults'] = array('#type' => 'markup', '#value' => '<strong>Default settings</strong><hr>');
---
>       $form['feedapi']['defaults'] = array(
>         '#type' => 'markup',
>         '#value' => '<strong>'. t('Default settings') .'</strong><hr>'
>       );
437c440,443
<         $form['feedapi']['parsers'][$parser]['defaults'] = array('#type' => 'markup', '#value' => '<strong>Default settings</strong><hr>');
---
>         $form['feedapi']['parsers'][$parser]['defaults'] = array(
>           '#type' => 'markup',
>           '#value' => '<strong>'. t('Default settings') .'</strong><hr>'
>         );
475c481,484
<         $form['feedapi']['processors'][$processor]['defaults'] = array('#type' => 'markup', '#value' => '<strong>Default settings</strong><hr>');
---
>         $form['feedapi']['processors'][$processor]['defaults'] = array(
>           '#type' => 'markup',
>           '#value' => '<strong>'. t('Default settings') .'</strong><hr>'
>         );
