aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoingui.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-05-04 12:25:22 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-05-04 12:25:22 +0200
commit59305cebee4e2140ff21962cc83c0499d1c5d748 (patch)
tree760fac2467267ef54bac8c73a049ea2cc77f0add /src/qt/bitcoingui.cpp
parent7f5d7e9d6d85020c5dbb8f985ecaf8d176d5255d (diff)
downloadbitcoin-59305cebee4e2140ff21962cc83c0499d1c5d748.tar.xz
qt: fix numerusform in English translation
Ref: transifex issue https://www.transifex.com/projects/p/bitcoin/translate/#da/qt-translation-011x/c/47723791
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r--src/qt/bitcoingui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index 670d54c7e3..70bf894599 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -684,7 +684,7 @@ void BitcoinGUI::setNumBlocks(int count, const QDateTime& blockDate)
QDateTime currentDate = QDateTime::currentDateTime();
qint64 secs = blockDate.secsTo(currentDate);
- tooltip = tr("Processed %n blocks of transaction history.", "", count);
+ tooltip = tr("Processed %n block(s) of transaction history.", "", count);
// Set icon state: spinning if catching up, tick otherwise
if(secs < 90*60)