You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ui->labelExplanation->setText(tr("These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins."));
96
-
ui->deleteAddress->setVisible(true);
107
+
ui->labelExplanation->setText(tr("These are your Qtum addresses for sending payments. Always check the amount and the receiving address before sending coins."));
97
108
ui->newAddress->setVisible(true);
98
109
break;
99
110
case ReceivingTab:
100
-
ui->labelExplanation->setText(tr("These are your Bitcoin addresses for receiving payments. Use the 'Create new receiving address' button in the receive tab to create new addresses.\nSigning is only possible with addresses of the type 'legacy'."));
111
+
ui->labelExplanation->setText(tr("These are your Qtum addresses for receiving payments. Use the 'Create new receiving address' button in the receive tab to create new addresses.\nSigning is only possible with addresses of the type 'legacy'."));
tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"),
119
+
tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR QTUMS</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"),
105
120
QMessageBox::Yes|QMessageBox::Cancel,
106
121
QMessageBox::Cancel);
107
122
if(retval == QMessageBox::Yes)
108
123
{
109
124
if(newpass1 == newpass2)
110
125
{
111
126
QString encryption_reminder = tr("Remember that encrypting your wallet cannot fully protect "
112
-
"your bitcoins from being stolen by malware infecting your computer.");
127
+
"your qtums from being stolen by malware infecting your computer.");
113
128
if (m_passphrase_out) {
114
129
m_passphrase_out->assign(newpass1);
115
130
QMessageBox::warning(this, tr("Wallet to be encrypted"),
0 commit comments