]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/import/livejournal.php
Wordpress 2.5.1
[autoinstalls/wordpress.git] / wp-admin / import / livejournal.php
index 81f0365acebec2792598fc530e9cf1b4ba54340f..bd8394ed948479ff87c3c53d9e6919c752e706b1 100644 (file)
@@ -66,9 +66,9 @@ class LJ_Import {
 
                        echo '<li>';
                        if ($post_id = post_exists($post_title, $post_content, $post_date)) {
-                               printf(__('Post <i>%s</i> already exists.'), stripslashes($post_title));
+                               printf(__('Post <em>%s</em> already exists.'), stripslashes($post_title));
                        } else {
-                               printf(__('Importing post <i>%s</i>...'), stripslashes($post_title));
+                               printf(__('Importing post <em>%s</em>...'), stripslashes($post_title));
                                $postdata = compact('post_author', 'post_date', 'post_content', 'post_title', 'post_status');
                                $post_id = wp_insert_post($postdata);
                                if ( is_wp_error( $post_id ) )
@@ -119,7 +119,7 @@ class LJ_Import {
                        }
                        if ( $num_comments ) {
                                echo ' ';
-                               printf(__('(%s comments)'), $num_comments);
+                               printf(__ngettext('(%s comment)', '(%s comments)', $num_comments), $num_comments);
                        }
                        echo '</li>';
                }
@@ -138,6 +138,7 @@ class LJ_Import {
                if ( is_wp_error( $result ) )
                        return $result;
                wp_import_cleanup($file['id']);
+               do_action('import_done', 'livejournal');
 
                echo '<h3>';
                printf(__('All done. <a href="%s">Have fun!</a>'), get_option('home'));
@@ -174,5 +175,5 @@ class LJ_Import {
 
 $livejournal_import = new LJ_Import();
 
-register_importer('livejournal', __('LiveJournal'), __('Import posts from a LiveJournal XML export file'), array ($livejournal_import, 'dispatch'));
+register_importer('livejournal', __('LiveJournal'), __('Import posts from a LiveJournal XML export file.'), array ($livejournal_import, 'dispatch'));
 ?>