Changeset 8080
- Timestamp:
- 06/14/08 15:08:53 (5 months ago)
- Files:
-
- trunk/wp-admin/import/wp-cat2tag.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/import/wp-cat2tag.php
r8077 r8080 51 51 52 52 if ( $cat_num > 0 ) { 53 echo '<h2> Convert Categories (' . $cat_num . ') to Tags.</h2>';53 echo '<h2>' . sprintf( __ngettext( 'Convert Category to Tag.', 'Convert Categories (%d) to Tags.', $cat_num ), $cat_num ) . '</h2>'; 54 54 echo '<div class="narrow">'; 55 55 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>'; … … 126 126 127 127 if ( $tags_num > 0 ) { 128 echo '<h2> Convert Tags (' . $tags_num . ') to Categories.</h2>';128 echo '<h2>' . sprintf( __ngettext( 'Convert Tag to Category.', 'Convert Tags (%d) to Categories.', $tags_num ), $tags_num ) . '</h2>'; 129 129 echo '<div class="narrow">'; 130 130 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>';
