mirror of
https://github.com/typecho/plugins.git
synced 2024-12-21 20:40:08 +08:00
修复界面结构,改进拼写
This commit is contained in:
parent
448da96487
commit
782094e9c5
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* 将 Wordpress 数据库中的数据转换为 Typecho
|
||||
* 将 WordPress 数据库中的数据转换为 Typecho
|
||||
*
|
||||
* @package Wordpress to Typecho
|
||||
* @package WordPress to Typecho
|
||||
* @author qining
|
||||
* @version 1.0.3 Beta
|
||||
* @link http://typecho.org
|
||||
@ -29,9 +29,9 @@ class WordpressToTypecho_Plugin implements Typecho_Plugin_Interface
|
||||
}
|
||||
*/
|
||||
|
||||
Helper::addPanel(1, 'WordpressToTypecho/panel.php', _t('从Wordpress导入数据'), _t('从Wordpress导入数据'), 'administrator');
|
||||
Helper::addPanel(1, 'WordpressToTypecho/panel.php', _t('从 WordPress 导入数据'), _t('从 WordPress 导入数据'), 'administrator');
|
||||
Helper::addAction('wordpress-to-typecho', 'WordpressToTypecho_Action');
|
||||
return _t('请在插件设置里设置 Wordpress 所在的数据库参数') . $error;
|
||||
return _t('请在插件设置里设置 WordPress 所在的数据库参数') . $error;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -58,11 +58,11 @@ class WordpressToTypecho_Plugin implements Typecho_Plugin_Interface
|
||||
public static function config(Typecho_Widget_Helper_Form $form)
|
||||
{
|
||||
$host = new Typecho_Widget_Helper_Form_Element_Text('host', NULL, 'localhost',
|
||||
_t('数据库地址'), _t('请填写 Wordpress 所在的数据库地址'));
|
||||
_t('数据库地址'), _t('请填写 WordPress 所在的数据库地址'));
|
||||
$form->addInput($host->addRule('required', _t('必须填写一个数据库地址')));
|
||||
|
||||
$port = new Typecho_Widget_Helper_Form_Element_Text('port', NULL, '3306',
|
||||
_t('数据库端口'), _t('Wordpress 所在的数据库服务器端口'));
|
||||
_t('数据库端口'), _t('WordPress 所在的数据库服务器端口'));
|
||||
$port->input->setAttribute('class', 'mini');
|
||||
$form->addInput($port->addRule('required', _t('必须填写数据库端口'))
|
||||
->addRule('isInteger', _t('端口号必须是纯数字')));
|
||||
@ -75,12 +75,12 @@ class WordpressToTypecho_Plugin implements Typecho_Plugin_Interface
|
||||
_t('数据库密码'));
|
||||
$form->addInput($password);
|
||||
|
||||
$database = new Typecho_Widget_Helper_Form_Element_Text('database', NULL, 'Wordpress',
|
||||
_t('数据库名称'), _t('Wordpress 所在的数据库名称'));
|
||||
$database = new Typecho_Widget_Helper_Form_Element_Text('database', NULL, 'wordpress',
|
||||
_t('数据库名称'), _t('WordPress 所在的数据库名称'));
|
||||
$form->addInput($database->addRule('required', _t('您必须填写数据库名称')));
|
||||
|
||||
$prefix = new Typecho_Widget_Helper_Form_Element_Text('prefix', NULL, 'wp_',
|
||||
_t('表前缀'), _t('所有 Wordpress 数据表的前缀'));
|
||||
_t('表前缀'), _t('所有 WordPress 数据表的前缀'));
|
||||
$form->addInput($prefix->addRule('required', _t('您必须填写表前缀')));
|
||||
}
|
||||
|
||||
|
@ -37,28 +37,27 @@ include 'header.php';
|
||||
include 'menu.php';
|
||||
?>
|
||||
<div class="main">
|
||||
<div class="body body-950">
|
||||
<?php include 'page-title.php'; ?>
|
||||
<div class="container typecho-page-main">
|
||||
<div class="column-22 start-02">
|
||||
<div class="body container">
|
||||
<div class="colgroup">
|
||||
<?php include 'page-title.php'; ?>
|
||||
</div>
|
||||
<div class="colgroup typecho-page-main" role="main">
|
||||
<div class="com-mb-12">
|
||||
<?php if ($success): ?>
|
||||
<div class="message notice typecho-radius-topleft typecho-radius-topright typecho-radius-bottomleft typecho-radius-bottomright">
|
||||
<div class="message notice">
|
||||
<form action="<?php $options->index('/action/wordpress-to-typecho'); ?>" method="post">
|
||||
<?php _e('我们检测到了 Wordpress 系统信息, 点击下方的按钮开始数据转换, 数据转换可能会耗时较长.'); ?>
|
||||
<blockquote>
|
||||
<?php _e('我们检测到了 WordPress 系统信息, 点击下方的按钮开始数据转换, 数据转换可能会耗时较长.'); ?>
|
||||
<ul>
|
||||
<li><strong><?php echo $static['blogname']; ?></strong></li>
|
||||
<li><strong><?php echo $static['blogdescription']; ?></strong></li>
|
||||
<li><strong><?php echo $static['siteurl']; ?></strong></li>
|
||||
<li><?php echo $static['blogdescription']; ?></li>
|
||||
<li><code><?php echo $static['siteurl']; ?></code></li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<br />
|
||||
<p><button type="submit"><?php _e('开始数据转换 »'); ?></button></p>
|
||||
<button type="submit" class="primary"><?php _e('开始数据转换 »'); ?></button>
|
||||
</form>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<div class="message error">
|
||||
<?php _e('我们在连接到 Wordpress 的数据库时发生了错误, 请<a href="%s">重新设置</a>你的信息.',
|
||||
<?php _e('我们在连接到 WordPress 的数据库时发生了错误, 请<a href="%s">重新设置</a>你的信息.',
|
||||
Typecho_Common::url('options-plugin.php?config=WordpressToTypecho', $options->adminUrl)); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
Loading…
Reference in New Issue
Block a user