您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

JitsiConnectionErrors.js 547B

1234567891011121314151617181920
  1. /**
  2. * Enumeration with the errors for the connection.
  3. * @type {{string: string}}
  4. */
  5. var JitsiConnectionErrors = {
  6. /**
  7. * Indicates that a password is required in order to join the conference.
  8. */
  9. PASSWORD_REQUIRED: "connection.passwordRequired",
  10. /**
  11. * Indicates that a connection error occurred when trying to join a conference.
  12. */
  13. CONNECTION_ERROR: "connection.connectionError",
  14. /**
  15. * Not specified errors.
  16. */
  17. OTHER_ERROR: "connection.otherError"
  18. };
  19. module.exports = JitsiConnectionErrors;