[Qt] fix missing plural form for a string in sendcoinsdialog
- this was reported on Transifex by pryds (Thank you!)
This commit is contained in:
parent
7026cbd6db
commit
2747f7cf77
1 changed files with 1 additions and 1 deletions
|
@ -631,7 +631,7 @@ void SendCoinsDialog::updateSmartFeeLabel()
|
||||||
{
|
{
|
||||||
ui->labelSmartFee->setText(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), feeRate.GetFeePerK()) + "/kB");
|
ui->labelSmartFee->setText(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), feeRate.GetFeePerK()) + "/kB");
|
||||||
ui->labelSmartFee2->hide();
|
ui->labelSmartFee2->hide();
|
||||||
ui->labelFeeEstimation->setText(tr("Estimated to begin confirmation within %1 block(s).").arg(nBlocksToConfirm));
|
ui->labelFeeEstimation->setText(tr("Estimated to begin confirmation within %n block(s).", "", nBlocksToConfirm));
|
||||||
}
|
}
|
||||||
|
|
||||||
updateFeeMinimizedLabel();
|
updateFeeMinimizedLabel();
|
||||||
|
|
Loading…
Reference in a new issue