diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-07-20 12:05:52 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-07-20 12:05:54 +0200 |
commit | 1737fec29739f3b867e81365f8a0bcd4dd138e82 (patch) | |
tree | 376fee8fd0d7cb00cdb2e24cb57d8facc46b9fdf /src/simplewallet/simplewallet.h | |
parent | Merge pull request #346 (diff) | |
parent | Update after recent simplewallet string changes (diff) | |
download | monero-1737fec29739f3b867e81365f8a0bcd4dd138e82.tar.xz |
Merge pull request #347
9b83a43 Update after recent simplewallet string changes (moneromooo-monero)
35378f1 simplewallet: fix context/string order mismatch (moneromooo-monero)
e62692f simplewallet: use unsigned long long instead of size_t in message (moneromooo-monero)
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 2 |
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; } } |