fix some double-spaces in strings
- remove some unneeded stuff in sendcoinsentry.ui - harmonize some "Error:"-messages
This commit is contained in:
parent
bb790aa24d
commit
6b3783a9c9
6 changed files with 18 additions and 30 deletions
|
@ -609,11 +609,9 @@ void BitcoinGUI::closeEvent(QCloseEvent *event)
|
||||||
|
|
||||||
void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
|
void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
|
||||||
{
|
{
|
||||||
QString strMessage =
|
QString strMessage = tr("This transaction is over the size limit. You can still send it for a fee of %1, "
|
||||||
tr("This transaction is over the size limit. You can still send it for a fee of %1, "
|
|
||||||
"which goes to the nodes that process your transaction and helps to support the network. "
|
"which goes to the nodes that process your transaction and helps to support the network. "
|
||||||
"Do you want to pay the fee?").arg(
|
"Do you want to pay the fee?").arg(BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired));
|
||||||
BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired));
|
|
||||||
QMessageBox::StandardButton retval = QMessageBox::question(
|
QMessageBox::StandardButton retval = QMessageBox::question(
|
||||||
this, tr("Confirm transaction fee"), strMessage,
|
this, tr("Confirm transaction fee"), strMessage,
|
||||||
QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
|
QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
|
||||||
|
|
|
@ -52,23 +52,6 @@
|
||||||
<item row="5" column="1">
|
<item row="5" column="1">
|
||||||
<widget class="BitcoinAmountField" name="payAmount"/>
|
<widget class="BitcoinAmountField" name="payAmount"/>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="1">
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QValidatedLineEdit" name="addAsLabel">
|
|
||||||
<property name="enabled">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Enter a label for this address to add it to your address book</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="0">
|
<item row="4" column="0">
|
||||||
<widget class="QLabel" name="label_4">
|
<widget class="QLabel" name="label_4">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
@ -147,6 +130,13 @@
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="4" column="1">
|
||||||
|
<widget class="QValidatedLineEdit" name="addAsLabel">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Enter a label for this address to add it to your address book</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<customwidgets>
|
<customwidgets>
|
||||||
|
|
|
@ -148,7 +148,7 @@ void SendCoinsDialog::on_sendButton_clicked()
|
||||||
break;
|
break;
|
||||||
case WalletModel::TransactionCreationFailed:
|
case WalletModel::TransactionCreationFailed:
|
||||||
QMessageBox::warning(this, tr("Send Coins"),
|
QMessageBox::warning(this, tr("Send Coins"),
|
||||||
tr("Error: Transaction creation failed."),
|
tr("Error: Transaction creation failed!"),
|
||||||
QMessageBox::Ok, QMessageBox::Ok);
|
QMessageBox::Ok, QMessageBox::Ok);
|
||||||
break;
|
break;
|
||||||
case WalletModel::TransactionCommitFailed:
|
case WalletModel::TransactionCommitFailed:
|
||||||
|
|
|
@ -1296,7 +1296,7 @@ string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew,
|
||||||
|
|
||||||
if (IsLocked())
|
if (IsLocked())
|
||||||
{
|
{
|
||||||
string strError = _("Error: Wallet locked, unable to create transaction ");
|
string strError = _("Error: Wallet locked, unable to create transaction!");
|
||||||
printf("SendMoney() : %s", strError.c_str());
|
printf("SendMoney() : %s", strError.c_str());
|
||||||
return strError;
|
return strError;
|
||||||
}
|
}
|
||||||
|
@ -1304,9 +1304,9 @@ string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew,
|
||||||
{
|
{
|
||||||
string strError;
|
string strError;
|
||||||
if (nValue + nFeeRequired > GetBalance())
|
if (nValue + nFeeRequired > GetBalance())
|
||||||
strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds "), FormatMoney(nFeeRequired).c_str());
|
strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!"), FormatMoney(nFeeRequired).c_str());
|
||||||
else
|
else
|
||||||
strError = _("Error: Transaction creation failed ");
|
strError = _("Error: Transaction creation failed!");
|
||||||
printf("SendMoney() : %s", strError.c_str());
|
printf("SendMoney() : %s", strError.c_str());
|
||||||
return strError;
|
return strError;
|
||||||
}
|
}
|
||||||
|
@ -1315,7 +1315,7 @@ string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew,
|
||||||
return "ABORTED";
|
return "ABORTED";
|
||||||
|
|
||||||
if (!CommitTransaction(wtxNew, reservekey))
|
if (!CommitTransaction(wtxNew, reservekey))
|
||||||
return _("Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
|
return _("Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue