more edits
This commit is contained in:
parent
a3a56e7f89
commit
f7242bfd97
2 changed files with 3 additions and 5 deletions
|
@ -925,9 +925,6 @@
|
||||||
"Available": "Available",
|
"Available": "Available",
|
||||||
"Unable to load your saved preferences.": "Unable to load your saved preferences.",
|
"Unable to load your saved preferences.": "Unable to load your saved preferences.",
|
||||||
"Add/Delete": "Add/Delete",
|
"Add/Delete": "Add/Delete",
|
||||||
"The wallet server took a bit too long. Resetting defaults just in case.": "The wallet server took a bit too long. Resetting defaults just in case.",
|
|
||||||
"The wallet server took a bit too long. Resetting defaults just in case. Restart the App and SDK if this continues.": "The wallet server took a bit too long. Resetting defaults just in case. Restart the App and SDK if this continues.",
|
|
||||||
"The wallet server took a bit too long. Resetting defaults just in case.": "The wallet server took a bit too long. Resetting defaults just in case.",
|
|
||||||
"PDF opened externally. %click_here% to open it again.": "PDF opened externally. %click_here% to open it again.",
|
"PDF opened externally. %click_here% to open it again.": "PDF opened externally. %click_here% to open it again.",
|
||||||
"%numberOfMonthsSincePublish% years ago": "%numberOfMonthsSincePublish% years ago",
|
"%numberOfMonthsSincePublish% years ago": "%numberOfMonthsSincePublish% years ago",
|
||||||
"%numberOfYearsSincePublish% years ago": "%numberOfYearsSincePublish% years ago",
|
"%numberOfYearsSincePublish% years ago": "%numberOfYearsSincePublish% years ago",
|
||||||
|
@ -937,5 +934,6 @@
|
||||||
"%numberOfMonthsSincePublish% month ago": "%numberOfMonthsSincePublish% month ago",
|
"%numberOfMonthsSincePublish% month ago": "%numberOfMonthsSincePublish% month ago",
|
||||||
"%numberOfMonthsSincePublish% months ago": "%numberOfMonthsSincePublish% months ago",
|
"%numberOfMonthsSincePublish% months ago": "%numberOfMonthsSincePublish% months ago",
|
||||||
"%numberOfDaysSincePublish% months ago": "%numberOfDaysSincePublish% months ago",
|
"%numberOfDaysSincePublish% months ago": "%numberOfDaysSincePublish% months ago",
|
||||||
"%numberOfDaysSincePublish% days ago": "%numberOfDaysSincePublish% days ago"
|
"%numberOfDaysSincePublish% days ago": "%numberOfDaysSincePublish% days ago",
|
||||||
|
"The wallet server took a bit too long. Resetting defaults just in case. Shutdown (Cmd/Ctrl+Q) LBRY and restart if this continues.": "The wallet server took a bit too long. Resetting defaults just in case. Shutdown (Cmd/Ctrl+Q) LBRY and restart if this continues."
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,7 +129,7 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
});
|
});
|
||||||
} else if (this.state.waitingForWallet > MAX_WALLET_WAIT && launchedModal === false && !modal) {
|
} else if (this.state.waitingForWallet > MAX_WALLET_WAIT && launchedModal === false && !modal) {
|
||||||
clearWalletServers();
|
clearWalletServers();
|
||||||
doShowSnackBar(__('The wallet server took a bit too long. Resetting defaults just in case. Restart the App and SDK if this continues.'));
|
doShowSnackBar(__('The wallet server took a bit too long. Resetting defaults just in case. Shutdown (Cmd/Ctrl+Q) LBRY and restart if this continues.'));
|
||||||
this.setState({waitingForWallet: 0});
|
this.setState({waitingForWallet: 0});
|
||||||
this.updateStatusCallback(status);
|
this.updateStatusCallback(status);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue