diff --git a/lang/main.json b/lang/main.json index 34732f634..1802094fb 100644 --- a/lang/main.json +++ b/lang/main.json @@ -354,9 +354,10 @@ "dialInTollFree": "Toll Free", "genericError": "Whoops, something went wrong.", "inviteLiveStream": "To view the live stream of this meeting, click this link: __url__", - "invitePhone": "To join by phone, dial __number__ and enter this PIN: __conferenceID__#", - "invitePhoneAlternatives": "To view more phone numbers, click this link: __url__", - "inviteURL": "To join the video meeting, click this link: __url__", + "invitePhone": "One tap audio Dial In: __number__,,__conferenceID__#", + "invitePhoneAlternatives": "Looking for a different dial in number? Please see: __url__", + "inviteURL": "You are invited to join a meeting.\n__moreInfo__\nJoin meeting: __url__\n", + "inviteURLMoreInfo": "Meeting ID: __conferenceID__#\n", "liveStreamURL": "Live stream:", "moreNumbers": "More numbers", "noNumbers": "No dial-in numbers.", diff --git a/react/features/invite/components/info-dialog/web/InfoDialog.js b/react/features/invite/components/info-dialog/web/InfoDialog.js index 8046dd81b..4cbf1a3f2 100644 --- a/react/features/invite/components/info-dialog/web/InfoDialog.js +++ b/react/features/invite/components/info-dialog/web/InfoDialog.js @@ -294,9 +294,15 @@ class InfoDialog extends Component { */ _getTextToCopy() { const { liveStreamViewURL, t } = this.props; + const shouldDisplayDialIn = this._shouldDisplayDialIn(); + const moreInfo + = shouldDisplayDialIn + ? t('info.inviteURLMoreInfo', { conferenceID: this.props.dialIn.conferenceID }) + : ''; let invite = t('info.inviteURL', { - url: this.props._inviteURL + url: this.props._inviteURL, + moreInfo }); if (liveStreamViewURL) { @@ -307,7 +313,7 @@ class InfoDialog extends Component { invite = `${invite}\n${liveStream}`; } - if (this._shouldDisplayDialIn()) { + if (shouldDisplayDialIn) { const dial = t('info.invitePhone', { number: this.state.phoneNumber, conferenceID: this.props.dialIn.conferenceID