Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

JitsiConferenceErrors.js 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 conference has been destroyed.
  14. */
  15. export const CONFERENCE_DESTROYED = 'conference.destroyed';
  16. /**
  17. * Indicates that max users limit has been reached.
  18. */
  19. export const CONFERENCE_MAX_USERS = 'conference.max_users';
  20. /**
  21. * Indicates that a connection error occurred when trying to join a conference.
  22. */
  23. export const CONNECTION_ERROR = 'conference.connectionError';
  24. /**
  25. * Indicates that a connection error is due to not allowed,
  26. * occurred when trying to join a conference.
  27. */
  28. export const NOT_ALLOWED_ERROR = 'conference.connectionError.notAllowed';
  29. /**
  30. * Indicates that focus error happened.
  31. */
  32. export const FOCUS_DISCONNECTED = 'conference.focusDisconnected';
  33. /**
  34. * Indicates that focus left the conference.
  35. */
  36. export const FOCUS_LEFT = 'conference.focusLeft';
  37. /**
  38. * Indicates that graceful shutdown happened.
  39. */
  40. export const GRACEFUL_SHUTDOWN = 'conference.gracefulShutdown';
  41. /**
  42. * Indicates that the versions of the server side components are incompatible
  43. * with the client side.
  44. */
  45. export const INCOMPATIBLE_SERVER_VERSIONS
  46. = 'conference.incompatible_server_versions';
  47. /**
  48. * Indicates that jingle fatal error happened.
  49. */
  50. export const JINGLE_FATAL_ERROR = 'conference.jingleFatalError';
  51. /**
  52. * Indicates that password cannot be set for this conference.
  53. */
  54. export const PASSWORD_NOT_SUPPORTED = 'conference.passwordNotSupported';
  55. /**
  56. * Indicates that a password is required in order to join the conference.
  57. */
  58. export const PASSWORD_REQUIRED = 'conference.passwordRequired';
  59. /**
  60. * Indicates that reservation system returned error.
  61. */
  62. export const RESERVATION_ERROR = 'conference.reservationError';
  63. /**
  64. * Indicates that the conference setup failed.
  65. */
  66. export const SETUP_FAILED = 'conference.setup_failed';
  67. /**
  68. * Indicates that there is no available videobridge.
  69. */
  70. export const VIDEOBRIDGE_NOT_AVAILABLE = 'conference.videobridgeNotAvailable';