diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-24 18:06:07 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-24 18:06:07 +0200 |
| commit | 591dcaf68170c32193de515dd1ab267c4eefdbae (patch) | |
| tree | c9912ce05d1bfa89f1b2b5e65ea4217ed397ae62 /src | |
| parent | add windows program (.exe) icon (diff) | |
| download | discoin-591dcaf68170c32193de515dd1ab267c4eefdbae.tar.xz discoin-591dcaf68170c32193de515dd1ab267c4eefdbae.zip | |
improve tooltip texts
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 4 | ||||
| -rw-r--r-- | src/qt/forms/sendcoinsdialog.ui | 3 | ||||
| -rw-r--r-- | src/qt/forms/sendcoinsentry.ui | 7 |
3 files changed, 11 insertions, 3 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index c4462dd40..938d030d2 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -162,10 +162,12 @@ void BitcoinGUI::createActions() QActionGroup *tabGroup = new QActionGroup(this); overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this); + overviewAction->setToolTip(tr("Show general overview of wallet")); overviewAction->setCheckable(true); tabGroup->addAction(overviewAction); historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this); + historyAction->setToolTip(tr("Browse transaction history")); historyAction->setCheckable(true); tabGroup->addAction(historyAction); @@ -199,7 +201,7 @@ void BitcoinGUI::createActions() openBitcoinAction = new QAction(QIcon(":/icons/bitcoin"), tr("Open &Bitcoin"), this); openBitcoinAction->setToolTip(tr("Show the Bitcoin window")); 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(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked())); diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui index 547582e8d..5b30d99e5 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendcoinsdialog.ui @@ -63,6 +63,9 @@ </property> <item> <widget class="QPushButton" name="addButton"> + <property name="toolTip"> + <string>Send to multiple recipients at once</string> + </property> <property name="text"> <string>&Add recipient...</string> </property> diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 2dca6b74b..13593c2c1 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -100,7 +100,7 @@ <item> <widget class="QPushButton" name="addressBookButton"> <property name="toolTip"> - <string>Look up adress in address book</string> + <string>Choose adress from address book</string> </property> <property name="text"> <string/> @@ -123,7 +123,7 @@ <item> <widget class="QPushButton" name="pasteButton"> <property name="toolTip"> - <string>Paste address from system clipboard</string> + <string>Paste address from clipboard</string> </property> <property name="text"> <string/> @@ -142,6 +142,9 @@ </item> <item> <widget class="QPushButton" name="deleteButton"> + <property name="toolTip"> + <string>Remove this recipient</string> + </property> <property name="text"> <string/> </property> |