57 lines
2.7 KiB
PHP
57 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* The upgrade module zh-tw file of ZenTaoMS.
|
|
*
|
|
* ZenTaoMS is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* ZenTaoMS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with ZenTaoMS. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @copyright Copyright 2009-2010 青島易軟天創網絡科技有限公司(www.cnezsoft.com)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package upgrade
|
|
* @version $Id: zh-tw.php 1075 2010-09-12 03:23:56Z yuren_@126.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
$lang->upgrade->common = '升級';
|
|
$lang->upgrade->result = '升級結果';
|
|
$lang->upgrade->fail = '升級失敗';
|
|
$lang->upgrade->success = '升級成功';
|
|
$lang->upgrade->tohome = '返迴首頁';
|
|
$lang->upgrade->warnning= '警告';
|
|
$lang->upgrade->warnningContent = <<<EOT
|
|
警告!升級有危險,請先備份資料庫,以防萬一。<br />
|
|
備份方法:<br />
|
|
1. 可以通過phpMyAdmin進行備份。<br />
|
|
2. 使用mysql命令行的工具。<br />
|
|
# mysqldump -u <span class='red'>username</span> -p <span class='red'>dbname</span> > <span class='red'>filename</span> <br />
|
|
要將上面紅色的部分分別替換成對應的用戶名和禪道系統的資料庫名。<br />
|
|
比如: mysqldump -u root -p zentao >zentao.bak
|
|
EOT;
|
|
$lang->upgrade->selectVersion = '選擇版本';
|
|
$lang->upgrade->noteVersion = "務必選擇正確的版本,否則會造成數據丟失。";
|
|
$lang->upgrade->fromVersion = '原來的版本';
|
|
$lang->upgrade->toVersion = '升級到';
|
|
$lang->upgrade->confirm = '確認要執行的SQL語句';
|
|
$lang->upgrade->sureExecute = '確認執行';
|
|
|
|
$lang->upgrade->fromVersions['0_3beta'] = '0.3 BETA';
|
|
$lang->upgrade->fromVersions['0_4beta'] = '0.4 BETA';
|
|
$lang->upgrade->fromVersions['0_5beta'] = '0.5 BETA';
|
|
$lang->upgrade->fromVersions['0_6beta'] = '0.6 BETA';
|
|
$lang->upgrade->fromVersions['1_0beta'] = '1.0 BETA';
|
|
$lang->upgrade->fromVersions['1_0rc1'] = '1.0 RC1';
|
|
$lang->upgrade->fromVersions['1_0rc2'] = '1.0 RC2';
|
|
$lang->upgrade->fromVersions['1_0'] = '1.0 STABLE';
|
|
$lang->upgrade->fromVersions['1_0_1'] = '1.0.1';
|
|
$lang->upgrade->fromVersions['1_1'] = '1.1';
|
|
$lang->upgrade->fromVersions['1_2'] = '1.2';
|