simplewallet: fix context/string order mismatch

This commit is contained in:
moneromooo-monero 2015-07-19 12:04:17 +01:00
parent e62692f589
commit 35378f1995
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -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;
}
}