|
|
|
@ -209,7 +209,7 @@ void BitcoinGUI::createActions()
|
|
|
|
|
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
|
|
|
|
|
tabGroup->addAction(sendCoinsAction);
|
|
|
|
|
|
|
|
|
|
messageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message"), this);
|
|
|
|
|
messageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this);
|
|
|
|
|
messageAction->setToolTip(tr("Prove you control an address"));
|
|
|
|
|
#ifdef FIRST_CLASS_MESSAGING
|
|
|
|
|
messageAction->setCheckable(true);
|
|
|
|
@ -246,12 +246,12 @@ void BitcoinGUI::createActions()
|
|
|
|
|
toggleHideAction->setToolTip(tr("Show or hide the Bitcoin window"));
|
|
|
|
|
exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);
|
|
|
|
|
exportAction->setToolTip(tr("Export the data in the current tab to a file"));
|
|
|
|
|
encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet"), this);
|
|
|
|
|
encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this);
|
|
|
|
|
encryptWalletAction->setToolTip(tr("Encrypt or decrypt wallet"));
|
|
|
|
|
encryptWalletAction->setCheckable(true);
|
|
|
|
|
backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet"), this);
|
|
|
|
|
backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet..."), this);
|
|
|
|
|
backupWalletAction->setToolTip(tr("Backup wallet to another location"));
|
|
|
|
|
changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase"), this);
|
|
|
|
|
changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this);
|
|
|
|
|
changePassphraseAction->setToolTip(tr("Change the passphrase used for wallet encryption"));
|
|
|
|
|
openRPCConsoleAction = new QAction(tr("&Debug window"), this);
|
|
|
|
|
openRPCConsoleAction->setToolTip(tr("Open debugging and diagnostic console"));
|
|
|
|
@ -636,7 +636,7 @@ void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
|
|
|
|
|
"Do you want to pay the fee?").arg(
|
|
|
|
|
BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired));
|
|
|
|
|
QMessageBox::StandardButton retval = QMessageBox::question(
|
|
|
|
|
this, tr("Sending..."), strMessage,
|
|
|
|
|
this, tr("Confirm transaction fee"), strMessage,
|
|
|
|
|
QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
|
|
|
|
|
*payFee = (retval == QMessageBox::Yes);
|
|
|
|
|
}
|
|
|
|
|