i18n updates from SteveAgl. fixes #2260
git-svn-id: http://svn.automattic.com/wordpress/trunk@3424 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f44e565656
commit
813d3c7737
|
@ -142,7 +142,7 @@ class Dotclear_Import {
|
||||||
echo '<p>'.__('Your Dotclear Configuration settings are as follows:').'</p>';
|
echo '<p>'.__('Your Dotclear Configuration settings are as follows:').'</p>';
|
||||||
echo '<form action="admin.php?import=dotclear&step=1" method="post">';
|
echo '<form action="admin.php?import=dotclear&step=1" method="post">';
|
||||||
$this->db_form();
|
$this->db_form();
|
||||||
echo '<input type="submit" name="submit" value="Import Categories" />';
|
echo '<input type="submit" name="submit" value="'.__('Import Categories').'" />';
|
||||||
echo '</form>';
|
echo '</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@ class Dotclear_Import {
|
||||||
$dcdb = new wpdb(get_option('dcuser'), get_option('dcpass'), get_option('dcname'), get_option('dchost'));
|
$dcdb = new wpdb(get_option('dcuser'), get_option('dcpass'), get_option('dcname'), get_option('dchost'));
|
||||||
set_magic_quotes_runtime(0);
|
set_magic_quotes_runtime(0);
|
||||||
$prefix = get_option('tpre');
|
$prefix = get_option('tpre');
|
||||||
|
|
||||||
return $dcdb->get_results('SELECT * FROM dc_link ORDER BY position', ARRAY_A);
|
return $dcdb->get_results('SELECT * FROM dc_link ORDER BY position', ARRAY_A);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,11 +56,11 @@ class Textpattern_Import {
|
||||||
echo '<p>'.__('Your Textpattern Configuration settings are as follows:').'</p>';
|
echo '<p>'.__('Your Textpattern Configuration settings are as follows:').'</p>';
|
||||||
echo '<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();
|
||||||
echo '<input type="submit" name="submit" value="Import Categories" />';
|
echo '<input type="submit" name="submit" value="'.__('Import Categories').'" />';
|
||||||
echo '</form>';
|
echo '</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_txp_cats()
|
function get_txp_cats()
|
||||||
{
|
{
|
||||||
global $wpdb;
|
global $wpdb;
|
||||||
// General Housekeeping
|
// General Housekeeping
|
||||||
|
|
Loading…
Reference in New Issue