Make WordPress Core


Ignore:
Timestamp:
05/05/2009 04:28:05 AM (16 years ago)
Author:
azaozz
Message:

Banishing ASCII quotes and apostrophes, props demetris, fixes #9655

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/import/wp-cat2tag.php

    r11173 r11190  
    144144            echo '<h2>' . sprintf( _n( 'Convert Tag to Category.', 'Convert Tags (%d) to Categories.', $tags_num ), $tags_num ) . '</h2>';
    145145            echo '<div class="narrow">';
    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>';
     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>';
    147147            echo '<p>' . __('The newly created categories will still be associated with the same posts.') . '</p></div>';
    148148
     
    250250
    251251            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&#8217;t exist!'),  $cat_id ) . "</li>\n";
    253253            } else {
    254254                $category =& get_category($cat_id);
     
    407407
    408408            } else {
    409                 printf( '<li>' . __('Tag #%s doesn\'t exist!') . "</li>\n",  $tag_id );
     409                printf( '<li>' . __('Tag #%s doesn&#8217;t exist!') . "</li>\n",  $tag_id );
    410410            }
    411411        }
Note: See TracChangeset for help on using the changeset viewer.