aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.cpp
diff options
context:
space:
mode:
authorJonas Schnelli <[email protected]>2015-07-03 08:55:22 +0200
committerJonas Schnelli <[email protected]>2015-09-16 16:50:20 +0200
commitbe8929265f0aa10c071e3efbfd20bfb4754ca543 (patch)
treef112b2b28fb5e8792519cd77ca85f77c953b46c1 /src/qt/rpcconsole.cpp
parent[Qt] adapt QT ban option to banlist.dat changes (diff)
downloaddiscoin-be8929265f0aa10c071e3efbfd20bfb4754ca543.tar.xz
discoin-be8929265f0aa10c071e3efbfd20bfb4754ca543.zip
[Qt] reenabling hotkeys for ban context menu, use different words
- 1 (h)our - 1 (d)ay - 1 (w)eek - 1 (y)ear
Diffstat (limited to 'src/qt/rpcconsole.cpp')
-rw-r--r--src/qt/rpcconsole.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index b224d8918..ae89ccf12 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -356,10 +356,10 @@ void RPCConsole::setClientModel(ClientModel *model)
// create peer table context menu actions
QAction* disconnectAction = new QAction(tr("&Disconnect Node"), this);
- QAction* banAction1h = new QAction(tr("Ban Node for") + " " + tr("1 hour"), this);
- QAction* banAction24h = new QAction(tr("Ban Node for") + " " + tr("24 hours"), this);
- QAction* banAction7d = new QAction(tr("Ban Node for") + " " + tr("7 days"), this);
- QAction* banAction365d = new QAction(tr("Ban Node for") + " " + tr("1 year"), this);
+ QAction* banAction1h = new QAction(tr("Ban Node for") + " " + tr("1 &hour"), this);
+ QAction* banAction24h = new QAction(tr("Ban Node for") + " " + tr("1 &day"), this);
+ QAction* banAction7d = new QAction(tr("Ban Node for") + " " + tr("1 &week"), this);
+ QAction* banAction365d = new QAction(tr("Ban Node for") + " " + tr("1 &year"), this);
// create peer table context menu
peersTableContextMenu = new QMenu();