From f1f981119884389f1f355bc11847a73812a2836e Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 19:56:00 +0000 Subject: GUI: Support translating address type dropdown entries --- src/qt/receivecoinsdialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/qt/receivecoinsdialog.cpp b/src/qt/receivecoinsdialog.cpp index 22eb642ecd..be7741e8a8 100644 --- a/src/qt/receivecoinsdialog.cpp +++ b/src/qt/receivecoinsdialog.cpp @@ -93,11 +93,11 @@ void ReceiveCoinsDialog::setModel(WalletModel *_model) ui->addressType->setItemData(index, tooltip, Qt::ToolTipRole); if (model->wallet().getDefaultAddressType() == type) ui->addressType->setCurrentIndex(index); }; - add_address_type(OutputType::LEGACY, "Base58 (Legacy)", "Not recommended due to higher fees and less protection against typos."); - add_address_type(OutputType::P2SH_SEGWIT, "Base58 (P2SH-SegWit)", "Generates an address compatible with older wallets."); - add_address_type(OutputType::BECH32, "Bech32 (SegWit)", "Generates a native segwit address (BIP-173). Some old wallets don't support it."); + add_address_type(OutputType::LEGACY, tr("Base58 (Legacy)"), tr("Not recommended due to higher fees and less protection against typos.")); + add_address_type(OutputType::P2SH_SEGWIT, tr("Base58 (P2SH-SegWit)"), tr("Generates an address compatible with older wallets.")); + add_address_type(OutputType::BECH32, tr("Bech32 (SegWit)"), tr("Generates a native segwit address (BIP-173). Some old wallets don't support it.")); if (model->wallet().taprootEnabled()) { - add_address_type(OutputType::BECH32M, "Bech32m (Taproot)", "Bech32m (BIP-350) is an upgrade to Bech32, wallet support is still limited."); + add_address_type(OutputType::BECH32M, tr("Bech32m (Taproot)"), tr("Bech32m (BIP-350) is an upgrade to Bech32, wallet support is still limited.")); } // Set the button to be enabled or disabled based on whether the wallet can give out new addresses. -- cgit v1.2.3 From 3868ba3a27d594dd2968548fff3db457cbeb0080 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 21:18:13 +0000 Subject: GUI: Support translating peer network names --- src/qt/guiutil.cpp | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 83c78d5c18..96fe091b60 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -673,12 +673,17 @@ QString NetworkToQString(Network net) { switch (net) { case NET_UNROUTABLE: return QObject::tr("Unroutable"); - case NET_IPV4: return "IPv4"; - case NET_IPV6: return "IPv6"; - case NET_ONION: return "Onion"; - case NET_I2P: return "I2P"; - case NET_CJDNS: return "CJDNS"; - case NET_INTERNAL: return QObject::tr("Internal"); + //: Name of IPv4 network in peer info + case NET_IPV4: return QObject::tr("IPv4", "network name"); + //: Name of IPv6 network in peer info + case NET_IPV6: return QObject::tr("IPv6", "network name"); + //: Name of Tor network in peer info + case NET_ONION: return QObject::tr("Onion", "network name"); + //: Name of I2P network in peer info + case NET_I2P: return QObject::tr("I2P", "network name"); + //: Name of CJDNS network in peer info + case NET_CJDNS: return QObject::tr("CJDNS", "network name"); + case NET_INTERNAL: return "Internal"; // should never actually happen case NET_MAX: assert(false); } // no default case, so the compiler can warn about missing cases assert(false); -- cgit v1.2.3 From 5a4fe5527045ad3d7f1c834c3c6ea1d531c87879 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 21:22:04 +0000 Subject: GUI: Intro: Support translating caption of data directory chooser --- src/qt/intro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 12aa02340a..64c2890fc1 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -318,7 +318,7 @@ void Intro::on_dataDirectory_textChanged(const QString &dataDirStr) void Intro::on_ellipsisButton_clicked() { - QString dir = QDir::toNativeSeparators(QFileDialog::getExistingDirectory(nullptr, "Choose data directory", ui->dataDirectory->text())); + QString dir = QDir::toNativeSeparators(QFileDialog::getExistingDirectory(nullptr, tr("Choose data directory"), ui->dataDirectory->text())); if(!dir.isEmpty()) ui->dataDirectory->setText(dir); } -- cgit v1.2.3 From dacc322be10c6709338d2f0d7f5c4366609ad1a0 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 21:24:46 +0000 Subject: GUI: PSBTOperationsDialog: Support translating window title --- src/qt/forms/psbtoperationsdialog.ui | 2 +- src/qt/psbtoperationsdialog.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/qt/forms/psbtoperationsdialog.ui b/src/qt/forms/psbtoperationsdialog.ui index caae0dab2a..5194826371 100644 --- a/src/qt/forms/psbtoperationsdialog.ui +++ b/src/qt/forms/psbtoperationsdialog.ui @@ -11,7 +11,7 @@ - Dialog + PSBT Operations diff --git a/src/qt/psbtoperationsdialog.cpp b/src/qt/psbtoperationsdialog.cpp index 17a65be0fe..0994e0080a 100644 --- a/src/qt/psbtoperationsdialog.cpp +++ b/src/qt/psbtoperationsdialog.cpp @@ -31,7 +31,6 @@ PSBTOperationsDialog::PSBTOperationsDialog( m_client_model(client_model) { m_ui->setupUi(this); - setWindowTitle("PSBT Operations"); connect(m_ui->signTransactionButton, &QPushButton::clicked, this, &PSBTOperationsDialog::signTransaction); connect(m_ui->broadcastTransactionButton, &QPushButton::clicked, this, &PSBTOperationsDialog::broadcastTransaction); -- cgit v1.2.3 From 08b8b287d3762dd6d4be09fad0b71c4cacfe6658 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 21:41:31 +0000 Subject: Bugfix: GUI: Debug info: Use correct "kB" case for small mempool sizes, and make translation-friendly --- src/qt/rpcconsole.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 0e712062af..76500a4a36 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -984,10 +984,11 @@ void RPCConsole::setMempoolSize(long numberOfTxs, size_t dynUsage) { ui->mempoolNumberTxs->setText(QString::number(numberOfTxs)); - if (dynUsage < 1000000) - ui->mempoolSize->setText(QString::number(dynUsage/1000.0, 'f', 2) + " KB"); - else - ui->mempoolSize->setText(QString::number(dynUsage/1000000.0, 'f', 2) + " MB"); + if (dynUsage < 1000000) { + ui->mempoolSize->setText(QObject::tr("%1 kB").arg(dynUsage / 1000.0, 0, 'f', 2)); + } else { + ui->mempoolSize->setText(QObject::tr("%1 MB").arg(dynUsage / 1000000.0, 0, 'f', 2)); + } } void RPCConsole::on_lineEdit_returnPressed() -- cgit v1.2.3 From 96989599d6c7264022c188babdcd9cacac9ab69f Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 21:50:07 +0000 Subject: GUI: Make messages for copying unsigned PSBTs translatable --- src/qt/sendcoinsdialog.cpp | 8 +++++--- src/qt/walletmodel.cpp | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 1eba4d1b71..33e421d569 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -403,8 +403,9 @@ void SendCoinsDialog::presentPSBT(PartiallySignedTransaction& psbtx) ssTx << psbtx; GUIUtil::setClipboard(EncodeBase64(ssTx.str()).c_str()); QMessageBox msgBox; - msgBox.setText("Unsigned Transaction"); - msgBox.setInformativeText("The PSBT has been copied to the clipboard. You can also save it."); + //: Caption of "PSBT has been copied" messagebox + msgBox.setText(tr("Unsigned Transaction", "PSBT copied")); + msgBox.setInformativeText(tr("The PSBT has been copied to the clipboard. You can also save it.")); msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard); msgBox.setDefaultButton(QMessageBox::Discard); switch (msgBox.exec()) { @@ -432,7 +433,8 @@ void SendCoinsDialog::presentPSBT(PartiallySignedTransaction& psbtx) std::ofstream out{filename.toLocal8Bit().data(), std::ofstream::out | std::ofstream::binary}; out << ssTx.str(); out.close(); - Q_EMIT message(tr("PSBT saved"), "PSBT saved to disk", CClientUIInterface::MSG_INFORMATION); + //: Popup message when a PSBT has been saved to a file + Q_EMIT message(tr("PSBT saved"), tr("PSBT saved to disk"), CClientUIInterface::MSG_INFORMATION); break; } case QMessageBox::Discard: diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 3c69d46b7e..61172d1625 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -548,7 +548,7 @@ bool WalletModel::bumpFee(uint256 hash, uint256& new_hash) CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION); ssTx << psbtx; GUIUtil::setClipboard(EncodeBase64(ssTx.str()).c_str()); - Q_EMIT message(tr("PSBT copied"), "Copied to clipboard", CClientUIInterface::MSG_INFORMATION); + Q_EMIT message(tr("PSBT copied"), tr("Copied to clipboard", "Fee-bump PSBT saved"), CClientUIInterface::MSG_INFORMATION); return true; } -- cgit v1.2.3 From 170f3126f220f9ffe3db471e0024a23dede3f90b Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 21:51:50 +0000 Subject: GUI: Use translated external signer errors for messagebox text --- src/qt/sendcoinsdialog.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 33e421d569..51844762af 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -454,12 +454,14 @@ bool SendCoinsDialog::signWithExternalSigner(PartiallySignedTransaction& psbtx, } if (err == TransactionError::EXTERNAL_SIGNER_NOT_FOUND) { //: "External signer" means using devices such as hardware wallets. - QMessageBox::critical(nullptr, tr("External signer not found"), "External signer not found"); + const QString msg = tr("External signer not found"); + QMessageBox::critical(nullptr, msg, msg); return false; } if (err == TransactionError::EXTERNAL_SIGNER_FAILED) { //: "External signer" means using devices such as hardware wallets. - QMessageBox::critical(nullptr, tr("External signer failure"), "External signer failure"); + const QString msg = tr("External signer failure"); + QMessageBox::critical(nullptr, msg, msg); return false; } if (err != TransactionError::OK) { -- cgit v1.2.3 From 1b0407f5f1f5902f67b58c7ada9c4b0c45457244 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 21:58:31 +0000 Subject: Bugfix: GUI: transactiondesc: Translate outlier "own address" and "watch-only" --- src/qt/transactiondesc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index 2ced44241f..057e4a7f55 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -248,9 +248,9 @@ QString TransactionDesc::toHTML(interfaces::Node& node, interfaces::Wallet& wall strHTML += GUIUtil::HtmlEscape(name) + " "; strHTML += GUIUtil::HtmlEscape(EncodeDestination(address)); if(toSelf == ISMINE_SPENDABLE) - strHTML += " (own address)"; + strHTML += " (" + tr("own address") + ")"; else if(toSelf & ISMINE_WATCH_ONLY) - strHTML += " (watch-only)"; + strHTML += " (" + tr("watch-only") + ")"; strHTML += "
"; } } -- cgit v1.2.3 From bd42f5e1cdb0cbd829c8fe1700d036b681f3930d Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 22:15:51 +0000 Subject: Bugfix: GUI: Send/PSBT: Correct virtual size unit and make translatable --- src/qt/sendcoinsdialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 51844762af..04638c5fc2 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -355,7 +355,8 @@ bool SendCoinsDialog::PrepareSendText(QString& question_string, QString& informa question_string.append(""); // append transaction size - question_string.append(" (" + QString::number((double)m_current_transaction->getTransactionSize() / 1000) + " kB): "); + //: When reviewing a newly created PSBT (via Send flow), the transaction fee is shown, with "virtual size" of the transaction displayed for context + question_string.append(" (" + tr("%1 kvB", "PSBT transaction creation").arg((double)m_current_transaction->getTransactionSize() / 1000, 0, 'g', 3) + "): "); // append transaction fee value question_string.append(""); -- cgit v1.2.3 From 6ae8a24009cb006476b3be612a34e4deda30433a Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 May 2022 22:19:03 +0000 Subject: GUI: Send: Make feerates translatable --- src/qt/sendcoinsdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 04638c5fc2..e3fa4058a6 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -828,7 +828,7 @@ void SendCoinsDialog::updateFeeMinimizedLabel() if (ui->radioSmartFee->isChecked()) ui->labelFeeMinimized->setText(ui->labelSmartFee->text()); else { - ui->labelFeeMinimized->setText(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), ui->customFee->value()) + "/kvB"); + ui->labelFeeMinimized->setText(tr("%1/kvB").arg(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), ui->customFee->value()))); } } @@ -863,7 +863,7 @@ void SendCoinsDialog::updateSmartFeeLabel() FeeReason reason; CFeeRate feeRate = CFeeRate(model->wallet().getMinimumFee(1000, *m_coin_control, &returned_target, &reason)); - ui->labelSmartFee->setText(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), feeRate.GetFeePerK()) + "/kvB"); + ui->labelSmartFee->setText(tr("%1/kvB").arg(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), feeRate.GetFeePerK()))); if (reason == FeeReason::FALLBACK) { ui->labelSmartFee2->show(); // (Smart fee not initialized yet. This usually takes a few blocks...) -- cgit v1.2.3 From b7800950913c47bc1a939bd7f99c6b0629aea530 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Fri, 31 Mar 2023 12:22:50 +0100 Subject: qt: Adjust plural forms for translations --- src/qt/locale/bitcoin_en.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index ebce81b198..dc541e886a 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -1429,24 +1429,24 @@ Signing is only possible with addresses of the type 'legacy'. %n GB of space available - - + %n GB of space available + %n GB of space available (of %n GB needed) - - + (of %n GB needed) + (of %n GB needed) (%n GB needed for full chain) - - + (%n GB needed for full chain) + (%n GB needed for full chain) -- cgit v1.2.3 From e414edd8fc88b55a91f446dcc4d55cc4cd6d32e7 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Fri, 31 Mar 2023 12:23:03 +0100 Subject: qt: Update translation source file The diff is produced by running `make -C src translate`. --- src/qt/bitcoinstrings.cpp | 42 +- src/qt/locale/bitcoin_en.ts | 330 +++-- src/qt/locale/bitcoin_en.xlf | 3161 ++++++++++++++++++++++-------------------- 3 files changed, 1901 insertions(+), 1632 deletions(-) (limited to 'src') diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 27aa39a024..71c05768db 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -14,13 +14,22 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "%s corrupt. Try using the wallet tool bitcoin-wallet to salvage or restoring " "a backup."), QT_TRANSLATE_NOOP("bitcoin-core", "" +"%s failed to validate the -assumeutxo snapshot state. This indicates a " +"hardware problem, or a bug in the software, or a bad software modification " +"that allowed an invalid snapshot to be loaded. As a result of this, the node " +"will shut down and stop using any state that was built on the snapshot, " +"resetting the chain height from %d to %d. On the next restart, the node will " +"resume syncing from %d without using any snapshot data. Please report this " +"incident to %s, including how you obtained the snapshot. The invalid " +"snapshot chainstate has been left on disk in case it is helpful in " +"diagnosing the issue that caused this error."), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"%s is set very high! Fees this large could be paid on a single transaction."), +QT_TRANSLATE_NOOP("bitcoin-core", "" "%s request to listen on port %u. This port is considered \"bad\" and thus it " "is unlikely that any peer will connect to it. See doc/p2p-bad-ports.md for " "details and a full list."), QT_TRANSLATE_NOOP("bitcoin-core", "" -"-maxtxfee is set very high! Fees this large could be paid on a single " -"transaction."), -QT_TRANSLATE_NOOP("bitcoin-core", "" "-reindex-chainstate option is not compatible with -blockfilterindex. Please " "temporarily disable blockfilterindex while using -reindex-chainstate, or " "replace -reindex-chainstate with -reindex to fully rebuild all indexes."), @@ -90,8 +99,8 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Failed to rename invalid peers.dat file. Please move or delete it and try " "again."), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -" -"fallbackfee."), +"Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable " +"%s."), QT_TRANSLATE_NOOP("bitcoin-core", "" "File %s already exists. If you are sure this is what you want, move it out " "of the way first."), @@ -99,8 +108,8 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet " "forbids connections to IPv4/IPv6"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Invalid amount for -maxtxfee=: '%s' (must be at least the minrelay " -"fee of %s to prevent stuck transactions)"), +"Invalid amount for %s=: '%s' (must be at least the minrelay fee of " +"%s to prevent stuck transactions)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Invalid or corrupt peers.dat (%s). If you believe this is a bug, please " "report it to %s. As a workaround, you can move the file (%s) out of the way " @@ -186,9 +195,18 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Total length of network version string (%i) exceeds maximum length (%i). " "Reduce the number or size of uacomments."), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Transaction requires one destination of non-0 value, a non-0 feerate, or a " +"pre-selected input"), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"UTXO snapshot failed to validate. Restart to resume normal initial block " +"download, or try loading a different snapshot."), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Unable to replay blocks. You will need to rebuild the database using -" "reindex-chainstate."), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Unconfirmed UTXOs are available, but spending them creates a chain of " +"transactions that will be rejected by the mempool"), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Unexpected legacy entry in descriptor wallet found. Loading wallet %s\n" "\n" "The wallet might have been tampered with or created with malicious intent.\n"), @@ -233,6 +251,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" QT_TRANSLATE_NOOP("bitcoin-core", "%s is set very high!"), QT_TRANSLATE_NOOP("bitcoin-core", "-maxmempool must be at least %d MB"), QT_TRANSLATE_NOOP("bitcoin-core", "A fatal internal error occurred, see debug.log for details"), +QT_TRANSLATE_NOOP("bitcoin-core", "Block verification was interrupted"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -%s address: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot set -forcednsseed to true when setting -dnsseed to false."), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot set -peerblockfilters without -blockfilterindex."), @@ -255,6 +274,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Error loading %s: Wallet corrupted"), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading %s: Wallet requires newer version of %s"), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading block database"), QT_TRANSLATE_NOOP("bitcoin-core", "Error opening block database"), +QT_TRANSLATE_NOOP("bitcoin-core", "Error reading configuration file: %s"), QT_TRANSLATE_NOOP("bitcoin-core", "Error reading from database, shutting down."), QT_TRANSLATE_NOOP("bitcoin-core", "Error reading next record from wallet database"), QT_TRANSLATE_NOOP("bitcoin-core", "Error: Cannot extract destination from the generated scriptpubkey"), @@ -293,10 +313,9 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -i2psam address or hostname: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -onion address or hostname: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address or hostname: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid P2P permission: '%s'"), +QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for %s=: '%s' (must be at least %s)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for %s=: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -%s=: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -discardfee=: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -fallbackfee=: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=: '%s' (must be at least %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid netmask specified in -whitelist: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid port specified in %s: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid pre-selected input %s"), @@ -323,11 +342,14 @@ QT_TRANSLATE_NOOP("bitcoin-core", "SQLiteDatabase: Failed to prepare statement t QT_TRANSLATE_NOOP("bitcoin-core", "SQLiteDatabase: Failed to read database verification error: %s"), QT_TRANSLATE_NOOP("bitcoin-core", "SQLiteDatabase: Unexpected application id. Expected %u, got %u"), QT_TRANSLATE_NOOP("bitcoin-core", "Section [%s] is not recognized."), +QT_TRANSLATE_NOOP("bitcoin-core", "Settings file could not be read"), +QT_TRANSLATE_NOOP("bitcoin-core", "Settings file could not be written"), QT_TRANSLATE_NOOP("bitcoin-core", "Signing transaction failed"), QT_TRANSLATE_NOOP("bitcoin-core", "Specified -walletdir \"%s\" does not exist"), QT_TRANSLATE_NOOP("bitcoin-core", "Specified -walletdir \"%s\" is a relative path"), QT_TRANSLATE_NOOP("bitcoin-core", "Specified -walletdir \"%s\" is not a directory"), QT_TRANSLATE_NOOP("bitcoin-core", "Specified blocks directory \"%s\" does not exist."), +QT_TRANSLATE_NOOP("bitcoin-core", "Specified data directory \"%s\" does not exist."), 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", "The specified config file %s does not exist"), diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index dc541e886a..644ef5afc2 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -329,7 +329,7 @@ Signing is only possible with addresses of the type 'legacy'. BitcoinApplication - + Settings file %1 might be corrupt or invalid. @@ -417,7 +417,7 @@ Signing is only possible with addresses of the type 'legacy'. - + &Minimize @@ -427,7 +427,7 @@ Signing is only possible with addresses of the type 'legacy'. - + Network activity disabled. A substring of the tooltip. @@ -438,7 +438,7 @@ Signing is only possible with addresses of the type 'legacy'. - + Send coins to a Bitcoin address Send coins to a Bitcoin address @@ -533,7 +533,7 @@ Signing is only possible with addresses of the type 'legacy'. - + &File &File @@ -553,7 +553,7 @@ Signing is only possible with addresses of the type 'legacy'. Tabs toolbar - + Syncing Headers (%1%)… @@ -578,7 +578,7 @@ Signing is only possible with addresses of the type 'legacy'. - + Request payments (generates QR codes and bitcoin: URIs) @@ -598,7 +598,7 @@ Signing is only possible with addresses of the type 'legacy'. - + Processed %n block(s) of transaction history. Processed %n block of transaction history. @@ -646,7 +646,7 @@ Signing is only possible with addresses of the type 'legacy'. Up to date - + Ctrl+Q @@ -772,7 +772,7 @@ Signing is only possible with addresses of the type 'legacy'. - + &Window &Window @@ -792,7 +792,7 @@ Signing is only possible with addresses of the type 'legacy'. - + %1 client @@ -1450,7 +1450,12 @@ Signing is only possible with addresses of the type 'legacy'. - + + Choose data directory + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. @@ -2211,7 +2216,7 @@ Signing is only possible with addresses of the type 'legacy'. PSBTOperationsDialog - Dialog + PSBT Operations @@ -2240,7 +2245,7 @@ Signing is only possible with addresses of the type 'legacy'. - + Failed to load transaction: %1 @@ -2498,7 +2503,7 @@ If you are receiving this error you should request the merchant provide a BIP21 Amount - + Enter a Bitcoin address (e.g. %1) @@ -2513,12 +2518,42 @@ If you are receiving this error you should request the merchant provide a BIP21 - - Internal + + IPv4 + network name + Name of IPv4 network in peer info - + + IPv6 + network name + Name of IPv6 network in peer info + + + + + Onion + network name + Name of Tor network in peer info + + + + + I2P + network name + Name of I2P network in peer info + + + + + CJDNS + network name + Name of CJDNS network in peer info + + + + Inbound An inbound connection from a peer. An inbound connection is a connection initiated by a peer. @@ -2660,11 +2695,13 @@ If you are receiving this error you should request the merchant provide a BIP21 + %1 kB + %1 MB @@ -2674,34 +2711,24 @@ If you are receiving this error you should request the merchant provide a BIP21 - + Do you want to reset settings to default values, or to abort without making changes? Explanatory text shown on startup when the settings file cannot be read. Prompts user to make a choice between resetting or aborting. - + A fatal error occurred. Check that settings file is writable, or try running with -nosettings. Explanatory text shown on startup when the settings file could not be written. Prompts user to check that we have the ability to write to the file. Explains that the user has the option of running without a settings file. - - Error: Specified data directory "%1" does not exist. - - - - - Error: Cannot parse configuration file: %1. - - - - + Error: %1 - + %1 didn't yet exit safely… @@ -2909,7 +2936,7 @@ If you are receiving this error you should request the merchant provide a BIP21 - + Select a peer to view detailed information. @@ -3142,7 +3169,7 @@ If you are receiving this error you should request the merchant provide a BIP21 - + In: @@ -3314,12 +3341,12 @@ If you are receiving this error you should request the merchant provide a BIP21 - + Executing command without any wallet - + Ctrl+I @@ -3339,12 +3366,12 @@ If you are receiving this error you should request the merchant provide a BIP21 - + Executing command using "%1" wallet - + Welcome to the %1 RPC console. Use up and down arrows to navigate history, and %2 to clear screen. Use %3 and %4 to increase or decrease the font size. @@ -3356,7 +3383,7 @@ For more information on using this console, type %6. - + Executing… A console message indicating an entered command is currently being executed. @@ -3491,7 +3518,47 @@ For more information on using this console, type %6. - + + Base58 (Legacy) + + + + + Not recommended due to higher fees and less protection against typos. + + + + + Base58 (P2SH-SegWit) + + + + + Generates an address compatible with older wallets. + + + + + Bech32 (SegWit) + + + + + Generates a native segwit address (BIP-173). Some old wallets don't support it. + + + + + Bech32m (Taproot) + + + + + Bech32m (BIP-350) is an upgrade to Bech32, wallet support is still limited. + + + + Could not unlock wallet. @@ -3644,7 +3711,7 @@ For more information on using this console, type %6. SendCoinsDialog - + Send Coins Send Coins @@ -3831,7 +3898,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 S&end - + Copy quantity @@ -3913,12 +3980,12 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + To review recipient list click "Show Details…" - + Sign failed @@ -3929,13 +3996,13 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + External signer failure "External signer" means using devices such as hardware wallets. - + Save Transaction Data @@ -3946,17 +4013,18 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + PSBT saved + Popup message when a PSBT has been saved to a file - + External balance: - + or @@ -3966,7 +4034,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + Please, review your transaction proposal. This will produce a Partially Signed Bitcoin Transaction (PSBT) which you can save or copy and then sign with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet. Text to inform a user attempting to create a transaction of their current options. At this stage, a user can only create a PSBT. This string is displayed when private keys are disabled and an external signer is not available. @@ -3995,7 +4063,14 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + + %1 kvB + PSBT transaction creation + When reviewing a newly created PSBT (via Send flow), the transaction fee is shown, with "virtual size" of the transaction displayed for context + + + + Not signalling Replace-By-Fee, BIP-125. @@ -4005,12 +4080,29 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + + Unsigned Transaction + PSBT copied + Caption of "PSBT has been copied" messagebox + + + + + The PSBT has been copied to the clipboard. You can also save it. + + + + + PSBT saved to disk + + + + Confirm send coins - + Watch-only balance: @@ -4049,8 +4141,14 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 A fee higher than %1 is considered an absurdly high fee. + + + + %1/kvB + + - + Estimated to begin confirmation within %n block(s). Estimated to begin confirmation within %n block. @@ -4493,17 +4591,19 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 + own address - + + watch-only - + label @@ -4967,7 +5067,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + Range: @@ -5122,6 +5222,12 @@ Go to File > Open Wallet to load a wallet. PSBT copied + + + Copied to clipboard + Fee-bump PSBT saved + + Can't sign transaction. @@ -5156,7 +5262,7 @@ Go to File > Open Wallet to load a wallet. Export the data in the current tab to a file - + Backup Wallet @@ -5205,17 +5311,12 @@ Go to File > Open Wallet to load a wallet. - + %s request to listen on port %u. This port is considered "bad" and thus it is unlikely that any peer will connect to it. See doc/p2p-bad-ports.md for details and a full list. - - -maxtxfee is set very high! Fees this large could be paid on a single transaction. - - - - + Cannot downgrade wallet from version %i to version %i. Wallet version unchanged. @@ -5280,22 +5381,12 @@ Go to File > Open Wallet to load a wallet. - - Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee. - - - - + File %s already exists. If you are sure this is what you want, move it out of the way first. - - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - - - - + Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start. @@ -5395,12 +5486,12 @@ Go to File > Open Wallet to load a wallet. - + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. - + Unknown wallet file format "%s" provided. Please provide one of "bdb" or "sqlite". @@ -5455,7 +5546,7 @@ Go to File > Open Wallet to load a wallet. - + Cannot resolve -%s address: '%s' @@ -5475,12 +5566,22 @@ Go to File > Open Wallet to load a wallet. - + The -txindex upgrade started by a previous version cannot be completed. Restart with the previous version or run a full -reindex. - + + %s failed to validate the -assumeutxo snapshot state. This indicates a hardware problem, or a bug in the software, or a bad software modification that allowed an invalid snapshot to be loaded. As a result of this, the node will shut down and stop using any state that was built on the snapshot, resetting the chain height from %d to %d. On the next restart, the node will resume syncing from %d without using any snapshot data. Please report this incident to %s, including how you obtained the snapshot. The invalid snapshot chainstate has been left on disk in case it is helpful in diagnosing the issue that caused this error. + + + + + %s is set very high! Fees this large could be paid on a single transaction. + + + + -reindex-chainstate option is not compatible with -blockfilterindex. Please temporarily disable blockfilterindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes. @@ -5525,12 +5626,22 @@ Go to File > Open Wallet to load a wallet. - + + Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable %s. + + + + Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet forbids connections to IPv4/IPv6 - + + Invalid amount for %s=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + Outbound connections restricted to CJDNS (-onlynet=cjdns) but -cjdnsreachable is not provided @@ -5560,7 +5671,22 @@ Go to File > Open Wallet to load a wallet. - + + Transaction requires one destination of non-0 value, a non-0 feerate, or a pre-selected input + + + + + UTXO snapshot failed to validate. Restart to resume normal initial block download, or try loading a different snapshot. + + + + + Unconfirmed UTXOs are available, but spending them creates a chain of transactions that will be rejected by the mempool + + + + Unexpected legacy entry in descriptor wallet found. Loading wallet %s The wallet might have been tampered with or created with malicious intent. @@ -5594,7 +5720,12 @@ Unable to restore backup of wallet. - + + Block verification was interrupted + + + + Config setting for %s only applied on %s network when in [%s] section. @@ -5683,6 +5814,11 @@ Unable to restore backup of wallet. Error opening block database + + + Error reading configuration file: %s + + Error reading from database, shutting down. @@ -5875,22 +6011,17 @@ Unable to restore backup of wallet. - Invalid amount for -%s=<amount>: '%s' - - - - - Invalid amount for -discardfee=<amount>: '%s' + Invalid amount for %s=<amount>: '%s' (must be at least %s) - Invalid amount for -fallbackfee=<amount>: '%s' + Invalid amount for %s=<amount>: '%s' - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Invalid amount for -%s=<amount>: '%s' @@ -6024,7 +6155,7 @@ Unable to restore backup of wallet. - + Signing transaction failed @@ -6048,6 +6179,11 @@ Unable to restore backup of wallet. Specified blocks directory "%s" does not exist. + + + Specified data directory "%s" does not exist. + + Starting network threads… @@ -6234,12 +6370,12 @@ Unable to restore backup of wallet. - + Settings file could not be read - + Settings file could not be written diff --git a/src/qt/locale/bitcoin_en.xlf b/src/qt/locale/bitcoin_en.xlf index 4920a08d72..d816cea7c4 100644 --- a/src/qt/locale/bitcoin_en.xlf +++ b/src/qt/locale/bitcoin_en.xlf @@ -281,609 +281,591 @@ Signing is only possible with addresses of the type 'legacy'. Settings file %1 might be corrupt or invalid. - 283 + 267 Runaway exception - 461 + 445 A fatal error occurred. %1 can no longer continue safely and will quit. - 462 + 446 Internal error - 471 + 455 An internal error occurred. %1 will attempt to continue safely. This is an unexpected bug which can be reported as described below. - 472 + 456 Do you want to reset settings to default values, or to abort without making changes? - 184 + 175 Explanatory text shown on startup when the settings file cannot be read. Prompts user to make a choice between resetting or aborting. A fatal error occurred. Check that settings file is writable, or try running with -nosettings. - 208 + 195 Explanatory text shown on startup when the settings file could not be written. Prompts user to check that we have the ability to write to the file. Explains that the user has the option of running without a settings file. - Error: Specified data directory "%1" does not exist. - 594 - - - Error: Cannot parse configuration file: %1. - 603 - - Error: %1 - 617 + 589 - + %1 didn't yet exit safely… - 691 - - - - - Settings file could not be read - 177 - - - Settings file could not be written - 200 + 660 - + &Overview 253 - + Show general overview of wallet 254 - + &Transactions 274 - + Browse transaction history 275 - + E&xit 294 - + Quit application 295 - + &About %1 298 - + Show information about %1 299 - + About &Qt 302 - + Show information about Qt 303 - + Modify configuration options for %1 306 - + Create a new wallet 350 - + &Minimize - 510 + 511 - + Wallet: - 589 + 590 - + Network activity disabled. - 984 + 997 A substring of the tooltip. - + Proxy is <b>enabled</b>: %1 - 1420 + 1433 - + Send coins to a Bitcoin address 261 - + Backup wallet to another location 314 - + Change the passphrase used for wallet encryption 316 - + &Send 260 - + &Receive 267 - + &Options… 305 - + &Encrypt Wallet… 310 - + Encrypt the private keys that belong to your wallet 311 - + &Backup Wallet… 313 - + &Change Passphrase… 315 - + Sign &message… 317 - + Sign messages with your Bitcoin addresses to prove you own them 318 - + &Verify message… 319 - + Verify messages to ensure they were signed with specified Bitcoin addresses 320 - + &Load PSBT from file… 321 - + Open &URI… 337 - + Close Wallet… 345 - + Create Wallet… 348 - + Close All Wallets… 358 - + &File - 477 + 478 - + &Settings - 497 + 498 - + &Help - 558 + 559 - + Tabs toolbar - 569 + 570 - + Syncing Headers (%1%)… - 1028 + 1041 - + Synchronizing with network… - 1086 + 1099 - + Indexing blocks on disk… - 1091 + 1104 - + Processing blocks on disk… - 1093 + 1106 - + Connecting to peers… - 1100 + 1113 - + Request payments (generates QR codes and bitcoin: URIs) 268 - + Show the list of used sending addresses and labels 333 - + Show the list of used receiving addresses and labels 335 - + &Command-line options 361 - 1109 - + 1122 + Processed %n block(s) of transaction history. - + Processed %n block(s) of transaction history. - + %1 behind - 1132 + 1145 - + Catching up… - 1137 + 1150 - + Last received block was generated %1 ago. - 1156 + 1169 - + Transactions after this will not yet be visible. - 1158 + 1171 - + Error - 1183 + 1196 - + Warning - 1187 + 1200 - + Information - 1191 + 1204 - + Up to date - 1113 + 1126 - + Ctrl+Q 296 - + Load Partially Signed Bitcoin Transaction 322 - + Load PSBT from &clipboard… 323 - + Load Partially Signed Bitcoin Transaction from clipboard 324 - + Node window 326 - + Open node debugging and diagnostic console 327 - + &Sending addresses 332 - + &Receiving addresses 334 - + Open a bitcoin: URI 338 - + Open Wallet 340 - + Open a wallet 342 - + Close wallet 346 - + Restore Wallet… 353 Name of the menu item that restores wallet from a backup file. - + Restore a wallet from a backup file 356 Status tip for Restore Wallet menu item - + Close all wallets 359 - + Show the %1 help message to get a list with possible Bitcoin command-line options 363 - + &Mask values 365 - + Mask the values in the Overview tab 367 - + default wallet 398 - + No wallets available 418 - + Wallet Data 424 Name of the wallet data file format. - + Load Wallet Backup 427 The title for Restore Wallet File Windows - + Restore Wallet 435 Title of pop-up window shown when the user is attempting to restore a wallet. - + Wallet Name 437 Label of the input field where the name of the wallet is entered. - + &Window - 508 + 509 - + Ctrl+M - 511 + 512 - + Zoom - 520 + 521 - + Main Window - 538 + 539 - + %1 client - 798 + 811 - + &Hide - 863 + 876 - + S&how - 864 + 877 - 981 + 994 A substring of the tooltip. - + %n active connection(s) to Bitcoin network. - + %n active connection(s) to Bitcoin network. - + Click for more actions. - 991 + 1004 A substring of the tooltip. "More actions" are available via the context menu. - + Show Peers tab - 1008 + 1021 A context menu item. The "Peers tab" is an element of the "Node window". - + Disable network activity - 1016 + 1029 A context menu item. - + Enable network activity - 1018 + 1031 A context menu item. The network activity was disabled previously. - + Pre-syncing Headers (%1%)… - 1035 + 1048 - + Error: %1 - 1184 + 1197 - + Warning: %1 - 1188 + 1201 - + Date: %1 - 1296 + 1309 - + Amount: %1 - 1297 + 1310 - + Wallet: %1 - 1299 + 1312 - + Type: %1 - 1301 + 1314 - + Label: %1 - 1303 + 1316 - + Address: %1 - 1305 + 1318 - + Sent transaction - 1306 + 1319 - + Incoming transaction - 1306 + 1319 - + HD key generation is <b>enabled</b> - 1358 + 1371 - + HD key generation is <b>disabled</b> - 1358 + 1371 - + Private key <b>disabled</b> - 1358 + 1371 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - 1381 + 1394 - + Wallet is <b>encrypted</b> and currently <b>locked</b> - 1389 + 1402 - + Original message: - 1508 + 1521 - + Unit to show amounts in. Click to select another unit. - 1547 + 1560 - + Coin Selection 14 - + Quantity: 48 - + Bytes: 77 - + Amount: 122 - + Fee: 202 - + Dust: 154 - + After Fee: 247 - + Change: 279 - + (un)select all 335 - + Tree mode 351 - + List mode 364 - + Amount 420 - + Received with label 425 - + Received with address 430 - + Date 435 - + Confirmations 440 - + Confirmed 443 @@ -891,88 +873,88 @@ Signing is only possible with addresses of the type 'legacy'. - + Copy amount 69 - + &Copy address 58 - + Copy &label 59 - + Copy &amount 60 - + Copy transaction &ID and output index 61 - + L&ock unspent 63 - + &Unlock unspent 64 - + Copy quantity 68 - + Copy fee 70 - + Copy after fee 71 - + Copy bytes 72 - + Copy dust 73 - + Copy change 74 - + (%1 locked) 380 - + yes 534 - + no 534 - + This label turns red if any recipient receives an amount smaller than the current dust threshold. 548 - + Can vary +/- %1 satoshi(s) per input. 553 - + (no label) 600 654 - + change from %1 (%2) 647 - + (change) 648 @@ -980,114 +962,114 @@ Signing is only possible with addresses of the type 'legacy'. - + Create Wallet 244 Title of window indicating the progress of creation of a new wallet. - + Creating Wallet <b>%1</b>… 247 Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created. - + Create wallet failed 280 - + Create wallet warning 282 - + Can't list signers 298 - + Too many external signers found 301 - + Load Wallets 375 Title of progress window which is displayed when wallets are being loaded. - + Loading wallets… 378 Descriptive text of the load wallets progress window which indicates to the user that wallets are currently being loaded. - + Open wallet failed 332 - + Open wallet warning 334 - + default wallet 344 - + Open Wallet 348 Title of window indicating the progress of opening of a wallet. - + Opening Wallet <b>%1</b>… 351 Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened. - + Restore Wallet 400 Title of progress window which is displayed when wallets are being restored. - + Restoring Wallet <b>%1</b>… 403 Descriptive text of the restore wallets progress window which indicates to the user that wallets are currently being restored. - + Restore wallet failed 422 Title of message box which is displayed when the wallet could not be restored. - + Restore wallet warning 425 Title of message box which is displayed when the wallet is restored with some warning. - + Restore wallet message 428 Title of message box which is displayed when the wallet is successfully restored. - + Close wallet 84 - + Are you sure you wish to close the wallet <i>%1</i>? 85 - + Closing the wallet for too long can result in having to resync the entire chain if pruning is enabled. 86 - + Close all wallets 99 - + Are you sure you wish to close all wallets? 100 @@ -1095,59 +1077,59 @@ Signing is only possible with addresses of the type 'legacy'. - + Create Wallet 14 - + Wallet Name 25 - + Wallet 38 - + Encrypt the wallet. The wallet will be encrypted with a passphrase of your choice. 47 - + Encrypt Wallet 50 - + Advanced Options 76 - + Disable private keys for this wallet. Wallets with private keys disabled will have no private keys and cannot have an HD seed or imported private keys. This is ideal for watch-only wallets. 85 - + Disable Private Keys 88 - + Make a blank wallet. Blank wallets do not initially have private keys or scripts. Private keys and addresses can be imported, or an HD seed can be set, at a later time. 95 - + Make Blank Wallet 98 - + Use descriptors for scriptPubKey management 105 - + Descriptor Wallet 108 - + Use an external signing device such as a hardware wallet. Configure the external signer script in wallet preferences first. 118 - + External signer 121 @@ -1155,15 +1137,15 @@ Signing is only possible with addresses of the type 'legacy'. - + Create 22 - + Compiled without sqlite support (required for descriptor wallets) 90 - + Compiled without external signing support (required for external signing) 104 "External signing" means using devices such as hardware wallets. @@ -1172,23 +1154,23 @@ Signing is only possible with addresses of the type 'legacy'. - + Edit Address 14 - + &Label 25 - + The label associated with this address list entry 35 - + The address associated with this address list entry. This can only be modified for sending addresses. 52 - + &Address 42 @@ -1196,35 +1178,35 @@ Signing is only possible with addresses of the type 'legacy'. - + New sending address 27 - + Edit receiving address 30 - + Edit sending address 34 - + The entered address "%1" is not a valid Bitcoin address. 111 - + Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address. 144 - + The entered address "%1" is already in the address book with label "%2". 149 - + Could not unlock wallet. 121 - + New key generation failed. 126 @@ -1232,90 +1214,94 @@ Signing is only possible with addresses of the type 'legacy'. - + A new data directory will be created. 73 - + name 95 - + Directory already exists. Add %1 if you intend to create a new directory here. 97 - + Path already exists, and is not a directory. 100 - + Cannot create data directory here. 107 - + Bitcoin 137 299 - + %n GB of space available - + %n GB of space available 301 - + (of %n GB needed) - + (of %n GB needed) 304 - + (%n GB needed for full chain) - + (%n GB needed for full chain) - + + Choose data directory + 321 + + At least %1 GB of data will be stored in this directory, and it will grow over time. 376 - + Approximately %1 GB of data will be stored in this directory. 379 388 Explanatory text on the capability of the current prune target. - + (sufficient to restore backups %n day(s) old) - + (sufficient to restore backups %n day(s) old) - + %1 will download and store a copy of the Bitcoin block chain. 390 - + The wallet will also be stored in this directory. 392 - + Error: Specified data directory "%1" cannot be created. 248 - + Error 278 @@ -1323,25 +1309,25 @@ Signing is only possible with addresses of the type 'legacy'. - + version 38 - + About %1 42 - + Command-line options 60 - + %1 is shutting down… 145 - + Do not shut down the computer until this window disappears. 146 @@ -1349,47 +1335,47 @@ Signing is only possible with addresses of the type 'legacy'. - + Welcome 14 - + Welcome to %1. 23 - + As this is the first time the program is launched, you can choose where %1 will store its data. 49 - + Limit block chain storage to 238 - + Reverting this setting requires re-downloading the entire blockchain. It is faster to download the full chain first and prune it later. Disables some advanced features. 241 - + GB 248 - + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. 216 - + When you click OK, %1 will begin to download and process the full %4 block chain (%2 GB) starting with the earliest transactions in %3 when %4 initially launched. 206 - + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. 226 - + Use the default data directory 66 - + Use a custom data directory: 73 @@ -1397,54 +1383,54 @@ Signing is only possible with addresses of the type 'legacy'. - + Form 14 - + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below. 133 - + Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network. 152 - + Number of blocks left 215 - + Unknown… 222 248 ../modaloverlay.cpp152 - + calculating… 292 312 - + Last block time 235 - + Progress 261 - + Progress increase per hour 285 - + Estimated time left until synced 305 - + Hide 342 - + Esc 345 @@ -1452,21 +1438,21 @@ Signing is only possible with addresses of the type 'legacy'. - + %1 is currently syncing. It will download headers and blocks from peers and validate them until reaching the tip of the block chain. 31 - + Unknown. Syncing Headers (%1, %2%)… 158 - + Unknown. Pre-syncing Headers (%1, %2%)… 163 - + unknown 123 @@ -1474,15 +1460,15 @@ Signing is only possible with addresses of the type 'legacy'. - + Open bitcoin URI 14 - + URI: 22 - + Paste address from clipboard 36 Tooltip text for button that allows you to paste an address that is in your clipboard. @@ -1491,310 +1477,310 @@ Signing is only possible with addresses of the type 'legacy'. - + Options 14 - + &Main 27 - + Automatically start %1 after logging in to the system. 33 - + &Start %1 on system login 36 - + Enabling pruning significantly reduces the disk space required to store transactions. All blocks are still fully validated. Reverting this setting requires re-downloading the entire blockchain. 58 - + Size of &database cache 111 - + Number of script &verification threads 157 - + Full path to a %1 compatible script (e.g. C:\Downloads\hwi.exe or /Users/you/Downloads/hwi.py). Beware: malware can steal your coins! 289 - + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) 388 575 - + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. 457 480 503 - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. 672 - + Options set in this dialog are overridden by the command line: 899 - + Open the %1 configuration file from the working directory. 944 - + Open Configuration File 947 - + Reset all client options to default. 957 - + &Reset Options 960 - + &Network 315 - + Prune &block storage to 61 - + GB 71 - + Reverting this setting requires re-downloading the entire blockchain. 96 - + Maximum database cache size. A larger cache can contribute to faster sync, after which the benefit is less pronounced for most use cases. Lowering the cache size will reduce memory usage. Unused mempool memory is shared for this cache. 108 Tooltip text for Options window setting that sets the size of the database cache. Explains the corresponding effects of increasing/decreasing this value. - + MiB 127 - + Set the number of script verification threads. Negative values correspond to the number of cores you want to leave free to the system. 154 Tooltip text for Options window setting that sets the number of script verification threads. Explains that negative values mean to leave these many cores free to the system. - + (0 = auto, <0 = leave that many cores free) 170 - + This allows you or a third party tool to communicate with the node through command-line and JSON-RPC commands. 192 Tooltip text for Options window setting that enables the RPC server. - + Enable R&PC server 195 An Options window setting to enable the RPC server. - + W&allet 216 - + Whether to set subtract fee from amount as default or not. 222 Tooltip text for Options window setting that sets subtracting the fee from a sending amount as default. - + Subtract &fee from amount by default 225 An Options window setting to set subtracting the fee from a sending amount as default. - + Expert 232 - + Enable coin &control features 241 - + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. 248 - + &Spend unconfirmed change 251 - + Enable &PSBT controls 258 An options window setting to enable PSBT controls. - + Whether to show PSBT controls. 261 Tooltip text for options window setting that enables PSBT controls. - + External Signer (e.g. hardware wallet) 271 - + &External signer script path 279 - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. 321 - + Map port using &UPnP 324 - + Automatically open the Bitcoin client port on the router. This only works when your router supports NAT-PMP and it is enabled. The external port could be random. 331 - + Map port using NA&T-PMP 334 - + Accept connections from outside. 341 - + Allow incomin&g connections 344 - + Connect to the Bitcoin network through a SOCKS5 proxy. 351 - + &Connect through SOCKS5 proxy (default proxy): 354 - + Proxy &IP: 363 550 - + &Port: 395 582 - + Port of the proxy (e.g. 9050) 420 607 - + Used for reaching peers via: 444 - + IPv4 467 - + IPv6 490 - + Tor 513 - + &Window 643 - + Show the icon in the system tray. 649 - + &Show tray icon 652 - + Show only a tray icon after minimizing the window. 662 - + &Minimize to the tray instead of the taskbar 665 - + M&inimize on close 675 - + &Display 696 - + User Interface &language: 704 - + The user interface language can be set here. This setting will take effect after restarting %1. 717 - + &Unit to show amounts in: 728 - + Choose the default subdivision unit to show in the interface and when sending coins. 741 - + Third-party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. 752 765 - + &Third-party transaction URLs 755 - + Whether to show coin control features or not. 238 - + Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor onion services. 538 - + Use separate SOCKS&5 proxy to reach peers via Tor onion services: 541 - + Monospaced font in the Overview tab: 777 - + embedded "%1" 785 - + closest matching "%1" 834 - + &OK 1040 - + &Cancel 1053 @@ -1802,71 +1788,71 @@ Signing is only possible with addresses of the type 'legacy'. - + Compiled without external signing support (required for external signing) 96 "External signing" means using devices such as hardware wallets. - + default 108 - + none 194 - + Confirm options reset 301 Window title text of pop-up window shown when the user has chosen to reset options. - + Client restart required to activate changes. 292 371 Text explaining that the settings changed will not come into effect until the client is restarted. - + Current settings will be backed up at "%1". 296 Text explaining to the user that the client's current settings will be backed up at a specific location. %1 is a stand-in argument for the backup location's path. - + Client will be shut down. Do you want to proceed? 299 Text asking the user to confirm if they would like to proceed with a client shutdown. - + Configuration options 319 Window title text of pop-up box that allows opening up of configuration file. - + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. 322 Explanatory text about the priority order of instructions considered by client. The order from high to low being: command-line, configuration file, GUI settings. - + Continue 325 - + Cancel 326 - + Error 335 - + The configuration file could not be opened. 335 - + This change would require a client restart. 375 - + The supplied proxy address is invalid. 403 @@ -1874,7 +1860,7 @@ Signing is only possible with addresses of the type 'legacy'. - + Could not read setting "%1", %2. 198 @@ -1882,76 +1868,76 @@ Signing is only possible with addresses of the type 'legacy'. - + Form 14 - + The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. 76 411 - + Watch-only: 284 - + Available: 294 - + Your current spendable balance 304 - + Pending: 339 - + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance 139 - + Immature: 239 - + Mined balance that has not yet matured 210 - + Balances 60 - + Total: 200 - + Your current total balance 249 - + Your current balance in watch-only addresses 323 - + Spendable: 346 - + Recent transactions 395 - + Unconfirmed transactions to watch-only addresses 120 - + Mined balance in watch-only addresses that has not yet matured 158 - + Current total balance in watch-only addresses 268 @@ -1959,7 +1945,7 @@ Signing is only possible with addresses of the type 'legacy'. - + Privacy mode activated for the Overview tab. To unmask the values, uncheck Settings->Mask values. 184 @@ -1967,27 +1953,27 @@ Signing is only possible with addresses of the type 'legacy'. - - Dialog + + PSBT Operations 14 - + Sign Tx 86 - + Broadcast Tx 102 - + Copy to Clipboard 122 - + Save… 129 - + Close 136 @@ -1995,146 +1981,146 @@ Signing is only possible with addresses of the type 'legacy'. - + Failed to load transaction: %1 - 61 + 60 - + Failed to sign transaction: %1 - 86 + 85 - + Cannot sign inputs while wallet is locked. - 94 + 93 - + Could not sign any more inputs. - 96 + 95 - + Signed %1 inputs, but more signatures are still required. - 98 + 97 - + Signed transaction successfully. Transaction is ready to broadcast. - 101 + 100 - + Unknown error processing transaction. - 113 + 112 - + Transaction broadcast successfully! Transaction ID: %1 - 123 + 122 - + Transaction broadcast failed: %1 - 126 + 125 - + PSBT copied to clipboard. - 135 + 134 - + Save Transaction Data - 158 + 157 - + Partially Signed Transaction (Binary) - 160 + 159 Expanded name of the binary PSBT file format. See: BIP 174. - + PSBT saved to disk. - 167 + 166 - + * Sends %1 to %2 - 183 + 182 - + Unable to calculate transaction fee or total transaction amount. - 193 + 192 - + Pays transaction fee: - 195 + 194 - + Total Amount - 207 + 206 - + or - 210 + 209 - + Transaction has %1 unsigned inputs. - 216 + 215 - + Transaction is missing some information about inputs. - 262 + 261 - + Transaction still needs signature(s). - 266 + 265 - + (But no wallet is loaded.) - 269 + 268 - + (But this wallet cannot sign transactions.) - 272 + 271 - + (But this wallet does not have the right keys.) - 275 + 274 - + Transaction is fully signed and ready for broadcast. - 283 + 282 - + Transaction status is unknown. - 287 + 286 - + Payment request error 149 - + Cannot start bitcoin: click-to-pay handler 150 - + URI handling 198 214 220 227 - + 'bitcoin://' is not a valid URI. Use 'bitcoin:' instead. 198 - + Cannot process payment request because BIP70 is not supported. Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored. If you are receiving this error you should request the merchant provide a BIP21 compatible URI. 215 238 - + URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. 228 - + Payment request file handling 237 @@ -2142,52 +2128,52 @@ If you are receiving this error you should request the merchant provide a BIP21 - + User Agent 112 Title of Peers Table column which contains the peer's User Agent string. - + Ping 103 Title of Peers Table column which indicates the current latency of the connection with the peer. - + Peer 85 Title of Peers Table column which contains a unique number used to identify a connection. - + Age 88 Title of Peers Table column which indicates the duration (length of time) since the peer connection started. - + Direction 94 Title of Peers Table column which indicates the direction the peer connection was initiated from. - + Sent 106 Title of Peers Table column which indicates the total amount of network information we have sent to the peer. - + Received 109 Title of Peers Table column which indicates the total amount of network information we have received from the peer. - + Address 91 Title of Peers Table column which contains the IP/Onion/I2P address of the connected peer. - + Type 97 Title of Peers Table column which describes the type of peer connection. The "type" describes why the connection exists. - + Network 100 Title of Peers Table column which states the network the peer connected through. @@ -2196,12 +2182,12 @@ If you are receiving this error you should request the merchant provide a BIP21 - + Inbound 77 An Inbound Connection from a Peer. - + Outbound 79 An Outbound Connection to a Peer. @@ -2210,7 +2196,7 @@ If you are receiving this error you should request the merchant provide a BIP21 - + Amount 197 @@ -2218,194 +2204,222 @@ If you are receiving this error you should request the merchant provide a BIP21 - + Enter a Bitcoin address (e.g. %1) - 129 + 130 - + Ctrl+W - 417 + 418 - + Unroutable - 674 + 675 + + + IPv4 + 677 + network name + Name of IPv4 network in peer info + + + IPv6 + 679 + network name + Name of IPv6 network in peer info + + + Onion + 681 + network name + Name of Tor network in peer info - Internal - 680 + I2P + 683 + network name + Name of I2P network in peer info + CJDNS + 685 + network name + Name of CJDNS network in peer info + + Inbound - 693 + 699 An inbound connection from a peer. An inbound connection is a connection initiated by a peer. - + Outbound - 696 + 702 An outbound connection to a peer. An outbound connection is a connection initiated by us. - + Full Relay - 701 + 707 Peer connection type that relays all network information. - + Block Relay - 704 + 710 Peer connection type that relays network information about blocks and not transactions or addresses. - + Manual - 706 + 712 Peer connection type established manually through one of several methods. - + Feeler - 708 + 714 Short-lived peer connection type that tests the aliveness of known addresses. - + Address Fetch - 710 + 716 Short-lived peer connection type that solicits known addresses from a peer. - - %1 d - 723 - 735 - - %1 h - 724 - 736 + %1 d + 729 + 741 - %1 m - 725 - 737 + %1 h + 730 + 742 - %1 s - 727 - 738 - 764 + %1 m + 731 + 743 - None - 752 + %1 s + 733 + 744 + 770 - N/A + None 758 + N/A + 764 + + %1 ms - 759 + 765 - 777 - + 783 + %n second(s) - + %n second(s) - 781 - + 787 + %n minute(s) - + %n minute(s) - 785 - + 791 + %n hour(s) - + %n hour(s) - 789 - + 795 + %n day(s) - + %n day(s) - 793 799 - + 805 + %n week(s) - + %n week(s) - + %1 and %2 - 799 + 805 - 799 - + 805 + %n year(s) - + %n year(s) - + %1 B - 807 + 813 - + %1 kB - 809 + 815 + ../rpcconsole.cpp988 - + %1 MB - 811 + 817 + ../rpcconsole.cpp990 - + %1 GB - 813 + 819 - + &Save Image… 30 - + &Copy Image 31 - + Resulting URI too long, try to reduce the text for label / message. 42 - + Error encoding URI into QR Code. 49 - + QR code support not available. 90 - + Save QR Code 120 - + PNG Image 123 Expanded name of the PNG file format. See: https://en.wikipedia.org/wiki/Portable_Network_Graphics. @@ -2414,7 +2428,7 @@ If you are receiving this error you should request the merchant provide a BIP21 - + N/A 75 101 @@ -2455,291 +2469,291 @@ If you are receiving this error you should request the merchant provide a BIP21 1662 ../rpcconsole.h143 - + Client version 65 - + &Information 43 - + General 58 - + Datadir 114 - + To specify a non-default location of the data directory use the '%1' option. 124 - + Blocksdir 143 - + To specify a non-default location of the blocks directory use the '%1' option. 153 - + Startup time 172 - + Network 201 1093 - + Name 208 - + Number of connections 231 - + Block chain 260 - + Memory Pool 319 - + Current number of transactions 326 - + Memory usage 349 - + Wallet: 443 - + (none) 454 - + &Reset 665 - + Received 745 1453 - + Sent 825 1430 - + &Peers 866 - + Banned peers 942 - + Select a peer to view detailed information. 1010 ../rpcconsole.cpp1155 - + Version 1116 - + Whether we relay transactions to this peer. 1188 - + Transaction Relay 1191 - + Starting Block 1240 - + Synced Headers 1263 - + Synced Blocks 1286 - + Last Transaction 1361 - + The mapped Autonomous System used for diversifying peer selection. 1571 - + Mapped AS 1574 - + Whether we relay addresses to this peer. 1597 Tooltip text for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No). - + Address Relay 1600 Text title for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No). - + The total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting). 1623 Tooltip text for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting). - + The total number of addresses received from this peer that were dropped (not processed) due to rate-limiting. 1649 Tooltip text for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting. - + Addresses Processed 1626 Text title for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting). - + Addresses Rate-Limited 1652 Text title for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting. - + User Agent 88 1139 - + Node window 14 - + Current block height 267 - + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. 397 - + Decrease font size 475 - + Increase font size 495 - + Permissions 1041 - + The direction and type of peer connection: %1 1064 - + Direction/Type 1067 - + The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS. 1090 - + Services 1162 - + High bandwidth BIP152 compact block relay: %1 1214 - + High Bandwidth 1217 - + Connection Time 1309 - + Elapsed time since a novel block passing initial validity checks was received from this peer. 1332 - + Last Block 1335 - + Elapsed time since a novel transaction accepted into our mempool was received from this peer. 1358 Tooltip text for the Last Transaction field in the peer details area. - + Last Send 1384 - + Last Receive 1407 - + Ping Time 1476 - + The duration of a currently outstanding ping. 1499 - + Ping Wait 1502 - + Min Ping 1525 - + Time Offset 1548 - + Last block time 290 - + &Open 400 - + &Console 426 - + &Network Traffic 613 - + Totals 681 - + Debug log file 390 - + Clear console 515 @@ -2747,139 +2761,139 @@ If you are receiving this error you should request the merchant provide a BIP21 - + In: - 953 + 952 - + Out: - 954 + 953 - + Inbound: initiated by peer - 496 + 495 Explanatory text for an inbound peer connection. - + Outbound Full Relay: default - 500 + 499 Explanatory text for an outbound peer connection that relays all network information. This is the default behavior for outbound connections. - + Outbound Block Relay: does not relay transactions or addresses - 503 + 502 Explanatory text for an outbound peer connection that relays network information about blocks and not transactions or addresses. - + Outbound Manual: added using RPC %1 or %2/%3 configuration options - 508 + 507 Explanatory text for an outbound peer connection that was established manually through one of several methods. The numbered arguments are stand-ins for the methods available to establish manual connections. - + Outbound Feeler: short-lived, for testing addresses - 514 + 513 Explanatory text for a short-lived outbound peer connection that is used to test the aliveness of known addresses. - + Outbound Address Fetch: short-lived, for soliciting addresses - 517 + 516 Explanatory text for a short-lived outbound peer connection that is used to request addresses from a peer. - + we selected the peer for high bandwidth relay - 521 + 520 - + the peer selected us for high bandwidth relay - 522 + 521 - + no high bandwidth relay selected - 523 + 522 - + Ctrl++ - 536 + 535 Main shortcut to increase the RPC console font size. - + Ctrl+= - 538 + 537 Secondary shortcut to increase the RPC console font size. - + Ctrl+- - 542 + 541 Main shortcut to decrease the RPC console font size. - + Ctrl+_ - 544 + 543 Secondary shortcut to decrease the RPC console font size. - + &Copy address - 695 + 694 Context menu action to copy the address of a peer. - + &Disconnect - 699 + 698 - + 1 &hour - 700 + 699 - + 1 d&ay - 701 + 700 - + 1 &week - 702 + 701 - + 1 &year - 703 + 702 - + &Copy IP/Netmask - 729 + 728 Context menu action to copy the IP/Netmask of a banned peer. IP/Netmask is the combination of a peer's IP address and its Netmask. For IP address, see: https://en.wikipedia.org/wiki/IP_address. - + &Unban - 733 + 732 - + Network activity disabled - 957 + 956 - + Executing command without any wallet 1035 - + Ctrl+I - 1355 + 1351 - + Ctrl+T - 1356 + 1352 - + Ctrl+N - 1357 + 1353 - + Ctrl+P - 1358 + 1354 - + Executing command using "%1" wallet 1033 - + Welcome to the %1 RPC console. Use up and down arrows to navigate history, and %2 to clear screen. Use %3 and %4 to increase or decrease the font size. @@ -2887,19 +2901,19 @@ Type %5 for an overview of available commands. For more information on using this console, type %6. %7WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command.%8 - 887 + 886 RPC console welcome message. Placeholders %7 and %8 are style tags for the warning content, and they are not space separated from the rest of the text intentionally. - + Executing… 1043 A console message indicating an entered command is currently being executed. - + (peer: %1) 1161 - + via %1 1163 @@ -2907,31 +2921,31 @@ For more information on using this console, type %6. - + Yes 142 - + No 142 - + To 142 - + From 142 - + Ban for 143 - + Never 185 - + Unknown 143 @@ -2939,72 +2953,72 @@ For more information on using this console, type %6. - + &Amount: 37 - + &Label: 83 - + &Message: 53 - + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. 50 - + An optional label to associate with the new receiving address. 80 - + Use this form to request payments. All fields are <b>optional</b>. 73 - + An optional amount to request. Leave this empty or zero to not request a specific amount. 34 193 - + An optional label to associate with the new receiving address (used by you to identify an invoice). It is also attached to the payment request. 66 - + An optional message that is attached to the payment request and may be displayed to the sender. 96 - + &Create new receiving address 111 - + Clear all fields of the form. 134 - + Clear 137 - + Requested payments history 273 - + Show the selected request (does the same as double clicking an entry) 298 - + Show 301 - + Remove the selected entries from the list 318 - + Remove 321 @@ -3012,31 +3026,63 @@ For more information on using this console, type %6. - + Copy &URI 46 - + &Copy address 47 - + Copy &label 48 - + Copy &message 49 - + Copy &amount 50 - + + Base58 (Legacy) + 96 + + + Not recommended due to higher fees and less protection against typos. + 96 + + + Base58 (P2SH-SegWit) + 97 + + + Generates an address compatible with older wallets. + 97 + + + Bech32 (SegWit) + 98 + + + Generates a native segwit address (BIP-173). Some old wallets don't support it. + 98 + + + Bech32m (Taproot) + 100 + + + Bech32m (BIP-350) is an upgrade to Bech32, wallet support is still limited. + 100 + + Could not unlock wallet. 175 - + Could not generate new %1 address 180 @@ -3044,51 +3090,51 @@ For more information on using this console, type %6. - + Request payment to … 14 - + Address: 90 - + Amount: 119 - + Label: 148 - + Message: 180 - + Wallet: 212 - + Copy &URI 240 - + Copy &Address 250 - + &Verify 260 - + Verify this address on e.g. a hardware wallet screen 263 - + &Save Image… 273 - + Payment information 39 @@ -3096,7 +3142,7 @@ For more information on using this console, type %6. - + Request payment to %1 48 @@ -3104,31 +3150,31 @@ For more information on using this console, type %6. - + Date 32 - + Label 32 - + Message 32 - + (no label) 70 - + (no message) 79 - + (no amount requested) 87 - + Requested 130 @@ -3136,154 +3182,154 @@ For more information on using this console, type %6. - + Send Coins 14 - ../sendcoinsdialog.cpp755 + ../sendcoinsdialog.cpp765 - + Coin Control Features 90 - + automatically selected 120 - + Insufficient funds! 139 - + Quantity: 228 - + Bytes: 263 - + Amount: 311 - + Fee: 391 - + After Fee: 442 - + Change: 474 - + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. 518 - + Custom change address 521 - + Transaction Fee: 727 - + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. 765 - + Warning: Fee estimation is currently not possible. 774 - + per kilobyte 856 - + Hide 803 - + Recommended: 915 - + Custom: 945 - + Send to multiple recipients at once 1160 - + Add &Recipient 1163 - + Clear all fields of the form. 1143 - + Inputs… 110 - + Dust: 343 - + Choose… 741 - + Hide transaction fee settings 800 - + Specify a custom fee per kB (1,000 bytes) of the transaction's virtual size. Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 satoshis per kvB" for a transaction size of 500 virtual bytes (half of 1 kvB) would ultimately yield a fee of only 50 satoshis. 851 - + When there is less transaction volume than space in the blocks, miners as well as relaying nodes may enforce a minimum fee. Paying only this minimum fee is just fine, but be aware that this can result in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. 886 - + A too low fee might result in a never confirming transaction (read the tooltip) 889 - + (Smart fee not initialized yet. This usually takes a few blocks…) 994 - + Confirmation time target: 1020 - + Enable Replace-By-Fee 1078 - + With Replace-By-Fee (BIP-125) you can increase a transaction's fee after it is sent. Without this, a higher fee may be recommended to compensate for increased transaction delay risk. 1081 - + Clear &All 1146 - + Balance: 1201 - + Confirm the send action 1117 - + S&end 1120 @@ -3291,278 +3337,304 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + Copy quantity 95 - + Copy amount 96 - + Copy fee 97 - + Copy after fee 98 - + Copy bytes 99 - + Copy dust 100 - + Copy change 101 - + %1 (%2 blocks) 175 - + Sign on device 205 "device" usually means a hardware wallet. - + Connect your hardware wallet first. 208 - + Set external signer script path in Options -> Wallet 212 "External signer" means using devices such as hardware wallets. - + Cr&eate Unsigned 215 - + Creates a Partially Signed Bitcoin Transaction (PSBT) for use with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet. 216 - + from wallet '%1' 308 - + %1 to '%2' 319 - + %1 to %2 324 - + To review recipient list click "Show Details…" - 390 + 391 - + Sign failed - 450 + 453 - + External signer not found - 455 + 458 "External signer" means using devices such as hardware wallets. - + External signer failure - 460 + 464 "External signer" means using devices such as hardware wallets. - + Save Transaction Data - 426 + 428 - + Partially Signed Transaction (Binary) - 428 + 430 Expanded name of the binary PSBT file format. See: BIP 174. - + PSBT saved - 435 + 438 + Popup message when a PSBT has been saved to a file - + External balance: - 701 + 711 - + or - 386 + 387 - + You can increase the fee later (signals Replace-By-Fee, BIP-125). - 368 + 369 - + Please, review your transaction proposal. This will produce a Partially Signed Bitcoin Transaction (PSBT) which you can save or copy and then sign with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet. 338 Text to inform a user attempting to create a transaction of their current options. At this stage, a user can only create a PSBT. This string is displayed when private keys are disabled and an external signer is not available. - + Do you want to create this transaction? 332 Message displayed when attempting to create a transaction. Cautionary text to prompt the user to verify that the displayed transaction details represent the transaction the user intends to create. - + Please, review your transaction. You can create and send this transaction or create a Partially Signed Bitcoin Transaction (PSBT), which you can save or copy and then sign with, e.g., an offline %1 wallet, or a PSBT-compatible hardware wallet. 343 Text to inform a user attempting to create a transaction of their current options. At this stage, a user can send their transaction or create a PSBT. This string is displayed when both private keys and PSBT controls are enabled. - + Please, review your transaction. 346 Text to prompt a user to review the details of the transaction they are attempting to send. - + Transaction fee 354 - + + %1 kvB + 359 + PSBT transaction creation + When reviewing a newly created PSBT (via Send flow), the transaction fee is shown, with "virtual size" of the transaction displayed for context + + Not signalling Replace-By-Fee, BIP-125. - 370 + 371 - + Total Amount - 383 + 384 - + + Unsigned Transaction + 408 + PSBT copied + Caption of "PSBT has been copied" messagebox + + + The PSBT has been copied to the clipboard. You can also save it. + 409 + + + PSBT saved to disk + 438 + + Confirm send coins - 482 + 487 - + Watch-only balance: - 704 + 714 - + The recipient address is not valid. Please recheck. - 728 + 738 - + The amount to pay must be larger than 0. - 731 + 741 - + The amount exceeds your balance. - 734 + 744 - + The total exceeds your balance when the %1 transaction fee is included. - 737 + 747 - + Duplicate address found: addresses should only be used once each. - 740 + 750 - + Transaction creation failed! - 743 + 753 - + A fee higher than %1 is considered an absurdly high fee. - 747 + 757 + + + %1/kvB + 831 + 866 - 870 - + 880 + Estimated to begin confirmation within %n block(s). - + Estimated to begin confirmation within %n block(s). - + Warning: Invalid Bitcoin address - 971 + 981 - + Warning: Unknown change address - 976 + 986 - + Confirm custom change address - 979 + 989 - + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - 979 + 989 - + (no label) - 1000 + 1010 - + A&mount: 151 - + Pay &To: 35 - + &Label: 128 - + Choose previously used address 60 - + The Bitcoin address to send the payment to 53 - + Alt+A 76 - + Paste address from clipboard 83 - + Alt+P 99 - + Remove this entry 106 - + The amount to send in the selected unit 166 - + The fee will be deducted from the amount being sent. The recipient will receive less bitcoins than you enter in the amount field. If multiple recipients are selected, the fee is split equally. 173 - + S&ubtract fee from amount 176 - + Use available balance 183 - + Message: 192 - + Enter a label for this address to add it to the list of used addresses 141 144 - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. 202 @@ -3570,11 +3642,11 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + Send 144 - + Create Unsigned 146 @@ -3582,105 +3654,105 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + Signatures - Sign / Verify a Message 14 - + &Sign Message 27 - + You can sign messages/agreements with your addresses to prove you can receive bitcoins sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 33 - + The Bitcoin address to sign the message with 51 - + Choose previously used address 58 274 - + Alt+A 68 284 - + Paste address from clipboard 78 - + Alt+P 88 - + Enter the message you want to sign here 100 103 - + Signature 110 - + Copy the current signature to the system clipboard 140 - + Sign the message to prove you own this Bitcoin address 161 - + Sign &Message 164 - + Reset all sign message fields 178 - + Clear &All 181 338 - + &Verify Message 240 - + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! 246 - + The Bitcoin address the message was signed with 267 - + The signed message to verify 296 299 - + The signature given when the message was signed 306 309 - + Verify the message to ensure it was signed with the specified Bitcoin address 318 - + Verify &Message 321 - + Reset all verify message fields 335 - + Click "Sign Message" to generate signature 125 @@ -3688,61 +3760,61 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + The entered address is invalid. 119 218 - + Please check the address and try again. 119 126 219 226 - + The entered address does not refer to a key. 126 225 - + Wallet unlock was cancelled. 134 - + No error 145 - + Private key for the entered address is not available. 148 - + Message signing failed. 151 - + Message signed. 163 - + The signature could not be decoded. 232 - + Please check the signature and try again. 233 240 - + The signature did not match the message digest. 239 - + Message verification failed. 245 - + Message verified. 213 @@ -3750,11 +3822,11 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + (press q to shutdown and continue later) 177 - + press q to shutdown 178 @@ -3762,7 +3834,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + kB/s 74 @@ -3770,82 +3842,84 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + conflicted with a transaction with %1 confirmations 43 Text explaining the current status of a transaction, shown in the status field of the details window for this transaction. This status represents an unconfirmed transaction that conflicts with a confirmed transaction. - + 0/unconfirmed, in memory pool 50 Text explaining the current status of a transaction, shown in the status field of the details window for this transaction. This status represents an unconfirmed transaction that is in the memory pool. - + 0/unconfirmed, not in memory pool 55 Text explaining the current status of a transaction, shown in the status field of the details window for this transaction. This status represents an unconfirmed transaction that is not in the memory pool. - + abandoned 61 Text explaining the current status of a transaction, shown in the status field of the details window for this transaction. This status represents an abandoned transaction. - + %1/unconfirmed 69 Text explaining the current status of a transaction, shown in the status field of the details window for this transaction. This status represents a transaction confirmed in at least one block, but less than 6 blocks. - + %1 confirmations 74 Text explaining the current status of a transaction, shown in the status field of the details window for this transaction. This status represents a transaction confirmed in 6 or more blocks. - + Status 124 - + Date 127 - + Source 134 - + Generated 134 - + From 139 153 225 - + unknown 153 - + To 154 174 244 - + own address 156 + 251 - + watch-only 156 225 + 253 - + label 158 - + Credit 194 206 @@ -3855,98 +3929,98 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 196 - + matures in %n more block(s) - + matures in %n more block(s) - + not accepted 198 - + Debit 258 284 347 - + Total debit 268 - + Total credit 269 - + Transaction fee 274 - + Net amount 296 - + Message 302 314 - + Comment 304 - + Transaction ID 306 - + Transaction total size 307 - + Transaction virtual size 308 - + Output index 309 - + (Certificate was not verified) 325 - + Merchant 328 - + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 336 - + Debug information 344 - + Transaction 352 - + Inputs 355 - + Amount 376 - + true 377 378 - + false 377 378 @@ -3955,7 +4029,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + This pane shows a detailed description of the transaction 20 @@ -3963,7 +4037,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + Details for %1 18 @@ -3971,99 +4045,99 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + Date 257 - + Type 257 - + Label 257 - + Unconfirmed 317 - + Abandoned 320 - + Confirming (%1 of %2 recommended confirmations) 323 - + Confirmed (%1 confirmations) 326 - + Conflicted 329 - + Immature (%1 confirmations, will be available after %2) 332 - + Generated but not accepted 335 - + Received with 374 - + Received from 376 - + Sent to 379 - + Payment to yourself 381 - + Mined 383 - + watch-only 411 - + (n/a) 427 - + (no label) 634 - + Transaction status. Hover over this field to show number of confirmations. 673 - + Date and time that the transaction was received. 675 - + Type of transaction. 677 - + Whether or not a watch-only address is involved in this transaction. 679 - + User-defined intent/purpose of the transaction. 681 - + Amount removed from or added to balance. 683 @@ -4071,206 +4145,206 @@ Note: Since the fee is calculated on a per-byte basis, a fee rate of "100 - + All 73 89 - + Today 74 - + This week 75 - + This month 76 - + Last month 77 - + This year 78 - + Received with 90 - + Sent to 92 - + To yourself 94 - + Mined 95 - + Other 96 - + Enter address, transaction id, or label to search 101 - + Min amount 105 - + Range… 79 - + &Copy address 169 - + Copy &label 170 - + Copy &amount 171 - + Copy transaction &ID 172 - + Copy &raw transaction 173 - + Copy full transaction &details 174 - + &Show transaction details 175 - + Increase transaction &fee 177 - + A&bandon transaction 180 - + &Edit address label 181 - + Show in %1 240 Transactions table context menu action to show the selected transaction in a third-party block explorer. %1 is a stand-in argument for the URL of the explorer. - + Export Transaction History 359 - + Comma separated file 362 Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values. - + Confirmed 371 - + Watch-only 373 - + Date 374 - + Type 375 - + Label 376 - + Address 377 - + ID 379 - + Exporting Failed 382 - + There was an error trying to save the transaction history to %1. 382 - + Exporting Successful 386 - + The transaction history was successfully saved to %1. 386 - + Range: - 555 + 556 - + to - 563 + 564 - + No wallet has been loaded. Go to File > Open Wallet to load a wallet. - OR - 45 - + Create a new wallet 50 - + Error 201 211 229 - + Unable to decode PSBT from clipboard (invalid base64) 201 - + Load Transaction Data 207 - + Partially Signed Transaction (*.psbt) 208 - + PSBT file must be smaller than 100 MiB 211 - + Unable to decode PSBT 229 @@ -4278,68 +4352,73 @@ Go to File > Open Wallet to load a wallet. - + Send Coins 228 241 - + Fee bump error 489 544 559 564 - + Increasing transaction fee failed 489 - + Do you want to increase the fee? 496 Asks a user if they would like to manually increase the fee of a transaction that has already been created. - + Current fee: 500 - + Increase: 504 - + New fee: 508 - + Warning: This may pay the additional fee by reducing change outputs or adding inputs, when necessary. It may add a new change output if one does not already exist. These changes may potentially leak privacy. 516 - + Confirm fee bump 521 - + Can't draft transaction. 544 - + PSBT copied 551 - + + Copied to clipboard + 551 + Fee-bump PSBT saved + + Can't sign transaction. 559 - + Could not commit transaction 564 - + Can't display address 578 - + default wallet 596 @@ -4347,879 +4426,911 @@ Go to File > Open Wallet to load a wallet. - + &Export 50 - + Export the data in the current tab to a file 51 - + Backup Wallet - 213 + 214 - + Wallet Data - 215 + 216 Name of the wallet data file format. - + Backup Failed - 221 + 222 - + There was an error trying to save the wallet data to %1. - 221 + 222 - + Backup Successful - 225 + 226 - + The wallet data was successfully saved to %1. - 225 + 226 - + Cancel - 262 + 263 - + The %s developers 12 - + %s corrupt. Try using the wallet tool bitcoin-wallet to salvage or restoring a backup. 13 - + %s request to listen on port %u. This port is considered "bad" and thus it is unlikely that any peer will connect to it. See doc/p2p-bad-ports.md for details and a full list. - 16 - - - -maxtxfee is set very high! Fees this large could be paid on a single transaction. - 20 + 28 - + Cannot downgrade wallet from version %i to version %i. Wallet version unchanged. - 35 + 44 - + Cannot obtain a lock on data directory %s. %s is probably already running. - 38 + 47 - + Cannot upgrade a non HD split wallet from version %i to version %i without upgrading to support pre-split keypool. Please use version %i or no version specified. - 43 + 52 - + Disk space for %s may not accommodate the block files. Approximately %u GB of data will be stored in this directory. - 47 + 56 - + Distributed under the MIT software license, see the accompanying file %s or %s - 50 + 59 - + Error loading wallet. Wallet requires blocks to be downloaded, and software does not currently support loading wallets while blocks are being downloaded out of order when using assumeutxo snapshots. Wallet should be able to load successfully after node sync reaches height %s - 56 + 65 - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - 61 + 70 - + Error reading %s! Transaction data may be missing or incorrect. Rescanning wallet. - 64 + 73 - + Error: Dumpfile format record is incorrect. Got "%s", expected "format". - 70 + 79 - + Error: Dumpfile identifier record is incorrect. Got "%s", expected "%s". - 72 + 81 - + Error: Dumpfile version is not supported. This version of bitcoin-wallet only supports version 1 dumpfiles. Got dumpfile with version %s - 74 + 83 - + Error: Legacy wallets only support the "legacy", "p2sh-segwit", and "bech32" address types - 80 + 89 - + Error: Unable to produce descriptors for this legacy wallet. Make sure to provide the wallet's passphrase if it is encrypted. - 86 - - - Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee. - 92 - - - File %s already exists. If you are sure this is what you want, move it out of the way first. 95 - - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - 101 + + File %s already exists. If you are sure this is what you want, move it out of the way first. + 104 - + Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start. - 104 + 113 - + More than one onion bind address is provided. Using %s for the automatically created Tor onion service. - 108 + 117 - + No dump file provided. To use createfromdump, -dumpfile=<filename> must be provided. - 111 + 120 - + No dump file provided. To use dump, -dumpfile=<filename> must be provided. - 114 + 123 - + No wallet file format provided. To use createfromdump, -format=<format> must be provided. - 116 + 125 - + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. - 132 + 141 - + Please contribute if you find %s useful. Visit %s for further information about the software. - 135 + 144 - + Prune configured below the minimum of %d MiB. Please use a higher number. - 138 + 147 - + Prune mode is incompatible with -reindex-chainstate. Use full -reindex instead. - 140 + 149 - + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) - 143 + 152 - + SQLiteDatabase: Unknown sqlite wallet schema version %d. Only version %d is supported - 146 + 155 - + 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 - 152 + 161 - + The block index db contains a legacy 'txindex'. To clear the occupied disk space, run a full -reindex, otherwise ignore this error. This error message will not be displayed again. - 157 + 166 - + The transaction amount is too small to send after the fee has been deducted - 168 + 177 - + This error could occur if this wallet was not shutdown cleanly and was last loaded using a build with a newer version of Berkeley DB. If so, please use the software that last loaded this wallet - 170 + 179 - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - 174 + 183 - + This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection. - 177 + 186 - + This is the transaction fee you may discard if change is smaller than dust at this level - 180 + 189 - + This is the transaction fee you may pay when fee estimates are not available. - 183 + 192 - + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. - 185 + 194 - + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. - 188 + 203 - + Unknown wallet file format "%s" provided. Please provide one of "bdb" or "sqlite". - 195 + 213 - + Unsupported chainstate database format found. Please restart with -reindex-chainstate. This will rebuild the chainstate database. - 206 + 224 - + Wallet created successfully. The legacy wallet type is being deprecated and support for creating and opening legacy wallets will be removed in the future. - 209 + 227 - + Warning: Dumpfile wallet format "%s" does not match command line specified format "%s". - 213 + 231 - + Warning: Private keys detected in wallet {%s} with disabled private keys - 216 + 234 - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - 218 + 236 - + Witness data for blocks after height %d requires validation. Please restart with -reindex. - 221 + 239 - + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - 224 + 242 - + %s is set very high! - 233 + 251 - + -maxmempool must be at least %d MB - 234 + 252 - + A fatal internal error occurred, see debug.log for details - 235 + 253 - + Cannot resolve -%s address: '%s' - 236 + 255 - + Cannot set -forcednsseed to true when setting -dnsseed to false. - 237 + 256 - + Cannot set -peerblockfilters without -blockfilterindex. - 238 + 257 - + Cannot write to data directory '%s'; check permissions. - 239 + 258 - + The -txindex upgrade started by a previous version cannot be completed. Restart with the previous version or run a full -reindex. - 149 + 158 - + + %s failed to validate the -assumeutxo snapshot state. This indicates a hardware problem, or a bug in the software, or a bad software modification that allowed an invalid snapshot to be loaded. As a result of this, the node will shut down and stop using any state that was built on the snapshot, resetting the chain height from %d to %d. On the next restart, the node will resume syncing from %d without using any snapshot data. Please report this incident to %s, including how you obtained the snapshot. The invalid snapshot chainstate has been left on disk in case it is helpful in diagnosing the issue that caused this error. + 16 + + + %s is set very high! Fees this large could be paid on a single transaction. + 26 + + -reindex-chainstate option is not compatible with -blockfilterindex. Please temporarily disable blockfilterindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes. - 23 + 32 - + -reindex-chainstate option is not compatible with -coinstatsindex. Please temporarily disable coinstatsindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes. - 27 + 36 - + -reindex-chainstate option is not compatible with -txindex. Please temporarily disable txindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes. - 31 + 40 - + Cannot provide specific connections and have addrman find outgoing connections at the same time. - 40 + 49 - + Error loading %s: External signer wallet being loaded without external signer support compiled - 53 + 62 - + Error: Address book data in wallet cannot be identified to belong to migrated wallets - 67 + 76 - + Error: Duplicate descriptors created during migration. Your wallet may be corrupted. - 77 + 86 - + Error: Transaction %s in wallet cannot be identified to belong to migrated wallets - 83 + 92 - + Failed to rename invalid peers.dat file. Please move or delete it and try again. - 89 + 98 - + + Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable %s. + 101 + + Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet forbids connections to IPv4/IPv6 - 98 + 107 - + + Invalid amount for %s=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + 110 + + Outbound connections restricted to CJDNS (-onlynet=cjdns) but -cjdnsreachable is not provided - 119 + 128 - + Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is explicitly forbidden: -onion=0 - 122 + 131 - + Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is not provided: none of -proxy, -onion or -listenonion is given - 125 + 134 - + Outbound connections restricted to i2p (-onlynet=i2p) but -i2psam is not provided - 129 + 138 - + The inputs size exceeds the maximum weight. Please try sending a smaller amount or manually consolidating your wallet's UTXOs - 161 + 170 - + The preselected coins total amount does not cover the transaction target. Please allow other inputs to be automatically selected or include more coins manually - 164 + 173 - + + Transaction requires one destination of non-0 value, a non-0 feerate, or a pre-selected input + 197 + + + UTXO snapshot failed to validate. Restart to resume normal initial block download, or try loading a different snapshot. + 200 + + + Unconfirmed UTXOs are available, but spending them creates a chain of transactions that will be rejected by the mempool + 206 + + Unexpected legacy entry in descriptor wallet found. Loading wallet %s The wallet might have been tampered with or created with malicious intent. - 191 + 209 - + Unrecognized descriptor found. Loading wallet %s The wallet might had been created on a newer version. Please try running the latest software version. - 198 + 216 - + Unsupported category-specific logging level -loglevel=%s. Expected -loglevel=<category>:<loglevel>. Valid categories: %s. Valid loglevels: %s. - 203 + 221 - + Unable to cleanup failed migration - 227 + 245 - + Unable to restore backup of wallet. - 230 + 248 - + + Block verification was interrupted + 254 + + Config setting for %s only applied on %s network when in [%s] section. - 240 + 259 - + Copyright (C) %i-%i - 241 + 260 - + Corrupted block database detected - 242 + 261 - + Could not find asmap file %s - 243 + 262 - + Could not parse asmap file %s - 244 + 263 - + Disk space is too low! - 245 + 264 - + Do you want to rebuild the block database now? - 246 + 265 - + Done loading - 247 + 266 - + Dump file %s does not exist. - 248 + 267 - + Error creating %s - 249 + 268 - + Error initializing block database - 250 + 269 - + Error initializing wallet database environment %s! - 251 + 270 - + Error loading %s - 252 + 271 - + Error loading %s: Private keys can only be disabled during creation - 253 + 272 - + Error loading %s: Wallet corrupted - 254 + 273 - + Error loading %s: Wallet requires newer version of %s - 255 + 274 - + Error loading block database - 256 + 275 - + Error opening block database - 257 + 276 - + + Error reading configuration file: %s + 277 + + Error reading from database, shutting down. - 258 + 278 - + Error reading next record from wallet database - 259 + 279 - + Error: Cannot extract destination from the generated scriptpubkey - 260 + 280 - + Error: Could not add watchonly tx to watchonly wallet - 261 + 281 - + Error: Could not delete watchonly transactions - 262 + 282 - + Error: Couldn't create cursor into database - 263 + 283 - + Error: Disk space is low for %s - 264 + 284 - + Error: Dumpfile checksum does not match. Computed %s, expected %s - 265 + 285 - + Error: Failed to create new watchonly wallet - 266 + 286 - + Error: Got key that was not hex: %s - 267 + 287 - + Error: Got value that was not hex: %s - 268 + 288 - + Error: Keypool ran out, please call keypoolrefill first - 269 + 289 - + Error: Missing checksum - 270 + 290 - + Error: No %s addresses available. - 271 + 291 - + Error: Not all watchonly txs could be deleted - 272 + 292 - + Error: This wallet already uses SQLite - 273 + 293 - + Error: This wallet is already a descriptor wallet - 274 + 294 - + Error: Unable to begin reading all records in the database - 275 + 295 - + Error: Unable to make a backup of your wallet - 276 + 296 - + Error: Unable to parse version %u as a uint32_t - 277 + 297 - + Error: Unable to read all records in the database - 278 + 298 - + Error: Unable to remove watchonly address book data - 279 + 299 - + Error: Unable to write record to new wallet - 280 + 300 - + Failed to listen on any port. Use -listen=0 if you want this. - 281 + 301 - + Failed to rescan the wallet during initialization - 282 + 302 - + Failed to verify database - 283 + 303 - + Fee rate (%s) is lower than the minimum fee rate setting (%s) - 284 + 304 - + Ignoring duplicate -wallet %s. - 285 + 305 - + Importing… - 286 + 306 - + Incorrect or no genesis block found. Wrong datadir for network? - 287 + 307 - + Initialization sanity check failed. %s is shutting down. - 288 + 308 - + Input not found or already spent - 289 + 309 - + Insufficient dbcache for block verification - 290 + 310 - + Insufficient funds - 291 + 311 - + Invalid -i2psam address or hostname: '%s' - 292 + 312 - + Invalid -onion address or hostname: '%s' - 293 + 313 - + Invalid -proxy address or hostname: '%s' - 294 + 314 - + Invalid P2P permission: '%s' - 295 - - - Invalid amount for -%s=<amount>: '%s' - 296 + 315 - - Invalid amount for -discardfee=<amount>: '%s' - 297 + + Invalid amount for %s=<amount>: '%s' (must be at least %s) + 316 - - Invalid amount for -fallbackfee=<amount>: '%s' - 298 + + Invalid amount for %s=<amount>: '%s' + 317 - - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - 299 + + Invalid amount for -%s=<amount>: '%s' + 318 - + Invalid netmask specified in -whitelist: '%s' - 300 + 319 - + Invalid port specified in %s: '%s' - 301 + 320 - + Invalid pre-selected input %s - 302 + 321 - + Listening for incoming connections failed (listen returned error %s) - 303 + 322 - + Loading P2P addresses… - 304 + 323 - + Loading banlist… - 305 + 324 - + Loading block index… - 306 + 325 - + Loading wallet… - 307 + 326 - + Missing amount - 308 + 327 - + Missing solving data for estimating transaction size - 309 + 328 - + Need to specify a port with -whitebind: '%s' - 310 + 329 - + No addresses available - 311 + 330 - + Not enough file descriptors available. - 312 + 331 - + Not found pre-selected input %s - 313 + 332 - + Not solvable pre-selected input %s - 314 + 333 - + Prune cannot be configured with a negative value. - 315 + 334 - + Prune mode is incompatible with -txindex. - 316 + 335 - + Pruning blockstore… - 317 + 336 - + Reducing -maxconnections from %d to %d, because of system limitations. - 318 + 337 - + Replaying blocks… - 319 + 338 - + Rescanning… - 320 + 339 - + SQLiteDatabase: Failed to execute statement to verify database: %s - 321 + 340 - + SQLiteDatabase: Failed to prepare statement to verify database: %s - 322 + 341 - + SQLiteDatabase: Failed to read database verification error: %s - 323 + 342 - + SQLiteDatabase: Unexpected application id. Expected %u, got %u - 324 + 343 - + Section [%s] is not recognized. - 325 + 344 - + Signing transaction failed - 326 + 347 - + Specified -walletdir "%s" does not exist - 327 + 348 - + Specified -walletdir "%s" is a relative path - 328 + 349 - + Specified -walletdir "%s" is not a directory - 329 + 350 - + Specified blocks directory "%s" does not exist. - 330 + 351 - + + Specified data directory "%s" does not exist. + 352 + + Starting network threads… - 331 + 353 - + The source code is available from %s. - 332 + 354 - + The specified config file %s does not exist - 333 + 355 - + The transaction amount is too small to pay the fee - 334 + 356 - + The wallet will avoid paying less than the minimum relay fee. - 335 + 357 - + This is experimental software. - 336 + 358 - + This is the minimum transaction fee you pay on every transaction. - 337 + 359 - + This is the transaction fee you will pay if you send a transaction. - 338 + 360 - + Transaction amount too small - 339 + 361 - + Transaction amounts must not be negative - 340 + 362 - + Transaction change output index out of range - 341 + 363 - + Transaction has too long of a mempool chain - 342 + 364 - + Transaction must have at least one recipient - 343 + 365 - + Transaction needs a change address, but we can't generate it. - 344 + 366 - + Transaction too large - 345 + 367 - + Unable to allocate memory for -maxsigcachesize: '%s' MiB - 346 + 368 - + Unable to bind to %s on this computer (bind returned error %s) - 347 + 369 - + Unable to bind to %s on this computer. %s is probably already running. - 348 + 370 - + Unable to create the PID file '%s': %s - 349 + 371 - + Unable to find UTXO for external input - 350 + 372 - + Unable to generate initial keys - 351 + 373 - + Unable to generate keys - 352 + 374 - + Unable to open %s for writing - 353 + 375 - + Unable to parse -maxuploadtarget: '%s' - 354 + 376 - + Unable to start HTTP server. See debug log for details. - 355 + 377 - + Unable to unload the wallet before migrating - 356 + 378 - + Unknown -blockfilterindex value %s. - 357 + 379 - + Unknown address type '%s' - 358 + 380 - + Unknown change type '%s' - 359 + 381 - + Unknown network specified in -onlynet: '%s' - 360 + 382 - + Unknown new rules activated (versionbit %i) - 361 + 383 - + Unsupported global logging level -loglevel=%s. Valid values: %s. - 362 + 384 - + Unsupported logging category %s=%s. - 363 + 385 - + User Agent comment (%s) contains unsafe characters. - 364 + 386 - + Verifying blocks… - 365 + 387 - + Verifying wallet(s)… - 366 + 388 - + Wallet needed to be rewritten: restart %s to complete - 367 + 389 + + + Settings file could not be read + 345 + + + Settings file could not be written + 346 -- cgit v1.2.3