Merge pull request #6422 from libexus/i18n-bracket-fix

Remove misplaced bracket in a translation string
This commit is contained in:
Dariusz Niemczyk 2021-08-15 09:20:00 +02:00 committed by GitHub
commit 7b72931c42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -199,7 +199,7 @@ export default class CallEvent extends React.PureComponent<IProps, IState> {
} else if (hangupReason === CallErrorCode.UserBusy) {
reason = _t("The user you called is busy.");
} else {
reason = _t('Unknown failure: %(reason)s)', { reason: hangupReason });
reason = _t('Unknown failure: %(reason)s', { reason: hangupReason });
}
return (