Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. export default {
  2. NICKNAME_CHANGED: 'UI.nickname_changed',
  3. /**
  4. * Notifies that local user changed email.
  5. */
  6. EMAIL_CHANGED: 'UI.email_changed',
  7. /**
  8. * Notifies that "start muted" settings changed.
  9. */
  10. AUDIO_MUTED: 'UI.audio_muted',
  11. VIDEO_MUTED: 'UI.video_muted',
  12. ETHERPAD_CLICKED: 'UI.etherpad_clicked',
  13. SHARED_VIDEO_CLICKED: 'UI.start_shared_video',
  14. /**
  15. * Updates shared video with params: url, state, time(optional)
  16. * Where url is the video link, state is stop/start/pause and time is the
  17. * current video playing time.
  18. */
  19. UPDATE_SHARED_VIDEO: 'UI.update_shared_video',
  20. TOGGLE_FULLSCREEN: 'UI.toogle_fullscreen',
  21. FULLSCREEN_TOGGLED: 'UI.fullscreen_toggled',
  22. AUTH_CLICKED: 'UI.auth_clicked',
  23. /**
  24. * Notifies that the audio only mode was toggled.
  25. */
  26. TOGGLE_AUDIO_ONLY: 'UI.toggle_audioonly',
  27. /**
  28. * Notifies that a command to toggle the filmstrip has been issued. The
  29. * event may optionally specify a {Boolean} (primitive) value to assign to
  30. * the visibility of the filmstrip (i.e. the event may act as a setter).
  31. * The very toggling of the filmstrip may or may not occurred at the time
  32. * of the receipt of the event depending on the position of the receiving
  33. * event listener in relation to the event listener which carries out the
  34. * command to toggle the filmstrip.
  35. *
  36. * @see {TOGGLED_FILMSTRIP}
  37. */
  38. TOGGLE_FILMSTRIP: 'UI.toggle_filmstrip',
  39. TOGGLE_SCREENSHARING: 'UI.toggle_screensharing',
  40. HANGUP: 'UI.hangup',
  41. LOGOUT: 'UI.logout',
  42. VIDEO_DEVICE_CHANGED: 'UI.video_device_changed',
  43. AUDIO_DEVICE_CHANGED: 'UI.audio_device_changed',
  44. /**
  45. * Notifies that the side toolbar container has been toggled. The actual
  46. * event must contain the identifier of the container that has been toggled
  47. * and information about toggle on or off.
  48. */
  49. SIDE_TOOLBAR_CONTAINER_TOGGLED: 'UI.side_container_toggled',
  50. /**
  51. * Notifies that the raise hand has been changed.
  52. */
  53. LOCAL_RAISE_HAND_CHANGED: 'UI.local_raise_hand_changed'
  54. };