modified lib-jitsi-meet dev repo
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

JitsiConferenceErrors.js 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 client must be authenticated to create the conference.
  12. */
  13. AUTHENTICATION_REQUIRED: "conference.authenticationRequired",
  14. /**
  15. * Indicates that password cannot be set for this conference.
  16. */
  17. PASSWORD_NOT_SUPPORTED: "conference.passwordNotSupported",
  18. /**
  19. * Indicates that a connection error occurred when trying to join a
  20. * conference.
  21. */
  22. CONNECTION_ERROR: "conference.connectionError",
  23. /**
  24. * Indicates that the conference setup failed.
  25. */
  26. SETUP_FAILED: "conference.setup_failed",
  27. /**
  28. * Indicates that there is no available videobridge.
  29. */
  30. VIDEOBRIDGE_NOT_AVAILABLE: "conference.videobridgeNotAvailable",
  31. /**
  32. * Indicates that reservation system returned error.
  33. */
  34. RESERVATION_ERROR: "conference.reservationError",
  35. /**
  36. * Indicates that graceful shutdown happened.
  37. */
  38. GRACEFUL_SHUTDOWN: "conference.gracefulShutdown",
  39. /**
  40. * Indicates that jingle fatal error happened.
  41. */
  42. JINGLE_FATAL_ERROR: "conference.jingleFatalError",
  43. /**
  44. * Indicates that conference has been destroyed.
  45. */
  46. CONFERENCE_DESTROYED: "conference.destroyed",
  47. /**
  48. * Indicates that chat error occurred.
  49. */
  50. CHAT_ERROR: "conference.chatError",
  51. /**
  52. * Indicates that focus error happened.
  53. */
  54. FOCUS_DISCONNECTED: "conference.focusDisconnected"
  55. /**
  56. * Many more errors TBD here.
  57. */
  58. };
  59. module.exports = JitsiConferenceErrors;