From 8b4d653663aa193bcc7c32ed7da5f4fa3f5e6746 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Wed, 16 May 2012 15:34:29 +0200 Subject: allow translation of "options" used in the --help message / split translation of RPC console welcome message and remove the need to take care of "
" / remove some spaces in strings and misc other stuff related to translations --- src/net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/net.cpp') diff --git a/src/net.cpp b/src/net.cpp index 636db2952c..bcaf750a2a 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1755,7 +1755,7 @@ bool BindListenPort(const CService &addrBind, string& strError) { int nErr = WSAGetLastError(); if (nErr == WSAEADDRINUSE) - strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin is probably already running."), addrBind.ToString().c_str()); + strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin is probably already running."), addrBind.ToString().c_str()); else strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString().c_str(), nErr, strerror(nErr)); printf("%s\n", strError.c_str()); -- cgit v1.2.3