en.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. $lang->entry->common = 'Application';
  3. $lang->entry->list = 'Application List';
  4. $lang->entry->api = 'API';
  5. $lang->entry->webhook = 'Webhook';
  6. $lang->entry->log = 'Effort';
  7. $lang->entry->setting = 'Settings';
  8. $lang->entry->browse = 'View Application';
  9. $lang->entry->create = 'Add Application';
  10. $lang->entry->edit = 'Edit Application';
  11. $lang->entry->delete = 'Delete Application';
  12. $lang->entry->createKey = 'Regenerate Key';
  13. $lang->entry->id = 'ID';
  14. $lang->entry->name = 'Name';
  15. $lang->entry->account = 'Account';
  16. $lang->entry->code = 'Code';
  17. $lang->entry->freePasswd = 'Passwordless Login';
  18. $lang->entry->key = 'Key';
  19. $lang->entry->ip = 'IP';
  20. $lang->entry->desc = 'Description';
  21. $lang->entry->createdBy = 'Creator';
  22. $lang->entry->createdDate = 'Created on';
  23. $lang->entry->editedby = 'Last Edited by';
  24. $lang->entry->editedDate = 'Edited on';
  25. $lang->entry->date = 'Requested on';
  26. $lang->entry->url = 'Request URL';
  27. $lang->entry->calledTime = 'Call Time';
  28. $lang->entry->deleted = 'Deleted';
  29. $lang->entry->confirmDelete = 'Are you sure you want to delete this application?';
  30. $lang->entry->help = 'Help';
  31. $lang->entry->notify = 'Notification';
  32. $lang->entry->helpLink = 'https://www.zentao.net/book/zentaopmshelp/integration-287.html';
  33. $lang->entry->notifyLink = 'https://www.zentao.net/book/zentaopmshelp/301.html';
  34. $lang->entry->summaryTip = '%s applications on this page.';
  35. $lang->entry->note = new stdClass();
  36. $lang->entry->note->name = 'Authorized App Name';
  37. $lang->entry->note->code = 'Authorized App code must be alphanumeric.';
  38. $lang->entry->note->ip = "Allowed IPs (Separate with commas. Wildcards like 192.168.1. are supported).";
  39. $lang->entry->note->allIP = 'No Restrictions';
  40. $lang->entry->note->account = 'Authorized App Account';
  41. $lang->entry->freePasswdList[1] = 'Enable';
  42. $lang->entry->freePasswdList[0] = 'Disable';
  43. $lang->entry->errmsg['PARAM_CODE_MISSING'] = 'Missing code parameter.';
  44. $lang->entry->errmsg['PARAM_TOKEN_MISSING'] = 'Missing token parameter.';
  45. $lang->entry->errmsg['SESSION_CODE_MISSING'] = 'Missing session code.';
  46. $lang->entry->errmsg['EMPTY_KEY'] = 'App key not set.';
  47. $lang->entry->errmsg['INVALID_TOKEN'] = 'Invalid token.';
  48. $lang->entry->errmsg['SESSION_VERIFY_FAILED'] = 'Session verification failed.';
  49. $lang->entry->errmsg['IP_DENIED'] = 'Access denied for this IP.';
  50. $lang->entry->errmsg['ACCOUNT_UNBOUND'] = 'No user linked.';
  51. $lang->entry->errmsg['INVALID_ACCOUNT'] = 'User does not exist.';
  52. $lang->entry->errmsg['EMPTY_ENTRY'] = 'App does not exist.';
  53. $lang->entry->errmsg['CALLED_TIME'] = 'Token has expired.';
  54. $lang->entry->errmsg['ERROR_TIMESTAMP'] = 'Invalid timestamp.';