0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

init: Replace URL_WEBSITE with PACKAGE_URL

This commit is contained in:
MarcoFalke 2020-04-01 20:28:35 +08:00
parent 41fa2926d8
commit fad2f68353
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -561,13 +561,12 @@ void SetupServerArgs()
std::string LicenseInfo() std::string LicenseInfo()
{ {
const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>"; const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>";
const std::string URL_WEBSITE = "<https://bitcoincore.org>";
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i").translated, 2009, COPYRIGHT_YEAR) + " ") + "\n" + return CopyrightHolders(strprintf(_("Copyright (C) %i-%i").translated, 2009, COPYRIGHT_YEAR) + " ") + "\n" +
"\n" + "\n" +
strprintf(_("Please contribute if you find %s useful. " strprintf(_("Please contribute if you find %s useful. "
"Visit %s for further information about the software.").translated, "Visit %s for further information about the software.").translated,
PACKAGE_NAME, URL_WEBSITE) + PACKAGE_NAME, "<" PACKAGE_URL ">") +
"\n" + "\n" +
strprintf(_("The source code is available from %s.").translated, strprintf(_("The source code is available from %s.").translated,
URL_SOURCE_CODE) + URL_SOURCE_CODE) +