From a2c703516321717b2c429cd932cc8a21b8640967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Sun, 25 Jul 2021 10:57:46 +0200 Subject: [PATCH] Tweak copy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/components/views/messages/CallEvent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/messages/CallEvent.tsx b/src/components/views/messages/CallEvent.tsx index b093d18436..2c9448fcfe 100644 --- a/src/components/views/messages/CallEvent.tsx +++ b/src/components/views/messages/CallEvent.tsx @@ -123,7 +123,7 @@ export default class CallEvent extends React.Component { const weDeclinedCall = MatrixClientPeg.get().getUserId() === rejectParty; return (
- { weDeclinedCall ? _t("You declined this call") : _t("The other party declined this call") } + { weDeclinedCall ? _t("You declined this call") : _t("The remote side declined this call") } { this.renderCallBackButton(weDeclinedCall ? _t("Call back") : _t("Call again")) }
);