Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

JitsiConferenceErrors.js 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /**
  2. * The errors for the conference.
  3. */
  4. /**
  5. * Indicates that client must be authenticated to create the conference.
  6. */
  7. export const AUTHENTICATION_REQUIRED = 'conference.authenticationRequired';
  8. /**
  9. * Indicates that chat error occurred.
  10. */
  11. export const CHAT_ERROR = 'conference.chatError';
  12. /**
  13. * Indicates that a settings error occurred.
  14. */
  15. export const SETTINGS_ERROR = 'conference.settingsError';
  16. /**
  17. * Indicates that conference has been destroyed.
  18. */
  19. export const CONFERENCE_DESTROYED = 'conference.destroyed';
  20. /**
  21. * Indicates that max users limit has been reached.
  22. */
  23. export const CONFERENCE_MAX_USERS = 'conference.max_users';
  24. /**
  25. * Indicates that a connection error occurred when trying to join a conference.
  26. */
  27. export const CONNECTION_ERROR = 'conference.connectionError';
  28. /**
  29. * Indicates that the client has been forced to restart by jicofo when the
  30. * conference was migrated from one bridge to another.
  31. */
  32. export const CONFERENCE_RESTARTED = 'conference.restarted';
  33. /**
  34. * Indicates that a connection error is due to not allowed,
  35. * occurred when trying to join a conference.
  36. */
  37. export const NOT_ALLOWED_ERROR = 'conference.connectionError.notAllowed';
  38. /**
  39. * Indicates that a connection error is due to not allowed,
  40. * occurred when trying to join a conference, only approved members are allowed to join.
  41. */
  42. export const MEMBERS_ONLY_ERROR = 'conference.connectionError.membersOnly';
  43. /**
  44. * Indicates that a connection error is due to denied access to the room,
  45. * occurred after joining a lobby room and access is denied by the room moderators.
  46. */
  47. export const CONFERENCE_ACCESS_DENIED = 'conference.connectionError.accessDenied';
  48. /**
  49. * Indicates that focus error happened.
  50. */
  51. export const FOCUS_DISCONNECTED = 'conference.focusDisconnected';
  52. /**
  53. * Indicates that focus left the conference.
  54. */
  55. export const FOCUS_LEFT = 'conference.focusLeft';
  56. /**
  57. * Indicates that graceful shutdown happened.
  58. */
  59. export const GRACEFUL_SHUTDOWN = 'conference.gracefulShutdown';
  60. /**
  61. * Indicates that the media connection has failed.
  62. */
  63. export const ICE_FAILED = 'conference.iceFailed';
  64. /**
  65. * Indicates that the versions of the server side components are incompatible
  66. * with the client side.
  67. */
  68. export const INCOMPATIBLE_SERVER_VERSIONS
  69. = 'conference.incompatible_server_versions';
  70. /**
  71. * Indicates that offer/answer had failed.
  72. */
  73. export const OFFER_ANSWER_FAILED = 'conference.offerAnswerFailed';
  74. /**
  75. * Indicates that password cannot be set for this conference.
  76. */
  77. export const PASSWORD_NOT_SUPPORTED = 'conference.passwordNotSupported';
  78. /**
  79. * Indicates that a password is required in order to join the conference.
  80. */
  81. export const PASSWORD_REQUIRED = 'conference.passwordRequired';
  82. /**
  83. * Indicates that reservation system returned error.
  84. */
  85. export const RESERVATION_ERROR = 'conference.reservationError';
  86. /**
  87. * Indicates that there is no available videobridge.
  88. */
  89. export const VIDEOBRIDGE_NOT_AVAILABLE = 'conference.videobridgeNotAvailable';