From 11571c1befd735bd1d69caea2b093164215b4fee Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 5 Jan 2007 10:50:39 +0000 Subject: WP merge to 4681 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@831 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-admin/import/blogger.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'wp-admin/import/blogger.php') diff --git a/wp-admin/import/blogger.php b/wp-admin/import/blogger.php index 6ba0a16..80a2d11 100644 --- a/wp-admin/import/blogger.php +++ b/wp-admin/import/blogger.php @@ -7,14 +7,15 @@ class Blogger_Import { // Shows the welcome screen and the magic iframe. function greet() { - $title = __('Import Blogger or Blogspot'); - $welcome = __('Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog.'); + $title = __('Import Old Blogger'); + $welcome = __('Howdy! This importer allows you to import posts and comments from your Old Blogger account into your WordPress blog.'); $noiframes = __('This feature requires iframe support.'); $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?')); $reset = __('Reset this importer'); $incompat = __('Your web server is not properly configured to use this importer. Please enable the CURL extension for PHP and then reload this page.'); echo "

$title

$welcome

"; + echo "

" . __('Please note that this importer does not work with new Blogger (using your Google account).') . "

"; if ( function_exists('curl_init') ) echo "

$reset

"; else @@ -670,6 +671,6 @@ class Blogger_Import { $blogger_import = new Blogger_Import(); -register_importer('blogger', __('Blogger or Blog*Spot'), __('Import posts, comments, and users from a Blogger or Blog*Spot blog'), array ($blogger_import, 'start')); +register_importer('blogger', __('Old Blogger'), __('Import posts, comments, and users from an Old Blogger blog'), array ($blogger_import, 'start')); ?> -- cgit