Merge pull request #4472 from chimp1984/update-about-view

Remove short cut info for removed key handlers
This commit is contained in:
Christoph Atteneder 2020-09-04 10:12:53 +02:00 committed by GitHub
commit 2c39ded714
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 16 deletions

View File

@ -1245,9 +1245,6 @@ setting.about.shortcuts.openEmergencyBsqWalletTool=Open emergency wallet tool fo
setting.about.shortcuts.showTorLogs=Toggle log level for Tor messages between DEBUG and WARN
setting.about.shortcuts.showDisputeStatistics=Show summary of all disputes
setting.about.shortcuts.showDisputeStatistics.value=Navigate to disputes view and press: {0}
setting.about.shortcuts.manualPayoutTxWindow=Open window for manual payout from 2of2 Multisig deposit tx
setting.about.shortcuts.reRepublishAllGovernanceData=Republish DAO governance data (proposals, votes)
@ -1261,9 +1258,6 @@ setting.about.shortcuts.registerArbitrator.value=Navigate to account and press:
setting.about.shortcuts.registerMediator=Register mediator (mediator/arbitrator only)
setting.about.shortcuts.registerMediator.value=Navigate to account and press: {0}
setting.about.shortcuts.reOpenDispute=Re-open already closed dispute (mediator/arbitrator only)
setting.about.shortcuts.reOpenDispute.value=Select closed dispute and press: {0}
setting.about.shortcuts.openSignPaymentAccountsWindow=Open window for account age signing (legacy arbitrators only)
setting.about.shortcuts.openSignPaymentAccountsWindow.value=Navigate to legacy arbitrator view and press: {0}
@ -1272,7 +1266,7 @@ setting.about.shortcuts.sendAlertMsg=Send alert or update message (privileged ac
setting.about.shortcuts.sendFilter=Set Filter (privileged activity)
setting.about.shortcuts.sendPrivateNotification=Send private notification to peer (privileged activity)
setting.about.shortcuts.sendPrivateNotification.value=Open peer info at avatar or dispute and press: {0}
setting.about.shortcuts.sendPrivateNotification.value=Open peer info at avatar and press: {0}
setting.info.headline=New XMR auto-confirm Feature
setting.info.msg=When selling BTC for XMR you can use the auto-confirm feature to verify that the correct amount of \

View File

@ -93,7 +93,7 @@ public class AboutView extends ActivatableView<GridPane, Void> {
Version.LOCAL_DB_VERSION,
Version.TRADE_PROTOCOL_VERSION));
addTitledGroupBg(root, ++gridRow, 20, Res.get("setting.about.shortcuts"), Layout.GROUP_DISTANCE);
addTitledGroupBg(root, ++gridRow, 18, Res.get("setting.about.shortcuts"), Layout.GROUP_DISTANCE);
// basics
addCompactTopLabelTextField(root, gridRow, Res.get("setting.about.shortcuts.menuNav"),
@ -122,10 +122,6 @@ public class AboutView extends ActivatableView<GridPane, Void> {
addCompactTopLabelTextField(root, ++gridRow, Res.get("setting.about.shortcuts.openEmergencyBsqWalletTool"),
Res.get("setting.about.shortcuts.ctrlOrAltOrCmd", "b"));
addCompactTopLabelTextField(root, ++gridRow, Res.get("setting.about.shortcuts.showDisputeStatistics"),
Res.get("setting.about.shortcuts.showDisputeStatistics.value",
Res.get("setting.about.shortcuts.ctrlOrAltOrCmd", "l")));
addCompactTopLabelTextField(root, ++gridRow, Res.get("setting.about.shortcuts.showTorLogs"),
Res.get("setting.about.shortcuts.ctrlOrAltOrCmd", "t"));
@ -149,10 +145,6 @@ public class AboutView extends ActivatableView<GridPane, Void> {
Res.get("setting.about.shortcuts.registerMediator.value",
Res.get("setting.about.shortcuts.ctrlOrAltOrCmd", "d")));
addCompactTopLabelTextField(root, ++gridRow, Res.get("setting.about.shortcuts.reOpenDispute"),
Res.get("setting.about.shortcuts.reOpenDispute.value",
Res.get("setting.about.shortcuts.ctrlOrAltOrCmd", "u")));
addCompactTopLabelTextField(root, ++gridRow, Res.get("setting.about.shortcuts.openSignPaymentAccountsWindow"),
Res.get("setting.about.shortcuts.openSignPaymentAccountsWindow.value",
Res.get("setting.about.shortcuts.ctrlOrAltOrCmd", "s")));