Tweak copy

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-25 10:57:46 +02:00
parent 7c805501bc
commit a2c7035163
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ export default class CallEvent extends React.Component<IProps, IState> {
const weDeclinedCall = MatrixClientPeg.get().getUserId() === rejectParty; const weDeclinedCall = MatrixClientPeg.get().getUserId() === rejectParty;
return ( return (
<div className="mx_CallEvent_content"> <div className="mx_CallEvent_content">
{ 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")) } { this.renderCallBackButton(weDeclinedCall ? _t("Call back") : _t("Call again")) }
</div> </div>
); );