diff --git a/src/init.cpp b/src/init.cpp index 43c6a1631..c8fed84cd 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -475,11 +475,21 @@ std::string HelpMessage(HelpMessageMode mode) std::string LicenseInfo() { + const std::string URL_SOURCE_CODE = ""; + const std::string URL_WEBSITE = ""; // todo: remove urls from translations on next change return FormatParagraph(strprintf(_("Copyright (C) 2009-%i The Bitcoin Core Developers"), COPYRIGHT_YEAR)) + "\n" + + FormatParagraph(strprintf(_("Copyright (C) 2014-%i The Blackcoin Lore Developers"), COPYRIGHT_YEAR)) + "\n" + + "\n" + + FormatParagraph(strprintf(_("Please contribute if you find Blackcoin Lore useful. " + "Visit %s for further information about the software."), + URL_WEBSITE)) + + "\n" + + FormatParagraph(strprintf(_("The source code is available from %s."), + URL_SOURCE_CODE)) + + "\n" + "\n" + FormatParagraph(_("This is experimental software.")) + "\n" + - "\n" + FormatParagraph(_("Distributed under the MIT software license, see the accompanying file COPYING or .")) + "\n" + "\n" + FormatParagraph(_("This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard.")) +