mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
[util] CopyrightHolders: Check for untranslated substitution
Also, remove check which is always true
This commit is contained in:
parent
3685e0c1da
commit
33336e1aac
@ -801,11 +801,10 @@ int GetNumCores()
|
|||||||
|
|
||||||
std::string CopyrightHolders(const std::string& strPrefix)
|
std::string CopyrightHolders(const std::string& strPrefix)
|
||||||
{
|
{
|
||||||
std::string strCopyrightHolders = strPrefix + _(COPYRIGHT_HOLDERS);
|
std::string strCopyrightHolders = strPrefix + strprintf(_(COPYRIGHT_HOLDERS), _(COPYRIGHT_HOLDERS_SUBSTITUTION));
|
||||||
if (strCopyrightHolders.find("%s") != strCopyrightHolders.npos) {
|
|
||||||
strCopyrightHolders = strprintf(strCopyrightHolders, _(COPYRIGHT_HOLDERS_SUBSTITUTION));
|
// Check for untranslated substitution to make sure Bitcoin Core copyright is not removed by accident
|
||||||
}
|
if (strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION).find("Bitcoin Core") == std::string::npos) {
|
||||||
if (strCopyrightHolders.find("Bitcoin Core developers") == strCopyrightHolders.npos) {
|
|
||||||
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
|
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
|
||||||
}
|
}
|
||||||
return strCopyrightHolders;
|
return strCopyrightHolders;
|
||||||
|
Loading…
Reference in New Issue
Block a user