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

JitsiConferenceErrors.js 652B

1234567891011121314151617181920212223
  1. /**
  2. * Enumeration with the errors for the conference.
  3. * @type {{string: string}}
  4. */
  5. var JitsiConferenceErrors = {
  6. /**
  7. * Indicates that a password is required in order to join the conference.
  8. */
  9. PASSWORD_REQUIRED: "conference.passwordRequired",
  10. /**
  11. * Indicates that a connection error occurred when trying to join a conference.
  12. */
  13. CONNECTION_ERROR: "conference.connectionError",
  14. /**
  15. * Indicates that there is no available videobridge.
  16. */
  17. VIDEOBRIDGE_NOT_AVAILABLE: "conference.videobridgeNotAvailable"
  18. /**
  19. * Many more errors TBD here.
  20. */
  21. };
  22. module.exports = JitsiConferenceErrors;