i18n updates from nbachiyski. #2006
git-svn-id: http://svn.automattic.com/wordpress/trunk@3260 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a06b4a86cf
commit
d77b5659aa
@ -341,7 +341,7 @@ class Blogger_Import {
|
|||||||
$form = "<div style='height:0px;width:0px;overflow:hidden;'>";
|
$form = "<div style='height:0px;width:0px;overflow:hidden;'>";
|
||||||
$form.= $body;
|
$form.= $body;
|
||||||
$form.= "</div><script type='text/javascript'>forms=document.getElementsByTagName('form');for(i=0;i<forms.length;i++){if(forms[i].action.search('{$blog_opt}')){forms[i].submit();break;}}</script>";
|
$form.= "</div><script type='text/javascript'>forms=document.getElementsByTagName('form');for(i=0;i<forms.length;i++){if(forms[i].action.search('{$blog_opt}')){forms[i].submit();break;}}</script>";
|
||||||
$output.= "<p><strong>$blog_opt</strong> in progress, please wait...</p>\n";
|
$output.= '<p>'.sprintf('<strong>%s</strong> in progress, please wait...', $blog_opt)."</p>\n";
|
||||||
} else {
|
} else {
|
||||||
$output.= "<p>$blog_opt</p>\n";
|
$output.= "<p>$blog_opt</p>\n";
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ class Textpattern_Import {
|
|||||||
{
|
{
|
||||||
echo '<div class="wrap">';
|
echo '<div class="wrap">';
|
||||||
echo '<h2>'.__('Import Textpattern').'</h2>';
|
echo '<h2>'.__('Import Textpattern').'</h2>';
|
||||||
echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.</p>');
|
echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'</p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function footer()
|
function footer()
|
||||||
@ -52,12 +52,12 @@ class Textpattern_Import {
|
|||||||
|
|
||||||
function greet()
|
function greet()
|
||||||
{
|
{
|
||||||
_e('<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>');
|
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>';
|
||||||
_e('<p>Your Textpattern Configuration settings are as follows:</p>');
|
echo '<p>'.__('Your Textpattern Configuration settings are as follows:').'</p>';
|
||||||
_e('<form action="admin.php?import=textpattern&step=1" method="post">');
|
echo '<form action="admin.php?import=textpattern&step=1" method="post">';
|
||||||
$this->db_form();
|
$this->db_form();
|
||||||
_e('<input type="submit" name="submit" value="Import Categories" />');
|
echo '<input type="submit" name="submit" value="Import Categories" />';
|
||||||
_e('</form>');
|
echo '</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_txp_cats()
|
function get_txp_cats()
|
||||||
@ -427,7 +427,7 @@ class Textpattern_Import {
|
|||||||
// Deal with the links
|
// Deal with the links
|
||||||
if(is_array($links))
|
if(is_array($links))
|
||||||
{
|
{
|
||||||
echo __('<p>Importing Links...<br /><br /></p>');
|
echo '<p>'.__('Importing Links...').'<br /><br /></p>';
|
||||||
foreach($links as $link)
|
foreach($links as $link)
|
||||||
{
|
{
|
||||||
$count++;
|
$count++;
|
||||||
@ -462,7 +462,9 @@ class Textpattern_Import {
|
|||||||
$txplinks2wplinks[$link_id] = $ret_id;
|
$txplinks2wplinks[$link_id] = $ret_id;
|
||||||
}
|
}
|
||||||
add_option('txplinks2wplinks',$txplinks2wplinks);
|
add_option('txplinks2wplinks',$txplinks2wplinks);
|
||||||
echo __('<p>Done! <strong>'.$count.'</strong> Links imported.<br /><br /></p>');
|
echo '<p>';
|
||||||
|
printf(__('Done! <strong>%s</strong> Links imported'), $count);
|
||||||
|
echo '<br /><br /></p>';
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
echo __('No Links to Import!');
|
echo __('No Links to Import!');
|
||||||
@ -478,9 +480,9 @@ class Textpattern_Import {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
_e('<form action="admin.php?import=textpattern&step=2" method="post">');
|
echo '<form action="admin.php?import=textpattern&step=2" method="post">';
|
||||||
_e('<input type="submit" name="submit" value="Import Users" />');
|
printf('<input type="submit" name="submit" value="%s" />', __('Import Users'));
|
||||||
_e('</form>');
|
echo '</form>';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -490,9 +492,9 @@ class Textpattern_Import {
|
|||||||
$users = $this->get_txp_users();
|
$users = $this->get_txp_users();
|
||||||
$this->users2wp($users);
|
$this->users2wp($users);
|
||||||
|
|
||||||
_e('<form action="admin.php?import=textpattern&step=3" method="post">');
|
echo '<form action="admin.php?import=textpattern&step=3" method="post">';
|
||||||
_e('<input type="submit" name="submit" value="Import Posts" />');
|
printf('<input type="submit" name="submit" value="%s" />', __('Import Posts'));
|
||||||
_e('</form>');
|
echo '</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function import_posts()
|
function import_posts()
|
||||||
@ -501,9 +503,9 @@ class Textpattern_Import {
|
|||||||
$posts = $this->get_txp_posts();
|
$posts = $this->get_txp_posts();
|
||||||
$this->posts2wp($posts);
|
$this->posts2wp($posts);
|
||||||
|
|
||||||
_e('<form action="admin.php?import=textpattern&step=4" method="post">');
|
echo '<form action="admin.php?import=textpattern&step=4" method="post">';
|
||||||
_e('<input type="submit" name="submit" value="Import Comments" />');
|
printf('<input type="submit" name="submit" value="%s" />', __('Import Comments'));
|
||||||
_e('</form>');
|
echo '</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function import_comments()
|
function import_comments()
|
||||||
@ -512,9 +514,9 @@ class Textpattern_Import {
|
|||||||
$comments = $this->get_txp_comments();
|
$comments = $this->get_txp_comments();
|
||||||
$this->comments2wp($comments);
|
$this->comments2wp($comments);
|
||||||
|
|
||||||
_e('<form action="admin.php?import=textpattern&step=5" method="post">');
|
echo '<form action="admin.php?import=textpattern&step=5" method="post">';
|
||||||
_e('<input type="submit" name="submit" value="Import Links" />');
|
printf('<input type="submit" name="submit" value="%s" />', __('Import Links'));
|
||||||
_e('</form>');
|
echo '</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function import_links()
|
function import_links()
|
||||||
@ -524,9 +526,9 @@ class Textpattern_Import {
|
|||||||
$this->links2wp($links);
|
$this->links2wp($links);
|
||||||
add_option('txp_links', $links);
|
add_option('txp_links', $links);
|
||||||
|
|
||||||
_e('<form action="admin.php?import=textpattern&step=6" method="post">');
|
echo '<form action="admin.php?import=textpattern&step=6" method="post">';
|
||||||
_e('<input type="submit" name="submit" value="Finish" />');
|
printf('<input type="submit" name="submit" value="%s" />', __('Finish'));
|
||||||
_e('</form>');
|
echo '</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function cleanup_txpimport()
|
function cleanup_txpimport()
|
||||||
@ -547,32 +549,32 @@ class Textpattern_Import {
|
|||||||
|
|
||||||
function tips()
|
function tips()
|
||||||
{
|
{
|
||||||
echo __('<p>Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible.</p>');
|
echo '<p>'.__('Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible.').'</p>';
|
||||||
echo __('<h3>Users</h3>');
|
echo '<h3>'.__('Users').'</h3>';
|
||||||
echo __('<p>You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn\'t have that login in Textpattern, 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 Textpattern 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="/wp-login.php">Login</a> and change it.</p>');
|
echo '<p>'.__('You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn\'t have that login in Textpattern, 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 Textpattern 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="/wp-login.php">Login</a> and change it.').'</p>';
|
||||||
echo __('<h3>Preserving Authors</h3>');
|
echo '<h3>'.__('Preserving Authors').'</h3>';
|
||||||
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>');
|
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>';
|
||||||
echo __('<h3>Textile</h3>');
|
echo '<h3>'.__('Textile').'</h3>';
|
||||||
echo __('<p>Also, since you\'re coming from Textpattern, 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>');
|
echo '<p>'.__('Also, since you\'re coming from Textpattern, 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>';
|
||||||
echo __('<h3>WordPress Resources</h3>');
|
echo '<h3>'.__('WordPress Resources').'</h3>';
|
||||||
echo __('<p>Finally, there are numerous WordPress resources around the internet. Some of them are:</p>');
|
echo '<p>'.__('Finally, there are numerous WordPress resources around the internet. Some of them are:').'</p>';
|
||||||
echo __('<ul>');
|
echo '<ul>';
|
||||||
echo __('<li><a href="http://www.wordpress.org">The official WordPress site</a></li>');
|
echo '<li>'.__('<a href="http://www.wordpress.org">The official WordPress site</a>').'</li>';
|
||||||
echo __('<li><a href="http://wordpress.org/support/">The WordPress support forums</li>');
|
echo '<li>'.__('<a href="http://wordpress.org/support/">The WordPress support forums').'</li>';
|
||||||
echo __('<li><a href="http://codex.wordpress.org">The Codex (In other words, the WordPress Bible)</a></li>');
|
echo '<li>'.__('<a href="http://codex.wordpress.org">The Codex (In other words, the WordPress Bible)</a>').'</li>';
|
||||||
echo __('</ul>');
|
echo '</ul>';
|
||||||
echo __('<p>That\'s it! What are you waiting for? Go <a href="/wp-login.php">login</a>!</p>');
|
echo '<p>'.__('That\'s it! What are you waiting for? Go <a href="/wp-login.php">login</a>!').'</p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function db_form()
|
function db_form()
|
||||||
{
|
{
|
||||||
_e('<ul>');
|
echo '<ul>';
|
||||||
_e('<li><label for="dbuser">Textpattern Database User:</label> <input type="text" name="dbuser" /></li>');
|
printf('<li><label for="dbuser">%s</label> <input type="text" name="dbuser" /></li>', __('Textpattern Database User:'));
|
||||||
_e('<li><label for="dbpass">Textpattern Database Password:</label> <input type="password" name="dbpass" /></li>');
|
printf('<li><label for="dbpass">%s</label> <input type="password" name="dbpass" /></li>', __('Textpattern Database Password:'));
|
||||||
_e('<li><label for="dbname">Textpattern Database Name:</label> <input type="text" name="dbname" /></li>');
|
printf('<li><label for="dbname">%s</label> <input type="text" name="dbname" /></li>', __('Textpattern Database Name:'));
|
||||||
_e('<li><label for="dbhost">Textpattern Database Host:</label> <input type="text" name="dbhost" value="localhost" /></li>');
|
printf('<li><label for="dbhost">%s</label> <input type="text" name="dbhost" value="localhost" /></li>', __('Textpattern Database Host:'));
|
||||||
_e('<li><label for="dbprefix">Textpattern Table prefix (if any)t:</label> <input type="text" name="dbprefix" /></li>');
|
printf('<li><label for="dbprefix">%s</label> <input type="text" name="dbprefix" /></li>', __('Textpattern Table prefix (if any):'));
|
||||||
_e('</ul>');
|
echo '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function dispatch()
|
function dispatch()
|
||||||
@ -658,4 +660,4 @@ class Textpattern_Import {
|
|||||||
|
|
||||||
$txp_import = new Textpattern_Import();
|
$txp_import = new Textpattern_Import();
|
||||||
register_importer('textpattern', 'Textpattern', __('Import posts from a Textpattern Blog'), array ($txp_import, 'dispatch'));
|
register_importer('textpattern', 'Textpattern', __('Import posts from a Textpattern Blog'), array ($txp_import, 'dispatch'));
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user