Skip to content

Commit c503863

Browse files
committed
Merge #8192: [trivial] Remove URLs from About dialog translations
208d37f [trivial] Remove URLs from About dialog translations (fanquake)
2 parents 1030fa7 + 208d37f commit c503863

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
@@ -483,7 +483,7 @@ std::string LicenseInfo()
483483
{
484484
const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>";
485485
const std::string URL_WEBSITE = "<https://bitcoincore.org>";
486-
// todo: remove urls from translations on next change
486+
487487
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
488488
"\n" +
489489
strprintf(_("Please contribute if you find %s useful. "
@@ -495,9 +495,9 @@ std::string LicenseInfo()
495495
"\n" +
496496
"\n" +
497497
_("This is experimental software.") + "\n" +
498-
_("Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>.") + "\n" +
498+
strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s"), "COPYING", "<https://opensource.org/licenses/MIT>") + "\n" +
499499
"\n" +
500-
_("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.") +
500+
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>") +
501501
"\n";
502502
}
503503

0 commit comments

Comments
 (0)