aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-01-18 09:25:59 +0200
committerRiccardo Spagni <ric@spagni.net>2019-01-18 09:25:59 +0200
commit13b12973d1d5029ea467a68c8694c56216e16850 (patch)
treeedd5b1f4f5e50a890581dce1593a9050d965c553
parentMerge pull request #5028 (diff)
parentsimplewallet: improve punctuation in user visible string (diff)
downloadmonero-13b12973d1d5029ea467a68c8694c56216e16850.tar.xz
Merge pull request #5037
51b0625e simplewallet: improve punctuation in user visible string (selsta)
-rw-r--r--src/simplewallet/simplewallet.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index e7dd1474d..c3f06e831 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -3738,9 +3738,9 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
if(m_wallet->get_refresh_from_block_height() == 0) {
{
tools::scoped_message_writer wrt = tools::msg_writer();
- wrt << tr("No restore height is specified.");
- wrt << tr("Assumed you are creating a new account, restore will be done from current estimated blockchain height.");
- wrt << tr("Use --restore-height or --restore-date if you want to restore an already setup account from a specific height");
+ wrt << tr("No restore height is specified.") << " ";
+ wrt << tr("Assumed you are creating a new account, restore will be done from current estimated blockchain height.") << " ";
+ wrt << tr("Use --restore-height or --restore-date if you want to restore an already setup account from a specific height.");
}
std::string confirm = input_line(tr("Is this okay?"), true);
if (std::cin.eof() || !command_line::is_yes(confirm))