Changeset 7104 for trunk/wp-admin/import/wordpress.php
- Timestamp:
- 02/29/2008 05:09:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/wordpress.php
r7072 r7104 382 382 if ( $post_exists ) { 383 383 echo '<li>'; 384 printf(__('Post < i>%s</i> already exists.'), stripslashes($post_title));384 printf(__('Post <em>%s</em> already exists.'), stripslashes($post_title)); 385 385 } else { 386 386 … … 413 413 } 414 414 else { 415 printf(__('Importing post < i>%s</i>...'), stripslashes($post_title));415 printf(__('Importing post <em>%s</em>...'), stripslashes($post_title)); 416 416 $comment_post_ID = $post_id = wp_insert_post($postdata); 417 417 } … … 517 517 function process_attachment($postdata, $remote_url) { 518 518 if ($this->fetch_attachments and $remote_url) { 519 printf( __('Importing attachment < i>%s</i>... '), htmlspecialchars($remote_url) );519 printf( __('Importing attachment <em>%s</em>... '), htmlspecialchars($remote_url) ); 520 520 $upload = $this->fetch_remote_file($postdata, $remote_url); 521 521 if ( is_wp_error($upload) ) { … … 552 552 } 553 553 else { 554 printf( __('Skipping attachment < i>%s</i>'), htmlspecialchars($remote_url) );554 printf( __('Skipping attachment <em>%s</em>'), htmlspecialchars($remote_url) ); 555 555 } 556 556 }
Note: See TracChangeset
for help on using the changeset viewer.