fix master merge translations
This commit is contained in:
parent
31190ea5b0
commit
313cea5580
4 changed files with 16 additions and 11 deletions
|
@ -309,5 +309,10 @@
|
||||||
"Wallet": "Wallet",
|
"Wallet": "Wallet",
|
||||||
"Looking up version info": "Looking up version info",
|
"Looking up version info": "Looking up version info",
|
||||||
"It looks like you deleted or moved this file. We're rebuilding it now. It will only take a few seconds.": "It looks like you deleted or moved this file. We're rebuilding it now. It will only take a few seconds.",
|
"It looks like you deleted or moved this file. We're rebuilding it now. It will only take a few seconds.": "It looks like you deleted or moved this file. We're rebuilding it now. It will only take a few seconds.",
|
||||||
"Fetching cost info": "Fetching cost info"
|
"Fetching cost info": "Fetching cost info",
|
||||||
}
|
"Testing network": "Testing network",
|
||||||
|
"Connection Failure": "Connection Failure",
|
||||||
|
"Try closing all LBRY processes and starting again. If this still happpens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug.": "Try closing all LBRY processes and starting again. If this still happpens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug.",
|
||||||
|
"Timed Out": "Timed Out",
|
||||||
|
"Testing Network": "Testing Network"
|
||||||
|
}
|
|
@ -122,7 +122,7 @@ class FileActions extends React.Component {
|
||||||
<DropDownMenuItem key={1} onClick={() => openModal('confirmRemove')} label={__("Remove...")} />
|
<DropDownMenuItem key={1} onClick={() => openModal('confirmRemove')} label={__("Remove...")} />
|
||||||
</DropDownMenu> : '' }
|
</DropDownMenu> : '' }
|
||||||
<Modal type="confirm" isOpen={modal == 'affirmPurchase'}
|
<Modal type="confirm" isOpen={modal == 'affirmPurchase'}
|
||||||
contentLabel="Confirm Purchase" onConfirmed={this.onAffirmPurchase.bind(this)} onAborted={closeModal}>
|
contentLabel={__("Confirm Purchase")} onConfirmed={this.onAffirmPurchase.bind(this)} onAborted={closeModal}>
|
||||||
{__("This will purchase")} <strong>{title}</strong> {__("for")} <strong><FilePrice uri={uri} look="plain" /></strong> {__("credits")}.
|
{__("This will purchase")} <strong>{title}</strong> {__("for")} <strong><FilePrice uri={uri} look="plain" /></strong> {__("credits")}.
|
||||||
</Modal>
|
</Modal>
|
||||||
<Modal isOpen={modal == 'notEnoughCredits'} contentLabel={__("Not enough credits")}
|
<Modal isOpen={modal == 'notEnoughCredits'} contentLabel={__("Not enough credits")}
|
||||||
|
|
|
@ -12,8 +12,8 @@ export class SplashScreen extends React.Component {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
details: 'Starting daemon',
|
details: __('Starting daemon'),
|
||||||
message: "Connecting",
|
message: __("Connecting"),
|
||||||
isLagging: false,
|
isLagging: false,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -30,8 +30,8 @@ export class SplashScreen extends React.Component {
|
||||||
// TODO: This is a hack, and the logic should live in the daemon
|
// TODO: This is a hack, and the logic should live in the daemon
|
||||||
// to give us a better sense of when we are actually started
|
// to give us a better sense of when we are actually started
|
||||||
this.setState({
|
this.setState({
|
||||||
message: "Testing Network",
|
message: __("Testing Network"),
|
||||||
details: "Waiting for name resolution",
|
details: __("Waiting for name resolution"),
|
||||||
isLagging: false
|
isLagging: false
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -55,8 +55,8 @@ export class SplashScreen extends React.Component {
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.setState({
|
this.setState({
|
||||||
isLagging: true,
|
isLagging: true,
|
||||||
message: "Connection Failure",
|
message: __("Connection Failure"),
|
||||||
details: "Try closing all LBRY processes and starting again. If this still happpens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug."
|
details: __("Try closing all LBRY processes and starting again. If this still happpens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug.")
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,7 @@ class VideoPlayButton extends React.Component {
|
||||||
className="video__play-button"
|
className="video__play-button"
|
||||||
icon="icon-play"
|
icon="icon-play"
|
||||||
onClick={this.onWatchClick.bind(this)} />
|
onClick={this.onWatchClick.bind(this)} />
|
||||||
<Modal contentLabel="Not enough credits" isOpen={modal == 'notEnoughCredits'} onConfirmed={closeModal}>
|
<Modal contentLabel={__("Not enough credits")} isOpen={modal == 'notEnoughCredits'} onConfirmed={closeModal}>
|
||||||
{__("You don't have enough LBRY credits to pay for this stream.")}
|
{__("You don't have enough LBRY credits to pay for this stream.")}
|
||||||
</Modal>
|
</Modal>
|
||||||
<Modal
|
<Modal
|
||||||
|
@ -64,7 +64,7 @@ class VideoPlayButton extends React.Component {
|
||||||
{__("This will purchase")} <strong>{title}</strong> {__("for")} <strong><FilePrice uri={uri} look="plain" /></strong> {__("credits")}.
|
{__("This will purchase")} <strong>{title}</strong> {__("for")} <strong><FilePrice uri={uri} look="plain" /></strong> {__("credits")}.
|
||||||
</Modal>
|
</Modal>
|
||||||
<Modal
|
<Modal
|
||||||
isOpen={modal == 'timedOut'} onConfirmed={closeModal} contentLabel="Timed Out">
|
isOpen={modal == 'timedOut'} onConfirmed={closeModal} contentLabel={__("Timed Out")}>
|
||||||
{__("Sorry, your download timed out :(")}
|
{__("Sorry, your download timed out :(")}
|
||||||
</Modal>
|
</Modal>
|
||||||
</div>);
|
</div>);
|
||||||
|
|
Loading…
Add table
Reference in a new issue