Fix typos in some strings

This commit fixes some typos that I've stumbled upon.
pull/21833/head
Lukas 2020-12-06 10:32:52 +01:00
parent c13891c670
commit a856484139
2 changed files with 3 additions and 3 deletions

View File

@ -393,14 +393,14 @@ export default class CallHandler {
title = _t("Unable to access microphone"); title = _t("Unable to access microphone");
description = <div> description = <div>
{_t( {_t(
"Call failed because no microphone could not be accessed. " + "Call failed because microphone could not be accessed. " +
"Check that a microphone is plugged in and set up correctly.", "Check that a microphone is plugged in and set up correctly.",
)} )}
</div>; </div>;
} else if (call.type === CallType.Video) { } else if (call.type === CallType.Video) {
title = _t("Unable to access webcam / microphone"); title = _t("Unable to access webcam / microphone");
description = <div> description = <div>
{_t("Call failed because no webcam or microphone could not be accessed. Check that:")} {_t("Call failed because webcam or microphone could not be accessed. Check that:")}
<ul> <ul>
<li>{_t("A microphone and webcam are plugged in and set up correctly")}</li> <li>{_t("A microphone and webcam are plugged in and set up correctly")}</li>
<li>{_t("Permission is granted to use the webcam")}</li> <li>{_t("Permission is granted to use the webcam")}</li>

View File

@ -153,7 +153,7 @@ export default class ServerPickerDialog extends React.PureComponent<IProps, ISta
> >
<form className="mx_Dialog_content" id="mx_ServerPickerDialog" onSubmit={this.onSubmit}> <form className="mx_Dialog_content" id="mx_ServerPickerDialog" onSubmit={this.onSubmit}>
<p> <p>
{_t("We call the places you where you can host your account homeservers.")} {text} {_t("We call the places where you can host your account homeservers.")} {text}
</p> </p>
<StyledRadioButton <StyledRadioButton