Make WordPress Core


Ignore:
Timestamp:
02/29/2008 05:09:44 PM (17 years ago)
Author:
ryan
Message:

Update deprecated attributes. Props hansengel. fixes #6037

File:
1 edited

Legend:

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

    r7072 r7104  
    153153<h2><?php _e('Assign Authors'); ?></h2>
    154154<p><?php _e('To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin\'s entries.'); ?></p>
    155 <p><?php _e('Below, you can see the names of the authors of the MovableType posts in <i>italics</i>. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox.'); ?></p>
     155<p><?php _e('Below, you can see the names of the authors of the MovableType posts in <em>italics</em>. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox.'); ?></p>
    156156<p><?php _e('If a new user is created by WordPress, a password will be randomly generated. Manually change the user\'s details if necessary.'); ?></p>
    157157    <?php
     
    206206        if ( $post_id = post_exists($post->post_title, '', $post->post_date) ) {
    207207            echo '<li>';
    208             printf(__('Post <i>%s</i> already exists.'), stripslashes($post->post_title));
     208            printf(__('Post <em>%s</em> already exists.'), stripslashes($post->post_title));
    209209        } else {
    210210            echo '<li>';
    211             printf(__('Importing post <i>%s</i>...'), stripslashes($post->post_title));
     211            printf(__('Importing post <em>%s</em>...'), stripslashes($post->post_title));
    212212
    213213            if ( '' != trim( $post->extended ) )
Note: See TracChangeset for help on using the changeset viewer.