Remove white space characters before the horizontal ellipsis (#10130)

pull/28788/head^2
Suguru Hirahara 2023-02-10 17:42:39 +00:00 committed by GitHub
parent f14414eacd
commit e57f6f0257
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -138,9 +138,9 @@ export default class MKeyVerificationRequest extends React.Component<IProps> {
} 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

@ -2396,8 +2396,7 @@
"You cancelled": "You cancelled",
"%(name)s declined": "%(name)s declined",
"%(name)s cancelled": "%(name)s cancelled",
"Accepting …": "Accepting …",
"Declining …": "Declining …",
"Declining…": "Declining…",
"%(name)s wants to verify": "%(name)s wants to verify",
"You sent a verification request": "You sent a verification request",
"Expand map": "Expand map",