You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Fix typos in some strings
This commit fixes some typos that I've stumbled upon.
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user