Skip to content

Commit 2f71490

Browse files
author
MarcoFalke
committed
Merge #8805: Trivial: Grammar and capitalization
c9ce17b Trivial: Grammar and capitalization (Derek Miller)
2 parents 8f1fbf3 + c9ce17b commit 2f71490

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/qt/forms/modaloverlay.ui

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,20 +204,20 @@ QLabel { color: rgb(40,40,40); }</string>
204204
<number>10</number>
205205
</property>
206206
<item row="0" column="0">
207-
<widget class="QLabel" name="labelAmoutOfBlocksLeft">
207+
<widget class="QLabel" name="labelNumberOfBlocksLeft">
208208
<property name="font">
209209
<font>
210210
<weight>75</weight>
211211
<bold>true</bold>
212212
</font>
213213
</property>
214214
<property name="text">
215-
<string>Amount of blocks left</string>
215+
<string>Number of blocks left</string>
216216
</property>
217217
</widget>
218218
</item>
219219
<item row="0" column="1">
220-
<widget class="QLabel" name="amountOfBlocksLeft">
220+
<widget class="QLabel" name="numberOfBlocksLeft">
221221
<property name="text">
222222
<string>unknown...</string>
223223
</property>
@@ -289,7 +289,7 @@ QLabel { color: rgb(40,40,40); }</string>
289289
</font>
290290
</property>
291291
<property name="text">
292-
<string>Progress increase per Hour</string>
292+
<string>Progress increase per hour</string>
293293
</property>
294294
</widget>
295295
</item>

src/qt/modaloverlay.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ void ModalOverlay::tipUpdate(int count, const QDateTime& blockDate, double nVeri
125125
ui->percentageProgress->setText(QString::number(nVerificationProgress*100, 'f', 2)+"%");
126126
ui->progressBar->setValue(nVerificationProgress*100);
127127

128-
// show remaining amount of blocks
128+
// show remaining number of blocks
129129
if (bestBlockHeight > 0)
130-
ui->amountOfBlocksLeft->setText(QString::number(bestBlockHeight-count));
130+
ui->numberOfBlocksLeft->setText(QString::number(bestBlockHeight-count));
131131
else
132132
ui->expectedTimeLeft->setText(tr("Unknown. Syncing Headers..."));
133133
}

0 commit comments

Comments
 (0)