--- ./trunk/wordpress/wp-admin/import/wp-cat2tag.php	2008-06-14 08:01:25.000000000 +0200
+++ ./wp-admin/import/wp-cat2tag.php	2008-06-14 10:09:54.000000000 +0200
@@ -50,7 +50,7 @@
 		echo '<br class="clear" />';
 
 		if ( $cat_num > 0 ) {
-			echo '<h2>Convert Categories (' . $cat_num . ') to Tags.</h2>';
+			echo '<h2>' . sprintf( __( 'Convert Categories (%d) to Tags.' ), $cat_num ) . '</h2>';
 			echo '<div class="narrow">';
 			echo '<p>' . __('Hey there. Here you can selectively converts existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button.') . '</p>';
 			echo '<p>' . __('Keep in mind that if you convert a category with child categories, the children become top-level orphans.') . '</p></div>';
@@ -125,7 +125,7 @@
 		echo '<br class="clear" />';
 
 		if ( $tags_num > 0 ) {
-			echo '<h2>Convert Tags (' . $tags_num . ') to Categories.</h2>';
+			echo '<h2>' . sprintf( __( 'Convert Tags (%d) to Categories.' ), $tags_num ) . '</h2>';
 			echo '<div class="narrow">';
 			echo '<p>' . __('Here you can selectively converts existing tags to categories. To get started, check the tags you wish to be converted, then click the Convert button.') . '</p>';
 			echo '<p>' . __('The newly created categories will still be associated with the same posts.') . '</p></div>';

