en.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * The sso module English 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 = 'Configuration';
  14. $lang->sso->turnon = 'Access ZDOO';
  15. $lang->sso->redirect = 'Redirect to ZDOO';
  16. $lang->sso->code = 'Code';
  17. $lang->sso->key = 'Secret Key';
  18. $lang->sso->addr = 'Endpoint URL';
  19. $lang->sso->bind = 'User Linking';
  20. $lang->sso->addrNotice = 'Example: http://www.ranzhi.com/sys/sso-check.html';
  21. $lang->sso->turnonList = array();
  22. $lang->sso->turnonList[1] = 'On';
  23. $lang->sso->turnonList[0] = 'Off';
  24. $lang->sso->bindType = 'Connection Methods';
  25. $lang->sso->bindUser = 'Connect User';
  26. $lang->sso->bindTypeList['bind'] = 'Connect Existing User';
  27. $lang->sso->bindTypeList['add'] = 'Add User';
  28. $lang->sso->help = new stdclass();
  29. $lang->sso->help->addr = 'Endpoint URL format:
  30. For PATH_INFO: http://your zdoo url/sys/sso-check.html
  31. For GET: http://your zdoo url/sys/index.php?m=sso&f=check';
  32. $lang->sso->help->code = 'Ensure the code is identical to the one in ZDOO.';
  33. $lang->sso->help->key = 'Ensure the Secret Key is identical to the one in ZDOO.';
  34. $lang->sso->deny = 'Access Restricted';
  35. $lang->sso->bindNotice = 'No permissions. Please ask ZenTao Admin for access.';
  36. $lang->sso->bindNoPassword = 'Password is required';
  37. $lang->sso->bindNoUser = 'Invalid username or password';
  38. $lang->sso->bindHasAccount = 'Username already exists. Please choose another one or link to the existing account.';
  39. $lang->sso->homeURL = 'Feishu Homepage URL:';
  40. $lang->sso->redirectURL = 'Feishu Redirect URL:';
  41. $lang->sso->feishuConfigEmpty = 'Configure (Feishu Messenger Notifications) in [Admin]-[Notifications]-[Webhook].';
  42. $lang->sso->feishuResponseEmpty = 'Empty response received';
  43. $lang->sso->unbound = 'User linking missing for Feishu in ZenTao Webhook settings.';