Matt, likes, lots, of, commas,,,
git-svn-id: http://svn.automattic.com/wordpress/trunk@4363 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
287467334e
commit
6434941763
|
@ -13,7 +13,7 @@ require_once ('admin-header.php');
|
|||
<h2><?php _e('Export'); ?></h2>
|
||||
<div class="narrow">
|
||||
<p><?php _e('When you click the button below WordPress will create a XML file for you to save to your computer.'); ?></p>
|
||||
<p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, comments, custom fields and categories.'); ?></p>
|
||||
<p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, comments, custom fields, and categories.'); ?></p>
|
||||
<form action="" method="get">
|
||||
<p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?> »" />
|
||||
<input type="hidden" name="download" value="true" />
|
||||
|
|
|
@ -26,7 +26,7 @@ class WP_Import {
|
|||
|
||||
function greet() {
|
||||
echo '<div class="narrow">';
|
||||
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>';
|
||||
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>';
|
||||
wp_import_upload_form("admin.php?import=wordpress&step=1");
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -308,6 +308,6 @@ class WP_Import {
|
|||
|
||||
$wp_import = new WP_Import();
|
||||
|
||||
register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields and categories</strong> from a WordPress export file'), array ($wp_import, 'dispatch'));
|
||||
register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, and categories</strong> from a WordPress export file'), array ($wp_import, 'dispatch'));
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue