Rename Core to Classic

Squased commits from rustyloy and others and fixed merge
conflicts.
This commit is contained in:
rustyloy
2016-01-24 08:41:54 -05:00
committed by Tom Zander
parent 7488c45bc1
commit f2d9c84a2e
50 changed files with 121 additions and 110 deletions

View File

@@ -74,7 +74,7 @@ bool AppInit(int argc, char* argv[])
// Process help and version before taking care about datadir
if (mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version"))
{
std::string strUsage = _("Bitcoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n";
std::string strUsage = _("Bitcoin Classic Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n";
if (mapArgs.count("-version"))
{
@@ -83,7 +83,7 @@ bool AppInit(int argc, char* argv[])
else
{
strUsage += "\n" + _("Usage:") + "\n" +
" bitcoind [options] " + _("Start Bitcoin Core Daemon") + "\n";
" bitcoind [options] " + _("Start Bitcoin Classic Daemon") + "\n";
strUsage += "\n" + HelpMessage(HMM_BITCOIND);
}