Skip to content

Commit a977b8c

Browse files
committed
Merge pull request #2428 from r000n/staging
Simplify titles of tabs in main window
2 parents cf4d976 + 0de26d5 commit a977b8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/qt/bitcoingui.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,14 @@ void BitcoinGUI::createActions()
167167
overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1));
168168
tabGroup->addAction(overviewAction);
169169

170-
sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send coins"), this);
170+
sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send"), this);
171171
sendCoinsAction->setStatusTip(tr("Send coins to a Bitcoin address"));
172172
sendCoinsAction->setToolTip(sendCoinsAction->statusTip());
173173
sendCoinsAction->setCheckable(true);
174174
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
175175
tabGroup->addAction(sendCoinsAction);
176176

177-
receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive coins"), this);
177+
receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive"), this);
178178
receiveCoinsAction->setStatusTip(tr("Show the list of addresses for receiving payments"));
179179
receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip());
180180
receiveCoinsAction->setCheckable(true);
@@ -188,7 +188,7 @@ void BitcoinGUI::createActions()
188188
historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));
189189
tabGroup->addAction(historyAction);
190190

191-
addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Address Book"), this);
191+
addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Addresses"), this);
192192
addressBookAction->setStatusTip(tr("Edit the list of stored addresses and labels"));
193193
addressBookAction->setToolTip(addressBookAction->statusTip());
194194
addressBookAction->setCheckable(true);

0 commit comments

Comments
 (0)