Ticket #6557: 6557.diff
| File 6557.diff, 1.2 KB (added by , 18 years ago) |
|---|
-
wp-admin/import/wordpress.php
35 35 36 36 function greet() { 37 37 echo '<div class="narrow">'; 38 echo '<p>'.__('Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, comments, custom fields, and categories into this blog.').'</p>';38 echo '<p>'.__('Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, pages, comments, custom fields, categories, and tags into this blog.').'</p>'; 39 39 echo '<p>'.__('Choose a WordPress WXR file to upload, then click Upload file and import.').'</p>'; 40 40 wp_import_upload_form("admin.php?import=wordpress&step=1"); 41 41 echo '</div>'; … … 743 743 744 744 $wp_import = new WP_Import(); 745 745 746 register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, pages, and categories</strong> from a WordPress export file.'), array ($wp_import, 'dispatch'));746 register_importer('wordpress', 'WordPress', __('Import <strong>posts, pages, comments, custom fields, categories, and tags</strong> from a WordPress export file.'), array ($wp_import, 'dispatch')); 747 747 748 748 ?>