Skip to content

Commit f7a403b

Browse files
committed
Merge #8207: [trivial] Add a link to the Bitcoin-Core repository and website to the About Dialog
fa58e5e [doc] Add website links to about dialog (MarcoFalke)
2 parents fb0ac48 + fa58e5e commit f7a403b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/init.cpp

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,11 +479,20 @@ std::string HelpMessage(HelpMessageMode mode)
479479

480480
std::string LicenseInfo()
481481
{
482+
const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>";
483+
const std::string URL_WEBSITE = "<https://bitcoincore.org>";
482484
// todo: remove urls from translations on next change
483485
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
484486
"\n" +
485-
_("This is experimental software.") + "\n" +
487+
strprintf(_("Please contribute if you find %s useful. "
488+
"Visit %s for further information about the software."),
489+
PACKAGE_NAME, URL_WEBSITE) +
490+
"\n" +
491+
strprintf(_("The source code is available from %s."),
492+
URL_SOURCE_CODE) +
486493
"\n" +
494+
"\n" +
495+
_("This is experimental software.") + "\n" +
487496
_("Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>.") + "\n" +
488497
"\n" +
489498
_("This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard.") +

0 commit comments

Comments
 (0)