simplewallet: reword donate command message for clarity

This commit is contained in:
Serhack 2018-02-14 08:28:22 -05:00
parent 370b43d12b
commit d4e728c995
1 changed files with 1 additions and 1 deletions

View File

@ -4622,7 +4622,7 @@ bool simple_wallet::donate(const std::vector<std::string> &args_)
local_args.push_back(amount_str);
if (!payment_id_str.empty())
local_args.push_back(payment_id_str);
message_writer() << tr("Donating ") << amount_str << " to The Monero Project (donate.getmonero.org/"<< MONERO_DONATION_ADDR <<").";
message_writer() << tr("Donating ") << amount_str << " to The Monero Project (donate.getmonero.org or "<< MONERO_DONATION_ADDR <<").";
transfer_new(local_args);
return true;
}