Skip to content

Commit 6142c16

Browse files
author
Christian Knöpke
committed
Change Copyright
1 parent 1fc9478 commit 6142c16

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/init.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -590,12 +590,13 @@ std::string HelpMessage(HelpMessageMode mode)
590590

591591
std::string LicenseInfo()
592592
{
593-
const std::string URL_SOURCE_CODE = "<https://github.com/bitsend/bitsend>";
593+
const std::string URL_SOURCE_CODE = "<https://github.com/Limxtec/bitsend>";
594594
const std::string URL_WEBSITE = "<https://bitsend.info>";
595595

596596
//TODO-- add bitsend license
597-
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
598-
"\n" +
597+
return FormatParagraph(strprintf(_("Copyright (C) 2009 -%i The Bitcoin Core developers"), COPYRIGHT_YEAR)) + "\n" +
598+
FormatParagraph(strprintf(_("Copyright (C) 2014 -%i The Dash Developers"), COPYRIGHT_YEAR)) + "\n" +
599+
FormatParagraph(strprintf(_("Copyright (C) 2015 -%i The Bitsend Core Developers"), COPYRIGHT_YEAR)) + "\n" + "\n" +
599600
strprintf(_("Please contribute if you find %s useful. "
600601
"Visit %s for further information about the software."),
601602
PACKAGE_NAME, URL_WEBSITE) +

src/qt/forms/aboutdialog.ui

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@
9191
<cursorShape>IBeamCursor</cursorShape>
9292
</property>
9393
<property name="text">
94-
<string>Copyright &amp;copy; 2009-YYYY The Bitcoin Core developers and Dash Core developers.</string>
95-
<string>Copyright &amp;copy; 2014-YYYY The Bitsend Core developers.</string>
94+
<string>Copyright &amp;copy; 2009-YYYY The Bitcoin Core - Dash Core developers and Bitsend Core developers.</string>
9695
</property>
9796
<property name="textFormat">
9897
<enum>Qt::RichText</enum>

src/util.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -902,8 +902,8 @@ std::string CopyrightHolders(const std::string& strPrefix)
902902
std::string strCopyrightHolders = strPrefix + strprintf(_(COPYRIGHT_HOLDERS), _(COPYRIGHT_HOLDERS_SUBSTITUTION));
903903

904904
// Check for untranslated substitution to make sure bitsend Core copyright is not removed by accident
905-
if (strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION).find("bitsend Core") == std::string::npos) {
906-
strCopyrightHolders += "\n" + strPrefix + "The bitsend Core developers";
905+
if (strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION).find("Bitsend Core") == std::string::npos) {
906+
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
907907
}
908908
return strCopyrightHolders;
909909
}

0 commit comments

Comments
 (0)