diff --git a/src/qt/forms/modaloverlay.ui b/src/qt/forms/modaloverlay.ui
index ccec1b3e1..b16ecafbe 100644
--- a/src/qt/forms/modaloverlay.ui
+++ b/src/qt/forms/modaloverlay.ui
@@ -204,7 +204,7 @@ QLabel { color: rgb(40,40,40); }
10
-
-
+
75
@@ -212,12 +212,12 @@ QLabel { color: rgb(40,40,40); }
- Amount of blocks left
+ Number of blocks left
-
-
+
unknown...
@@ -289,7 +289,7 @@ QLabel { color: rgb(40,40,40); }
- Progress increase per Hour
+ Progress increase per hour
diff --git a/src/qt/modaloverlay.cpp b/src/qt/modaloverlay.cpp
index 7951bd784..2de2dde16 100644
--- a/src/qt/modaloverlay.cpp
+++ b/src/qt/modaloverlay.cpp
@@ -125,9 +125,9 @@ void ModalOverlay::tipUpdate(int count, const QDateTime& blockDate, double nVeri
ui->percentageProgress->setText(QString::number(nVerificationProgress*100, 'f', 2)+"%");
ui->progressBar->setValue(nVerificationProgress*100);
- // show remaining amount of blocks
+ // show remaining number of blocks
if (bestBlockHeight > 0)
- ui->amountOfBlocksLeft->setText(QString::number(bestBlockHeight-count));
+ ui->numberOfBlocksLeft->setText(QString::number(bestBlockHeight-count));
else
ui->expectedTimeLeft->setText(tr("Unknown. Syncing Headers..."));
}