Index: taxonomy_xml.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_xml/taxonomy_xml.module,v
retrieving revision 1.3
diff -u -F^f -r1.3 taxonomy_xml.module
--- taxonomy_xml.module	5 May 2006 20:13:44 -0000	1.3
+++ taxonomy_xml.module	2 Jul 2006 17:03:03 -0000
@@ -369,19 +374,17 @@ function taxonomy_xml_parse(&$data, $vid
         $new_terms[] = $term['name'];
      }    
   }
-  
 
-  $output .= '<p>' . t('Vocabulary') .  ' "' . $vocabulary['name'] . '": ';
+  $output .= t('Vocabulary ') .  theme('placeholder', $vocabulary['name']) .': ';
   if ($new_terms) {
-    $output .= t('added term(s)') . ' <i>' . implode(', ', $new_terms) . '.</i> ';
+    $output .= t('added term(s) ') . theme('placeholder', implode(', ', $new_terms));
   } else {
-    $output .= t('no terms added. ');
+    $output .= t('no terms added.');
   }
   if ($skipped_terms) {
-    $output .= t('Ignored duplicate term(s)') . ' <i>' . implode(', ', array_keys($skipped_terms)) . '.</i>';
+    $output .= t('Ignored duplicate term(s) ') . theme('placeholder', implode(', ', array_keys($skipped_terms)));
   }
-  $output .=  "</p>\n";
-  return '<div id="taxonomy_xml_parse_results">' . $output . "</div>\n";
+  drupal_set_message($output);
 }
 
 
