diff options
author | Maxithi <34792056+Maxithi@users.noreply.github.com> | 2018-01-09 22:37:30 +0100 |
---|---|---|
committer | Maxithi <34792056+Maxithi@users.noreply.github.com> | 2018-01-29 12:13:23 +0100 |
commit | a85dbb3f2f1cef8f9f973b9fa94b073e42bcee2c (patch) | |
tree | 1d3c7a47f1a6bbb9786700cb5cb7d049ffe1a9b2 /src/wallet/wallet2.cpp | |
parent | Merge pull request #3019 (diff) | |
download | monero-a85dbb3f2f1cef8f9f973b9fa94b073e42bcee2c.tar.xz |
Fixed typos and wording tweaks
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index c4f8f3457..f809e424f 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -222,7 +222,7 @@ boost::optional<tools::password_container> get_password(const boost::program_opt THROW_WALLET_EXCEPTION_IF(!password_prompter, tools::error::wallet_internal_error, tools::wallet2::tr("no password specified; use --prompt-for-password to prompt for a password")); - return password_prompter(verify ? tr("Enter new wallet password") : tr("Wallet password"), verify); + return password_prompter(verify ? tr("Enter a new password for the wallet") : tr("Wallet password"), verify); } std::unique_ptr<tools::wallet2> generate_from_json(const std::string& json_file, const boost::program_options::variables_map& vm, const options& opts, const std::function<boost::optional<tools::password_container>(const char *, bool)> &password_prompter) |