Changeset 10606 for trunk/wp-admin/import/wp-cat2tag.php
- Timestamp:
- 02/20/2009 07:35:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/wp-cat2tag.php
r9903 r10606 66 66 if ( $cat_num > 0 ) { 67 67 screen_icon(); 68 echo '<h2>' . sprintf( _ _ngettext( 'Convert Category to Tag.', 'Convert Categories (%d) to Tags.', $cat_num ), $cat_num ) . '</h2>';68 echo '<h2>' . sprintf( _n( 'Convert Category to Tag.', 'Convert Categories (%d) to Tags.', $cat_num ), $cat_num ) . '</h2>'; 69 69 echo '<div class="narrow">'; 70 70 echo '<p>' . __('Hey there. Here you can selectively convert existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button.') . '</p>'; … … 142 142 if ( $tags_num > 0 ) { 143 143 screen_icon(); 144 echo '<h2>' . sprintf( _ _ngettext( 'Convert Tag to Category.', 'Convert Tags (%d) to Categories.', $tags_num ), $tags_num ) . '</h2>';144 echo '<h2>' . sprintf( _n( 'Convert Tag to Category.', 'Convert Tags (%d) to Categories.', $tags_num ), $tags_num ) . '</h2>'; 145 145 echo '<div class="narrow">'; 146 146 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>';
Note: See TracChangeset
for help on using the changeset viewer.