49 lines
2.7 KiB
PHP
49 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* The upgrade module English file of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package upgrade
|
|
* @version $Id: en.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
$lang->upgrade->common = 'Upgrade';
|
|
$lang->upgrade->result = 'Result';
|
|
$lang->upgrade->fail = 'Failed';
|
|
$lang->upgrade->success = 'Upgraded';
|
|
$lang->upgrade->tohome = 'Visit ZenTao';
|
|
$lang->upgrade->license = 'Zentao PMS has started using Z PUBLIC LICENSE(ZPL) 1.2.';
|
|
$lang->upgrade->warnning= 'Warning!';
|
|
$lang->upgrade->checkExtension = 'Check Extension';
|
|
$lang->upgrade->warnningContent = <<<EOT
|
|
<p>Please backup your database before upgrading ZenTao!</p>
|
|
<pre>
|
|
1. Use phpMyAdmin to backup.
|
|
2. Use mysqlCommand to backup.
|
|
$> mysqldump -u <span class='text-danger'>username</span> -p <span class='text-danger'>dbname</span> > <span class='text-danger'>filename</span>
|
|
Change the red text into corresponding Username and Database name.
|
|
e.g. mysqldump -u root -p zentao >zentao.bak
|
|
</pre>
|
|
EOT;
|
|
$lang->upgrade->createFileWinCMD = 'Open command line, execute <strong style="color:#ed980f">echo > %s</strong>';
|
|
$lang->upgrade->createFileLinuxCMD = 'Execute in command line: <strong style="color:#ed980f">touch %s</strong>';
|
|
$lang->upgrade->setStatusFile = '<h4>Please finish the following action</h4>
|
|
<ul style="line-height:1.5;font-size:13px;">
|
|
<li>%s</li>
|
|
<li>Or delete "<strong style="color:#ed980f">%s</strong>" and create <strong style="color:#ed980f">ok.txt</strong> and leave it blank.</li>
|
|
</ul>
|
|
<p><strong style="color:red">I have read and done as instructed above. <a href="upgrade.php">Continue update.</a></strong></p>';
|
|
$lang->upgrade->selectVersion = 'Select Version';
|
|
$lang->upgrade->continue = 'Continue';
|
|
$lang->upgrade->noteVersion = "Select the compatible version, or it might cause data loss.";
|
|
$lang->upgrade->fromVersion = 'From Version';
|
|
$lang->upgrade->toVersion = 'Upgrade to Version';
|
|
$lang->upgrade->confirm = 'Confirm SQL';
|
|
$lang->upgrade->sureExecute = 'Execute';
|
|
$lang->upgrade->forbiddenExt = 'Extension is not compatible with the upgraded version. It has been deactivated:';
|
|
$lang->upgrade->updateFile = 'Attachment information has to be updated.';
|
|
|
|
include dirname(__FILE__) . '/version.php';
|