Changeset 11190 for trunk/wp-admin/import/wp-cat2tag.php
- Timestamp:
- 05/05/2009 04:28:05 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/wp-cat2tag.php
r11173 r11190 144 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 echo '<p>' . __('Here you can selectively convert sexisting tags to categories. To get started, check the tags you wish to be converted, then click the Convert button.') . '</p>';146 echo '<p>' . __('Here you can selectively convert existing tags to categories. To get started, check the tags you wish to be converted, then click the Convert button.') . '</p>'; 147 147 echo '<p>' . __('The newly created categories will still be associated with the same posts.') . '</p></div>'; 148 148 … … 250 250 251 251 if ( ! $this->_category_exists($cat_id) ) { 252 echo '<li>' . sprintf( __('Category %s doesn \'t exist!'), $cat_id ) . "</li>\n";252 echo '<li>' . sprintf( __('Category %s doesn’t exist!'), $cat_id ) . "</li>\n"; 253 253 } else { 254 254 $category =& get_category($cat_id); … … 407 407 408 408 } else { 409 printf( '<li>' . __('Tag #%s doesn \'t exist!') . "</li>\n", $tag_id );409 printf( '<li>' . __('Tag #%s doesn’t exist!') . "</li>\n", $tag_id ); 410 410 } 411 411 }
Note: See TracChangeset
for help on using the changeset viewer.