aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-02-16 14:17:46 +0100
committerRiccardo Spagni <ric@spagni.net>2018-02-16 14:17:46 +0100
commit5d36ed6613d2a6c5f3c556ebf06b04f10d6419db (patch)
treefdd70823d0be8a4f8f28882859bc6ce225cca71b /src/wallet/wallet2.cpp
parentMerge pull request #3138 (diff)
parentFixed typos and wording tweaks (diff)
downloadmonero-5d36ed6613d2a6c5f3c556ebf06b04f10d6419db.tar.xz
Merge pull request #3094
a85dbb3f Fixed typos and wording tweaks (Maxithi)
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 702f2bf87..f83aad63d 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -223,7 +223,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)