aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-02-20 17:47:42 +0200
committerRiccardo Spagni <ric@spagni.net>2018-02-20 17:47:42 +0200
commitfc57e0ef2df19cbcd57229b7bf20678c9820f5e2 (patch)
tree73d518356a3bd76ad9c5e1da50d6376acf1204c5 /src
parentMerge pull request #3260 (diff)
parentsimplewallet: reword donate command message for clarity (diff)
downloadmonero-fc57e0ef2df19cbcd57229b7bf20678c9820f5e2.tar.xz
Merge pull request #3263
d4e728c9 simplewallet: reword donate command message for clarity (Serhack)
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index f933a94ed..aa8c66f7a 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -4621,7 +4621,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;
}