Merge pull request #2552 from jryans/spell-homeserver

Spell homeserver correctly
This commit is contained in:
J. Ryan Stinnett 2019-02-01 08:26:17 -06:00 committed by GitHub
commit e6b6133c7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 27 additions and 27 deletions

View file

@ -141,7 +141,7 @@ module.exports = React.createClass({
return (
<div ref="recaptchaContainer">
{ _t("This Home Server would like to make sure you are not a robot") }
{ _t("This homeserver would like to make sure you are not a robot.") }
<br />
<div id={DIV_ID}></div>
{ error }

View file

@ -61,7 +61,7 @@ export default class DevicesPanel extends React.Component {
let errtxt;
if (error.httpStatus == 404) {
// 404 probably means the HS doesn't yet support the API.
errtxt = _t("Your home server does not support device management.");
errtxt = _t("Your homeserver does not support device management.");
} else {
console.error("Error loading devices:", error);
errtxt = _t("Unable to load device list");