diff --git a/src/languages/en.ts b/src/languages/en.ts index eb9befc1ea3a..298eb67ecab4 100755 --- a/src/languages/en.ts +++ b/src/languages/en.ts @@ -3853,7 +3853,8 @@ export default { renamedWorkspaceNameAction: ({oldName, newName}) => `updated the name of this workspace from ${oldName} to ${newName}`, }, roomMembersPage: { - memberNotFound: 'Member not found. To invite a new member to the room, please use the invite button above.', + memberNotFound: 'Member not found.', + useInviteButton: 'To invite a new member to the chat, please use the invite button above.', notAuthorized: `You don't have access to this page. If you're trying to join this room, just ask a room member to add you. Something else? Reach out to ${CONST.EMAIL.CONCIERGE}`, removeMembersPrompt: 'Are you sure you want to remove the selected members from the room?', error: { diff --git a/src/languages/es.ts b/src/languages/es.ts index ccc56070cdbd..52ec2a57427b 100644 --- a/src/languages/es.ts +++ b/src/languages/es.ts @@ -3904,7 +3904,8 @@ export default { renamedWorkspaceNameAction: ({oldName, newName}) => `actualizó el nombre de este espacio de trabajo de ${oldName} a ${newName}`, }, roomMembersPage: { - memberNotFound: 'Miembro no encontrado. Para invitar a un nuevo miembro a la sala de chat, por favor, utiliza el botón invitar que está más arriba.', + memberNotFound: 'Miembro no encontrado.', + useInviteButton: 'Para invitar a un nuevo miembro al chat, por favor, utiliza el botón invitar que está más arriba.', notAuthorized: `No tienes acceso a esta página. Si estás intentando unirte a esta sala, pide a un miembro de la sala que te añada. ¿Necesitas algo más? Comunícate con ${CONST.EMAIL.CONCIERGE}`, removeMembersPrompt: '¿Estás seguro de que quieres eliminar a los miembros seleccionados de la sala de chat?', error: { diff --git a/src/pages/ReportParticipantsPage.tsx b/src/pages/ReportParticipantsPage.tsx index c99ef44688cb..7f107dca5875 100755 --- a/src/pages/ReportParticipantsPage.tsx +++ b/src/pages/ReportParticipantsPage.tsx @@ -250,8 +250,8 @@ function ReportParticipantsPage({report}: WithReportOrNotFoundProps) { return header; } - return {header}; - }, [styles, translate, isGroupChat, StyleUtils, canSelectMultiple]); + return {header}; + }, [styles, translate, isGroupChat, shouldShowTextInput, StyleUtils, canSelectMultiple]); const bulkActionsButtonOptions = useMemo(() => { const options: Array> = [ @@ -349,7 +349,11 @@ function ReportParticipantsPage({report}: WithReportOrNotFoundProps) { const selectionModeHeader = selectionMode?.isEnabled && isSmallScreenWidth; - const headerMessage = searchValue.trim() && !participants.length ? translate('roomMembersPage.memberNotFound') : ''; + // eslint-disable-next-line rulesdir/no-negated-variables + const memberNotFoundMessage = isGroupChat + ? `${translate('roomMembersPage.memberNotFound')} ${translate('roomMembersPage.useInviteButton')}` + : translate('roomMembersPage.memberNotFound'); + const headerMessage = searchValue.trim() && !participants.length ? memberNotFoundMessage : ''; return ( { const options: Array> = [