* convert to unix format.
This commit is contained in:
+58
-58
@@ -1,58 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* The control file of misc of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id$
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
class misc extends control
|
||||
{
|
||||
/**
|
||||
* Ping the server every 5 minutes to keep the session.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function ping()
|
||||
{
|
||||
if(mt_rand(0, 10) == 5) $this->loadModel('setting')->setSN();
|
||||
die("<html><head><meta http-equiv='refresh' content='300' /></head><body></body></html>");
|
||||
}
|
||||
|
||||
/**
|
||||
* Show php info.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function phpinfo()
|
||||
{
|
||||
die(phpinfo());
|
||||
}
|
||||
|
||||
/**
|
||||
* Show about info of zentao.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function about()
|
||||
{
|
||||
die($this->display());
|
||||
}
|
||||
|
||||
/**
|
||||
* Update nl.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function updateNL()
|
||||
{
|
||||
$this->loadModel('upgrade')->updateNL();
|
||||
}
|
||||
}
|
||||
<?php
|
||||
/**
|
||||
* The control file of misc of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id$
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
class misc extends control
|
||||
{
|
||||
/**
|
||||
* Ping the server every 5 minutes to keep the session.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function ping()
|
||||
{
|
||||
if(mt_rand(0, 10) == 5) $this->loadModel('setting')->setSN();
|
||||
die("<html><head><meta http-equiv='refresh' content='300' /></head><body></body></html>");
|
||||
}
|
||||
|
||||
/**
|
||||
* Show php info.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function phpinfo()
|
||||
{
|
||||
die(phpinfo());
|
||||
}
|
||||
|
||||
/**
|
||||
* Show about info of zentao.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function about()
|
||||
{
|
||||
die($this->display());
|
||||
}
|
||||
|
||||
/**
|
||||
* Update nl.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function updateNL()
|
||||
{
|
||||
$this->loadModel('upgrade')->updateNL();
|
||||
}
|
||||
}
|
||||
|
||||
+58
-58
@@ -1,58 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* The misc module English file of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
$lang->misc->common = 'Misc';
|
||||
$lang->misc->ping = 'Keep session';
|
||||
|
||||
$lang->misc->zentao->version = 'Version %s';
|
||||
$lang->misc->zentao->labels['about'] = 'About';
|
||||
$lang->misc->zentao->labels['support'] = 'Support';
|
||||
$lang->misc->zentao->labels['cowin'] = 'Help us';
|
||||
$lang->misc->zentao->labels['service'] = 'Services';
|
||||
|
||||
$lang->misc->zentao->about['official'] = "Official site";
|
||||
$lang->misc->zentao->about['project'] = "Project";
|
||||
$lang->misc->zentao->about['preview'] = "Demo";
|
||||
$lang->misc->zentao->about['changelog'] = "Change log";
|
||||
$lang->misc->zentao->about['license'] = "License";
|
||||
$lang->misc->zentao->about['contributors'] = "Contributors";
|
||||
$lang->misc->zentao->about['thirdparty'] = "Thirdparty";
|
||||
$lang->misc->zentao->about['sourcecode'] = "Source code";
|
||||
$lang->misc->zentao->about['extension'] = "Extensions";
|
||||
|
||||
$lang->misc->zentao->support['manual'] = "Manual";
|
||||
$lang->misc->zentao->support['faq'] = "FAQ";
|
||||
$lang->misc->zentao->support['forum'] = "Forum";
|
||||
$lang->misc->zentao->support['qqgroup'] = "QQ Grup";
|
||||
$lang->misc->zentao->support['howask'] = "How to ask";
|
||||
$lang->misc->zentao->support['vip'] = "Business";
|
||||
|
||||
$lang->misc->zentao->cowin['reportbug'] = "Report bug";
|
||||
$lang->misc->zentao->cowin['feedback'] = "Feedback feature";
|
||||
$lang->misc->zentao->cowin['devcode'] = "Commit code";
|
||||
$lang->misc->zentao->cowin['doc'] = "Write doc";
|
||||
$lang->misc->zentao->cowin['recommend'] = "Recommend";
|
||||
$lang->misc->zentao->cowin['addlink'] = "Add link";
|
||||
$lang->misc->zentao->cowin['shop'] = "Shop";
|
||||
$lang->misc->zentao->cowin['donate'] = "Donate";
|
||||
$lang->misc->zentao->cowin['cowinmore'] = "More...";
|
||||
|
||||
$lang->misc->zentao->service['install'] = 'Install service';
|
||||
$lang->misc->zentao->service['fixissue'] = 'Issue support';
|
||||
$lang->misc->zentao->service['zentaotrain']= 'ZenTao training';
|
||||
$lang->misc->zentao->service['idc'] = 'ZenTao online';
|
||||
$lang->misc->zentao->service['custom'] = 'custom develop';
|
||||
$lang->misc->zentao->service['review'] = 'ZenTao review';
|
||||
$lang->misc->zentao->service['scrumtrain'] = 'Scrum training';
|
||||
$lang->misc->zentao->service['fwtrain'] = 'ZenTaoPHP training';
|
||||
$lang->misc->zentao->service['servicemore']= 'More...';
|
||||
|
||||
$lang->misc->copyright = "Copyright ©2009-2012 <a href='http://www.cnezsoft.com' target='_blank'>Nature EasySoft Network Tecnology Co.ltd, QingDao, China</a>";
|
||||
<?php
|
||||
/**
|
||||
* The misc module English file of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
$lang->misc->common = 'Misc';
|
||||
$lang->misc->ping = 'Keep session';
|
||||
|
||||
$lang->misc->zentao->version = 'Version %s';
|
||||
$lang->misc->zentao->labels['about'] = 'About';
|
||||
$lang->misc->zentao->labels['support'] = 'Support';
|
||||
$lang->misc->zentao->labels['cowin'] = 'Help us';
|
||||
$lang->misc->zentao->labels['service'] = 'Services';
|
||||
|
||||
$lang->misc->zentao->about['official'] = "Official site";
|
||||
$lang->misc->zentao->about['project'] = "Project";
|
||||
$lang->misc->zentao->about['preview'] = "Demo";
|
||||
$lang->misc->zentao->about['changelog'] = "Change log";
|
||||
$lang->misc->zentao->about['license'] = "License";
|
||||
$lang->misc->zentao->about['contributors'] = "Contributors";
|
||||
$lang->misc->zentao->about['thirdparty'] = "Thirdparty";
|
||||
$lang->misc->zentao->about['sourcecode'] = "Source code";
|
||||
$lang->misc->zentao->about['extension'] = "Extensions";
|
||||
|
||||
$lang->misc->zentao->support['manual'] = "Manual";
|
||||
$lang->misc->zentao->support['faq'] = "FAQ";
|
||||
$lang->misc->zentao->support['forum'] = "Forum";
|
||||
$lang->misc->zentao->support['qqgroup'] = "QQ Grup";
|
||||
$lang->misc->zentao->support['howask'] = "How to ask";
|
||||
$lang->misc->zentao->support['vip'] = "Business";
|
||||
|
||||
$lang->misc->zentao->cowin['reportbug'] = "Report bug";
|
||||
$lang->misc->zentao->cowin['feedback'] = "Feedback feature";
|
||||
$lang->misc->zentao->cowin['devcode'] = "Commit code";
|
||||
$lang->misc->zentao->cowin['doc'] = "Write doc";
|
||||
$lang->misc->zentao->cowin['recommend'] = "Recommend";
|
||||
$lang->misc->zentao->cowin['addlink'] = "Add link";
|
||||
$lang->misc->zentao->cowin['shop'] = "Shop";
|
||||
$lang->misc->zentao->cowin['donate'] = "Donate";
|
||||
$lang->misc->zentao->cowin['cowinmore'] = "More...";
|
||||
|
||||
$lang->misc->zentao->service['install'] = 'Install service';
|
||||
$lang->misc->zentao->service['fixissue'] = 'Issue support';
|
||||
$lang->misc->zentao->service['zentaotrain']= 'ZenTao training';
|
||||
$lang->misc->zentao->service['idc'] = 'ZenTao online';
|
||||
$lang->misc->zentao->service['custom'] = 'custom develop';
|
||||
$lang->misc->zentao->service['review'] = 'ZenTao review';
|
||||
$lang->misc->zentao->service['scrumtrain'] = 'Scrum training';
|
||||
$lang->misc->zentao->service['fwtrain'] = 'ZenTaoPHP training';
|
||||
$lang->misc->zentao->service['servicemore']= 'More...';
|
||||
|
||||
$lang->misc->copyright = "Copyright ©2009-2012 <a href='http://www.cnezsoft.com' target='_blank'>Nature EasySoft Network Tecnology Co.ltd, QingDao, China</a>";
|
||||
|
||||
+58
-58
@@ -1,58 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* The misc module zh-cn file of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id$
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
$lang->misc->common = '杂项';
|
||||
$lang->misc->ping = '防超时';
|
||||
|
||||
$lang->misc->zentao->version = '版本%s';
|
||||
$lang->misc->zentao->labels['about'] = '关于禅道';
|
||||
$lang->misc->zentao->labels['support'] = '技术支持';
|
||||
$lang->misc->zentao->labels['cowin'] = '帮助我们';
|
||||
$lang->misc->zentao->labels['service'] = '服务列表';
|
||||
|
||||
$lang->misc->zentao->about['official'] = "官方网站";
|
||||
$lang->misc->zentao->about['project'] = "项目进展";
|
||||
$lang->misc->zentao->about['preview'] = "最新预览";
|
||||
$lang->misc->zentao->about['changelog'] = "版本历史";
|
||||
$lang->misc->zentao->about['license'] = "授权协议";
|
||||
$lang->misc->zentao->about['contributors'] = "贡献者";
|
||||
$lang->misc->zentao->about['thirdparty'] = "第三方代码";
|
||||
$lang->misc->zentao->about['sourcecode'] = "源代码";
|
||||
$lang->misc->zentao->about['extension'] = "插件平台";
|
||||
|
||||
$lang->misc->zentao->support['manual'] = "用户手册";
|
||||
$lang->misc->zentao->support['faq'] = "常见问题";
|
||||
$lang->misc->zentao->support['forum'] = "支持论坛";
|
||||
$lang->misc->zentao->support['qqgroup'] = "官方QQ群";
|
||||
$lang->misc->zentao->support['howask'] = "如何提问";
|
||||
$lang->misc->zentao->support['vip'] = "商业支持";
|
||||
|
||||
$lang->misc->zentao->cowin['reportbug'] = "汇报Bug";
|
||||
$lang->misc->zentao->cowin['feedback'] = "反馈需求";
|
||||
$lang->misc->zentao->cowin['devcode'] = "提交代码";
|
||||
$lang->misc->zentao->cowin['doc'] = "完善文档";
|
||||
$lang->misc->zentao->cowin['recommend'] = "推荐给朋友";
|
||||
$lang->misc->zentao->cowin['addlink'] = "添加友情链接";
|
||||
$lang->misc->zentao->cowin['shop'] = "逛逛我们的商店";
|
||||
$lang->misc->zentao->cowin['donate'] = "捐助我们";
|
||||
$lang->misc->zentao->cowin['cowinmore'] = "更多方式...";
|
||||
|
||||
$lang->misc->zentao->service['install'] = '禅道安装服务';
|
||||
$lang->misc->zentao->service['fixissue'] = '禅道问题解决';
|
||||
$lang->misc->zentao->service['zentaotrain']= '禅道使用培训';
|
||||
$lang->misc->zentao->service['idc'] = '禅道在线托管';
|
||||
$lang->misc->zentao->service['custom'] = '禅道定制开发';
|
||||
$lang->misc->zentao->service['review'] = '禅道点评服务';
|
||||
$lang->misc->zentao->service['scrumtrain'] = 'scrum培训';
|
||||
$lang->misc->zentao->service['fwtrain'] = '禅道PHP框架培训';
|
||||
$lang->misc->zentao->service['servicemore']= '更多服务...';
|
||||
|
||||
$lang->misc->copyright = "版权所有 ©2009-2012 <a href='http://www.cnezsoft.com' target='_blank'>青岛易软天创网络科技有限公司</a>";
|
||||
<?php
|
||||
/**
|
||||
* The misc module zh-cn file of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id$
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
$lang->misc->common = '杂项';
|
||||
$lang->misc->ping = '防超时';
|
||||
|
||||
$lang->misc->zentao->version = '版本%s';
|
||||
$lang->misc->zentao->labels['about'] = '关于禅道';
|
||||
$lang->misc->zentao->labels['support'] = '技术支持';
|
||||
$lang->misc->zentao->labels['cowin'] = '帮助我们';
|
||||
$lang->misc->zentao->labels['service'] = '服务列表';
|
||||
|
||||
$lang->misc->zentao->about['official'] = "官方网站";
|
||||
$lang->misc->zentao->about['project'] = "项目进展";
|
||||
$lang->misc->zentao->about['preview'] = "最新预览";
|
||||
$lang->misc->zentao->about['changelog'] = "版本历史";
|
||||
$lang->misc->zentao->about['license'] = "授权协议";
|
||||
$lang->misc->zentao->about['contributors'] = "贡献者";
|
||||
$lang->misc->zentao->about['thirdparty'] = "第三方代码";
|
||||
$lang->misc->zentao->about['sourcecode'] = "源代码";
|
||||
$lang->misc->zentao->about['extension'] = "插件平台";
|
||||
|
||||
$lang->misc->zentao->support['manual'] = "用户手册";
|
||||
$lang->misc->zentao->support['faq'] = "常见问题";
|
||||
$lang->misc->zentao->support['forum'] = "支持论坛";
|
||||
$lang->misc->zentao->support['qqgroup'] = "官方QQ群";
|
||||
$lang->misc->zentao->support['howask'] = "如何提问";
|
||||
$lang->misc->zentao->support['vip'] = "商业支持";
|
||||
|
||||
$lang->misc->zentao->cowin['reportbug'] = "汇报Bug";
|
||||
$lang->misc->zentao->cowin['feedback'] = "反馈需求";
|
||||
$lang->misc->zentao->cowin['devcode'] = "提交代码";
|
||||
$lang->misc->zentao->cowin['doc'] = "完善文档";
|
||||
$lang->misc->zentao->cowin['recommend'] = "推荐给朋友";
|
||||
$lang->misc->zentao->cowin['addlink'] = "添加友情链接";
|
||||
$lang->misc->zentao->cowin['shop'] = "逛逛我们的商店";
|
||||
$lang->misc->zentao->cowin['donate'] = "捐助我们";
|
||||
$lang->misc->zentao->cowin['cowinmore'] = "更多方式...";
|
||||
|
||||
$lang->misc->zentao->service['install'] = '禅道安装服务';
|
||||
$lang->misc->zentao->service['fixissue'] = '禅道问题解决';
|
||||
$lang->misc->zentao->service['zentaotrain']= '禅道使用培训';
|
||||
$lang->misc->zentao->service['idc'] = '禅道在线托管';
|
||||
$lang->misc->zentao->service['custom'] = '禅道定制开发';
|
||||
$lang->misc->zentao->service['review'] = '禅道点评服务';
|
||||
$lang->misc->zentao->service['scrumtrain'] = 'scrum培训';
|
||||
$lang->misc->zentao->service['fwtrain'] = '禅道PHP框架培训';
|
||||
$lang->misc->zentao->service['servicemore']= '更多服务...';
|
||||
|
||||
$lang->misc->copyright = "版权所有 ©2009-2012 <a href='http://www.cnezsoft.com' target='_blank'>青岛易软天创网络科技有限公司</a>";
|
||||
|
||||
+58
-58
@@ -1,58 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* The misc module zh-tw file of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id: zh-tw.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
$lang->misc->common = '雜項';
|
||||
$lang->misc->ping = '防超時';
|
||||
|
||||
$lang->misc->zentao->version = '版本%s';
|
||||
$lang->misc->zentao->labels['about'] = '關於禪道';
|
||||
$lang->misc->zentao->labels['support'] = '技術支持';
|
||||
$lang->misc->zentao->labels['cowin'] = '幫助我們';
|
||||
$lang->misc->zentao->labels['service'] = '服務列表';
|
||||
|
||||
$lang->misc->zentao->about['official'] = "官方網站";
|
||||
$lang->misc->zentao->about['project'] = "項目進展";
|
||||
$lang->misc->zentao->about['preview'] = "最新預覽";
|
||||
$lang->misc->zentao->about['changelog'] = "版本歷史";
|
||||
$lang->misc->zentao->about['license'] = "授權協議";
|
||||
$lang->misc->zentao->about['contributors'] = "貢獻者";
|
||||
$lang->misc->zentao->about['thirdparty'] = "第三方代碼";
|
||||
$lang->misc->zentao->about['sourcecode'] = "原始碼";
|
||||
$lang->misc->zentao->about['extension'] = "插件平台";
|
||||
|
||||
$lang->misc->zentao->support['manual'] = "用戶手冊";
|
||||
$lang->misc->zentao->support['faq'] = "常見問題";
|
||||
$lang->misc->zentao->support['forum'] = "支持論壇";
|
||||
$lang->misc->zentao->support['qqgroup'] = "官方QQ群";
|
||||
$lang->misc->zentao->support['howask'] = "如何提問";
|
||||
$lang->misc->zentao->support['vip'] = "商業支持";
|
||||
|
||||
$lang->misc->zentao->cowin['reportbug'] = "彙報Bug";
|
||||
$lang->misc->zentao->cowin['feedback'] = "反饋需求";
|
||||
$lang->misc->zentao->cowin['devcode'] = "提交代碼";
|
||||
$lang->misc->zentao->cowin['doc'] = "完善文檔";
|
||||
$lang->misc->zentao->cowin['recommend'] = "推薦給朋友";
|
||||
$lang->misc->zentao->cowin['addlink'] = "添加友情連結";
|
||||
$lang->misc->zentao->cowin['shop'] = "逛逛我們的商店";
|
||||
$lang->misc->zentao->cowin['donate'] = "捐助我們";
|
||||
$lang->misc->zentao->cowin['cowinmore'] = "更多方式...";
|
||||
|
||||
$lang->misc->zentao->service['install'] = '禪道安裝服務';
|
||||
$lang->misc->zentao->service['fixissue'] = '禪道問題解決';
|
||||
$lang->misc->zentao->service['zentaotrain']= '禪道使用培訓';
|
||||
$lang->misc->zentao->service['idc'] = '禪道在綫託管';
|
||||
$lang->misc->zentao->service['custom'] = '禪道定製開發';
|
||||
$lang->misc->zentao->service['review'] = '禪道點評服務';
|
||||
$lang->misc->zentao->service['scrumtrain'] = 'scrum培訓';
|
||||
$lang->misc->zentao->service['fwtrain'] = '禪道PHP框架培訓';
|
||||
$lang->misc->zentao->service['servicemore']= '更多服務...';
|
||||
|
||||
$lang->misc->copyright = "版權所有 ©2009-2012 <a href='http://www.cnezsoft.com' target='_blank'>青島易軟天創網絡科技有限公司</a>";
|
||||
<?php
|
||||
/**
|
||||
* The misc module zh-tw file of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id: zh-tw.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
$lang->misc->common = '雜項';
|
||||
$lang->misc->ping = '防超時';
|
||||
|
||||
$lang->misc->zentao->version = '版本%s';
|
||||
$lang->misc->zentao->labels['about'] = '關於禪道';
|
||||
$lang->misc->zentao->labels['support'] = '技術支持';
|
||||
$lang->misc->zentao->labels['cowin'] = '幫助我們';
|
||||
$lang->misc->zentao->labels['service'] = '服務列表';
|
||||
|
||||
$lang->misc->zentao->about['official'] = "官方網站";
|
||||
$lang->misc->zentao->about['project'] = "項目進展";
|
||||
$lang->misc->zentao->about['preview'] = "最新預覽";
|
||||
$lang->misc->zentao->about['changelog'] = "版本歷史";
|
||||
$lang->misc->zentao->about['license'] = "授權協議";
|
||||
$lang->misc->zentao->about['contributors'] = "貢獻者";
|
||||
$lang->misc->zentao->about['thirdparty'] = "第三方代碼";
|
||||
$lang->misc->zentao->about['sourcecode'] = "原始碼";
|
||||
$lang->misc->zentao->about['extension'] = "插件平台";
|
||||
|
||||
$lang->misc->zentao->support['manual'] = "用戶手冊";
|
||||
$lang->misc->zentao->support['faq'] = "常見問題";
|
||||
$lang->misc->zentao->support['forum'] = "支持論壇";
|
||||
$lang->misc->zentao->support['qqgroup'] = "官方QQ群";
|
||||
$lang->misc->zentao->support['howask'] = "如何提問";
|
||||
$lang->misc->zentao->support['vip'] = "商業支持";
|
||||
|
||||
$lang->misc->zentao->cowin['reportbug'] = "彙報Bug";
|
||||
$lang->misc->zentao->cowin['feedback'] = "反饋需求";
|
||||
$lang->misc->zentao->cowin['devcode'] = "提交代碼";
|
||||
$lang->misc->zentao->cowin['doc'] = "完善文檔";
|
||||
$lang->misc->zentao->cowin['recommend'] = "推薦給朋友";
|
||||
$lang->misc->zentao->cowin['addlink'] = "添加友情連結";
|
||||
$lang->misc->zentao->cowin['shop'] = "逛逛我們的商店";
|
||||
$lang->misc->zentao->cowin['donate'] = "捐助我們";
|
||||
$lang->misc->zentao->cowin['cowinmore'] = "更多方式...";
|
||||
|
||||
$lang->misc->zentao->service['install'] = '禪道安裝服務';
|
||||
$lang->misc->zentao->service['fixissue'] = '禪道問題解決';
|
||||
$lang->misc->zentao->service['zentaotrain']= '禪道使用培訓';
|
||||
$lang->misc->zentao->service['idc'] = '禪道在綫託管';
|
||||
$lang->misc->zentao->service['custom'] = '禪道定製開發';
|
||||
$lang->misc->zentao->service['review'] = '禪道點評服務';
|
||||
$lang->misc->zentao->service['scrumtrain'] = 'scrum培訓';
|
||||
$lang->misc->zentao->service['fwtrain'] = '禪道PHP框架培訓';
|
||||
$lang->misc->zentao->service['servicemore']= '更多服務...';
|
||||
|
||||
$lang->misc->copyright = "版權所有 ©2009-2012 <a href='http://www.cnezsoft.com' target='_blank'>青島易軟天創網絡科技有限公司</a>";
|
||||
|
||||
+16
-16
@@ -1,16 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* The model file of misc module of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id$
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php
|
||||
class miscModel extends model
|
||||
{
|
||||
}
|
||||
<?php
|
||||
/**
|
||||
* The model file of misc module of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
||||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package misc
|
||||
* @version $Id$
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php
|
||||
class miscModel extends model
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user