Merge pull request #1323 from Diapolo/string_fixes

translation updates / string updates
This commit is contained in:
Wladimir J. van der Laan
2012-05-20 01:34:06 -07:00
7 changed files with 16 additions and 16 deletions

View File

@@ -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)