From af6995580179275f8969a6fec4f8ccc37bcc2a17 Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Fri, 12 Aug 2022 11:33:56 +0100 Subject: [PATCH] Fix grammar of read receipt text (#744) 'other' should be plural in this context. --- src/app/organisms/room/common.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/organisms/room/common.jsx b/src/app/organisms/room/common.jsx index 12b9f2ba..28974a85 100644 --- a/src/app/organisms/room/common.jsx +++ b/src/app/organisms/room/common.jsx @@ -164,7 +164,7 @@ function getUsersActionJsx(roomId, userIds, actionStr) { const othersCount = userIds.length - MAX_VISIBLE_COUNT; // eslint-disable-next-line react/jsx-one-expression-per-line - return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} other are {actionStr}; + return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} others are {actionStr}; } function parseTimelineChange(mEvent) {