zh-cn.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * The sso module zh-cn file of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Yidong Wang <yidong@cnezsoft.com>
  8. * @package sso
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. $lang->sso = new stdclass();
  13. $lang->sso->settings = '配置';
  14. $lang->sso->turnon = '是否打开';
  15. $lang->sso->redirect = '自动跳回ZDOO';
  16. $lang->sso->code = '代号';
  17. $lang->sso->key = '密钥';
  18. $lang->sso->addr = '接口地址';
  19. $lang->sso->bind = '用户绑定';
  20. $lang->sso->addrNotice = '比如:http://www.ranzhi.com/sys/sso-check.html';
  21. $lang->sso->turnonList = array();
  22. $lang->sso->turnonList[1] = '打开';
  23. $lang->sso->turnonList[0] = '关闭';
  24. $lang->sso->bindType = '绑定方式';
  25. $lang->sso->bindUser = '绑定用户';
  26. $lang->sso->bindTypeList['bind'] = '绑定已有用户';
  27. $lang->sso->bindTypeList['add'] = '添加新用户';
  28. $lang->sso->help = new stdclass();
  29. $lang->sso->help->addr = '接口地址的填写,如果是PATH_INFO :http://ZDOO网址/sys/sso-check.html,如果是GET:http://ZDOO网址/sys/index.php?m=sso&f=check';
  30. $lang->sso->help->code = '代号必须与ZDOO后台设置的一致';
  31. $lang->sso->help->key = '密钥必须与ZDOO后台设置的一致';
  32. $lang->sso->deny = '访问受限';
  33. $lang->sso->bindNotice = '添加的新用户暂时没有权限,需要联系禅道管理员,给该用户分配权限。';
  34. $lang->sso->bindNoPassword = '密码不能为空';
  35. $lang->sso->bindNoUser = '该用户的登录密码错误,或该用户不存在!';
  36. $lang->sso->bindHasAccount = '该用户名已经存在,请更换用户名,或直接绑定到该用户。';
  37. $lang->sso->homeURL = '飞书主页配置URL:';
  38. $lang->sso->redirectURL = '飞书重定向配置URL:';
  39. $lang->sso->feishuConfigEmpty = '请在[后台][通知][Webhook]功能中配置(飞书工作消息通知)';
  40. $lang->sso->feishuResponseEmpty = '请求响应信息为空';
  41. $lang->sso->unbound = '当前飞书用户未在禅道webhook功能中进行用户关系绑定';