From 35378f1995fb141926192111694bdc1a44d1da31 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sun, 19 Jul 2015 12:04:17 +0100 Subject: [PATCH] simplewallet: fix context/string order mismatch --- src/simplewallet/simplewallet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }