diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -807,10 +807,18 @@ "b { color: #006060; } ") .arg(fixedFontInfo.family(), QString("%1pt").arg(consoleFontSize))); +#ifdef Q_OS_MAC + QString clsKey = "(⌘)-L"; +#else + QString clsKey = "Ctrl-L"; +#endif + message(CMD_REPLY, (tr("Welcome to the %1 RPC console.").arg(tr(PACKAGE_NAME)) + - "
" + tr("Use up and down arrows to navigate history, and " - "Ctrl-L to clear screen.") + + "
" + + tr("Use up and down arrows to navigate history, and " + "%1 to clear screen.") + .arg("" + clsKey + "") + "
" + tr("Type help for an overview of available commands.")) + "
" +