Skip to content

Commit

Permalink
Trivial: Grammar and capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek701 committed Sep 24, 2016
1 parent 08cc5fd commit c9ce17b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/qt/forms/modaloverlay.ui
Original file line number Diff line number Diff line change
Expand Up @@ -204,20 +204,20 @@ QLabel { color: rgb(40,40,40); }</string>
<number>10</number>
</property>
<item row="0" column="0">
<widget class="QLabel" name="labelAmoutOfBlocksLeft">
<widget class="QLabel" name="labelNumberOfBlocksLeft">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Amount of blocks left</string>
<string>Number of blocks left</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="amountOfBlocksLeft">
<widget class="QLabel" name="numberOfBlocksLeft">
<property name="text">
<string>unknown...</string>
</property>
Expand Down Expand Up @@ -289,7 +289,7 @@ QLabel { color: rgb(40,40,40); }</string>
</font>
</property>
<property name="text">
<string>Progress increase per Hour</string>
<string>Progress increase per hour</string>
</property>
</widget>
</item>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/modaloverlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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..."));
}
Expand Down

0 comments on commit c9ce17b

Please sign in to comment.