Remove misplaced bracket in a translation string
This commit is contained in:
parent
ae60692e88
commit
4c7c10abf8
2 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ export default class CallEvent extends React.Component<IProps, IState> {
|
||||||
} else if (hangupReason === CallErrorCode.UserBusy) {
|
} else if (hangupReason === CallErrorCode.UserBusy) {
|
||||||
reason = _t("The user you called is busy.");
|
reason = _t("The user you called is busy.");
|
||||||
} else {
|
} else {
|
||||||
reason = _t('Unknown failure: %(reason)s)', { reason: hangupReason });
|
reason = _t('Unknown failure: %(reason)s', { reason: hangupReason });
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1849,7 +1849,7 @@
|
||||||
"Their device couldn't start the camera or microphone": "Their device couldn't start the camera or microphone",
|
"Their device couldn't start the camera or microphone": "Their device couldn't start the camera or microphone",
|
||||||
"An unknown error occurred": "An unknown error occurred",
|
"An unknown error occurred": "An unknown error occurred",
|
||||||
"No answer": "No answer",
|
"No answer": "No answer",
|
||||||
"Unknown failure: %(reason)s)": "Unknown failure: %(reason)s)",
|
"Unknown failure: %(reason)s": "Unknown failure: %(reason)s",
|
||||||
"This call has failed": "This call has failed",
|
"This call has failed": "This call has failed",
|
||||||
"You missed this call": "You missed this call",
|
"You missed this call": "You missed this call",
|
||||||
"Call back": "Call back",
|
"Call back": "Call back",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue