en.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. const word = {
  2. login: 'login',
  3. 'verify-mobile': 'verify phone number'
  4. }
  5. const sentence = {
  6. 'uni-id-account-exists': 'Account exists',
  7. 'uni-id-account-not-exists': 'Account does not exists',
  8. 'uni-id-account-not-exists-in-current-app': 'Account does not exists in current app',
  9. 'uni-id-account-conflict': 'User account conflict',
  10. 'uni-id-account-banned': 'Account has been banned',
  11. 'uni-id-account-auditing': 'Account audit in progress',
  12. 'uni-id-account-audit-failed': 'Account audit failed',
  13. 'uni-id-account-closed': 'Account has been closed',
  14. 'uni-id-captcha-required': 'Captcha required',
  15. 'uni-id-password-error': 'Password error',
  16. 'uni-id-password-error-exceed-limit': 'The number of password errors is excessive',
  17. 'uni-id-invalid-username': 'Invalid username',
  18. 'uni-id-invalid-password': 'invalid password',
  19. 'uni-id-invalid-password-super': 'Passwords must have 8-16 characters and contain uppercase letters, lowercase letters, numbers, and symbols.',
  20. 'uni-id-invalid-password-strong': 'Passwords must have 8-16 characters and contain letters, numbers and symbols.',
  21. 'uni-id-invalid-password-medium': 'Passwords must have 8-16 characters and contain at least two of the following: letters, numbers, and symbols.',
  22. 'uni-id-invalid-password-weak': 'Passwords must have 6-16 characters and contain letters and numbers.',
  23. 'uni-id-invalid-mobile': 'Invalid mobile phone number',
  24. 'uni-id-invalid-email': 'Invalid email address',
  25. 'uni-id-invalid-nickname': 'Invalid nickname',
  26. 'uni-id-invalid-param': 'Invalid parameter',
  27. 'uni-id-param-required': 'Parameter required: {param}',
  28. 'uni-id-get-third-party-account-failed': 'Get third party account failed',
  29. 'uni-id-get-third-party-user-info-failed': 'Get third party user info failed',
  30. 'uni-id-mobile-verify-code-error': 'Verify code error or expired',
  31. 'uni-id-email-verify-code-error': 'Verify code error or expired',
  32. 'uni-id-admin-exists': 'Administrator exists',
  33. 'uni-id-permission-error': 'Permission denied',
  34. 'uni-id-system-error': 'System error',
  35. 'uni-id-set-invite-code-failed': 'Set invite code failed',
  36. 'uni-id-invalid-invite-code': 'Invalid invite code',
  37. 'uni-id-change-inviter-forbidden': 'Change inviter is not allowed',
  38. 'uni-id-bind-conflict': 'This account has been bound',
  39. 'uni-id-admin-exist-in-other-apps': 'Administrator is registered in other consoles',
  40. 'uni-id-unbind-failed': 'Please bind first and then unbind',
  41. 'uni-id-unbind-not-supported': 'Unbinding is not supported',
  42. 'uni-id-unbind-mobile-not-exists': 'This is the only way to login at the moment, please bind your phone number and then try to unbind',
  43. 'uni-id-unbind-password-not-exists': 'Please set a password first',
  44. 'uni-id-unsupported-request': 'Unsupported request',
  45. 'uni-id-illegal-request': 'Illegal request',
  46. 'uni-id-config-field-required': 'Config field required: {field}',
  47. 'uni-id-config-field-invalid': 'Config field: {field} is invalid',
  48. 'uni-id-frv-fail': 'Real name certify failed',
  49. 'uni-id-frv-processing': 'Waiting for face recognition',
  50. 'uni-id-realname-verified': 'This account has been verified',
  51. 'uni-id-idcard-exists': 'The ID number has been bound to the account',
  52. 'uni-id-invalid-idcard': 'ID number is invalid',
  53. 'uni-id-invalid-realname': 'The name can only be Chinese characters',
  54. 'uni-id-unknown-error': 'unknown error',
  55. 'uni-id-realname-verify-upper-limit': 'The number of real-name certify on the day has reached the upper limit'
  56. }
  57. module.exports = {
  58. ...word,
  59. ...sentence
  60. }