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

ConferenceErrors.js 604B

1234567891011121314151617181920212223
  1. /**
  2. * Enumeration with the erros for the conference.
  3. * @type {{string: string}}
  4. */
  5. var ConferenceErrors = {
  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 the video bridge is down.
  16. */
  17. BRIDGE_DOWN: "conference.bridgeDown"
  18. /**
  19. * Many more errors TBD here.
  20. */
  21. };
  22. module.exports = ConferenceErrors;