diff options
author | Guillaume LE VAILLANT <glv@posteo.net> | 2018-10-06 10:12:38 +0200 |
---|---|---|
committer | Guillaume LE VAILLANT <glv@posteo.net> | 2018-10-06 10:26:06 +0200 |
commit | 977df6315fa9aab63c4f3155e565c93aa49e5463 (patch) | |
tree | 1a6003324cc9865a032d1b235eb6e7ad81389325 /src/gen_multisig | |
parent | Merge pull request #4472 (diff) | |
download | monero-977df6315fa9aab63c4f3155e565c93aa49e5463.tar.xz |
Fix some calls to the translation function
Some strings were not detected by lupdate because "tr() cannot be called without
context".
Diffstat (limited to '')
-rw-r--r-- | src/gen_multisig/gen_multisig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gen_multisig/gen_multisig.cpp b/src/gen_multisig/gen_multisig.cpp index 69be70e1b..b69ca52ff 100644 --- a/src/gen_multisig/gen_multisig.cpp +++ b/src/gen_multisig/gen_multisig.cpp @@ -104,7 +104,7 @@ static bool generate_multisig(uint32_t threshold, uint32_t total, const std::str wallets[n]->decrypt_keys(pwd_container->password()); if (!tools::wallet2::verify_multisig_info(wallets[n]->get_multisig_info(), sk[n], pk[n])) { - tools::fail_msg_writer() << tr("Failed to verify multisig info"); + tools::fail_msg_writer() << genms::tr("Failed to verify multisig info"); return false; } wallets[n]->encrypt_keys(pwd_container->password()); |