more edits

This commit is contained in:
jessop 2019-12-11 16:14:12 -05:00 committed by Sean Yesmunt
parent a3a56e7f89
commit f7242bfd97
2 changed files with 3 additions and 5 deletions

View file

@ -925,9 +925,6 @@
"Available": "Available",
"Unable to load your saved preferences.": "Unable to load your saved preferences.",
"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.",
"%numberOfMonthsSincePublish% years ago": "%numberOfMonthsSincePublish% years ago",
"%numberOfYearsSincePublish% years ago": "%numberOfYearsSincePublish% years ago",
@ -937,5 +934,6 @@
"%numberOfMonthsSincePublish% month ago": "%numberOfMonthsSincePublish% month ago",
"%numberOfMonthsSincePublish% months ago": "%numberOfMonthsSincePublish% 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."
}

View file

@ -129,7 +129,7 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
});
} else if (this.state.waitingForWallet > MAX_WALLET_WAIT && launchedModal === false && !modal) {
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.updateStatusCallback(status);
} else {