| 78 | } |
| 79 | |
| 80 | std::string CopyrightHolders(const std::string& strPrefix) |
| 81 | { |
| 82 | const auto copyright_devs = strprintf(_(COPYRIGHT_HOLDERS).translated, COPYRIGHT_HOLDERS_SUBSTITUTION); |
| 83 | std::string strCopyrightHolders = strPrefix + copyright_devs; |
| 84 | |
| 85 | // Make sure Bitcoin Core copyright is not removed by accident |
| 86 | if (copyright_devs.find("Bitcoin Core") == std::string::npos) { |
| 87 | strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers"; |
| 88 | } |
| 89 | return strCopyrightHolders; |
| 90 | } |
| 91 | |
| 92 | std::string LicenseInfo() |
| 93 | { |