improve tooltip texts
This commit is contained in:
parent
8a13456f3a
commit
591dcaf681
3 changed files with 11 additions and 3 deletions
|
@ -162,10 +162,12 @@ void BitcoinGUI::createActions()
|
||||||
QActionGroup *tabGroup = new QActionGroup(this);
|
QActionGroup *tabGroup = new QActionGroup(this);
|
||||||
|
|
||||||
overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this);
|
overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this);
|
||||||
|
overviewAction->setToolTip(tr("Show general overview of wallet"));
|
||||||
overviewAction->setCheckable(true);
|
overviewAction->setCheckable(true);
|
||||||
tabGroup->addAction(overviewAction);
|
tabGroup->addAction(overviewAction);
|
||||||
|
|
||||||
historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);
|
historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);
|
||||||
|
historyAction->setToolTip(tr("Browse transaction history"));
|
||||||
historyAction->setCheckable(true);
|
historyAction->setCheckable(true);
|
||||||
tabGroup->addAction(historyAction);
|
tabGroup->addAction(historyAction);
|
||||||
|
|
||||||
|
@ -199,7 +201,7 @@ void BitcoinGUI::createActions()
|
||||||
openBitcoinAction = new QAction(QIcon(":/icons/bitcoin"), tr("Open &Bitcoin"), this);
|
openBitcoinAction = new QAction(QIcon(":/icons/bitcoin"), tr("Open &Bitcoin"), this);
|
||||||
openBitcoinAction->setToolTip(tr("Show the Bitcoin window"));
|
openBitcoinAction->setToolTip(tr("Show the Bitcoin window"));
|
||||||
exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);
|
exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);
|
||||||
exportAction->setToolTip(tr("Export data in current view to a file"));
|
exportAction->setToolTip(tr("Export the current view to a file"));
|
||||||
|
|
||||||
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
|
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
|
||||||
connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));
|
connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));
|
||||||
|
|
|
@ -63,6 +63,9 @@
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="addButton">
|
<widget class="QPushButton" name="addButton">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Send to multiple recipients at once</string>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Add recipient...</string>
|
<string>&Add recipient...</string>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -100,7 +100,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="addressBookButton">
|
<widget class="QPushButton" name="addressBookButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Look up adress in address book</string>
|
<string>Choose adress from address book</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
|
@ -123,7 +123,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="pasteButton">
|
<widget class="QPushButton" name="pasteButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Paste address from system clipboard</string>
|
<string>Paste address from clipboard</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
|
@ -142,6 +142,9 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="deleteButton">
|
<widget class="QPushButton" name="deleteButton">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Remove this recipient</string>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
|
|
Loading…
Reference in a new issue