diff --git a/src/clientversion.cpp b/src/clientversion.cpp --- a/src/clientversion.cpp +++ b/src/clientversion.cpp @@ -10,7 +10,7 @@ /** * Name of client reported in the 'version' message. Report the same name - * for both bitcoind and bitcoin-core, to make it harder for attackers to + * for both bitcoind and bitcoin-abc, to make it harder for attackers to * target servers or GUI users specifically. */ const std::string CLIENT_NAME("Bitcoin ABC"); diff --git a/src/protocol.h b/src/protocol.h --- a/src/protocol.h +++ b/src/protocol.h @@ -251,17 +251,16 @@ // Nothing NODE_NONE = 0, // NODE_NETWORK means that the node is capable of serving the block chain. - // It is currently set by all Bitcoin Core nodes, and is unset by SPV - // clients or other peers that just want network services but don't provide - // them. + // It is currently set by all Bitcoin ABC nodes, and is unset by SPV clients + // or other peers that just want network services but don't provide them. NODE_NETWORK = (1 << 0), // NODE_GETUTXO means the node is capable of responding to the getutxo - // protocol request. Bitcoin Core does not support this but a patch set + // protocol request. Bitcoin ABC does not support this but a patch set // called Bitcoin XT does. See BIP 64 for details on how this is // implemented. NODE_GETUTXO = (1 << 1), // NODE_BLOOM means the node is capable and willing to handle bloom-filtered - // connections. Bitcoin Core nodes used to support this by default, without + // connections. Bitcoin ABC nodes used to support this by default, without // advertising this bit, but no longer do as of protocol version 70011 (= // NO_BLOOM_VERSION) NODE_BLOOM = (1 << 2), diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -94,7 +94,7 @@ * Translate string to current locale using Qt. */ static std::string Translate(const char *psz) { - return QCoreApplication::translate("bitcoin-core", psz).toStdString(); + return QCoreApplication::translate("bitcoin-abc", psz).toStdString(); } static QString GetLangTerritory() { @@ -174,13 +174,14 @@ } #endif -/** Class encapsulating Bitcoin Core startup and shutdown. +/** + * Class encapsulating Bitcoin ABC startup and shutdown. * Allows running startup and shutdown in a different thread from the UI thread. */ -class BitcoinCore : public QObject { +class BitcoinABC : public QObject { Q_OBJECT public: - explicit BitcoinCore(); + explicit BitcoinABC(); public Q_SLOTS: void initialize(Config *config); @@ -262,14 +263,14 @@ #include "bitcoin.moc" -BitcoinCore::BitcoinCore() : QObject() {} +BitcoinABC::BitcoinABC() : QObject() {} -void BitcoinCore::handleRunawayException(const std::exception *e) { +void BitcoinABC::handleRunawayException(const std::exception *e) { PrintExceptionContinue(e, "Runaway exception"); Q_EMIT runawayException(QString::fromStdString(GetWarnings("gui"))); } -void BitcoinCore::initialize(Config *cfg) { +void BitcoinABC::initialize(Config *cfg) { Config &config(*cfg); try { qDebug() << __func__ << ": Running AppInit2 in thread"; @@ -297,7 +298,7 @@ } } -void BitcoinCore::shutdown() { +void BitcoinABC::shutdown() { try { qDebug() << __func__ << ": Running Shutdown in thread"; Interrupt(threadGroup); @@ -386,7 +387,7 @@ void BitcoinApplication::startThread() { if (coreThread) return; coreThread = new QThread(this); - BitcoinCore *executor = new BitcoinCore(); + BitcoinABC *executor = new BitcoinABC(); executor->moveToThread(coreThread); /* communication to and from thread */ diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -9,32 +9,32 @@ #define UNUSED #endif static const char UNUSED *bitcoin_strings[] = { - QT_TRANSLATE_NOOP("bitcoin-core", "Bitcoin Core"), - QT_TRANSLATE_NOOP("bitcoin-core", "The %s developers"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Bitcoin ABC"), + QT_TRANSLATE_NOOP("bitcoin-abc", "The %s developers"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "(1 = keep tx meta data e.g. account owner and payment " "request information, 2 " "= drop tx meta data)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "-maxtxfee is set very high! Fees this large could be paid on a single " "transaction."), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "A fee rate (in %s/kB) that will be used " - "when fee estimation has insufficient " - "data (default: %s)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "A fee rate (in %s/kB) that will be used " + "when fee estimation has insufficient " + "data (default: %s)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Accept connections from outside (default: 1 if no -proxy or -connect/-" "noconnect)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Accept relayed transactions received " - "from whitelisted peers even when not " - "relaying transactions (default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Accept relayed transactions received " + "from whitelisted peers even when not " + "relaying transactions (default: %d)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Allow JSON-RPC connections from specified source. Valid " "for <ip> are a " @@ -42,175 +42,175 @@ "1.2.3.4/255.255.255.0) or " "a network/CIDR (e.g. 1.2.3.4/24). This option can be " "specified multiple times"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Bind to given address and always listen " - "on it. Use [host]:port notation for " - "IPv6"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Bind to given address and whitelist " - "peers connecting to it. Use [host]:port " - "notation for IPv6"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Bind to given address to listen for " - "JSON-RPC connections. Use [host]:port " - "notation for IPv6. This option can be " - "specified multiple times (default: " - "bind to all interfaces)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Cannot obtain a lock on data directory " - "%s. %s is probably already running."), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Connect only to the specified node(s); " - "-noconnect or -connect=0 alone to " - "disable automatic connections"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Bind to given address and always listen " + "on it. Use [host]:port notation for " + "IPv6"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Bind to given address and whitelist " + "peers connecting to it. Use [host]:port " + "notation for IPv6"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Bind to given address to listen for " + "JSON-RPC connections. Use [host]:port " + "notation for IPv6. This option can be " + "specified multiple times (default: " + "bind to all interfaces)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Cannot obtain a lock on data directory " + "%s. %s is probably already running."), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Connect only to the specified node(s); " + "-noconnect or -connect=0 alone to " + "disable automatic connections"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Create new files with system default permissions, " "instead of umask 077 (only " "effective with disabled wallet functionality)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Delete all wallet transactions and only recover those parts of the " "blockchain through -rescan on startup"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Discover own IP addresses (default: 1 " - "when listening and no -externalip or -" - "proxy)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Discover own IP addresses (default: 1 " + "when listening and no -externalip or -" + "proxy)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Distributed under the MIT software license, see the " "accompanying file %s or " "%s"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Do not keep transactions in the mempool " - "longer than <n> hours (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Do not keep transactions in the mempool " + "longer than <n> hours (default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Equivalent bytes per sigop in transactions for relay " "and mining (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Error loading %s: You can't enable HD " - "on a already existing non-HD wallet"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Error loading %s: You can't enable HD " + "on a already existing non-HD wallet"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Error reading %s! All keys read correctly, but " "transaction data or address " "book entries might be missing or incorrect."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Error: Listening for incoming connections failed " "(listen returned error %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Execute command when a relevant alert is received or we " "see a really long " "fork (%s in cmd is replaced by message)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Execute command when a wallet transaction changes (%s " "in cmd is replaced by " "TxID)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Execute command when the best block " - "changes (%s in cmd is replaced by block " - "hash)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Extra transactions to keep in memory " - "for compact block reconstructions " - "(default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Execute command when the best block " + "changes (%s in cmd is replaced by block " + "hash)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Extra transactions to keep in memory " + "for compact block reconstructions " + "(default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Fees (in %s/kB) smaller than this are considered zero " "fee for relaying, " "mining and transaction creation (default: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Fees (in %s/kB) smaller than this are " - "considered zero fee for transaction " - "creation (default: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Force relay of transactions from " - "whitelisted peers even if they violate " - "local relay policy (default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "How thorough the block verification of " - "-checkblocks is (0-4, default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "If <category> is not supplied or if " - "<category> = 1, output all debugging " - "information."), - QT_TRANSLATE_NOOP( - "bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Fees (in %s/kB) smaller than this are " + "considered zero fee for transaction " + "creation (default: %s)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Force relay of transactions from " + "whitelisted peers even if they violate " + "local relay policy (default: %d)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "How thorough the block verification of " + "-checkblocks is (0-4, default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "If <category> is not supplied or if " + "<category> = 1, output all debugging " + "information."), + QT_TRANSLATE_NOOP( + "bitcoin-abc", "" "If paytxfee is not set, include enough fee so transactions begin " "confirmation on average within n blocks (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "If this block is in the chain assume that it and its " "ancestors are valid and " "potentially skip their script verification (0 to verify " "all, default: %s, " "testnet: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Invalid amount for -maxtxfee=<amount>: '%s' (must be at " "least the minrelay " "fee of %s to prevent stuck transactions)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Maintain a full transaction index, used " - "by the getrawtransaction rpc call " - "(default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Maintain a full transaction index, used " + "by the getrawtransaction rpc call " + "(default: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Maximum allowed median peer time offset adjustment. Local perspective " "of " "time may be influenced by peers forward or backward by this amount. " "(default: %u seconds)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Maximum size of data in data carrier transactions we relay and mine " "(default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Maximum total fees (in %s) to use in a " - "single wallet transaction or raw " - "transaction; setting this too low may " - "abort large transactions (default: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Number of seconds to keep misbehaving " - "peers from reconnecting (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Output debugging information (default: " - "%u, supplying <category> is optional)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Please check that your computer's date " - "and time are correct! If your clock " - "is wrong, %s will not work properly."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Maximum total fees (in %s) to use in a " + "single wallet transaction or raw " + "transaction; setting this too low may " + "abort large transactions (default: %s)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Number of seconds to keep misbehaving " + "peers from reconnecting (default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Output debugging information (default: " + "%u, supplying <category> is optional)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Please check that your computer's date " + "and time are correct! If your clock " + "is wrong, %s will not work properly."), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Please contribute if you find %s useful. Visit %s for " "further information " "about the software."), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Prune configured below the minimum of " - "%d MiB. Please use a higher number."), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Prune configured below the minimum of " + "%d MiB. Please use a higher number."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Prune: last wallet synchronisation goes beyond pruned data. You need " "to -" "reindex (download the whole blockchain again in case of pruned node)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Query for peer addresses via DNS " - "lookup, if low on addresses (default: 1 " - "unless -connect/-noconnect)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Randomize credentials for every proxy " - "connection. This enables Tor stream " - "isolation (default: %u)"), - QT_TRANSLATE_NOOP( - "bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Query for peer addresses via DNS " + "lookup, if low on addresses (default: 1 " + "unless -connect/-noconnect)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Randomize credentials for every proxy " + "connection. This enables Tor stream " + "isolation (default: %u)"), + QT_TRANSLATE_NOOP( + "bitcoin-abc", "" "Reduce storage requirements by enabling pruning (deleting) of old " "blocks. " @@ -226,96 +226,96 @@ "= automatically prune block files to stay under the specified target " "size in " "MiB)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Rescans are not possible in pruned mode. You will need " "to use -reindex which " "will download the whole blockchain again."), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Set lowest fee rate (in %s/kB) for " - "transactions to be included in block " - "creation. (default: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Set lowest fee rate (in %s/kB) for " + "transactions to be included in block " + "creation. (default: %s)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Set maximum size of high-priority/low-fee transactions " "in bytes (default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Set the number of script verification threads (%u to " "%d, 0 = auto, <0 = " "leave that many cores free, default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Sets the serialization of raw transaction or block hex " "returned in non-" "verbose mode, non-segwit(0) or segwit(1) (default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Support filtering of blocks and transaction with bloom " "filters (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "The block database contains a block " - "which appears to be from the future. " - "This may be due to your computer's date " - "and time being set incorrectly. Only " - "rebuild the block database if you are " - "sure that your computer's date and " - "time are correct"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "The transaction amount is too small to " - "send after the fee has been deducted"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "This is a pre-release test build - use " - "at your own risk - do not use for " - "mining or merchant applications"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "This is the transaction fee you may pay " - "when fee estimates are not available."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "The block database contains a block " + "which appears to be from the future. " + "This may be due to your computer's date " + "and time being set incorrectly. Only " + "rebuild the block database if you are " + "sure that your computer's date and " + "time are correct"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "The transaction amount is too small to " + "send after the fee has been deducted"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "This is a pre-release test build - use " + "at your own risk - do not use for " + "mining or merchant applications"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "This is the transaction fee you may pay " + "when fee estimates are not available."), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "This product includes software developed by the OpenSSL " "Project for use in " "the OpenSSL Toolkit %s and cryptographic software " "written by Eric Young and " "UPnP software written by Thomas Bernard."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Total length of network version string (%i) exceeds " "maximum length (%i). " "Reduce the number or size of uacomments."), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Tries to keep outbound traffic under " - "the given target (in MiB per 24h), 0 = " - "no limit (default: %d)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Tries to keep outbound traffic under " + "the given target (in MiB per 24h), 0 = " + "no limit (default: %d)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Unable to rewind the database to a pre-fork state. You will need to " "redownload the blockchain"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Unsupported argument -socks found. Setting SOCKS " "version isn't possible " "anymore, only SOCKS5 proxies are supported."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Unsupported argument -whitelistalwaysrelay ignored, use " "-whitelistrelay and/" "or -whitelistforcerelay."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Use UPnP to map the listening port (default: 1 when " "listening and no -proxy)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Use hierarchical deterministic key generation (HD) " "after BIP32. Only has " "effect during wallet creation/first start"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Use separate SOCKS5 proxy to reach " - "peers via Tor hidden services (default: " - "%s)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Use separate SOCKS5 proxy to reach " + "peers via Tor hidden services (default: " + "%s)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Username and hashed password for JSON-RPC connections. " "The field <userpw> " @@ -327,323 +327,321 @@ "arguments. This option can " "be specified multiple times"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Wallet will not create transactions that violate mempool chain limits " "(default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Warning: The network does not appear to " - "fully agree! Some miners appear to " - "be experiencing issues."), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Warning: Unknown block versions being " - "mined! It's possible unknown rules are " - "in effect"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Warning: The network does not appear to " + "fully agree! Some miners appear to " + "be experiencing issues."), + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Warning: Unknown block versions being " + "mined! It's possible unknown rules are " + "in effect"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Warning: Wallet file corrupt, data salvaged! Original " "%s saved as %s in %s; " "if your balance or transactions are incorrect you " "should restore from a " "backup."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" "Warning: We do not appear to fully agree with our " "peers! You may need to " "upgrade, or other nodes may need to upgrade."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "" "Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) " "or CIDR " "notated network (e.g. 1.2.3.0/24). Can be specified multiple times."), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "Whitelisted peers cannot be DoS banned " - "and their transactions are always " - "relayed, even if they are already in " - "the mempool, useful e.g. for a gateway"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "Whitelisted peers cannot be DoS banned " + "and their transactions are always " + "relayed, even if they are already in " + "the mempool, useful e.g. for a gateway"), + QT_TRANSLATE_NOOP("bitcoin-abc", "" "You need to rebuild the database using -reindex to go " "back to unpruned " "mode. This will redownload the entire blockchain"), - QT_TRANSLATE_NOOP("bitcoin-core", "" - "You need to rebuild the database using " - "-reindex-chainstate to change -txindex"), - QT_TRANSLATE_NOOP("bitcoin-core", "%s corrupt, salvage failed"), - QT_TRANSLATE_NOOP("bitcoin-core", "%s is set very high!"), - QT_TRANSLATE_NOOP("bitcoin-core", "(default: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", "(default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "-maxmempool must be at least %d MB"), - QT_TRANSLATE_NOOP("bitcoin-core", "<category> can be:"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "" + "You need to rebuild the database using " + "-reindex-chainstate to change -txindex"), + QT_TRANSLATE_NOOP("bitcoin-abc", "%s corrupt, salvage failed"), + QT_TRANSLATE_NOOP("bitcoin-abc", "%s is set very high!"), + QT_TRANSLATE_NOOP("bitcoin-abc", "(default: %s)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "(default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "-maxmempool must be at least %d MB"), + QT_TRANSLATE_NOOP("bitcoin-abc", "<category> can be:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Accept command line and JSON-RPC commands"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Accept public REST requests (default: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Add a node to connect to and attempt to keep the connection open"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Allow DNS lookups for -addnode, -seednode and -connect"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Always query for peer addresses via DNS lookup (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", - "Append comment to the user agent string"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Append comment to the user agent string"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Attempt to recover private keys from a corrupt wallet on startup"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Automatically create Tor hidden service (default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Block creation options:"), - QT_TRANSLATE_NOOP("bitcoin-core", "Cannot downgrade wallet"), - QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -%s address: '%s'"), - QT_TRANSLATE_NOOP("bitcoin-core", "Cannot write default address"), - QT_TRANSLATE_NOOP("bitcoin-core", "Chain selection options:"), - QT_TRANSLATE_NOOP("bitcoin-core", "Change index out of range"), - QT_TRANSLATE_NOOP("bitcoin-core", "Connect through SOCKS5 proxy"), - QT_TRANSLATE_NOOP( - "bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Block creation options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Cannot downgrade wallet"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Cannot resolve -%s address: '%s'"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Cannot write default address"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Chain selection options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Change index out of range"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Connect through SOCKS5 proxy"), + QT_TRANSLATE_NOOP( + "bitcoin-abc", "Connect to a node to retrieve peer addresses, and disconnect"), - QT_TRANSLATE_NOOP("bitcoin-core", "Connection options:"), - QT_TRANSLATE_NOOP("bitcoin-core", "Copyright (C) %i-%i"), - QT_TRANSLATE_NOOP("bitcoin-core", "Corrupted block database detected"), - QT_TRANSLATE_NOOP("bitcoin-core", "Debugging/Testing options:"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Connection options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Copyright (C) %i-%i"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Corrupted block database detected"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Debugging/Testing options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Do not load the wallet and disable wallet RPC calls"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Do you want to rebuild the block database now?"), - QT_TRANSLATE_NOOP("bitcoin-core", "Done loading"), - QT_TRANSLATE_NOOP("bitcoin-core", "Enable publish hash block in <address>"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Done loading"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Enable publish hash block in <address>"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Enable publish hash transaction in <address>"), - QT_TRANSLATE_NOOP("bitcoin-core", "Enable publish raw block in <address>"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Enable publish raw block in <address>"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Enable publish raw transaction in <address>"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Enable transaction replacement in the memory pool (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Error initializing block database"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Error initializing block database"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error initializing wallet database environment %s!"), - QT_TRANSLATE_NOOP("bitcoin-core", "Error loading %s"), - QT_TRANSLATE_NOOP("bitcoin-core", "Error loading %s: Wallet corrupted"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Error loading %s"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error loading %s: Wallet corrupted"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error loading %s: Wallet requires newer version of %s"), - QT_TRANSLATE_NOOP("bitcoin-core", "Error loading %s: You can't disable HD " - "on a already existing HD wallet"), - QT_TRANSLATE_NOOP("bitcoin-core", "Error loading block database"), - QT_TRANSLATE_NOOP("bitcoin-core", "Error opening block database"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Error loading %s: You can't disable HD " + "on a already existing HD wallet"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error loading block database"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error opening block database"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error reading from database, shutting down."), - QT_TRANSLATE_NOOP("bitcoin-core", "Error"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Error: A fatal internal error occurred, see debug.log for details"), - QT_TRANSLATE_NOOP("bitcoin-core", "Error: Disk space is low!"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Error: Disk space is low!"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Failed to listen on any port. Use -listen=0 if you want this."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Fee (in %s/kB) to add to transactions you send (default: %s)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "How many blocks to check at startup (default: %u, 0 = all)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Importing..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Importing..."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Imports blocks from external blk000??.dat file on startup"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Include IP addresses in debug output (default: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Incorrect or no genesis block found. Wrong datadir for network?"), - QT_TRANSLATE_NOOP("bitcoin-core", "Information"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Information"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Initialization sanity check failed. %s is shutting down."), - QT_TRANSLATE_NOOP("bitcoin-core", "Insufficient funds"), - QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -onion address: '%s'"), - QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address: '%s'"), - QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -%s=<amount>: '%s'"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Insufficient funds"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Invalid -onion address: '%s'"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Invalid -proxy address: '%s'"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Invalid amount for -%s=<amount>: '%s'"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Invalid amount for -fallbackfee=<amount>: '%s'"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Invalid netmask specified in -whitelist: '%s'"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Keep at most <n> unconnectable transactions in memory (default: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Keep the transaction memory pool below <n> megabytes (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Keypool ran out, please call keypoolrefill first"), - QT_TRANSLATE_NOOP("bitcoin-core", "Listen for JSON-RPC connections on " - "<port> (default: %u or testnet: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Listen for JSON-RPC connections on " + "<port> (default: %u or testnet: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Listen for connections on <port> (default: %u or testnet: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Loading addresses..."), - QT_TRANSLATE_NOOP("bitcoin-core", "Loading banlist..."), - QT_TRANSLATE_NOOP("bitcoin-core", "Loading block index..."), - QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Loading addresses..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Loading banlist..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Loading block index..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Loading wallet..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Location of the auth cookie (default: data dir)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Maintain at most <n> connections to peers (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Make the wallet broadcast transactions"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Make the wallet broadcast transactions"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Maximum per-connection receive buffer, <n>*1000 bytes (default: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Maximum per-connection send buffer, <n>*1000 bytes (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Need to specify a port with -whitebind: '%s'"), - QT_TRANSLATE_NOOP("bitcoin-core", "Node relay options:"), - QT_TRANSLATE_NOOP("bitcoin-core", "Not enough file descriptors available."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Node relay options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Not enough file descriptors available."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Only connect to nodes in network <net> (ipv4, ipv6 or onion)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Options:"), - QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Password for JSON-RPC connections"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Prepend debug output with timestamp (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Print this help message and exit"), - QT_TRANSLATE_NOOP("bitcoin-core", "Print version and exit"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Print this help message and exit"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Print version and exit"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Prune cannot be configured with a negative value."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Prune mode is incompatible with -txindex."), - QT_TRANSLATE_NOOP("bitcoin-core", "Pruning blockstore..."), - QT_TRANSLATE_NOOP("bitcoin-core", "RPC server options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Pruning blockstore..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "RPC server options:"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Rebuild chain state and block index from the blk*.dat files on disk"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Rebuild chain state from the currently indexed blocks"), - QT_TRANSLATE_NOOP("bitcoin-core", "Reducing -maxconnections from %d to %d, " - "because of system limitations."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Reducing -maxconnections from %d to %d, " + "because of system limitations."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Relay and mine data carrier transactions (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Relay non-P2SH multisig (default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Relay non-P2SH multisig (default: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Rescan the block chain for missing wallet transactions on startup"), - QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."), - QT_TRANSLATE_NOOP("bitcoin-core", "Rewinding blocks..."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Rescanning..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Rewinding blocks..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Run in the background as a daemon and accept commands"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Send trace/debug info to console instead of debug.log file"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Send transactions as zero-fee transactions if possible (default: %u)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Set database cache size in megabytes (%d to %d, default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Set key pool size to <n> (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Set key pool size to <n> (default: %u)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Set maximum block size in bytes (default: %d)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Set the number of threads to service RPC calls (default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Show all debugging options (usage: --help -help-debug)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Shrink debug.log file on client startup (default: 1 when no -debug)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Signing transaction failed"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Signing transaction failed"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Specify configuration file (default: %s)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Specify connection timeout in milliseconds (minimum: 1, default: %d)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory"), - QT_TRANSLATE_NOOP("bitcoin-core", "Specify pid file (default: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Specify data directory"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Specify pid file (default: %s)"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Specify wallet file (within data directory)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Specify your own public address"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Specify your own public address"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Spend unconfirmed change when sending transactions (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Starting network threads..."), - QT_TRANSLATE_NOOP("bitcoin-core", "The source code is available from %s."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Starting network threads..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "The source code is available from %s."), + QT_TRANSLATE_NOOP("bitcoin-abc", "The transaction amount is too small to pay the fee"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "The wallet will avoid paying less than the minimum relay fee."), - QT_TRANSLATE_NOOP("bitcoin-core", "This is experimental software."), + QT_TRANSLATE_NOOP("bitcoin-abc", "This is experimental software."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "This is the minimum transaction fee you pay on every transaction."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "This is the transaction fee you will pay if you send a transaction."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Threshold for disconnecting misbehaving peers (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Tor control port password (default: empty)"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Tor control port to use if onion listening enabled (default: %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Transaction amount too small"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Transaction amount too small"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Transaction amounts must not be negative"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Transaction has too long of a mempool chain"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Transaction must have at least one recipient"), - QT_TRANSLATE_NOOP("bitcoin-core", "Transaction too large for fee policy"), - QT_TRANSLATE_NOOP("bitcoin-core", "Transaction too large"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Transaction too large for fee policy"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Transaction too large"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Unable to bind to %s on this computer (bind returned error %s)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Unable to bind to %s on this computer. " - "%s is probably already running."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Unable to bind to %s on this computer. " + "%s is probably already running."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Unable to start HTTP server. See debug log for details."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Unknown network specified in -onlynet: '%s'"), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Unsupported argument -benchmark ignored, use -debug=bench."), QT_TRANSLATE_NOOP( - "bitcoin-core", + "bitcoin-abc", "Unsupported argument -debugnet ignored, use -debug=net."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Unsupported argument -tor found, use -onion."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Upgrade wallet to latest format on startup"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Use UPnP to map the listening port (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", "Use the test chain"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Use the test chain"), + QT_TRANSLATE_NOOP("bitcoin-abc", "User Agent comment (%s) contains unsafe characters."), - QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"), - QT_TRANSLATE_NOOP("bitcoin-core", "Verifying blocks..."), - QT_TRANSLATE_NOOP("bitcoin-core", "Verifying wallet..."), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Username for JSON-RPC connections"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Verifying blocks..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Verifying wallet..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "Wallet %s resides outside data directory %s"), - QT_TRANSLATE_NOOP("bitcoin-core", "Wallet debugging/testing options:"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Wallet debugging/testing options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Wallet needed to be rewritten: restart %s to complete"), - QT_TRANSLATE_NOOP("bitcoin-core", "Wallet options:"), - QT_TRANSLATE_NOOP("bitcoin-core", "Warning"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Wallet options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Warning"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Warning: unknown new rules activated (versionbit %i)"), - QT_TRANSLATE_NOOP("bitcoin-core", + QT_TRANSLATE_NOOP("bitcoin-abc", "Whether to operate in a blocks only mode (default: %u)"), - QT_TRANSLATE_NOOP("bitcoin-core", - "Zapping all transactions from wallet..."), - QT_TRANSLATE_NOOP("bitcoin-core", "ZeroMQ notification options:"), + QT_TRANSLATE_NOOP("bitcoin-abc", "Zapping all transactions from wallet..."), + QT_TRANSLATE_NOOP("bitcoin-abc", "ZeroMQ notification options:"), }; diff --git a/src/qt/locale/bitcoin_af.ts b/src/qt/locale/bitcoin_af.ts --- a/src/qt/locale/bitcoin_af.ts +++ b/src/qt/locale/bitcoin_af.ts @@ -906,10 +906,10 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Kern</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Information</source> @@ -948,4 +948,4 @@ <translation>Fout</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_af_ZA.ts b/src/qt/locale/bitcoin_af_ZA.ts --- a/src/qt/locale/bitcoin_af_ZA.ts +++ b/src/qt/locale/bitcoin_af_ZA.ts @@ -770,7 +770,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opsies:</translation> diff --git a/src/qt/locale/bitcoin_ar.ts b/src/qt/locale/bitcoin_ar.ts --- a/src/qt/locale/bitcoin_ar.ts +++ b/src/qt/locale/bitcoin_ar.ts @@ -1922,7 +1922,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>خيارات: </translation> @@ -1932,7 +1932,7 @@ <translation>حدد مجلد المعلومات</translation> </message> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>جوهر البيت كوين</translation> </message> <message> diff --git a/src/qt/locale/bitcoin_be_BY.ts b/src/qt/locale/bitcoin_be_BY.ts --- a/src/qt/locale/bitcoin_be_BY.ts +++ b/src/qt/locale/bitcoin_be_BY.ts @@ -1240,7 +1240,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Опцыі:</translation> @@ -1258,8 +1258,8 @@ <translation>Запусціць у фоне як дэман і прымаць каманды</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Do you want to rebuild the block database now?</source> diff --git a/src/qt/locale/bitcoin_bg.ts b/src/qt/locale/bitcoin_bg.ts --- a/src/qt/locale/bitcoin_bg.ts +++ b/src/qt/locale/bitcoin_bg.ts @@ -2328,7 +2328,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Опции:</translation> @@ -2346,7 +2346,7 @@ <translation>Въведете Ваш публичен адрес</translation> </message> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>Биткойн ядро</translation> </message> <message> diff --git a/src/qt/locale/bitcoin_bg_BG.ts b/src/qt/locale/bitcoin_bg_BG.ts --- a/src/qt/locale/bitcoin_bg_BG.ts +++ b/src/qt/locale/bitcoin_bg_BG.ts @@ -418,10 +418,10 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>Биткойн ядро</translation> </message> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ca.ts b/src/qt/locale/bitcoin_ca.ts --- a/src/qt/locale/bitcoin_ca.ts +++ b/src/qt/locale/bitcoin_ca.ts @@ -2784,7 +2784,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opcions:</translation> @@ -2842,8 +2842,8 @@ <translation>No s'ha pogut iniciar el servidor HTTP. Vegeu debug.log per a més detalls.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_ca@valencia.ts b/src/qt/locale/bitcoin_ca@valencia.ts --- a/src/qt/locale/bitcoin_ca@valencia.ts +++ b/src/qt/locale/bitcoin_ca@valencia.ts @@ -2524,7 +2524,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opcions:</translation> @@ -2558,8 +2558,8 @@ <translation>Executa en segon pla com a programa dimoni i accepta ordes</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -2784,7 +2784,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opcions:</translation> @@ -2842,8 +2842,8 @@ <translation>No s'ha pogut iniciar el servidor HTTP. Vegeu debug.log per a més detalls.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -2988,7 +2988,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Možnosti:</translation> @@ -3058,8 +3058,8 @@ <translation>Nemohu spustit HTTP server. Detaily viz v debug.log.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_cy.ts b/src/qt/locale/bitcoin_cy.ts --- a/src/qt/locale/bitcoin_cy.ts +++ b/src/qt/locale/bitcoin_cy.ts @@ -478,14 +478,14 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opsiynau:</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Craidd Bitcoin</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitcoin</translation> </message> <message> <source>Information</source> @@ -500,4 +500,4 @@ <translation>Gwall</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -2988,7 +2988,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Indstillinger:</translation> @@ -3058,8 +3058,8 @@ <translation>Kunne ikke starte HTTP-server. Se fejlretningslog for detaljer.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -2984,7 +2984,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Optionen:</translation> @@ -3054,8 +3054,8 @@ <translation>Kann HTTP Server nicht starten. Siehe debug log für Details.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_el.ts b/src/qt/locale/bitcoin_el.ts --- a/src/qt/locale/bitcoin_el.ts +++ b/src/qt/locale/bitcoin_el.ts @@ -190,7 +190,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Insufficient funds</source> <translation>Κεφάλαια μη επαρκή</translation> diff --git a/src/qt/locale/bitcoin_el_GR.ts b/src/qt/locale/bitcoin_el_GR.ts --- a/src/qt/locale/bitcoin_el_GR.ts +++ b/src/qt/locale/bitcoin_el_GR.ts @@ -1417,7 +1417,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Επιλογές:</translation> @@ -1443,8 +1443,8 @@ <translation>Εκτέλεση στο παρασκήνιο κι αποδοχή εντολών</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -3865,7 +3865,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <location filename="../bitcoinstrings.cpp" line="+318"/> <source>Options:</source> @@ -3953,8 +3953,8 @@ </message> <message> <location line="-360"/> - <source>Bitcoin Core</source> - <translation type="unfinished">Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation type="unfinished">Bitcoin ABC</translation> </message> <message> <location line="+1"/> diff --git a/src/qt/locale/bitcoin_en_GB.ts b/src/qt/locale/bitcoin_en_GB.ts --- a/src/qt/locale/bitcoin_en_GB.ts +++ b/src/qt/locale/bitcoin_en_GB.ts @@ -1836,7 +1836,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Options:</translation> @@ -1894,8 +1894,8 @@ <translation>Unable to start HTTP server. See debug log for details.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_eo.ts b/src/qt/locale/bitcoin_eo.ts --- a/src/qt/locale/bitcoin_eo.ts +++ b/src/qt/locale/bitcoin_eo.ts @@ -1312,7 +1312,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Agordoj:</translation> @@ -1338,8 +1338,8 @@ <translation>Ruli fone kiel demono kaj akcepti komandojn</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Kerno de Bitmono</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitmono</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> @@ -1522,4 +1522,4 @@ <translation>Eraro</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -2988,7 +2988,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciones: @@ -3061,8 +3061,8 @@ <translation>No se ha podido comenzar el servidor HTTP. Ver debug log para detalles.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_es_AR.ts b/src/qt/locale/bitcoin_es_AR.ts --- a/src/qt/locale/bitcoin_es_AR.ts +++ b/src/qt/locale/bitcoin_es_AR.ts @@ -170,6 +170,6 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -750,7 +750,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciones: @@ -772,8 +772,8 @@ </translation> </message> <message> - <source>Bitcoin Core</source> - <translation>bitcoin core</translation> + <source>Bitcoin ABC</source> + <translation>bitcoin abc</translation> </message> <message> <source>Error loading block database</source> @@ -855,4 +855,4 @@ <translation>Error</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_es_CO.ts b/src/qt/locale/bitcoin_es_CO.ts --- a/src/qt/locale/bitcoin_es_CO.ts +++ b/src/qt/locale/bitcoin_es_CO.ts @@ -294,10 +294,10 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Insufficient funds</source> diff --git a/src/qt/locale/bitcoin_es_DO.ts b/src/qt/locale/bitcoin_es_DO.ts --- a/src/qt/locale/bitcoin_es_DO.ts +++ b/src/qt/locale/bitcoin_es_DO.ts @@ -1094,7 +1094,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciones: @@ -1123,8 +1123,8 @@ </translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Núcleo de Bitcoin</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitcoin</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> @@ -1317,4 +1317,4 @@ <translation>Error</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_es_ES.ts b/src/qt/locale/bitcoin_es_ES.ts --- a/src/qt/locale/bitcoin_es_ES.ts +++ b/src/qt/locale/bitcoin_es_ES.ts @@ -2864,7 +2864,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciones: @@ -2925,8 +2925,8 @@ <translation>No se ha podido comenzar el servidor HTTP. Ver debug log para detalles.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_es_MX.ts b/src/qt/locale/bitcoin_es_MX.ts --- a/src/qt/locale/bitcoin_es_MX.ts +++ b/src/qt/locale/bitcoin_es_MX.ts @@ -598,14 +598,14 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciones:</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>nucleo Bitcoin</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitcoin</translation> </message> <message> <source><category> can be:</source> @@ -652,4 +652,4 @@ <translation>Error</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_es_UY.ts b/src/qt/locale/bitcoin_es_UY.ts --- a/src/qt/locale/bitcoin_es_UY.ts +++ b/src/qt/locale/bitcoin_es_UY.ts @@ -437,7 +437,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciones:</translation> diff --git a/src/qt/locale/bitcoin_es_VE.ts b/src/qt/locale/bitcoin_es_VE.ts --- a/src/qt/locale/bitcoin_es_VE.ts +++ b/src/qt/locale/bitcoin_es_VE.ts @@ -582,7 +582,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciones:</translation> @@ -608,8 +608,8 @@ <translation>Correr en segundo plano como daemon y aceptar comandos</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -1732,7 +1732,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Valikud:</translation> @@ -1758,8 +1758,8 @@ <translation>Tööta taustal ning aktsepteeri käsklusi</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoini tuumik</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoini ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> @@ -1926,4 +1926,4 @@ <translation>Tõrge</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_et_EE.ts b/src/qt/locale/bitcoin_et_EE.ts --- a/src/qt/locale/bitcoin_et_EE.ts +++ b/src/qt/locale/bitcoin_et_EE.ts @@ -754,14 +754,14 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Valikud:</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Information</source> diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -818,7 +818,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Aukerak</translation> diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -1572,7 +1572,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>گزینهها:</translation> @@ -1598,8 +1598,8 @@ <translation>اجرا در پشت زمینه بهصورت یک سرویس و پذیرش دستورات</translation> </message> <message> - <source>Bitcoin Core</source> - <translation> هسته Bitcoin </translation> + <source>Bitcoin ABC</source> + <translation> ABC Bitcoin </translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> @@ -1782,4 +1782,4 @@ <translation>خطا</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -506,7 +506,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>انتخابها:</translation> diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -1720,7 +1720,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Asetukset:</translation> @@ -1778,8 +1778,8 @@ <translation>HTTP-palvelinta ei voitu käynnistää. Katso debug-lokista lisätietoja.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin-ydin</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin-abc</translation> </message> <message> <source>The %s developers</source> @@ -2322,4 +2322,4 @@ <translation>Virhe</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_fr.ts b/src/qt/locale/bitcoin_fr.ts --- a/src/qt/locale/bitcoin_fr.ts +++ b/src/qt/locale/bitcoin_fr.ts @@ -2988,7 +2988,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Options :</translation> @@ -3058,8 +3058,8 @@ <translation>Impossible de démarrer le serveur HTTP. Voir le journal de débogage pour plus de détails.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -154,6 +154,6 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/bitcoin_fr_FR.ts b/src/qt/locale/bitcoin_fr_FR.ts --- a/src/qt/locale/bitcoin_fr_FR.ts +++ b/src/qt/locale/bitcoin_fr_FR.ts @@ -1636,7 +1636,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Options :</translation> @@ -1662,8 +1662,8 @@ <translation>Impossible de démarrer le serveur HTTP. Voir le journal de débogage pour plus de détails.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source><category> can be:</source> diff --git a/src/qt/locale/bitcoin_gl.ts b/src/qt/locale/bitcoin_gl.ts --- a/src/qt/locale/bitcoin_gl.ts +++ b/src/qt/locale/bitcoin_gl.ts @@ -1002,7 +1002,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opcións:</translation> @@ -1028,7 +1028,7 @@ <translation>Executar no fondo como un demo e aceptar comandos</translation> </message> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>Core de Bitcoin</translation> </message> <message> diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -1618,7 +1618,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>אפשרויות:</translation> @@ -1648,7 +1648,7 @@ <translation>ריצה כסוכן ברקע וקבלת פקודות</translation> </message> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>ליבת ביטקוין</translation> </message> <message> diff --git a/src/qt/locale/bitcoin_hi_IN.ts b/src/qt/locale/bitcoin_hi_IN.ts --- a/src/qt/locale/bitcoin_hi_IN.ts +++ b/src/qt/locale/bitcoin_hi_IN.ts @@ -405,7 +405,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>विकल्प:</translation> diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -1012,7 +1012,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Postavke:</translation> @@ -1034,8 +1034,8 @@ <translation>Izvršavaj u pozadini kao uslužnik i prihvaćaj komande</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Block creation options:</source> diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -1348,7 +1348,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opciók @@ -1378,8 +1378,8 @@ </translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)</source> diff --git a/src/qt/locale/bitcoin_id_ID.ts b/src/qt/locale/bitcoin_id_ID.ts --- a/src/qt/locale/bitcoin_id_ID.ts +++ b/src/qt/locale/bitcoin_id_ID.ts @@ -1374,7 +1374,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Pilihan:</translation> @@ -1400,8 +1400,8 @@ <translation>Berjalan dibelakang sebagai daemin dan menerima perintah</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)</source> diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -2525,7 +2525,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opzioni:</translation> @@ -2583,8 +2583,8 @@ <translation>Impossibile avviare il server HTTP. Dettagli nel log di debug.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_it_IT.ts b/src/qt/locale/bitcoin_it_IT.ts --- a/src/qt/locale/bitcoin_it_IT.ts +++ b/src/qt/locale/bitcoin_it_IT.ts @@ -202,6 +202,6 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ja.ts b/src/qt/locale/bitcoin_ja.ts --- a/src/qt/locale/bitcoin_ja.ts +++ b/src/qt/locale/bitcoin_ja.ts @@ -2988,7 +2988,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>オプション:</translation> @@ -3058,7 +3058,7 @@ <translation>HTTPサーバを開始できませんでした。詳細はデバッグログをご確認ください。</translation> </message> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>Bitcoin のコア</translation> </message> <message> diff --git a/src/qt/locale/bitcoin_ka.ts b/src/qt/locale/bitcoin_ka.ts --- a/src/qt/locale/bitcoin_ka.ts +++ b/src/qt/locale/bitcoin_ka.ts @@ -1146,7 +1146,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>ოპციები:</translation> @@ -1172,8 +1172,8 @@ <translation>რეზიდენტულად გაშვება და კომანდების მიღება</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_kk_KZ.ts b/src/qt/locale/bitcoin_kk_KZ.ts --- a/src/qt/locale/bitcoin_kk_KZ.ts +++ b/src/qt/locale/bitcoin_kk_KZ.ts @@ -298,7 +298,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Information</source> <translation>Информация</translation> diff --git a/src/qt/locale/bitcoin_ko_KR.ts b/src/qt/locale/bitcoin_ko_KR.ts --- a/src/qt/locale/bitcoin_ko_KR.ts +++ b/src/qt/locale/bitcoin_ko_KR.ts @@ -2240,7 +2240,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>옵션:</translation> @@ -2298,7 +2298,7 @@ <translation>HTTP 서버를 시작할 수 없습니다. 자세한 사항은 디버그 로그를 확인 하세요.</translation> </message> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>비트코인 코어</translation> </message> <message> diff --git a/src/qt/locale/bitcoin_ku_IQ.ts b/src/qt/locale/bitcoin_ku_IQ.ts --- a/src/qt/locale/bitcoin_ku_IQ.ts +++ b/src/qt/locale/bitcoin_ku_IQ.ts @@ -374,7 +374,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>هەڵبژاردنەکان:</translation> diff --git a/src/qt/locale/bitcoin_ky.ts b/src/qt/locale/bitcoin_ky.ts --- a/src/qt/locale/bitcoin_ky.ts +++ b/src/qt/locale/bitcoin_ky.ts @@ -334,7 +334,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Information</source> <translation>Маалымат</translation> diff --git a/src/qt/locale/bitcoin_la.ts b/src/qt/locale/bitcoin_la.ts --- a/src/qt/locale/bitcoin_la.ts +++ b/src/qt/locale/bitcoin_la.ts @@ -742,7 +742,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Optiones:</translation> @@ -768,8 +768,8 @@ <translation>Operare infere sicut daemon et mandata accipe</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Nucleus</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> @@ -920,4 +920,4 @@ <translation>Error</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -914,7 +914,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Parinktys:</translation> @@ -936,8 +936,8 @@ <translation>Dirbti fone kaip šešėlyje ir priimti komandas</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin branduolys</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Error opening block database</source> @@ -1016,4 +1016,4 @@ <translation>Klaida</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_lv_LV.ts b/src/qt/locale/bitcoin_lv_LV.ts --- a/src/qt/locale/bitcoin_lv_LV.ts +++ b/src/qt/locale/bitcoin_lv_LV.ts @@ -1098,7 +1098,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Iespējas:</translation> @@ -1124,8 +1124,8 @@ <translation>Darbināt fonā kā servisu un pieņemt komandas</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source><category> can be:</source> diff --git a/src/qt/locale/bitcoin_mk_MK.ts b/src/qt/locale/bitcoin_mk_MK.ts --- a/src/qt/locale/bitcoin_mk_MK.ts +++ b/src/qt/locale/bitcoin_mk_MK.ts @@ -572,14 +572,14 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Опции:</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Биткоин Core</translation> + <source>Bitcoin ABC</source> + <translation>Биткоин ABC</translation> </message> <message> <source>Warning</source> @@ -590,4 +590,4 @@ <translation>Грешка</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_mn.ts b/src/qt/locale/bitcoin_mn.ts --- a/src/qt/locale/bitcoin_mn.ts +++ b/src/qt/locale/bitcoin_mn.ts @@ -546,7 +546,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Сонголтууд:</translation> diff --git a/src/qt/locale/bitcoin_ms_MY.ts b/src/qt/locale/bitcoin_ms_MY.ts --- a/src/qt/locale/bitcoin_ms_MY.ts +++ b/src/qt/locale/bitcoin_ms_MY.ts @@ -500,6 +500,6 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -1804,7 +1804,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Innstillinger:</translation> @@ -1862,8 +1862,8 @@ <translation>Kunne ikke starte HTTP server. Se debug logg for detaljer.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_ne.ts b/src/qt/locale/bitcoin_ne.ts --- a/src/qt/locale/bitcoin_ne.ts +++ b/src/qt/locale/bitcoin_ne.ts @@ -366,7 +366,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct</source> <translation>ब्लक डाटाबेसमा भविष्यबाट आए जस्तो देखिने एउटा ब्लक हुन्छ । तपाईंको कम्प्युटरको मिति र समय गलत तरिकाले सेट गरिएकाले यस्तो हुन सक्छ । तपाईं आफ्नो कम्प्युटरको मिति र समय सही छ भनेर पक्का हुनुहुन्छ भने मात्र ब्लक डाटाबेस पुनर्निर्माण गर्नुहोस् ।</translation> diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -2800,7 +2800,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opties:</translation> @@ -2858,8 +2858,8 @@ <translation>Niet mogelijk ok HTTP-server te starten. Zie debuglogboek voor details.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_pam.ts b/src/qt/locale/bitcoin_pam.ts --- a/src/qt/locale/bitcoin_pam.ts +++ b/src/qt/locale/bitcoin_pam.ts @@ -726,7 +726,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Pipamilian:</translation> @@ -752,8 +752,8 @@ <translation>Gumana king gulut bilang daemon at tumanggap commands</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Kapilubluban ning Bitcoin</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitcoin</translation> </message> <message> <source>Block creation options:</source> @@ -864,4 +864,4 @@ <translation>Mali</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -2429,7 +2429,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opcje:</translation> @@ -2487,8 +2487,8 @@ <translation>Uruchomienie serwera HTTP nie powiodło się. Zobacz dziennik debugowania, aby uzyskać więcej szczegółów.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Rdzeń Bitcoina</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitcoina</translation> </message> <message> <source>The %s developers</source> @@ -3167,4 +3167,4 @@ <translation>Błąd</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -2984,7 +2984,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opções:</translation> @@ -3054,8 +3054,8 @@ <translation>Não foi possível iniciar o servidor HTTP. Veja o log para detaihes.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_pt_PT.ts b/src/qt/locale/bitcoin_pt_PT.ts --- a/src/qt/locale/bitcoin_pt_PT.ts +++ b/src/qt/locale/bitcoin_pt_PT.ts @@ -2125,7 +2125,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opções:</translation> @@ -2183,8 +2183,8 @@ <translation>Não é possível iniciar o servidor HTTP. Verifique o debug.log para detalhes.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s)</source> diff --git a/src/qt/locale/bitcoin_ro.ts b/src/qt/locale/bitcoin_ro.ts --- a/src/qt/locale/bitcoin_ro.ts +++ b/src/qt/locale/bitcoin_ro.ts @@ -746,10 +746,10 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Information</source> diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -1568,7 +1568,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opţiuni:</translation> @@ -1594,8 +1594,8 @@ <translation>Rulează în fundal ca un demon şi acceptă comenzi</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Nucleul Bitcoin</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitcoin</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> @@ -1898,4 +1898,4 @@ <translation>Eroare</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -2988,7 +2988,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Параметры:</translation> @@ -3058,8 +3058,8 @@ <translation>Невозможно запустить HTTP сервер. Смотри debug лог для подробностей.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_ru_RU.ts b/src/qt/locale/bitcoin_ru_RU.ts --- a/src/qt/locale/bitcoin_ru_RU.ts +++ b/src/qt/locale/bitcoin_ru_RU.ts @@ -59,7 +59,7 @@ <name>BitcoinGUI</name> <message> <source>Bitcoin</source> - <translation>Bitcoin Core</translation> + <translation>Bitcoin ABC</translation> </message> <message> <source>&Command-line options</source> @@ -226,14 +226,14 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway</source> - <translation>bitcoin-core</translation> + <translation>bitcoin-abc</translation> </message> <message> <source>Information</source> diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -2769,7 +2769,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Možnosti:</translation> @@ -2819,8 +2819,8 @@ <translation>Nepodarilo sa spustiť HTTP server. Pre viac detailov zobrazte debug log.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_sl_SI.ts b/src/qt/locale/bitcoin_sl_SI.ts --- a/src/qt/locale/bitcoin_sl_SI.ts +++ b/src/qt/locale/bitcoin_sl_SI.ts @@ -1564,7 +1564,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Možnosti:</translation> @@ -1590,8 +1590,8 @@ <translation>Teci v ozadju in sprejemaj ukaze</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_sq.ts b/src/qt/locale/bitcoin_sq.ts --- a/src/qt/locale/bitcoin_sq.ts +++ b/src/qt/locale/bitcoin_sq.ts @@ -778,14 +778,14 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opsionet:</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Berthama Bitcoin</translation> + <source>Bitcoin ABC</source> + <translation>ABC Bitcoin</translation> </message> <message> <source>Information</source> @@ -804,4 +804,4 @@ <translation>Problem</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -442,7 +442,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Opcije</translation> diff --git a/src/qt/locale/bitcoin_sr@latin.ts b/src/qt/locale/bitcoin_sr@latin.ts --- a/src/qt/locale/bitcoin_sr@latin.ts +++ b/src/qt/locale/bitcoin_sr@latin.ts @@ -404,10 +404,10 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Information</source> diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -2169,7 +2169,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Inställningar:</translation> @@ -2227,8 +2227,8 @@ <translation>Kunde inte starta HTTP-server. Se avlusningsloggen för detaljer.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_ta.ts b/src/qt/locale/bitcoin_ta.ts --- a/src/qt/locale/bitcoin_ta.ts +++ b/src/qt/locale/bitcoin_ta.ts @@ -706,9 +706,9 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> - <source>Bitcoin Core</source> + <source>Bitcoin ABC</source> <translation>Bitcoin மையம்</translation> </message> <message> diff --git a/src/qt/locale/bitcoin_th_TH.ts b/src/qt/locale/bitcoin_th_TH.ts --- a/src/qt/locale/bitcoin_th_TH.ts +++ b/src/qt/locale/bitcoin_th_TH.ts @@ -916,7 +916,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>ตัวเลือก:</translation> diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -2984,7 +2984,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Seçenekler:</translation> @@ -3054,8 +3054,8 @@ <translation>HTTP sunucusu başlatılamadı. Ayrıntılar için debug.log dosyasına bakınız.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Çekirdeği</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> @@ -3906,4 +3906,4 @@ <translation>Hata</translation> </message> </context> -</TS> \ No newline at end of file +</TS> diff --git a/src/qt/locale/bitcoin_tr_TR.ts b/src/qt/locale/bitcoin_tr_TR.ts --- a/src/qt/locale/bitcoin_tr_TR.ts +++ b/src/qt/locale/bitcoin_tr_TR.ts @@ -170,6 +170,6 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -1640,7 +1640,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Параметри:</translation> @@ -1698,8 +1698,8 @@ <translation>Неможливо запустити HTTP-сервер. Детальніший опис наведено в журналі зневадження.</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Bind to given address and always listen on it. Use [host]:port notation for IPv6</source> diff --git a/src/qt/locale/bitcoin_ur_PK.ts b/src/qt/locale/bitcoin_ur_PK.ts --- a/src/qt/locale/bitcoin_ur_PK.ts +++ b/src/qt/locale/bitcoin_ur_PK.ts @@ -214,7 +214,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Insufficient funds</source> <translation>ناکافی فنڈز</translation> diff --git a/src/qt/locale/bitcoin_uz@Cyrl.ts b/src/qt/locale/bitcoin_uz@Cyrl.ts --- a/src/qt/locale/bitcoin_uz@Cyrl.ts +++ b/src/qt/locale/bitcoin_uz@Cyrl.ts @@ -1190,7 +1190,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Танламалар:</translation> @@ -1208,8 +1208,8 @@ <translation>Демон сифатида орқа фонда ишга туширинг ва буйруқларга рози бўлинг</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>Connection options:</source> diff --git a/src/qt/locale/bitcoin_vi.ts b/src/qt/locale/bitcoin_vi.ts --- a/src/qt/locale/bitcoin_vi.ts +++ b/src/qt/locale/bitcoin_vi.ts @@ -162,6 +162,6 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/bitcoin_vi_VN.ts b/src/qt/locale/bitcoin_vi_VN.ts --- a/src/qt/locale/bitcoin_vi_VN.ts +++ b/src/qt/locale/bitcoin_vi_VN.ts @@ -992,14 +992,14 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>Lựa chọn:</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>(default: %u)</source> diff --git a/src/qt/locale/bitcoin_zh.ts b/src/qt/locale/bitcoin_zh.ts --- a/src/qt/locale/bitcoin_zh.ts +++ b/src/qt/locale/bitcoin_zh.ts @@ -166,7 +166,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Transaction too large for fee policy</source> <translation>根据费率标准,本次转账超额</translation> diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -2949,7 +2949,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>选项: @@ -3012,8 +3012,8 @@ <translation>无法启动HTTP服务,查看日志获取更多信息</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/qt/locale/bitcoin_zh_HK.ts b/src/qt/locale/bitcoin_zh_HK.ts --- a/src/qt/locale/bitcoin_zh_HK.ts +++ b/src/qt/locale/bitcoin_zh_HK.ts @@ -652,7 +652,7 @@ <name>WalletView</name> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Information</source> <translation>資訊</translation> diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -2984,7 +2984,7 @@ </message> </context> <context> - <name>bitcoin-core</name> + <name>bitcoin-abc</name> <message> <source>Options:</source> <translation>選項:</translation> @@ -3055,8 +3055,8 @@ <translation>無法啟動 HTTP 伺服器。詳情請看除錯紀錄。</translation> </message> <message> - <source>Bitcoin Core</source> - <translation>Bitcoin Core</translation> + <source>Bitcoin ABC</source> + <translation>Bitcoin ABC</translation> </message> <message> <source>The %s developers</source> diff --git a/src/util.cpp b/src/util.cpp --- a/src/util.cpp +++ b/src/util.cpp @@ -830,11 +830,11 @@ strPrefix + strprintf(_(COPYRIGHT_HOLDERS), _(COPYRIGHT_HOLDERS_SUBSTITUTION)); - // Check for untranslated substitution to make sure Bitcoin Core copyright + // Check for untranslated substitution to make sure Bitcoin ABC 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"; + .find("Bitcoin ABC") == std::string::npos) { + strCopyrightHolders += "\n" + strPrefix + "The Bitcoin ABC developers"; } return strCopyrightHolders; }