From 51a98f9d00befe798b0773801c6ce913799b8cea Mon Sep 17 00:00:00 2001 From: Frank Bergkemper Date: Sun, 15 Dec 2019 20:19:44 +0100 Subject: [PATCH] core: reword how to cancel a command --- core/src/console/console.cc | 2 +- core/src/dird/ua_cmds.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/console/console.cc b/core/src/console/console.cc index b7818b9869a..88a70fd261b 100644 --- a/core/src/console/console.cc +++ b/core/src/console/console.cc @@ -1124,7 +1124,7 @@ int main(int argc, char* argv[]) Dmsg0(40, "Opened connection with Director daemon\n"); - ConsoleOutput(_("\nEnter a period to cancel a command.\n")); + ConsoleOutput(_("\nEnter a period (.) to cancel a command.\n")); #if defined(HAVE_WIN32) char* env = getenv("USERPROFILE"); diff --git a/core/src/dird/ua_cmds.cc b/core/src/dird/ua_cmds.cc index 999423a7a20..6eb872fc014 100644 --- a/core/src/dird/ua_cmds.cc +++ b/core/src/dird/ua_cmds.cc @@ -2734,7 +2734,7 @@ static bool help_cmd(UaContext* ua, const char* cmd) ua->SendMsg(_("\nCan't find %s command.\n\n"), ua->argk[1]); } ua->send->Decoration( - _("\nWhen at a prompt, entering a period cancels the command.\n\n")); + _("\nWhen at a prompt, entering a period (.) cancels the command.\n\n")); return true; }