aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-05-20 01:34:06 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2012-05-20 01:34:06 -0700
commit563f3efda3d3230bc512b35f15598d5e4e3a5071 (patch)
treee14446de58b824cf5afbcd2f29922b70736925c3 /src/qt/rpcconsole.cpp
parent6f3b919ae1e5d980dc41d66bd4320d2a6623b66f (diff)
parent8b4d653663aa193bcc7c32ed7da5f4fa3f5e6746 (diff)
downloadbitcoin-563f3efda3d3230bc512b35f15598d5e4e3a5071.tar.xz
Merge pull request #1323 from Diapolo/string_fixes
translation updates / string updates
Diffstat (limited to 'src/qt/rpcconsole.cpp')
-rw-r--r--src/qt/rpcconsole.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 47f10f92d2..0c77b05c56 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -209,9 +209,9 @@ void RPCConsole::clear()
"b { color: #006060; } "
);
- message(CMD_REPLY, tr("Welcome to the Bitcoin RPC console.<br>"
- "Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.<br>"
- "Type <b>help</b> for an overview of available commands."), true);
+ message(CMD_REPLY, (tr("Welcome to the Bitcoin RPC console.") + "<br>" +
+ tr("Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.") + "<br>" +
+ tr("Type <b>help</b> for an overview of available commands.")), true);
}
void RPCConsole::message(int category, const QString &message, bool html)