Syncronise the messages for Import/Export of WXR. Fixes #6557 props mtdewvirus.

git-svn-id: https://develop.svn.wordpress.org/trunk@9361 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-10-26 18:40:20 +00:00
parent cf28ff22d5
commit 674f89ae68
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class WP_Import {
function greet() { function greet() {
echo '<div class="narrow">'; echo '<div class="narrow">';
echo '<p>'.__('Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import the posts, comments, custom fields, and categories into this blog.').'</p>'; echo '<p>'.__('Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import the posts, pages, comments, custom fields, categories, and tags into this blog.').'</p>';
echo '<p>'.__('Choose a WordPress WXR file to upload, then click Upload file and import.').'</p>'; echo '<p>'.__('Choose a WordPress WXR file to upload, then click Upload file and import.').'</p>';
wp_import_upload_form("admin.php?import=wordpress&amp;step=1"); wp_import_upload_form("admin.php?import=wordpress&amp;step=1");
echo '</div>'; echo '</div>';
@ -788,6 +788,6 @@ class WP_Import {
*/ */
$wp_import = new WP_Import(); $wp_import = new WP_Import();
register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, pages, and categories</strong> from a WordPress export file.'), array ($wp_import, 'dispatch')); register_importer('wordpress', 'WordPress', __('Import <strong>posts, pages, comments, custom fields, categories, and tags</strong> from a WordPress export file.'), array ($wp_import, 'dispatch'));
?> ?>