diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-06-11 22:30:21 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-06-11 22:30:21 -0700 |
| commit | b6ef8d5a40066fedb771c68cd4a8088b06d3b665 (patch) | |
| tree | 286de979e1a62b77e78ec62fa2c39e9921861337 /src/qt/transactiontablemodel.cpp | |
| parent | Merge pull request #1435 from TheBlueMatt/mingwbuild (diff) | |
| parent | update info string in GUI for generated blocks and change "must wait" into "m... (diff) | |
| download | discoin-b6ef8d5a40066fedb771c68cd4a8088b06d3b665.tar.xz discoin-b6ef8d5a40066fedb771c68cd4a8088b06d3b665.zip | |
Merge pull request #1412 from Diapolo/string_wait_mature
GUI: update info strings for generated blocks
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
| -rw-r--r-- | src/qt/transactiontablemodel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index d36bb495a..a86b1f7c5 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -298,8 +298,7 @@ QString TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) cons switch(wtx->status.maturity) { case TransactionStatus::Immature: - status += "\n" + tr("Mined balance will be available in %n more blocks", "", - wtx->status.matures_in); + status += "\n" + tr("Mined balance will be available when it matures in %n more block(s)", "", wtx->status.matures_in); break; case TransactionStatus::Mature: break; |