fixup! Elements Beta branding

This commit is contained in:
Akio Nakamura 2017-06-23 10:56:40 +09:00
parent 0b1ceafd75
commit 8157aa853f
4 changed files with 9 additions and 7 deletions

View file

@ -913,9 +913,9 @@ std::string CopyrightHolders(const std::string& strPrefix)
{
std::string strCopyrightHolders = strPrefix + strprintf(_(COPYRIGHT_HOLDERS), _(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) {
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
// Check for untranslated substitution to make sure Elements Core copyright is not removed by accident
if (strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION).find("Elements Core") == std::string::npos) {
strCopyrightHolders += "\n" + strPrefix + "The Elements Core developers";
}
return strCopyrightHolders;
}