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

Remove white space characters before the horizontal ellipsis #10130

Merged
merged 1 commit into from
Feb 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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