aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxmr-eric <eric@moneroeric.com>2017-01-14 22:52:04 -0500
committerGitHub <noreply@github.com>2017-01-14 22:52:04 -0500
commite0be6d45c5ee7320f8d298ac41296bb45b17c73a (patch)
tree92b0e957a5f9693f98a14b670ef23159bba0906d
parent7cbd61dae21fdf8a27081d28ebb130195d77ed69 (diff)
downloadmonzero-gui-e0be6d45c5ee7320f8d298ac41296bb45b17c73a.tar.gz
monzero-gui-e0be6d45c5ee7320f8d298ac41296bb45b17c73a.tar.xz
monzero-gui-e0be6d45c5ee7320f8d298ac41296bb45b17c73a.zip
Clearer results for Verify Payment tool
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index 663f9005..520867f1 100644
--- a/main.qml
+++ b/main.qml
@@ -622,7 +622,7 @@ ApplicationWindow {
else {
var dCurrentBlock = currentWallet.daemonBlockChainHeight();
var confirmations = dCurrentBlock - height
- informationPopup.text = qsTr("This address received %1 monero, with %2 confirmations").arg(received).arg(confirmations);
+ informationPopup.text = qsTr("This address received %1 monero, with %2 confirmation(s).").arg(received).arg(confirmations);
}
}
else {