Changeset 4680
- Timestamp:
- 01/05/2007 08:46:27 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-admin/import/blogger.php
r4239 r4680 8 8 // Shows the welcome screen and the magic iframe. 9 9 function greet() { 10 $title = __('Import Blogger');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 = __('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 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 and Blogspot'), __('Import <strong>posts and comments</strong> from yourBlogger account'), array ($blogger_import, 'start'));666 register_importer('blogger', __('Old Blogger'), __('Import <strong>posts and comments</strong> from your Old Blogger account'), array ($blogger_import, 'start')); 666 667 667 668 ?>
Note: See TracChangeset
for help on using the changeset viewer.