diff --git a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/user-dropdown/component.jsx b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/user-dropdown/component.jsx index 5418d8b08bdc65337570bdf07b49eb62588e6185..5ced7fb6f2a34550b3b106cde0cc15254953c8f6 100755 --- a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/user-dropdown/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-list-item/user-dropdown/component.jsx @@ -413,12 +413,12 @@ class UserDropdown extends PureComponent { className={styles.modal} onRequestClose={() => mountModal(null)} hideBorder - contentLabel={intl.formatMessage(messages.removeConfirmTitle)} + contentLabel={intl.formatMessage(messages.removeConfirmTitle, { 0: user.name })} > <div className={styles.container}> <div className={styles.header}> <div className={styles.title}> - {intl.formatMessage(messages.removeConfirmTitle)} + {intl.formatMessage(messages.removeConfirmTitle, { 0: user.name })} </div> </div> <div className={styles.description}> diff --git a/bigbluebutton-html5/private/locales/en.json b/bigbluebutton-html5/private/locales/en.json index 72a5c37af07c295cfefa372f0b76ea6c93ffb092..f5f23652d1db49c84221cbecdd440b963b095f89 100755 --- a/bigbluebutton-html5/private/locales/en.json +++ b/bigbluebutton-html5/private/locales/en.json @@ -72,8 +72,8 @@ "app.userList.menu.chat.label": "Start a private chat", "app.userList.menu.clearStatus.label": "Clear status", "app.userList.menu.removeUser.label": "Remove user", - "app.userList.menu.removeConfirmation.label": "Remove User Confirmation", - "app.userlist.menu.removeConfirmation.desc": "They will not be allowed to rejoin this current session.", + "app.userList.menu.removeConfirmation.label": "Remove user ({0})", + "app.userlist.menu.removeConfirmation.desc": "Are you sure you want to remove this user? Once removed they will not be able to rejoin this session.", "app.userList.menu.muteUserAudio.label": "Mute user", "app.userList.menu.unmuteUserAudio.label": "Unmute user", "app.userList.userAriaLabel": "{0} {1} {2} Status {3}",