diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-08-05 15:37:49 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-08-05 15:37:49 +0200 |
| commit | 00f4f8d54c94a9d0d8d56e2b501caa6699d6ddb4 (patch) | |
| tree | 5c7ca65c3b2e91a2bdd58764931ccbc8c10c82de /src/qt | |
| parent | improve tooltip over transactions (diff) | |
| download | discoin-00f4f8d54c94a9d0d8d56e2b501caa6699d6ddb4.tar.xz discoin-00f4f8d54c94a9d0d8d56e2b501caa6699d6ddb4.zip | |
speling fix
Diffstat (limited to 'src/qt')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index c9feca5d9..84d8fe463 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -298,7 +298,7 @@ void BitcoinGUI::setNumConnections(int count) default: icon = ":/icons/connect_4"; break; } labelConnectionsIcon->setPixmap(QIcon(icon).pixmap(16,16)); - labelConnectionsIcon->setToolTip(tr("%n active connections to Bitcoin network", "", count)); + labelConnectionsIcon->setToolTip(tr("%n active connection(s) to Bitcoin network", "", count)); } void BitcoinGUI::setNumBlocks(int count) |