Changeset 11190 for trunk/wp-admin/import/livejournal.php
- Timestamp:
- 05/05/2009 04:28:05 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/livejournal.php
r11173 r11190 210 210 211 211 <p><?php _e( 'If you have any entries on LiveJournal which are marked as private, they will be password-protected when they are imported so that only people who know the password can see them.' ) ?></p> 212 <p><?php _e( "If you don't enter a password, ALL ENTRIES from your LiveJournal will be imported as public posts in WordPress.") ?></p>212 <p><?php _e( 'If you don’t enter a password, ALL ENTRIES from your LiveJournal will be imported as public posts in WordPress.' ) ?></p> 213 213 <p><?php _e( 'Enter the password you would like to use for all protected entries here:' ) ?></p> 214 214 <table class="form-table"> … … 384 384 } 385 385 if ( !$post_id ) { 386 _e( "Couldn't get post ID (creating post failed!)");386 _e( 'Couldn’t get post ID (creating post failed!)' ); 387 387 echo '</li>'; 388 388 return new WP_Error( 'insert_post_failed', __( 'Failed to create post.' ) ); … … 779 779 echo '<div id="ljapi-status">'; 780 780 echo '<h3>' . __( 'Importing Posts' ) . '</h3>'; 781 echo '<p>' . __( "We're downloading and importing your LiveJournal posts...") . '</p>';781 echo '<p>' . __( 'We’re downloading and importing your LiveJournal posts...' ) . '</p>'; 782 782 if ( get_option( 'ljapi_post_batch' ) && count( get_option( 'ljapi_sync_item_times' ) ) ) { 783 783 $batch = count( get_option( 'ljapi_sync_item_times' ) ); … … 802 802 ?> 803 803 <p><strong><?php _e( 'Uh oh – LiveJournal has disconnected us because we made too many requests to their servers too quickly.' ) ?></strong></p> 804 <p><strong><?php _e( "We've saved where you were up to though, so if you come back to this importer in about 30 minutes, you should be able to continue from where you were.") ?></strong></p>804 <p><strong><?php _e( 'We’ve saved where you were up to though, so if you come back to this importer in about 30 minutes, you should be able to continue from where you were.' ) ?></strong></p> 805 805 <?php 806 806 echo $this->next_step( 1, __( 'Try Again' ) ); … … 822 822 <?php 823 823 } else { 824 echo '<p>' . __( "Your posts have all been imported, but wait - there's more! Now we need to download & import your comments.") . '</p>';824 echo '<p>' . __( 'Your posts have all been imported, but wait – there’s more! Now we need to download & import your comments.' ) . '</p>'; 825 825 echo $this->next_step( 2, __( 'Download my comments »' ) ); 826 826 $this->auto_submit();
Note: See TracChangeset
for help on using the changeset viewer.