diff --git a/src/bitcoin-wallet.cpp b/src/bitcoin-wallet.cpp --- a/src/bitcoin-wallet.cpp +++ b/src/bitcoin-wallet.cpp @@ -53,7 +53,7 @@ strprintf("%s bitcoin-wallet version", PACKAGE_NAME) + " " + FormatFullVersion() + "\n\n" + "bitcoin-wallet is an offline tool for creating and interacting " - "with Bitcoin ABC wallet files.\n" + + "with " PACKAGE_NAME " wallet files.\n" + "By default bitcoin-wallet will act on wallets in the default " "mainnet wallet directory in the datadir.\n" + "To change the target wallet, use the -datadir, -wallet and " diff --git a/src/qt/modaloverlay.cpp b/src/qt/modaloverlay.cpp --- a/src/qt/modaloverlay.cpp +++ b/src/qt/modaloverlay.cpp @@ -27,9 +27,10 @@ if (!enable_wallet) { ui->infoText->setVisible(false); ui->infoTextStrong->setText( - tr("Bitcoin ABC is currently syncing. It will download headers " + tr("%1 is currently syncing. It will download headers " "and blocks from peers and validate them until reaching the tip " - "of the block chain.")); + "of the block chain.") + .arg(PACKAGE_NAME)); } }