Tweak copy

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Š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

View file

@ -123,7 +123,7 @@ export default class CallEvent extends React.Component<IProps, IState> {
const weDeclinedCall = MatrixClientPeg.get().getUserId() === rejectParty;
return (
<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")) }
</div>
);