Update copy

pull/21833/head
Travis Ralston 2020-07-30 10:17:47 -06:00
parent 3b346161a5
commit 7522380763
2 changed files with 7 additions and 5 deletions

View File

@ -26,6 +26,7 @@ import { TransactionStatus } from "../../../stores/local-echo/EchoTransaction";
import Spinner from "../elements/Spinner"; import Spinner from "../elements/Spinner";
import AccessibleButton from "../elements/AccessibleButton"; import AccessibleButton from "../elements/AccessibleButton";
import { UPDATE_EVENT } from "../../../stores/AsyncStore"; import { UPDATE_EVENT } from "../../../stores/AsyncStore";
import { MatrixClientPeg } from "../../../MatrixClientPeg";
interface IProps { interface IProps {
onFinished: (bool) => void; onFinished: (bool) => void;
@ -92,6 +93,7 @@ export default class ServerOfflineDialog extends React.PureComponent<IProps> {
timeline = [<div key={1}>{_t("You're all caught up.")}</div>]; timeline = [<div key={1}>{_t("You're all caught up.")}</div>];
} }
const serverName = MatrixClientPeg.getHomeserverName();
return <BaseDialog title={_t("Server isn't responding")} return <BaseDialog title={_t("Server isn't responding")}
className='mx_ServerOfflineDialog' className='mx_ServerOfflineDialog'
contentId='mx_Dialog_content' contentId='mx_Dialog_content'
@ -100,11 +102,11 @@ export default class ServerOfflineDialog extends React.PureComponent<IProps> {
> >
<div className="mx_ServerOfflineDialog_content"> <div className="mx_ServerOfflineDialog_content">
<p>{_t( <p>{_t(
"Your server isn't responding to some of your requests for some reason. " + "Your server isn't responding to some of your requests. " +
"Below are some possible reasons why this happened.", "Below are some of the most likely reasons.",
)}</p> )}</p>
<ul> <ul>
<li>{_t("The server took too long to respond.")}</li> <li>{_t("The server (%(serverName)s) took too long to respond.", {serverName})}</li>
<li>{_t("Your firewall or anti-virus is blocking the request.")}</li> <li>{_t("Your firewall or anti-virus is blocking the request.")}</li>
<li>{_t("A browser extension is preventing the request.")}</li> <li>{_t("A browser extension is preventing the request.")}</li>
<li>{_t("The server is offline.")}</li> <li>{_t("The server is offline.")}</li>

View File

@ -1748,8 +1748,8 @@
"Resend": "Resend", "Resend": "Resend",
"You're all caught up.": "You're all caught up.", "You're all caught up.": "You're all caught up.",
"Server isn't responding": "Server isn't responding", "Server isn't responding": "Server isn't responding",
"Your server isn't responding to some of your requests for some reason. Below are some possible reasons why this happened.": "Your server isn't responding to some of your requests for some reason. Below are some possible reasons why this happened.", "Your server isn't responding to some of your requests. Below are some of the most likely reasons.": "Your server isn't responding to some of your requests. Below are some of the most likely reasons.",
"The server took too long to respond.": "The server took too long to respond.", "The server (%(serverName)s) took too long to respond.": "The server (%(serverName)s) took too long to respond.",
"Your firewall or anti-virus is blocking the request.": "Your firewall or anti-virus is blocking the request.", "Your firewall or anti-virus is blocking the request.": "Your firewall or anti-virus is blocking the request.",
"A browser extension is preventing the request.": "A browser extension is preventing the request.", "A browser extension is preventing the request.": "A browser extension is preventing the request.",
"The server is offline.": "The server is offline.", "The server is offline.": "The server is offline.",