You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sounds.js 330B

123456789101112131415
  1. // @flow
  2. /**
  3. * The name of the bundled audio file which will be played when e2ee is disabled.
  4. *
  5. * @type {string}
  6. */
  7. export const E2EE_OFF_SOUND_FILE = 'e2eeOff.mp3';
  8. /**
  9. * The name of the bundled audio file which will be played when e2ee is enabled.
  10. *
  11. * @type {string}
  12. */
  13. export const E2EE_ON_SOUND_FILE = 'e2eeOn.mp3';