您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

OldElectronAPPNotificationDescription.tsx 1.1KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import React, { Component } from 'react';
  2. import { WithTranslation } from 'react-i18next';
  3. import { translate } from '../../base/i18n/functions';
  4. /**
  5. * A component that renders the description of the notification for old Jitsi Meet Electron clients.
  6. *
  7. * @augments AbstractApp
  8. */
  9. export class OldElectronAPPNotificationDescription extends Component<WithTranslation> {
  10. /**
  11. * Implements React's {@link Component#render()}.
  12. *
  13. * @inheritdoc
  14. * @returns {ReactElement}
  15. */
  16. render() {
  17. const { t } = this.props;
  18. return (
  19. <div>
  20. { t('notify.oldElectronClientDescription1') }
  21. <a
  22. href = 'https://github.com/jitsi/jitsi-meet-electron/releases/latest'
  23. rel = 'noopener noreferrer'
  24. target = '_blank'>
  25. { t('notify.oldElectronClientDescription2') }
  26. </a>
  27. { t('notify.oldElectronClientDescription3') }
  28. </div>
  29. );
  30. }
  31. }
  32. export default translate(OldElectronAPPNotificationDescription);