Ticket #2724: 2724.diff
| File 2724.diff, 16.9 KB (added by , 20 years ago) |
|---|
-
wp-admin/export.php
11 11 12 12 <div class="wrap"> 13 13 <h2><?php _e('Export'); ?></h2> 14 <p><?php _e('This will allow you to download an export of your WordPress posts and comments in a XML format.'); ?></p>15 <p> We need some more text here. Maybe talking about the export file or how to save it.</p>14 <p><?php _e('This will allow you to create and download an export of your WordPress posts, comments, and pages in a XML format.'); ?></p> 15 <p>Once you've saved the download file, you can use the Import function on another WordPress blog to import this blog.</p> 16 16 <form action="" method="get"> 17 17 <p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?> »" /> 18 18 <input type="hidden" name="download" value="true" /> -
wp-admin/import.php
7 7 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 13 13 -
wp-admin/import/blogger.php
7 7 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.'); 13 13 $warning = __('This will delete everything saved by the Blogger importer except your posts and comments. Are you sure you want to do this?'); … … 662 662 663 663 $blogger_import = new Blogger_Import(); 664 664 665 register_importer('blogger', 'Blogger and Blogspot', __('Import <strong>posts and comments</strong> from your Blogger account'), array ($blogger_import, 'start'));665 register_importer('blogger', 'Blogger or Blogspot', __('Import posts, comments, and users from a Blogger or Blogspot blog'), array ($blogger_import, 'start')); 666 666 667 667 ?> -
wp-admin/import/dotclear.php
132 132 function header() 133 133 { 134 134 echo '<div class="wrap">'; 135 echo '<h2>'.__('Import Dot clear').'</h2>';135 echo '<h2>'.__('Import DotClear').'</h2>'; 136 136 echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'</p>'; 137 137 } 138 138 … … 143 143 144 144 function greet() 145 145 { 146 echo '<p>'.__('Howdy! This importer allows you to extract posts from a Dotclear database into yourblog. Mileage may vary.').'</p>';147 echo '<p>'.__('Your Dot clear Configuration settings are as follows:').'</p>';146 echo '<p>'.__('Howdy! This will import categories, users, posts, comments, and links from a DotClear database into this blog. Mileage may vary.').'</p>'; 147 echo '<p>'.__('Your DotClear Configuration settings are as follows:').'</p>'; 148 148 echo '<form action="admin.php?import=dotclear&step=1" method="post">'; 149 149 $this->db_form(); 150 150 echo '<input type="submit" name="submit" value="'.__('Import Categories').'" />'; … … 626 626 627 627 function tips() 628 628 { 629 echo '<p>'.__('Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Dot clear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible.').'</p>';629 echo '<p>'.__('Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from DotClear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible.').'</p>'; 630 630 echo '<h3>'.__('Users').'</h3>'; 631 echo '<p>'.sprintf(__('You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn\'t have that login in Dot clear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Dotclear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. <strong>Every user has the same username, but their passwords are reset to password123.</strong> So <a href="%1$s">Login</a> and change it.'), '/wp-login.php').'</p>';631 echo '<p>'.sprintf(__('You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn\'t have that login in DotClear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and DotClear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. <strong>Every user has the same username, but their passwords are reset to password123.</strong> So <a href="%1$s">Login</a> and change it.'), '/wp-login.php').'</p>'; 632 632 echo '<h3>'.__('Preserving Authors').'</h3>'; 633 633 echo '<p>'.__('Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user.').'</p>'; 634 634 echo '<h3>'.__('Textile').'</h3>'; 635 echo '<p>'.__('Also, since you\'re coming from Dot clear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing <a href="http://www.huddledmasses.org/2004/04/19/wordpress-plugin-textile-20/">Textile for WordPress</a>. Trust me... You\'ll want it.').'</p>';635 echo '<p>'.__('Also, since you\'re coming from DotClear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing <a href="http://www.huddledmasses.org/2004/04/19/wordpress-plugin-textile-20/">Textile for WordPress</a>. Trust me... You\'ll want it.').'</p>'; 636 636 echo '<h3>'.__('WordPress Resources').'</h3>'; 637 637 echo '<p>'.__('Finally, there are numerous WordPress resources around the internet. Some of them are:').'</p>'; 638 638 echo '<ul>'; … … 646 646 function db_form() 647 647 { 648 648 echo '<ul>'; 649 printf('<li><label for="dbuser">%s</label> <input type="text" name="dbuser" /></li>', __('Dot clear Database User:'));650 printf('<li><label for="dbpass">%s</label> <input type="password" name="dbpass" /></li>', __('Dot clear Database Password:'));651 printf('<li><label for="dbname">%s</label> <input type="text" name="dbname" /></li>', __('Dot clear Database Name:'));652 printf('<li><label for="dbhost">%s</label> <input type="text" name="dbhost" value="localhost" /></li>', __('Dot clear Database Host:'));653 printf('<li><label for="dbprefix">%s</label> <input type="text" name="dbprefix" value="dc_"/></li>', __('Dot clear Table prefix:'));649 printf('<li><label for="dbuser">%s</label> <input type="text" name="dbuser" /></li>', __('DotClear Database User:')); 650 printf('<li><label for="dbpass">%s</label> <input type="password" name="dbpass" /></li>', __('DotClear Database Password:')); 651 printf('<li><label for="dbname">%s</label> <input type="text" name="dbname" /></li>', __('DotClear Database Name:')); 652 printf('<li><label for="dbhost">%s</label> <input type="text" name="dbhost" value="localhost" /></li>', __('DotClear Database Host:')); 653 printf('<li><label for="dbprefix">%s</label> <input type="text" name="dbprefix" value="dc_"/></li>', __('DotClear Table prefix:')); 654 654 printf('<li><label for="dccharset">%s</label> <input type="text" name="dccharset" value="ISO-8859-15"/></li>', __('Originating character set:')); 655 655 echo '</ul>'; 656 656 } … … 743 743 } 744 744 745 745 $dc_import = new Dotclear_Import(); 746 register_importer('dotclear', 'Dot clear', __('Import posts from a Dotclear Blog'), array ($dc_import, 'dispatch'));746 register_importer('dotclear', 'DotClear', __('Import categories, users, posts, comments, and links from a DotClear blog'), array ($dc_import, 'dispatch')); 747 747 ?> -
wp-admin/import/greymatter.php
16 16 function greet() { 17 17 $this->header(); 18 18 ?> 19 <p>This is a basic Grey Matter to WordPress import script.</p>19 <p>This is a basic Greymatter to WordPress import script.</p> 20 20 <p>What it does:</p> 21 21 <ul> 22 22 <li>Parses gm-authors.cgi to import (new) authors. Everyone is imported at level 1.</li> … … 34 34 <form name="stepOne" method="get"> 35 35 <input type="hidden" name="import" value="greymatter" /> 36 36 <input type="hidden" name="step" value="1" /> 37 <h3>Second step: Grey Matter details:</h3>37 <h3>Second step: Greymatter details:</h3> 38 38 <p><table cellpadding="0"> 39 39 <tr> 40 <td>Path to G Mfiles:</td>40 <td>Path to Greymatter files:</td> 41 41 <td><input type="text" style="width:300px" name="gmpath" value="/home/my/site/cgi-bin/greymatter/" /></td> 42 42 </tr> 43 43 <tr> 44 <td>Path to G Mentries:</td>44 <td>Path to Greymatter entries:</td> 45 45 <td><input type="text" style="width:300px" name="archivespath" value="/home/my/site/cgi-bin/greymatter/archives/" /></td> 46 46 </tr> 47 47 <tr> 48 <td colspan="2"><br />This importer will search for files 00000001.cgi to 000-whatever.cgi,<br />so you need to enter the number of the last G Mpost here.<br />(if you don't know that number, just log into your FTP and look it out<br />in the entries' folder)</td>48 <td colspan="2"><br />This importer will search for files 00000001.cgi to 000-whatever.cgi,<br />so you need to enter the number of the last Greymatter post here.<br />(if you don't know that number, just log into your FTP and look it out<br />in the entries' folder)</td> 49 49 </tr> 50 50 <tr> 51 51 <td>Last entry's number:</td> … … 308 308 309 309 $gm_import = new GM_Import(); 310 310 311 register_importer('greymatter', 'Greymatter', __('Import posts and comments from yourGreymatter blog'), array ($gm_import, 'dispatch'));311 register_importer('greymatter', 'Greymatter', __('Import users, posts, and comments from a Greymatter blog'), array ($gm_import, 'dispatch')); 312 312 ?> -
wp-admin/import/livejournal.php
20 20 } 21 21 22 22 function greet() { 23 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>'; 23 echo '<p>'.__('Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog.').'</p>'; 24 echo '<p>'.__('Choose a LiveJournal XML file to upload, then click Upload file and import.').'</p>'; 24 25 wp_import_upload_form("admin.php?import=livejournal&step=1"); 25 26 } 26 27 … … 164 165 165 166 $livejournal_import = new LJ_Import(); 166 167 167 register_importer('livejournal', 'LiveJournal', __('Import posts from LiveJournal'), array ($livejournal_import, 'dispatch'));168 register_importer('livejournal', 'LiveJournal', __('Import posts from a LiveJournal XML export file'), array ($livejournal_import, 'dispatch')); 168 169 ?> -
wp-admin/import/mt.php
11 11 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 17 17 function footer() { … … 21 21 function greet() { 22 22 $this->header(); 23 23 ?> 24 <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>24 <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> 25 25 <?php wp_import_upload_form( add_query_arg('step', 1) ); ?> 26 26 <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> 27 27 <?php … … 430 430 431 431 $mt_import = new MT_Import(); 432 432 433 register_importer('mt', 'Movable Type and Typepad', __('Imports <strong>posts and comments</strong> from yourMovable Type or Typepad blog'), array ($mt_import, 'dispatch'));433 register_importer('mt', 'Movable Type or Typepad', __('Import posts and comments from a Movable Type or Typepad blog'), array ($mt_import, 'dispatch')); 434 434 ?> -
wp-admin/import/rss.php
21 21 } 22 22 23 23 function greet() { 24 echo '<p>'.__('Howdy! This importer allows you to extract posts from a ny 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 anRSS file to upload and click Import.').'</p>';24 echo '<p>'.__('Howdy! This importer allows you to extract posts from a 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 a RSS file to upload and click Import.').'</p>'; 25 25 wp_import_upload_form("admin.php?import=rss&step=1"); 26 26 } 27 27 … … 167 167 168 168 $rss_import = new RSS_Import(); 169 169 170 register_importer('rss', 'RSS', __('Import posts from a nRSS feed'), array ($rss_import, 'dispatch'));170 register_importer('rss', 'RSS', __('Import posts from a RSS feed'), array ($rss_import, 'dispatch')); 171 171 ?> -
wp-admin/import/textpattern.php
52 52 53 53 function greet() 54 54 { 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">'; 58 59 $this->db_form(); … … 659 660 } 660 661 661 662 $txp_import = new Textpattern_Import(); 662 register_importer('textpattern', 'Textpattern', __('Import posts from a Textpattern Blog'), array ($txp_import, 'dispatch'));663 register_importer('textpattern', 'Textpattern', __('Import categories, users, posts, comments, and links from a Textpattern blog'), array ($txp_import, 'dispatch')); 663 664 ?> -
wp-admin/import/wordpress.php
25 25 } 26 26 27 27 function greet() { 28 echo '<p>'.__('Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts and comments into this blog.').'</p>'; 28 echo '<p>'.__('Howdy! Upload your WordPress XML export file and we’ll import the posts, comments, and pages into this blog.').'</p>'; 29 echo '<p>'.__('Choose a WordPress XML file to upload, then click Upload file and import.').'</p>'; 29 30 wp_import_upload_form("admin.php?import=wordpress&step=1"); 30 31 } 31 32 … … 306 307 307 308 $wp_import = new WP_Import(); 308 309 309 register_importer('wordpress', 'WordPress', __('Import posts from a WordPressexport file'), array ($wp_import, 'dispatch'));310 register_importer('wordpress', 'WordPress', __('Import posts, comments, and pages from a WordPress XML export file'), array ($wp_import, 'dispatch')); 310 311 311 312 ?> 313 No newline at end of file