Changeset 4679
- Timestamp:
- 01/05/2007 08:45:52 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/blogger.php
r4608 r4679 8 8 // Shows the welcome screen and the magic iframe. 9 9 function greet() { 10 $title = __('Import Blogger or Blogspot');11 $welcome = __('Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog.');10 $title = __('Import Old Blogger'); 11 $welcome = __('Howdy! This importer allows you to import posts and comments from your Old Blogger account into your WordPress blog.'); 12 12 $noiframes = __('This feature requires iframe support.'); 13 13 $warning = js_escape(__('This will delete everything saved by the Blogger importer except your posts and comments. Are you sure you want to do this?')); … … 16 16 17 17 echo "<div class='wrap'><h2>$title</h2><p>$welcome</p>"; 18 echo "<p>" . __('Please note that this importer <em>does not work with new Blogger (using your Google account)</em>.') . "</p>"; 18 19 if ( function_exists('curl_init') ) 19 20 echo "<iframe src='admin.php?import=blogger&noheader=true' height='350px' width = '99%'>$noiframes</iframe><p><a href='admin.php?import=blogger&restart=true&noheader=true' onclick='return confirm(\"$warning\")'>$reset</a></p>"; … … 663 664 $blogger_import = new Blogger_Import(); 664 665 665 register_importer('blogger', __(' Blogger or Blog*Spot'), __('Import posts, comments, and users from a Blogger or Blog*Spotblog'), array ($blogger_import, 'start'));666 register_importer('blogger', __('Old Blogger'), __('Import posts, comments, and users from an Old Blogger blog'), array ($blogger_import, 'start')); 666 667 667 668 ?>
Note: See TracChangeset
for help on using the changeset viewer.