Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Remove white space characters before the horizontal ellipsis (#10130)
Browse files Browse the repository at this point in the history
  • Loading branch information
luixxiul authored Feb 10, 2023
1 parent f14414e commit e57f6f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/views/messages/MKeyVerificationRequest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>;
}
Expand Down
3 changes: 1 addition & 2 deletions src/i18n/strings/en_EN.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e57f6f0

Please sign in to comment.