Skip to content

Commit 208d37f

Browse files
committed
[trivial] Remove URLs from About dialog translations
1 parent 8e048f4 commit 208d37f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/init.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ std::string LicenseInfo()
481481
{
482482
const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>";
483483
const std::string URL_WEBSITE = "<https://bitcoincore.org>";
484-
// todo: remove urls from translations on next change
484+
485485
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
486486
"\n" +
487487
strprintf(_("Please contribute if you find %s useful. "
@@ -493,9 +493,9 @@ std::string LicenseInfo()
493493
"\n" +
494494
"\n" +
495495
_("This is experimental software.") + "\n" +
496-
_("Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>.") + "\n" +
496+
strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s"), "COPYING", "<https://opensource.org/licenses/MIT>") + "\n" +
497497
"\n" +
498-
_("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.") +
498+
strprintf(_("This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard."), "<https://www.openssl.org>") +
499499
"\n";
500500
}
501501

0 commit comments

Comments
 (0)