better word smithing

This commit is contained in:
Bruno Windels 2020-02-25 13:27:59 +01:00
parent bd584ab236
commit 682781aa48
4 changed files with 8 additions and 7 deletions

View file

@ -136,9 +136,9 @@ export default class MKeyVerificationRequest extends React.Component {
} else if (request.cancelled) {
stateLabel = this._cancelledLabel(request.cancellingUserId);
} else if (request.accepting) {
stateLabel = _t("accepting …");
stateLabel = _t("Accepting …");
} else if (request.declining) {
stateLabel = _t("declining …");
stateLabel = _t("Declining …");
}
stateNode = (<div className="mx_cryptoEvent_state">{stateLabel}</div>);
}

View file

@ -37,7 +37,7 @@ const EncryptionInfo = ({waitingForOtherParty, waitingForNetwork, member, onStar
displayName: member.displayName || member.name || member.userId,
});
} else {
text = _t("Waiting for network…");
text = _t("Accepting…");
}
content = <PendingActionSpinner text={text} />;
} else {

View file

@ -109,7 +109,7 @@ export default class VerificationShowSas extends React.Component {
const {displayName} = this.props;
text = _t("Waiting for %(displayName)s to verify…", {displayName});
} else {
text = _t("Waiting for network…");
text = _t("Cancelling…");
}
confirm = <PendingActionSpinner text={text} />;
} else {