mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 06:43:45 +01:00
Merge #7192: Unify product name to as few places as possible
027fdb8When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen (Luke Dashjr)cc2095eRewrite FormatParagraph to handle newlines within input strings correctly (Luke Dashjr)cddffafBugfix: Include COPYRIGHT_HOLDERS_SUBSTITUTION in Makefile substitutions so it gets passed to extract-strings correctly (Luke Dashjr)29598e4Move PACKAGE_URL to configure.ac (Luke Dashjr)78ec83dsplashscreen: Resize text to fit exactly (Luke Dashjr)3cae140Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhere (Luke Dashjr)4d5a3dfBugfix: gitian-descriptors: Add missing python-setuptools requirement for OS X (biplist module) (Luke Dashjr)e4ab5e5Bugfix: Correct copyright year in Mac DMG background image (Luke Dashjr)917b1d0Set copyright holders displayed in notices separately from the package name (Luke Dashjr)c39a6ffTravis & gitian-osx: Use depends for ds_store and mac_alias modules (Luke Dashjr)902ccdedepends: Add mac_alias to depends (Luke Dashjr)82a2d98depends: Add ds_store to depends (Cory Fields)de619a3depends: Pass PYTHONPATH along to configure (Cory Fields)e611b6emacdeploy: Use rsvg-convert rather than cairosvg (Luke Dashjr)63bcdc5More complicated package name substitution for Mac deployment (Luke Dashjr)1a6c67cParameterise 2009 in translatable copyright strings (Luke Dashjr)d5f4683Unify package name to as few places as possible without major changes (Luke Dashjr)
This commit is contained in:
@@ -1857,7 +1857,7 @@ bool BindListenPort(const CService &addrBind, string& strError, bool fWhiteliste
|
||||
{
|
||||
int nErr = WSAGetLastError();
|
||||
if (nErr == WSAEADDRINUSE)
|
||||
strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core is probably already running."), addrBind.ToString());
|
||||
strError = strprintf(_("Unable to bind to %s on this computer. %s is probably already running."), addrBind.ToString(), _(PACKAGE_NAME));
|
||||
else
|
||||
strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %s)"), addrBind.ToString(), NetworkErrorString(nErr));
|
||||
LogPrintf("%s\n", strError);
|
||||
|
||||
Reference in New Issue
Block a user