mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #5037
51b0625e
simplewallet: improve punctuation in user visible string (selsta)
This commit is contained in:
commit
13b12973d1
1 changed files with 3 additions and 3 deletions
|
@ -3738,9 +3738,9 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
|
||||||
if(m_wallet->get_refresh_from_block_height() == 0) {
|
if(m_wallet->get_refresh_from_block_height() == 0) {
|
||||||
{
|
{
|
||||||
tools::scoped_message_writer wrt = tools::msg_writer();
|
tools::scoped_message_writer wrt = tools::msg_writer();
|
||||||
wrt << tr("No restore height is specified.");
|
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("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("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);
|
std::string confirm = input_line(tr("Is this okay?"), true);
|
||||||
if (std::cin.eof() || !command_line::is_yes(confirm))
|
if (std::cin.eof() || !command_line::is_yes(confirm))
|
||||||
|
|
Loading…
Reference in a new issue