Changeset 4608
- Timestamp:
- 12/05/2006 07:15:12 AM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/export.php
r4563 r4608 13 13 <h2><?php _e('Export'); ?></h2> 14 14 <div class="narrow"> 15 <p><?php _e('When you click the button below WordPress will create a XML file for you to save to your computer.'); ?></p>15 <p><?php _e('When you click the button below WordPress will create an XML file for you to save to your computer.'); ?></p> 16 16 <p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, comments, custom fields, and categories.'); ?></p> 17 <p><?php _e('Once you\'ve saved the download file, you can use the Import function on another WordPress blog to import this blog.'); ?></p> 17 18 <form action="" method="get"> 18 19 <h3><?php _e('Optional options'); ?></h3> -
trunk/wp-admin/import.php
r4480 r4608 8 8 <div class="wrap"> 9 9 <h2><?php _e('Import'); ?></h2> 10 <p><?php _e('If you have posts or comments in another system WordPress can import them into your currentblog. To get started, choose a system to import from below:'); ?></p>10 <p><?php _e('If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:'); ?></p> 11 11 12 12 <?php -
trunk/wp-admin/import/blogger.php
r4535 r4608 8 8 // Shows the welcome screen and the magic iframe. 9 9 function greet() { 10 $title = __('Import Blogger ');10 $title = __('Import Blogger or Blogspot'); 11 11 $welcome = __('Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog.'); 12 12 $noiframes = __('This feature requires iframe support.'); … … 663 663 $blogger_import = new Blogger_Import(); 664 664 665 register_importer('blogger', __('Blogger and Blog*Spot'), __('Import <strong>posts and comments</strong> from your Blogger account'), array ($blogger_import, 'start'));665 register_importer('blogger', __('Blogger or Blog*Spot'), __('Import posts, comments, and users from a Blogger or Blog*Spot blog'), array ($blogger_import, 'start')); 666 666 667 667 ?> -
trunk/wp-admin/import/dotclear.php
r4495 r4608 1 1 <?php 2 2 /* 3 * Dot clear import plugin3 * DotClear import plugin 4 4 * by Thomas Quinot - http://thomas.quinot.org/ 5 5 */ … … 297 297 $dcid2wpid[$user_id] = $ret_id; 298 298 299 // Set Dot clear-to-WordPress permissions translation299 // Set DotClear-to-WordPress permissions translation 300 300 301 301 // Update Usermeta Data … … 346 346 extract($post); 347 347 348 // Set Dot clear-to-WordPress status translation348 // Set DotClear-to-WordPress status translation 349 349 $stattrans = array(0 => 'draft', 1 => 'publish'); 350 350 $comment_status_map = array (0 => 'closed', 1 => 'open'); … … 648 648 { 649 649 echo '<table class="editform">'; 650 printf('<tr><th><label for="dbuser">%s</label></th><td><input type="text" name="dbuser" id="dbuser" /></td></tr>', __('Dot clear Database User:'));650 printf('<tr><th><label for="dbuser">%s</label></th><td><input type="text" name="dbuser" id="dbuser" /></td></tr>', __('DotClear Database User:')); 651 651 printf('<tr><th><label for="dbpass">%s</label></th><td><input type="password" name="dbpass" id="dbpass" /></td></tr>', __('DotClear Database Password:')); 652 printf('<tr><th><label for="dbname">%s</label></th><td><input type="text" name="dbname" id="dbname" /></td></tr>', __('Dot clear Database Name:'));652 printf('<tr><th><label for="dbname">%s</label></th><td><input type="text" name="dbname" id="dbname" /></td></tr>', __('DotClear Database Name:')); 653 653 printf('<tr><th><label for="dbhost">%s</label></th><td><input type="text" name="dbhost" nameid="dbhost" value="localhost" /></td></tr>', __('DotClear Database Host:')); 654 654 printf('<tr><th><label for="dbprefix">%s</label></th><td><input type="text" name="dbprefix" id="dbprefix" value="dc_"/></td></tr>', __('DotClear Table prefix:')); … … 745 745 746 746 $dc_import = new Dotclear_Import(); 747 register_importer('dotclear', __('DotClear'), __('Import posts from a DotClear Blog'), array ($dc_import, 'dispatch'));747 register_importer('dotclear', __('DotClear'), __('Import categories, users, posts, comments, and links from a DotClear blog'), array ($dc_import, 'dispatch')); 748 748 ?> -
trunk/wp-admin/import/greymatter.php
r4495 r4608 7 7 function header() { 8 8 echo '<div class="wrap">'; 9 echo '<h2>'.__('Import Grey matter').'</h2>';9 echo '<h2>'.__('Import GreyMatter').'</h2>'; 10 10 } 11 11 … … 282 282 </ul><strong><?php _e('Done') ?></strong></li></ul> 283 283 <p> </p> 284 <p><?php _e('Completed Grey matter import!') ?></p>284 <p><?php _e('Completed GreyMatter import!') ?></p> 285 285 <?php 286 286 $this->footer(); … … 310 310 $gm_import = new GM_Import(); 311 311 312 register_importer('greymatter', __('Grey matter'), __('Import posts and comments from yourGreymatter blog'), array ($gm_import, 'dispatch'));312 register_importer('greymatter', __('GreyMatter'), __('Import users, posts, and comments from a Greymatter blog'), array ($gm_import, 'dispatch')); 313 313 ?> -
trunk/wp-admin/import/livejournal.php
r4349 r4608 22 22 function greet() { 23 23 echo '<div class="narrow">'; 24 echo '<p>'.__('Howdy! This importer allows you to extract posts from LiveJournal XML export file into your blog. Pick a LiveJournal file to upload and click Import.').'</p>'; 24 echo '<p>'.__('Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog.').'</p>'; 25 echo '<p>'.__('Choose a LiveJournal XML file to upload, then click Upload file and import.').'</p>'; 25 26 wp_import_upload_form("admin.php?import=livejournal&step=1"); 26 27 echo '</div>'; … … 167 168 $livejournal_import = new LJ_Import(); 168 169 169 register_importer('livejournal', __('LiveJournal'), __('Import posts from LiveJournal'), array ($livejournal_import, 'dispatch'));170 register_importer('livejournal', __('LiveJournal'), __('Import posts from a LiveJournal XML export file'), array ($livejournal_import, 'dispatch')); 170 171 ?> -
trunk/wp-admin/import/mt.php
r4495 r4608 12 12 function header() { 13 13 echo '<div class="wrap">'; 14 echo '<h2>'.__('Import Movable Type andTypePad').'</h2>';14 echo '<h2>'.__('Import Movable Type or TypePad').'</h2>'; 15 15 } 16 16 … … 23 23 ?> 24 24 <div class="narrow"> 25 <p><?php _e('Howdy! We’re about to begin the process to import all of your Movable Type entries into WordPress. To begin, select a file to upload and click Import.'); ?></p>25 <p><?php _e('Howdy! We’re about to begin importing all of your Movable Type or Typepad entries into WordPress. To begin, choose a file to upload and click Upload file and import.'); ?></p> 26 26 <?php wp_import_upload_form( add_query_arg('step', 1) ); ?> 27 27 <p><?php _e('The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn\'t finish. If you get an <strong>out of memory</strong> error try splitting up the import file into pieces.'); ?> </p> … … 433 433 $mt_import = new MT_Import(); 434 434 435 register_importer('mt', __('Movable Type and TypePad'), __('Import s <strong>posts and comments</strong> from your Movable Type or TypePad blog'), array ($mt_import, 'dispatch'));435 register_importer('mt', __('Movable Type and TypePad'), __('Import posts and comments from a Movable Type or Typepad blog'), array ($mt_import, 'dispatch')); 436 436 ?> -
trunk/wp-admin/import/rss.php
r4349 r4608 23 23 function greet() { 24 24 echo '<div class="narrow">'; 25 echo '<p>'.__('Howdy! This importer allows you to extract posts from an yRSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import.').'</p>';25 echo '<p>'.__('Howdy! This importer allows you to extract posts from an RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import.').'</p>'; 26 26 wp_import_upload_form("admin.php?import=rss&step=1"); 27 27 echo '</div>'; -
trunk/wp-admin/import/textpattern.php
r4495 r4608 53 53 function greet() { 54 54 echo '<div class="narrow">'; 55 echo '<p>'.__('Howdy! This importer allows you to extract posts from any Textpattern 4.0.2+ into your blog. This has not been tested on previous versions of Textpattern. Mileage may vary.').'</p>'; 55 echo '<p>'.__('Howdy! This imports categories, users, posts, comments, and links from any Textpattern 4.0.2+ into this blog.').'</p>'; 56 echo '<p>'.__('This has not been tested on previous versions of Textpattern. Mileage may vary.').'</p>'; 56 57 echo '<p>'.__('Your Textpattern Configuration settings are as follows:').'</p>'; 57 58 echo '<form action="admin.php?import=textpattern&step=1" method="post">'; … … 661 662 662 663 $txp_import = new Textpattern_Import(); 663 register_importer('textpattern', __('Textpattern'), __('Import posts from a Textpattern Blog'), array ($txp_import, 'dispatch'));664 register_importer('textpattern', __('Textpattern'), __('Import categories, users, posts, comments, and links from a Textpattern blog'), array ($txp_import, 'dispatch')); 664 665 ?> -
trunk/wp-admin/import/wordpress.php
r4558 r4608 28 28 echo '<div class="narrow">'; 29 29 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>'; 30 echo '<p>'.__('Choose a WordPress WXR file to upload, then click Upload file and import.').'</p>'; 30 31 wp_import_upload_form("admin.php?import=wordpress&step=1"); 31 32 echo '</div>'; … … 341 342 $wp_import = new WP_Import(); 342 343 343 register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, and categories</strong> from a WordPress export file'), array ($wp_import, 'dispatch'));344 register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, pages, and categories</strong> from a WordPress export file'), array ($wp_import, 'dispatch')); 344 345 345 346 ?>
Note: See TracChangeset
for help on using the changeset viewer.