aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-07-19 12:04:17 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-07-19 12:05:42 +0100
commit35378f1995fb141926192111694bdc1a44d1da31 (patch)
treee2c1097294caca75eeb112a4011055fcc2e56d4a /src/simplewallet
parentsimplewallet: use unsigned long long instead of size_t in message (diff)
downloadmonero-35378f1995fb141926192111694bdc1a44d1da31.tar.xz
simplewallet: fix context/string order mismatch
Diffstat (limited to 'src/simplewallet')
-rw-r--r--src/simplewallet/simplewallet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h
index c4411e4d4..8d7b0a811 100644
--- a/src/simplewallet/simplewallet.h
+++ b/src/simplewallet/simplewallet.h
@@ -169,7 +169,7 @@ namespace cryptonote
if (std::chrono::milliseconds(1) < current_time - m_print_time || force)
{
- std::cout << QT_TRANSLATE_NOOP("Height ", "cryptonote::simple_wallet") << height << " / " << m_blockchain_height << '\r';
+ std::cout << QT_TRANSLATE_NOOP("cryptonote::simple_wallet", "Height ") << height << " / " << m_blockchain_height << '\r';
m_print_time = current_time;
}
}