Skip to content

Commit 21504ae

Browse files
committed
fix: use proper units, show 0 rounds to reuse existing translation
1 parent 5329b7d commit 21504ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/overviewpage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ void OverviewPage::updateCoinJoinProgress()
404404
if(nMaxToAnonymize == 0) return;
405405

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

0 commit comments

Comments
 (0)