Skip to content

Commit

Permalink
fix: use proper units, show 0 rounds to reuse existing translation
Browse files Browse the repository at this point in the history
  • Loading branch information
UdjinM6 committed Feb 11, 2025
1 parent 5329b7d commit 21504ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/overviewpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void OverviewPage::updateCoinJoinProgress()
if(nMaxToAnonymize == 0) return;

if (m_privacy) {
strAmountAndRounds = "#### DASH / ## Rounds";
strAmountAndRounds = "#### " + BitcoinUnits::name(nDisplayUnit) + " / " + tr("%n Rounds", "", 0);
ui->labelAmountRounds->setToolTip("");
} else if (nMaxToAnonymize >= clientModel->coinJoinOptions().getAmount() * COIN) {
ui->labelAmountRounds->setToolTip(tr("Found enough compatible inputs to mix %1")
Expand Down

0 comments on commit 21504ae

Please sign in to comment.