Make WordPress Core

Changeset 4679


Ignore:
Timestamp:
01/05/2007 08:45:52 AM (18 years ago)
Author:
markjaquith
Message:

Change wording for Blogger import to note that it only works with OLD Blogger accounts. Props foolswisdom. fixes #3490

File:
1 edited

Legend:

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

    r4608 r4679  
    88    // Shows the welcome screen and the magic iframe.
    99    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.');
    1212        $noiframes = __('This feature requires iframe support.');
    1313        $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?'));
     
    1616
    1717        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>";
    1819        if ( function_exists('curl_init') )
    1920            echo "<iframe src='admin.php?import=blogger&amp;noheader=true' height='350px' width = '99%'>$noiframes</iframe><p><a href='admin.php?import=blogger&amp;restart=true&amp;noheader=true' onclick='return confirm(\"$warning\")'>$reset</a></p>";
     
    663664$blogger_import = new Blogger_Import();
    664665
    665 register_importer('blogger', __('Blogger or Blog*Spot'), __('Import posts, comments, and users from a Blogger or Blog*Spot blog'), array ($blogger_import, 'start'));
     666register_importer('blogger', __('Old Blogger'), __('Import posts, comments, and users from an Old Blogger blog'), array ($blogger_import, 'start'));
    666667
    667668?>
Note: See TracChangeset for help on using the changeset viewer.