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",
|
||||
"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.",
|
||||
"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...")} />
|
||||
</DropDownMenu> : '' }
|
||||
<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")}.
|
||||
</Modal>
|
||||
<Modal isOpen={modal == 'notEnoughCredits'} contentLabel={__("Not enough credits")}
|
||||
|
|
|
@ -12,8 +12,8 @@ export class SplashScreen extends React.Component {
|
|||
super(props);
|
||||
|
||||
this.state = {
|
||||
details: 'Starting daemon',
|
||||
message: "Connecting",
|
||||
details: __('Starting daemon'),
|
||||
message: __("Connecting"),
|
||||
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
|
||||
// to give us a better sense of when we are actually started
|
||||
this.setState({
|
||||
message: "Testing Network",
|
||||
details: "Waiting for name resolution",
|
||||
message: __("Testing Network"),
|
||||
details: __("Waiting for name resolution"),
|
||||
isLagging: false
|
||||
});
|
||||
|
||||
|
@ -55,8 +55,8 @@ export class SplashScreen extends React.Component {
|
|||
.catch(() => {
|
||||
this.setState({
|
||||
isLagging: true,
|
||||
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."
|
||||
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.")
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ class VideoPlayButton extends React.Component {
|
|||
className="video__play-button"
|
||||
icon="icon-play"
|
||||
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.")}
|
||||
</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")}.
|
||||
</Modal>
|
||||
<Modal
|
||||
isOpen={modal == 'timedOut'} onConfirmed={closeModal} contentLabel="Timed Out">
|
||||
isOpen={modal == 'timedOut'} onConfirmed={closeModal} contentLabel={__("Timed Out")}>
|
||||
{__("Sorry, your download timed out :(")}
|
||||
</Modal>
|
||||
</div>);
|
||||
|
|
Loading…
Add table
Reference in a new issue