mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-23 16:44:52 +01:00
Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a0988140b7 | ||
|
|
9f9ffe5bb0 | ||
|
|
f75615ebdd | ||
|
|
afbee409ba | ||
|
|
03f1422786 | ||
|
|
fbf498d26b | ||
|
|
d447972417 | ||
|
|
303bc8a069 | ||
|
|
0640bf5c82 | ||
|
|
86de56776a | ||
|
|
c1c79f4c81 | ||
|
|
f95b655ba9 | ||
|
|
59d4afc272 | ||
|
|
99cd080db1 | ||
|
|
4a25e39624 | ||
|
|
32e1424f84 | ||
|
|
cb34a0aafe | ||
|
|
aa254a01c1 | ||
|
|
068985c02e | ||
|
|
27d43e5bd4 | ||
|
|
88fb7e37ad | ||
|
|
63fec7e295 | ||
|
|
dfaffbeb63 | ||
|
|
e86b023606 | ||
|
|
ffc81e2048 | ||
|
|
ce77b45a1f | ||
|
|
cb491bd5a7 | ||
|
|
6a611d2e3c | ||
|
|
e9b4487684 | ||
|
|
57fce067a3 | ||
|
|
e9d30fbb3a | ||
|
|
d3bd5410f6 |
@@ -153,6 +153,7 @@ task:
|
||||
|
||||
task:
|
||||
name: '[no depends, sanitizers: fuzzer,address,undefined,integer] [focal]'
|
||||
only_if: $CIRRUS_BRANCH == $CIRRUS_DEFAULT_BRANCH || $CIRRUS_BASE_BRANCH == $CIRRUS_DEFAULT_BRANCH
|
||||
<< : *GLOBAL_TASK_TEMPLATE
|
||||
container:
|
||||
image: ubuntu:focal
|
||||
|
||||
@@ -2,7 +2,7 @@ AC_PREREQ([2.69])
|
||||
define(_CLIENT_VERSION_MAJOR, 22)
|
||||
define(_CLIENT_VERSION_MINOR, 0)
|
||||
define(_CLIENT_VERSION_BUILD, 0)
|
||||
define(_CLIENT_VERSION_RC, 2)
|
||||
define(_CLIENT_VERSION_RC, 0)
|
||||
define(_CLIENT_VERSION_IS_RELEASE, true)
|
||||
define(_COPYRIGHT_YEAR, 2021)
|
||||
define(_COPYRIGHT_HOLDERS,[The %s developers])
|
||||
|
||||
@@ -47,7 +47,6 @@ $BITCOIND --version | sed -n '1!p' >> footer.h2m
|
||||
for cmd in $BITCOIND $BITCOINCLI $BITCOINTX $WALLET_TOOL $BITCOINUTIL $BITCOINQT; do
|
||||
cmdname="${cmd##*/}"
|
||||
help2man -N --version-string=${BTCVER[0]} --include=footer.h2m -o ${MANDIR}/${cmdname}.1 ${cmd}
|
||||
sed -i "s/\\\-${BTCVER[1]}//g" ${MANDIR}/${cmdname}.1
|
||||
done
|
||||
|
||||
rm -f footer.h2m
|
||||
|
||||
@@ -159,23 +159,21 @@ Hint: You may wish to remove the existing attestations and their signatures by
|
||||
EOF
|
||||
}
|
||||
|
||||
# Given a document with unix line endings (just <LF>) in stdin, make all lines
|
||||
# end in <CR><LF> and make sure there's no trailing <LF> at the end of the file.
|
||||
#
|
||||
# This is necessary as cleartext signatures are calculated on text after their
|
||||
# line endings are canonicalized.
|
||||
#
|
||||
# For more information:
|
||||
# 1. https://security.stackexchange.com/a/104261
|
||||
# 2. https://datatracker.ietf.org/doc/html/rfc4880#section-7.1
|
||||
#
|
||||
rfc4880_normalize_document() {
|
||||
sed 's/$/\r/' | head -c -2
|
||||
}
|
||||
|
||||
echo "Attesting to build outputs for version: '${VERSION}'"
|
||||
echo ""
|
||||
|
||||
# Given a SHA256SUMS file as stdin that has lines like:
|
||||
# 0ba536819b221a91d3d42e978be016aac918f40984754d74058aa0c921cd3ea6 a/b/d/c/d/s/bitcoin-22.0rc2-riscv64-linux-gnu.tar.gz
|
||||
# ...
|
||||
#
|
||||
# Replace each line's file name with its basename:
|
||||
# 0ba536819b221a91d3d42e978be016aac918f40984754d74058aa0c921cd3ea6 bitcoin-22.0rc2-riscv64-linux-gnu.tar.gz
|
||||
# ...
|
||||
#
|
||||
basenameify_SHA256SUMS() {
|
||||
sed -E 's@(^[[:xdigit:]]{64}[[:space:]]+).+/([^/]+$)@\1\2@'
|
||||
}
|
||||
|
||||
outsigdir="$GUIX_SIGS_REPO/$VERSION/$signer_name"
|
||||
mkdir -p "$outsigdir"
|
||||
(
|
||||
@@ -188,7 +186,7 @@ mkdir -p "$outsigdir"
|
||||
cat "${noncodesigned_fragments[@]}" \
|
||||
| sort -u \
|
||||
| sort -k2 \
|
||||
| rfc4880_normalize_document \
|
||||
| basenameify_SHA256SUMS \
|
||||
> "$temp_noncodesigned"
|
||||
if [ -e noncodesigned.SHA256SUMS ]; then
|
||||
# The SHA256SUMS already exists, make sure it's exactly what we
|
||||
@@ -216,7 +214,7 @@ mkdir -p "$outsigdir"
|
||||
cat "${sha256sum_fragments[@]}" \
|
||||
| sort -u \
|
||||
| sort -k2 \
|
||||
| rfc4880_normalize_document \
|
||||
| basenameify_SHA256SUMS \
|
||||
> "$temp_all"
|
||||
if [ -e all.SHA256SUMS ]; then
|
||||
# The SHA256SUMS already exists, make sure it's exactly what we
|
||||
|
||||
@@ -77,11 +77,13 @@ verify() {
|
||||
echo ""
|
||||
echo "Hint: Either the signature is invalid or the public key is missing"
|
||||
echo ""
|
||||
failure=1
|
||||
elif ! diff --report-identical "$compare_manifest" "$current_manifest" 1>&2; then
|
||||
echo "ERR: The SHA256SUMS attestation in these two directories differ:"
|
||||
echo " '${compare_manifest}'"
|
||||
echo " '${current_manifest}'"
|
||||
echo ""
|
||||
failure=1
|
||||
else
|
||||
echo "Verified: '${current_manifest}'"
|
||||
echo ""
|
||||
@@ -166,3 +168,7 @@ if (( ${#all_noncodesigned[@]} + ${#all_all[@]} == 0 )); then
|
||||
echo ""
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -n "$failure" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
@@ -49,7 +49,7 @@ fi
|
||||
# Set common variables
|
||||
################
|
||||
|
||||
VERSION="${VERSION:-$(git_head_version)}"
|
||||
VERSION="${FORCE_VERSION:-$(git_head_version)}"
|
||||
DISTNAME="${DISTNAME:-bitcoin-${VERSION}}"
|
||||
|
||||
version_base_prefix="${PWD}/guix-build-"
|
||||
|
||||
@@ -99,7 +99,7 @@ Descriptors consist of several types of expressions. The top level expression is
|
||||
`ADDR` expressions are any type of supported address:
|
||||
- P2PKH addresses (base58, of the form `1...` for mainnet or `[nm]...` for testnet). Note that P2PKH addresses in descriptors cannot be used for P2PK outputs (use the `pk` function instead).
|
||||
- P2SH addresses (base58, of the form `3...` for mainnet or `2...` for testnet, defined in [BIP 13](https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki)).
|
||||
- Segwit addresses (bech32, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki)).
|
||||
- Segwit addresses (bech32 and bech32m, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki) and [BIP 350](https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki)).
|
||||
|
||||
## Explanation
|
||||
|
||||
|
||||
21
doc/i2p.md
21
doc/i2p.md
@@ -10,11 +10,22 @@ started with I2P terminology.
|
||||
## Run Bitcoin Core with an I2P router (proxy)
|
||||
|
||||
A running I2P router (proxy) with [SAM](https://geti2p.net/en/docs/api/samv3)
|
||||
enabled is required (there is an [official one](https://geti2p.net) and
|
||||
[a few alternatives](https://en.wikipedia.org/wiki/I2P#Routers)). Notice the IP
|
||||
address and port the SAM proxy is listening to; usually, it is
|
||||
`127.0.0.1:7656`. Once it is up and running with SAM enabled, use the following
|
||||
Bitcoin Core options:
|
||||
enabled is required. Options include:
|
||||
|
||||
- [i2prouter (I2P Router)](https://geti2p.net), the official implementation in
|
||||
Java
|
||||
- [i2pd (I2P Daemon)](https://github.com/PurpleI2P/i2pd)
|
||||
([documentation](https://i2pd.readthedocs.io/en/latest)), a lighter
|
||||
alternative in C++ (successfully tested with version 2.23 and up; version 2.36
|
||||
or later recommended)
|
||||
- [i2p-zero](https://github.com/i2p-zero/i2p-zero)
|
||||
- [other alternatives](https://en.wikipedia.org/wiki/I2P#Routers)
|
||||
|
||||
Note the IP address and port the SAM proxy is listening to; usually, it is
|
||||
`127.0.0.1:7656`.
|
||||
|
||||
Once an I2P router with SAM enabled is up and running, use the following Bitcoin
|
||||
Core configuration options:
|
||||
|
||||
```
|
||||
-i2psam=<ip:port>
|
||||
|
||||
@@ -1,5 +1,163 @@
|
||||
.TH BITCOIN-CLI "1"
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
|
||||
.TH BITCOIN-CLI "1" "September 2021" "bitcoin-cli v22.0.0" "User Commands"
|
||||
.SH NAME
|
||||
bitcoin-cli \- manual page for bitcoin-cli
|
||||
|
||||
This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
|
||||
bitcoin-cli \- manual page for bitcoin-cli v22.0.0
|
||||
.SH SYNOPSIS
|
||||
.B bitcoin-cli
|
||||
[\fI\,options\/\fR] \fI\,<command> \/\fR[\fI\,params\/\fR] \fI\,Send command to Bitcoin Core\/\fR
|
||||
.br
|
||||
.B bitcoin-cli
|
||||
[\fI\,options\/\fR] \fI\,-named <command> \/\fR[\fI\,name=value\/\fR]... \fI\,Send command to Bitcoin Core (with named arguments)\/\fR
|
||||
.br
|
||||
.B bitcoin-cli
|
||||
[\fI\,options\/\fR] \fI\,help List commands\/\fR
|
||||
.br
|
||||
.B bitcoin-cli
|
||||
[\fI\,options\/\fR] \fI\,help <command> Get help for a command\/\fR
|
||||
.SH DESCRIPTION
|
||||
Bitcoin Core RPC client version v22.0.0
|
||||
.SH OPTIONS
|
||||
.HP
|
||||
\-?
|
||||
.IP
|
||||
Print this help message and exit
|
||||
.HP
|
||||
\fB\-addrinfo\fR
|
||||
.IP
|
||||
Get the number of addresses known to the node, per network and total.
|
||||
.HP
|
||||
\fB\-conf=\fR<file>
|
||||
.IP
|
||||
Specify configuration file. Relative paths will be prefixed by datadir
|
||||
location. (default: bitcoin.conf)
|
||||
.HP
|
||||
\fB\-datadir=\fR<dir>
|
||||
.IP
|
||||
Specify data directory
|
||||
.HP
|
||||
\fB\-generate\fR
|
||||
.IP
|
||||
Generate blocks immediately, equivalent to RPC getnewaddress followed by
|
||||
RPC generatetoaddress. Optional positional integer arguments are
|
||||
number of blocks to generate (default: 1) and maximum iterations
|
||||
to try (default: 1000000), equivalent to RPC generatetoaddress
|
||||
nblocks and maxtries arguments. Example: bitcoin\-cli \fB\-generate\fR 4
|
||||
1000
|
||||
.HP
|
||||
\fB\-getinfo\fR
|
||||
.IP
|
||||
Get general information from the remote server. Note that unlike
|
||||
server\-side RPC calls, the results of \fB\-getinfo\fR is the result of
|
||||
multiple non\-atomic requests. Some entries in the result may
|
||||
represent results from different states (e.g. wallet balance may
|
||||
be as of a different block from the chain state reported)
|
||||
.HP
|
||||
\fB\-named\fR
|
||||
.IP
|
||||
Pass named instead of positional arguments (default: false)
|
||||
.HP
|
||||
\fB\-netinfo\fR
|
||||
.IP
|
||||
Get network peer connection information from the remote server. An
|
||||
optional integer argument from 0 to 4 can be passed for different
|
||||
peers listings (default: 0). Pass "help" for detailed help
|
||||
documentation.
|
||||
.HP
|
||||
\fB\-rpcclienttimeout=\fR<n>
|
||||
.IP
|
||||
Timeout in seconds during HTTP requests, or 0 for no timeout. (default:
|
||||
900)
|
||||
.HP
|
||||
\fB\-rpcconnect=\fR<ip>
|
||||
.IP
|
||||
Send commands to node running on <ip> (default: 127.0.0.1)
|
||||
.HP
|
||||
\fB\-rpccookiefile=\fR<loc>
|
||||
.IP
|
||||
Location of the auth cookie. Relative paths will be prefixed by a
|
||||
net\-specific datadir location. (default: data dir)
|
||||
.HP
|
||||
\fB\-rpcpassword=\fR<pw>
|
||||
.IP
|
||||
Password for JSON\-RPC connections
|
||||
.HP
|
||||
\fB\-rpcport=\fR<port>
|
||||
.IP
|
||||
Connect to JSON\-RPC on <port> (default: 8332, testnet: 18332, signet:
|
||||
38332, regtest: 18443)
|
||||
.HP
|
||||
\fB\-rpcuser=\fR<user>
|
||||
.IP
|
||||
Username for JSON\-RPC connections
|
||||
.HP
|
||||
\fB\-rpcwait\fR
|
||||
.IP
|
||||
Wait for RPC server to start
|
||||
.HP
|
||||
\fB\-rpcwaittimeout=\fR<n>
|
||||
.IP
|
||||
Timeout in seconds to wait for the RPC server to start, or 0 for no
|
||||
timeout. (default: 0)
|
||||
.HP
|
||||
\fB\-rpcwallet=\fR<walletname>
|
||||
.IP
|
||||
Send RPC for non\-default wallet on RPC server (needs to exactly match
|
||||
corresponding \fB\-wallet\fR option passed to bitcoind). This changes
|
||||
the RPC endpoint used, e.g.
|
||||
http://127.0.0.1:8332/wallet/<walletname>
|
||||
.HP
|
||||
\fB\-stdin\fR
|
||||
.IP
|
||||
Read extra arguments from standard input, one per line until EOF/Ctrl\-D
|
||||
(recommended for sensitive information such as passphrases). When
|
||||
combined with \fB\-stdinrpcpass\fR, the first line from standard input
|
||||
is used for the RPC password.
|
||||
.HP
|
||||
\fB\-stdinrpcpass\fR
|
||||
.IP
|
||||
Read RPC password from standard input as a single line. When combined
|
||||
with \fB\-stdin\fR, the first line from standard input is used for the
|
||||
RPC password. When combined with \fB\-stdinwalletpassphrase\fR,
|
||||
\fB\-stdinrpcpass\fR consumes the first line, and \fB\-stdinwalletpassphrase\fR
|
||||
consumes the second.
|
||||
.HP
|
||||
\fB\-stdinwalletpassphrase\fR
|
||||
.IP
|
||||
Read wallet passphrase from standard input as a single line. When
|
||||
combined with \fB\-stdin\fR, the first line from standard input is used
|
||||
for the wallet passphrase.
|
||||
.HP
|
||||
\fB\-version\fR
|
||||
.IP
|
||||
Print version and exit
|
||||
.PP
|
||||
Debugging/Testing options:
|
||||
.PP
|
||||
Chain selection options:
|
||||
.HP
|
||||
\fB\-chain=\fR<chain>
|
||||
.IP
|
||||
Use the chain <chain> (default: main). Allowed values: main, test,
|
||||
signet, regtest
|
||||
.HP
|
||||
\fB\-signet\fR
|
||||
.IP
|
||||
Use the signet chain. Equivalent to \fB\-chain\fR=\fI\,signet\/\fR. Note that the network
|
||||
is defined by the \fB\-signetchallenge\fR parameter
|
||||
.HP
|
||||
\fB\-signetchallenge\fR
|
||||
.IP
|
||||
Blocks must satisfy the given script to be considered valid (only for
|
||||
signet networks; defaults to the global default signet test
|
||||
network challenge)
|
||||
.HP
|
||||
\fB\-signetseednode\fR
|
||||
.IP
|
||||
Specify a seed node for the signet network, in the hostname[:port]
|
||||
format, e.g. sig.net:1234 (may be used multiple times to specify
|
||||
multiple seed nodes; defaults to the global default signet test
|
||||
network seed node(s))
|
||||
.HP
|
||||
\fB\-testnet\fR
|
||||
.IP
|
||||
Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR.
|
||||
|
||||
@@ -1,5 +1,780 @@
|
||||
.TH BITCOIN-QT "1"
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
|
||||
.TH BITCOIN-QT "1" "September 2021" "bitcoin-qt v22.0.0" "User Commands"
|
||||
.SH NAME
|
||||
bitcoin-qt \- manual page for bitcoin-qt
|
||||
|
||||
This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
|
||||
bitcoin-qt \- manual page for bitcoin-qt v22.0.0
|
||||
.SH SYNOPSIS
|
||||
.B bitcoin-qt
|
||||
[\fI\,command-line options\/\fR]
|
||||
.SH DESCRIPTION
|
||||
Bitcoin Core version v22.0.0
|
||||
.SH OPTIONS
|
||||
.HP
|
||||
\-?
|
||||
.IP
|
||||
Print this help message and exit
|
||||
.HP
|
||||
\fB\-alertnotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command when a relevant alert is received or we see a really
|
||||
long fork (%s in cmd is replaced by message)
|
||||
.HP
|
||||
\fB\-assumevalid=\fR<hex>
|
||||
.IP
|
||||
If this block is in the chain assume that it and its ancestors are valid
|
||||
and potentially skip their script verification (0 to verify all,
|
||||
default:
|
||||
00000000000000000008a89e854d57e5667df88f1cdef6fde2fbca1de5b639ad,
|
||||
testnet:
|
||||
0000000000004ae2f3896ca8ecd41c460a35bf6184e145d91558cece1c688a76,
|
||||
signet:
|
||||
000000187d4440e5bff91488b700a140441e089a8aaea707414982460edbfe54)
|
||||
.HP
|
||||
\fB\-blockfilterindex=\fR<type>
|
||||
.IP
|
||||
Maintain an index of compact filters by block (default: 0, values:
|
||||
basic). If <type> is not supplied or if <type> = 1, indexes for
|
||||
all known types are enabled.
|
||||
.HP
|
||||
\fB\-blocknotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command when the best block changes (%s in cmd is replaced by
|
||||
block hash)
|
||||
.HP
|
||||
\fB\-blockreconstructionextratxn=\fR<n>
|
||||
.IP
|
||||
Extra transactions to keep in memory for compact block reconstructions
|
||||
(default: 100)
|
||||
.HP
|
||||
\fB\-blocksdir=\fR<dir>
|
||||
.IP
|
||||
Specify directory to hold blocks subdirectory for *.dat files (default:
|
||||
<datadir>)
|
||||
.HP
|
||||
\fB\-blocksonly\fR
|
||||
.IP
|
||||
Whether to reject transactions from network peers. Automatic broadcast
|
||||
and rebroadcast of any transactions from inbound peers is
|
||||
disabled, unless the peer has the 'forcerelay' permission. RPC
|
||||
transactions are not affected. (default: 0)
|
||||
.HP
|
||||
\fB\-coinstatsindex\fR
|
||||
.IP
|
||||
Maintain coinstats index used by the gettxoutsetinfo RPC (default: 0)
|
||||
.HP
|
||||
\fB\-conf=\fR<file>
|
||||
.IP
|
||||
Specify path to read\-only configuration file. Relative paths will be
|
||||
prefixed by datadir location. (default: bitcoin.conf)
|
||||
.HP
|
||||
\fB\-daemon\fR
|
||||
.IP
|
||||
Run in the background as a daemon and accept commands (default: 0)
|
||||
.HP
|
||||
\fB\-daemonwait\fR
|
||||
.IP
|
||||
Wait for initialization to be finished before exiting. This implies
|
||||
\fB\-daemon\fR (default: 0)
|
||||
.HP
|
||||
\fB\-datadir=\fR<dir>
|
||||
.IP
|
||||
Specify data directory
|
||||
.HP
|
||||
\fB\-dbcache=\fR<n>
|
||||
.IP
|
||||
Maximum database cache size <n> MiB (4 to 16384, default: 450). In
|
||||
addition, unused mempool memory is shared for this cache (see
|
||||
\fB\-maxmempool\fR).
|
||||
.HP
|
||||
\fB\-debuglogfile=\fR<file>
|
||||
.IP
|
||||
Specify location of debug log file. Relative paths will be prefixed by a
|
||||
net\-specific datadir location. (\fB\-nodebuglogfile\fR to disable;
|
||||
default: debug.log)
|
||||
.HP
|
||||
\fB\-includeconf=\fR<file>
|
||||
.IP
|
||||
Specify additional configuration file, relative to the \fB\-datadir\fR path
|
||||
(only useable from configuration file, not command line)
|
||||
.HP
|
||||
\fB\-loadblock=\fR<file>
|
||||
.IP
|
||||
Imports blocks from external file on startup
|
||||
.HP
|
||||
\fB\-maxmempool=\fR<n>
|
||||
.IP
|
||||
Keep the transaction memory pool below <n> megabytes (default: 300)
|
||||
.HP
|
||||
\fB\-maxorphantx=\fR<n>
|
||||
.IP
|
||||
Keep at most <n> unconnectable transactions in memory (default: 100)
|
||||
.HP
|
||||
\fB\-mempoolexpiry=\fR<n>
|
||||
.IP
|
||||
Do not keep transactions in the mempool longer than <n> hours (default:
|
||||
336)
|
||||
.HP
|
||||
\fB\-par=\fR<n>
|
||||
.IP
|
||||
Set the number of script verification threads (\fB\-6\fR to 15, 0 = auto, <0 =
|
||||
leave that many cores free, default: 0)
|
||||
.HP
|
||||
\fB\-persistmempool\fR
|
||||
.IP
|
||||
Whether to save the mempool on shutdown and load on restart (default: 1)
|
||||
.HP
|
||||
\fB\-pid=\fR<file>
|
||||
.IP
|
||||
Specify pid file. Relative paths will be prefixed by a net\-specific
|
||||
datadir location. (default: bitcoind.pid)
|
||||
.HP
|
||||
\fB\-prune=\fR<n>
|
||||
.IP
|
||||
Reduce storage requirements by enabling pruning (deleting) of old
|
||||
blocks. This allows the pruneblockchain RPC to be called to
|
||||
delete specific blocks, and enables automatic pruning of old
|
||||
blocks if a target size in MiB is provided. This mode is
|
||||
incompatible with \fB\-txindex\fR, \fB\-coinstatsindex\fR and \fB\-rescan\fR. Warning:
|
||||
Reverting this setting requires re\-downloading the entire
|
||||
blockchain. (default: 0 = disable pruning blocks, 1 = allow
|
||||
manual pruning via RPC, >=550 = automatically prune block files
|
||||
to stay under the specified target size in MiB)
|
||||
.HP
|
||||
\fB\-reindex\fR
|
||||
.IP
|
||||
Rebuild chain state and block index from the blk*.dat files on disk
|
||||
.HP
|
||||
\fB\-reindex\-chainstate\fR
|
||||
.IP
|
||||
Rebuild chain state from the currently indexed blocks. When in pruning
|
||||
mode or if blocks on disk might be corrupted, use full \fB\-reindex\fR
|
||||
instead.
|
||||
.HP
|
||||
\fB\-settings=\fR<file>
|
||||
.IP
|
||||
Specify path to dynamic settings data file. Can be disabled with
|
||||
\fB\-nosettings\fR. File is written at runtime and not meant to be
|
||||
edited by users (use bitcoin.conf instead for custom settings).
|
||||
Relative paths will be prefixed by datadir location. (default:
|
||||
settings.json)
|
||||
.HP
|
||||
\fB\-startupnotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command on startup.
|
||||
.HP
|
||||
\fB\-sysperms\fR
|
||||
.IP
|
||||
Create new files with system default permissions, instead of umask 077
|
||||
(only effective with disabled wallet functionality)
|
||||
.HP
|
||||
\fB\-txindex\fR
|
||||
.IP
|
||||
Maintain a full transaction index, used by the getrawtransaction rpc
|
||||
call (default: 0)
|
||||
.HP
|
||||
\fB\-version\fR
|
||||
.IP
|
||||
Print version and exit
|
||||
.PP
|
||||
Connection options:
|
||||
.HP
|
||||
\fB\-addnode=\fR<ip>
|
||||
.IP
|
||||
Add a node to connect to and attempt to keep the connection open (see
|
||||
the addnode RPC help for more info). This option can be specified
|
||||
multiple times to add multiple nodes; connections are limited to
|
||||
8 at a time and are counted separately from the \fB\-maxconnections\fR
|
||||
limit.
|
||||
.HP
|
||||
\fB\-asmap=\fR<file>
|
||||
.IP
|
||||
Specify asn mapping used for bucketing of the peers (default:
|
||||
ip_asn.map). Relative paths will be prefixed by the net\-specific
|
||||
datadir location.
|
||||
.HP
|
||||
\fB\-bantime=\fR<n>
|
||||
.IP
|
||||
Default duration (in seconds) of manually configured bans (default:
|
||||
86400)
|
||||
.HP
|
||||
\fB\-bind=\fR<addr>[:<port>][=onion]
|
||||
.IP
|
||||
Bind to given address and always listen on it (default: 0.0.0.0). Use
|
||||
[host]:port notation for IPv6. Append =onion to tag any incoming
|
||||
connections to that address and port as incoming Tor connections
|
||||
(default: 127.0.0.1:8334=onion, testnet: 127.0.0.1:18334=onion,
|
||||
signet: 127.0.0.1:38334=onion, regtest: 127.0.0.1:18445=onion)
|
||||
.HP
|
||||
\fB\-connect=\fR<ip>
|
||||
.IP
|
||||
Connect only to the specified node; \fB\-noconnect\fR disables automatic
|
||||
connections (the rules for this peer are the same as for
|
||||
\fB\-addnode\fR). This option can be specified multiple times to connect
|
||||
to multiple nodes.
|
||||
.HP
|
||||
\fB\-discover\fR
|
||||
.IP
|
||||
Discover own IP addresses (default: 1 when listening and no \fB\-externalip\fR
|
||||
or \fB\-proxy\fR)
|
||||
.HP
|
||||
\fB\-dns\fR
|
||||
.IP
|
||||
Allow DNS lookups for \fB\-addnode\fR, \fB\-seednode\fR and \fB\-connect\fR (default: 1)
|
||||
.HP
|
||||
\fB\-dnsseed\fR
|
||||
.IP
|
||||
Query for peer addresses via DNS lookup, if low on addresses (default: 1
|
||||
unless \fB\-connect\fR used)
|
||||
.HP
|
||||
\fB\-externalip=\fR<ip>
|
||||
.IP
|
||||
Specify your own public address
|
||||
.HP
|
||||
\fB\-fixedseeds\fR
|
||||
.IP
|
||||
Allow fixed seeds if DNS seeds don't provide peers (default: 1)
|
||||
.HP
|
||||
\fB\-forcednsseed\fR
|
||||
.IP
|
||||
Always query for peer addresses via DNS lookup (default: 0)
|
||||
.HP
|
||||
\fB\-i2pacceptincoming\fR
|
||||
.IP
|
||||
If set and \fB\-i2psam\fR is also set then incoming I2P connections are
|
||||
accepted via the SAM proxy. If this is not set but \fB\-i2psam\fR is set
|
||||
then only outgoing connections will be made to the I2P network.
|
||||
Ignored if \fB\-i2psam\fR is not set. Listening for incoming I2P
|
||||
connections is done through the SAM proxy, not by binding to a
|
||||
local address and port (default: 1)
|
||||
.HP
|
||||
\fB\-i2psam=\fR<ip:port>
|
||||
.IP
|
||||
I2P SAM proxy to reach I2P peers and accept I2P connections (default:
|
||||
none)
|
||||
.HP
|
||||
\fB\-listen\fR
|
||||
.IP
|
||||
Accept connections from outside (default: 1 if no \fB\-proxy\fR or \fB\-connect\fR)
|
||||
.HP
|
||||
\fB\-listenonion\fR
|
||||
.IP
|
||||
Automatically create Tor onion service (default: 1)
|
||||
.HP
|
||||
\fB\-maxconnections=\fR<n>
|
||||
.IP
|
||||
Maintain at most <n> connections to peers (default: 125). This limit
|
||||
does not apply to connections manually added via \fB\-addnode\fR or the
|
||||
addnode RPC, which have a separate limit of 8.
|
||||
.HP
|
||||
\fB\-maxreceivebuffer=\fR<n>
|
||||
.IP
|
||||
Maximum per\-connection receive buffer, <n>*1000 bytes (default: 5000)
|
||||
.HP
|
||||
\fB\-maxsendbuffer=\fR<n>
|
||||
.IP
|
||||
Maximum per\-connection send buffer, <n>*1000 bytes (default: 1000)
|
||||
.HP
|
||||
\fB\-maxtimeadjustment\fR
|
||||
.IP
|
||||
Maximum allowed median peer time offset adjustment. Local perspective of
|
||||
time may be influenced by peers forward or backward by this
|
||||
amount. (default: 4200 seconds)
|
||||
.HP
|
||||
\fB\-maxuploadtarget=\fR<n>
|
||||
.IP
|
||||
Tries to keep outbound traffic under the given target (in MiB per 24h).
|
||||
Limit does not apply to peers with 'download' permission. 0 = no
|
||||
limit (default: 0)
|
||||
.HP
|
||||
\fB\-natpmp\fR
|
||||
.IP
|
||||
Use NAT\-PMP to map the listening port (default: 0)
|
||||
.HP
|
||||
\fB\-networkactive\fR
|
||||
.IP
|
||||
Enable all P2P network activity (default: 1). Can be changed by the
|
||||
setnetworkactive RPC command
|
||||
.HP
|
||||
\fB\-onion=\fR<ip:port>
|
||||
.IP
|
||||
Use separate SOCKS5 proxy to reach peers via Tor onion services, set
|
||||
\fB\-noonion\fR to disable (default: \fB\-proxy\fR)
|
||||
.HP
|
||||
\fB\-onlynet=\fR<net>
|
||||
.IP
|
||||
Make outgoing connections only through network <net> (ipv4, ipv6, onion,
|
||||
i2p). Incoming connections are not affected by this option. This
|
||||
option can be specified multiple times to allow multiple
|
||||
networks. Warning: if it is used with non\-onion networks and the
|
||||
\fB\-onion\fR or \fB\-proxy\fR option is set, then outbound onion connections
|
||||
will still be made; use \fB\-noonion\fR or \fB\-onion\fR=\fI\,0\/\fR to disable outbound
|
||||
onion connections in this case.
|
||||
.HP
|
||||
\fB\-peerblockfilters\fR
|
||||
.IP
|
||||
Serve compact block filters to peers per BIP 157 (default: 0)
|
||||
.HP
|
||||
\fB\-peerbloomfilters\fR
|
||||
.IP
|
||||
Support filtering of blocks and transaction with bloom filters (default:
|
||||
0)
|
||||
.HP
|
||||
\fB\-permitbaremultisig\fR
|
||||
.IP
|
||||
Relay non\-P2SH multisig (default: 1)
|
||||
.HP
|
||||
\fB\-port=\fR<port>
|
||||
.IP
|
||||
Listen for connections on <port>. Nodes not using the default ports
|
||||
(default: 8333, testnet: 18333, signet: 38333, regtest: 18444)
|
||||
are unlikely to get incoming connections. Not relevant for I2P
|
||||
(see doc/i2p.md).
|
||||
.HP
|
||||
\fB\-proxy=\fR<ip:port>
|
||||
.IP
|
||||
Connect through SOCKS5 proxy, set \fB\-noproxy\fR to disable (default:
|
||||
disabled)
|
||||
.HP
|
||||
\fB\-proxyrandomize\fR
|
||||
.IP
|
||||
Randomize credentials for every proxy connection. This enables Tor
|
||||
stream isolation (default: 1)
|
||||
.HP
|
||||
\fB\-seednode=\fR<ip>
|
||||
.IP
|
||||
Connect to a node to retrieve peer addresses, and disconnect. This
|
||||
option can be specified multiple times to connect to multiple
|
||||
nodes.
|
||||
.HP
|
||||
\fB\-timeout=\fR<n>
|
||||
.IP
|
||||
Specify socket connection timeout in milliseconds. If an initial attempt
|
||||
to connect is unsuccessful after this amount of time, drop it
|
||||
(minimum: 1, default: 5000)
|
||||
.HP
|
||||
\fB\-torcontrol=\fR<ip>:<port>
|
||||
.IP
|
||||
Tor control port to use if onion listening enabled (default:
|
||||
127.0.0.1:9051)
|
||||
.HP
|
||||
\fB\-torpassword=\fR<pass>
|
||||
.IP
|
||||
Tor control port password (default: empty)
|
||||
.HP
|
||||
\fB\-upnp\fR
|
||||
.IP
|
||||
Use UPnP to map the listening port (default: 0)
|
||||
.HP
|
||||
\fB\-whitebind=\fR<[permissions@]addr>
|
||||
.IP
|
||||
Bind to the given address and add permission flags to the peers
|
||||
connecting to it. Use [host]:port notation for IPv6. Allowed
|
||||
permissions: bloomfilter (allow requesting BIP37 filtered blocks
|
||||
and transactions), noban (do not ban for misbehavior; implies
|
||||
download), forcerelay (relay transactions that are already in the
|
||||
mempool; implies relay), relay (relay even in \fB\-blocksonly\fR mode,
|
||||
and unlimited transaction announcements), mempool (allow
|
||||
requesting BIP35 mempool contents), download (allow getheaders
|
||||
during IBD, no disconnect after maxuploadtarget limit), addr
|
||||
(responses to GETADDR avoid hitting the cache and contain random
|
||||
records with the most up\-to\-date info). Specify multiple
|
||||
permissions separated by commas (default:
|
||||
download,noban,mempool,relay). Can be specified multiple times.
|
||||
.HP
|
||||
\fB\-whitelist=\fR<[permissions@]IP address or network>
|
||||
.IP
|
||||
Add permission flags to the peers connecting from the given IP address
|
||||
(e.g. 1.2.3.4) or CIDR\-notated network (e.g. 1.2.3.0/24). Uses
|
||||
the same permissions as \fB\-whitebind\fR. Can be specified multiple
|
||||
times.
|
||||
.PP
|
||||
Wallet options:
|
||||
.HP
|
||||
\fB\-addresstype\fR
|
||||
.IP
|
||||
What type of addresses to use ("legacy", "p2sh\-segwit", or "bech32",
|
||||
default: "bech32")
|
||||
.HP
|
||||
\fB\-avoidpartialspends\fR
|
||||
.IP
|
||||
Group outputs by address, selecting many (possibly all) or none, instead
|
||||
of selecting on a per\-output basis. Privacy is improved as
|
||||
addresses are mostly swept with fewer transactions and outputs
|
||||
are aggregated in clean change addresses. It may result in higher
|
||||
fees due to less optimal coin selection caused by this added
|
||||
limitation and possibly a larger\-than\-necessary number of inputs
|
||||
being used. Always enabled for wallets with "avoid_reuse"
|
||||
enabled, otherwise default: 0.
|
||||
.HP
|
||||
\fB\-changetype\fR
|
||||
.IP
|
||||
What type of change to use ("legacy", "p2sh\-segwit", or "bech32").
|
||||
Default is same as \fB\-addresstype\fR, except when
|
||||
\fB\-addresstype\fR=\fI\,p2sh\-segwit\/\fR a native segwit output is used when
|
||||
sending to a native segwit address)
|
||||
.HP
|
||||
\fB\-disablewallet\fR
|
||||
.IP
|
||||
Do not load the wallet and disable wallet RPC calls
|
||||
.HP
|
||||
\fB\-discardfee=\fR<amt>
|
||||
.IP
|
||||
The fee rate (in BTC/kvB) that indicates your tolerance for discarding
|
||||
change by adding it to the fee (default: 0.0001). Note: An output
|
||||
is discarded if it is dust at this rate, but we will always
|
||||
discard up to the dust relay fee and a discard fee above that is
|
||||
limited by the fee estimate for the longest target
|
||||
.HP
|
||||
\fB\-fallbackfee=\fR<amt>
|
||||
.IP
|
||||
A fee rate (in BTC/kvB) that will be used when fee estimation has
|
||||
insufficient data. 0 to entirely disable the fallbackfee feature.
|
||||
(default: 0.00)
|
||||
.HP
|
||||
\fB\-keypool=\fR<n>
|
||||
.IP
|
||||
Set key pool size to <n> (default: 1000). Warning: Smaller sizes may
|
||||
increase the risk of losing funds when restoring from an old
|
||||
backup, if none of the addresses in the original keypool have
|
||||
been used.
|
||||
.HP
|
||||
\fB\-maxapsfee=\fR<n>
|
||||
.IP
|
||||
Spend up to this amount in additional (absolute) fees (in BTC) if it
|
||||
allows the use of partial spend avoidance (default: 0.00)
|
||||
.HP
|
||||
\fB\-mintxfee=\fR<amt>
|
||||
.IP
|
||||
Fee rates (in BTC/kvB) smaller than this are considered zero fee for
|
||||
transaction creation (default: 0.00001)
|
||||
.HP
|
||||
\fB\-paytxfee=\fR<amt>
|
||||
.IP
|
||||
Fee rate (in BTC/kvB) to add to transactions you send (default: 0.00)
|
||||
.HP
|
||||
\fB\-rescan\fR
|
||||
.IP
|
||||
Rescan the block chain for missing wallet transactions on startup
|
||||
.HP
|
||||
\fB\-signer=\fR<cmd>
|
||||
.IP
|
||||
External signing tool, see doc/external\-signer.md
|
||||
.HP
|
||||
\fB\-spendzeroconfchange\fR
|
||||
.IP
|
||||
Spend unconfirmed change when sending transactions (default: 1)
|
||||
.HP
|
||||
\fB\-txconfirmtarget=\fR<n>
|
||||
.IP
|
||||
If paytxfee is not set, include enough fee so transactions begin
|
||||
confirmation on average within n blocks (default: 6)
|
||||
.HP
|
||||
\fB\-wallet=\fR<path>
|
||||
.IP
|
||||
Specify wallet path to load at startup. Can be used multiple times to
|
||||
load multiple wallets. Path is to a directory containing wallet
|
||||
data and log files. If the path is not absolute, it is
|
||||
interpreted relative to <walletdir>. This only loads existing
|
||||
wallets and does not create new ones. For backwards compatibility
|
||||
this also accepts names of existing top\-level data files in
|
||||
<walletdir>.
|
||||
.HP
|
||||
\fB\-walletbroadcast\fR
|
||||
.IP
|
||||
Make the wallet broadcast transactions (default: 1)
|
||||
.HP
|
||||
\fB\-walletdir=\fR<dir>
|
||||
.IP
|
||||
Specify directory to hold wallets (default: <datadir>/wallets if it
|
||||
exists, otherwise <datadir>)
|
||||
.HP
|
||||
\fB\-walletnotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command when a wallet transaction changes. %s in cmd is replaced
|
||||
by TxID, %w is replaced by wallet name, %b is replaced by the
|
||||
hash of the block including the transaction (set to 'unconfirmed'
|
||||
if the transaction is not included) and %h is replaced by the
|
||||
block height (\fB\-1\fR if not included). %w is not currently
|
||||
implemented on windows. On systems where %w is supported, it
|
||||
should NOT be quoted because this would break shell escaping used
|
||||
to invoke the command.
|
||||
.HP
|
||||
\fB\-walletrbf\fR
|
||||
.IP
|
||||
Send transactions with full\-RBF opt\-in enabled (RPC only, default: 0)
|
||||
.PP
|
||||
ZeroMQ notification options:
|
||||
.HP
|
||||
\fB\-zmqpubhashblock=\fR<address>
|
||||
.IP
|
||||
Enable publish hash block in <address>
|
||||
.HP
|
||||
\fB\-zmqpubhashblockhwm=\fR<n>
|
||||
.IP
|
||||
Set publish hash block outbound message high water mark (default: 1000)
|
||||
.HP
|
||||
\fB\-zmqpubhashtx=\fR<address>
|
||||
.IP
|
||||
Enable publish hash transaction in <address>
|
||||
.HP
|
||||
\fB\-zmqpubhashtxhwm=\fR<n>
|
||||
.IP
|
||||
Set publish hash transaction outbound message high water mark (default:
|
||||
1000)
|
||||
.HP
|
||||
\fB\-zmqpubrawblock=\fR<address>
|
||||
.IP
|
||||
Enable publish raw block in <address>
|
||||
.HP
|
||||
\fB\-zmqpubrawblockhwm=\fR<n>
|
||||
.IP
|
||||
Set publish raw block outbound message high water mark (default: 1000)
|
||||
.HP
|
||||
\fB\-zmqpubrawtx=\fR<address>
|
||||
.IP
|
||||
Enable publish raw transaction in <address>
|
||||
.HP
|
||||
\fB\-zmqpubrawtxhwm=\fR<n>
|
||||
.IP
|
||||
Set publish raw transaction outbound message high water mark (default:
|
||||
1000)
|
||||
.HP
|
||||
\fB\-zmqpubsequence=\fR<address>
|
||||
.IP
|
||||
Enable publish hash block and tx sequence in <address>
|
||||
.HP
|
||||
\fB\-zmqpubsequencehwm=\fR<n>
|
||||
.IP
|
||||
Set publish hash sequence message high water mark (default: 1000)
|
||||
.PP
|
||||
Debugging/Testing options:
|
||||
.HP
|
||||
\fB\-debug=\fR<category>
|
||||
.IP
|
||||
Output debugging information (default: \fB\-nodebug\fR, supplying <category> is
|
||||
optional). If <category> is not supplied or if <category> = 1,
|
||||
output all debugging information. <category> can be: net, tor,
|
||||
mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman,
|
||||
selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej,
|
||||
libevent, coindb, qt, leveldb, validation, i2p, ipc. This option
|
||||
can be specified multiple times to output multiple categories.
|
||||
.HP
|
||||
\fB\-debugexclude=\fR<category>
|
||||
.IP
|
||||
Exclude debugging information for a category. Can be used in conjunction
|
||||
with \fB\-debug\fR=\fI\,1\/\fR to output debug logs for all categories except the
|
||||
specified category. This option can be specified multiple times
|
||||
to exclude multiple categories.
|
||||
.HP
|
||||
\fB\-help\-debug\fR
|
||||
.IP
|
||||
Print help message with debugging options and exit
|
||||
.HP
|
||||
\fB\-logips\fR
|
||||
.IP
|
||||
Include IP addresses in debug output (default: 0)
|
||||
.HP
|
||||
\fB\-logsourcelocations\fR
|
||||
.IP
|
||||
Prepend debug output with name of the originating source location
|
||||
(source file, line number and function name) (default: 0)
|
||||
.HP
|
||||
\fB\-logthreadnames\fR
|
||||
.IP
|
||||
Prepend debug output with name of the originating thread (only available
|
||||
on platforms supporting thread_local) (default: 0)
|
||||
.HP
|
||||
\fB\-logtimestamps\fR
|
||||
.IP
|
||||
Prepend debug output with timestamp (default: 1)
|
||||
.HP
|
||||
\fB\-maxtxfee=\fR<amt>
|
||||
.IP
|
||||
Maximum total fees (in BTC) to use in a single wallet transaction;
|
||||
setting this too low may abort large transactions (default: 0.10)
|
||||
.HP
|
||||
\fB\-printtoconsole\fR
|
||||
.IP
|
||||
Send trace/debug info to console (default: 1 when no \fB\-daemon\fR. To disable
|
||||
logging to file, set \fB\-nodebuglogfile\fR)
|
||||
.HP
|
||||
\fB\-shrinkdebugfile\fR
|
||||
.IP
|
||||
Shrink debug.log file on client startup (default: 1 when no \fB\-debug\fR)
|
||||
.HP
|
||||
\fB\-uacomment=\fR<cmt>
|
||||
.IP
|
||||
Append comment to the user agent string
|
||||
.PP
|
||||
Chain selection options:
|
||||
.HP
|
||||
\fB\-chain=\fR<chain>
|
||||
.IP
|
||||
Use the chain <chain> (default: main). Allowed values: main, test,
|
||||
signet, regtest
|
||||
.HP
|
||||
\fB\-signet\fR
|
||||
.IP
|
||||
Use the signet chain. Equivalent to \fB\-chain\fR=\fI\,signet\/\fR. Note that the network
|
||||
is defined by the \fB\-signetchallenge\fR parameter
|
||||
.HP
|
||||
\fB\-signetchallenge\fR
|
||||
.IP
|
||||
Blocks must satisfy the given script to be considered valid (only for
|
||||
signet networks; defaults to the global default signet test
|
||||
network challenge)
|
||||
.HP
|
||||
\fB\-signetseednode\fR
|
||||
.IP
|
||||
Specify a seed node for the signet network, in the hostname[:port]
|
||||
format, e.g. sig.net:1234 (may be used multiple times to specify
|
||||
multiple seed nodes; defaults to the global default signet test
|
||||
network seed node(s))
|
||||
.HP
|
||||
\fB\-testnet\fR
|
||||
.IP
|
||||
Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR.
|
||||
.PP
|
||||
Node relay options:
|
||||
.HP
|
||||
\fB\-bytespersigop\fR
|
||||
.IP
|
||||
Equivalent bytes per sigop in transactions for relay and mining
|
||||
(default: 20)
|
||||
.HP
|
||||
\fB\-datacarrier\fR
|
||||
.IP
|
||||
Relay and mine data carrier transactions (default: 1)
|
||||
.HP
|
||||
\fB\-datacarriersize\fR
|
||||
.IP
|
||||
Maximum size of data in data carrier transactions we relay and mine
|
||||
(default: 83)
|
||||
.HP
|
||||
\fB\-minrelaytxfee=\fR<amt>
|
||||
.IP
|
||||
Fees (in BTC/kvB) smaller than this are considered zero fee for
|
||||
relaying, mining and transaction creation (default: 0.00001)
|
||||
.HP
|
||||
\fB\-whitelistforcerelay\fR
|
||||
.IP
|
||||
Add 'forcerelay' permission to whitelisted inbound peers with default
|
||||
permissions. This will relay transactions even if the
|
||||
transactions were already in the mempool. (default: 0)
|
||||
.HP
|
||||
\fB\-whitelistrelay\fR
|
||||
.IP
|
||||
Add 'relay' permission to whitelisted inbound peers with default
|
||||
permissions. This will accept relayed transactions even when not
|
||||
relaying transactions (default: 1)
|
||||
.PP
|
||||
Block creation options:
|
||||
.HP
|
||||
\fB\-blockmaxweight=\fR<n>
|
||||
.IP
|
||||
Set maximum BIP141 block weight (default: 3996000)
|
||||
.HP
|
||||
\fB\-blockmintxfee=\fR<amt>
|
||||
.IP
|
||||
Set lowest fee rate (in BTC/kvB) for transactions to be included in
|
||||
block creation. (default: 0.00001)
|
||||
.PP
|
||||
RPC server options:
|
||||
.HP
|
||||
\fB\-rest\fR
|
||||
.IP
|
||||
Accept public REST requests (default: 0)
|
||||
.HP
|
||||
\fB\-rpcallowip=\fR<ip>
|
||||
.IP
|
||||
Allow JSON\-RPC connections from specified source. Valid for <ip> are a
|
||||
single IP (e.g. 1.2.3.4), a network/netmask (e.g.
|
||||
1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This
|
||||
option can be specified multiple times
|
||||
.HP
|
||||
\fB\-rpcauth=\fR<userpw>
|
||||
.IP
|
||||
Username and HMAC\-SHA\-256 hashed password for JSON\-RPC connections. The
|
||||
field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A
|
||||
canonical python script is included in share/rpcauth. The client
|
||||
then connects normally using the
|
||||
rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This
|
||||
option can be specified multiple times
|
||||
.HP
|
||||
\fB\-rpcbind=\fR<addr>[:port]
|
||||
.IP
|
||||
Bind to given address to listen for JSON\-RPC connections. Do not expose
|
||||
the RPC server to untrusted networks such as the public internet!
|
||||
This option is ignored unless \fB\-rpcallowip\fR is also passed. Port is
|
||||
optional and overrides \fB\-rpcport\fR. Use [host]:port notation for
|
||||
IPv6. This option can be specified multiple times (default:
|
||||
127.0.0.1 and ::1 i.e., localhost)
|
||||
.HP
|
||||
\fB\-rpccookiefile=\fR<loc>
|
||||
.IP
|
||||
Location of the auth cookie. Relative paths will be prefixed by a
|
||||
net\-specific datadir location. (default: data dir)
|
||||
.HP
|
||||
\fB\-rpcpassword=\fR<pw>
|
||||
.IP
|
||||
Password for JSON\-RPC connections
|
||||
.HP
|
||||
\fB\-rpcport=\fR<port>
|
||||
.IP
|
||||
Listen for JSON\-RPC connections on <port> (default: 8332, testnet:
|
||||
18332, signet: 38332, regtest: 18443)
|
||||
.HP
|
||||
\fB\-rpcserialversion\fR
|
||||
.IP
|
||||
Sets the serialization of raw transaction or block hex returned in
|
||||
non\-verbose mode, non\-segwit(0) or segwit(1) (default: 1)
|
||||
.HP
|
||||
\fB\-rpcthreads=\fR<n>
|
||||
.IP
|
||||
Set the number of threads to service RPC calls (default: 4)
|
||||
.HP
|
||||
\fB\-rpcuser=\fR<user>
|
||||
.IP
|
||||
Username for JSON\-RPC connections
|
||||
.HP
|
||||
\fB\-rpcwhitelist=\fR<whitelist>
|
||||
.IP
|
||||
Set a whitelist to filter incoming RPC calls for a specific user. The
|
||||
field <whitelist> comes in the format: <USERNAME>:<rpc 1>,<rpc
|
||||
2>,...,<rpc n>. If multiple whitelists are set for a given user,
|
||||
they are set\-intersected. See \fB\-rpcwhitelistdefault\fR documentation
|
||||
for information on default whitelist behavior.
|
||||
.HP
|
||||
\fB\-rpcwhitelistdefault\fR
|
||||
.IP
|
||||
Sets default behavior for rpc whitelisting. Unless rpcwhitelistdefault
|
||||
is set to 0, if any \fB\-rpcwhitelist\fR is set, the rpc server acts as
|
||||
if all rpc users are subject to empty\-unless\-otherwise\-specified
|
||||
whitelists. If rpcwhitelistdefault is set to 1 and no
|
||||
\fB\-rpcwhitelist\fR is set, rpc server acts as if all rpc users are
|
||||
subject to empty whitelists.
|
||||
.HP
|
||||
\fB\-server\fR
|
||||
.IP
|
||||
Accept command line and JSON\-RPC commands
|
||||
.PP
|
||||
UI Options:
|
||||
.HP
|
||||
\fB\-choosedatadir\fR
|
||||
.IP
|
||||
Choose data directory on startup (default: 0)
|
||||
.HP
|
||||
\fB\-lang=\fR<lang>
|
||||
.IP
|
||||
Set language, for example "de_DE" (default: system locale)
|
||||
.HP
|
||||
\fB\-min\fR
|
||||
.IP
|
||||
Start minimized
|
||||
.HP
|
||||
\fB\-resetguisettings\fR
|
||||
.IP
|
||||
Reset all settings changed in the GUI
|
||||
.HP
|
||||
\fB\-splash\fR
|
||||
.IP
|
||||
Show splash screen on startup (default: 1)
|
||||
|
||||
@@ -1,5 +1,135 @@
|
||||
.TH BITCOIN-TX "1"
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
|
||||
.TH BITCOIN-TX "1" "September 2021" "bitcoin-tx v22.0.0" "User Commands"
|
||||
.SH NAME
|
||||
bitcoin-tx \- manual page for bitcoin-tx
|
||||
|
||||
This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
|
||||
bitcoin-tx \- manual page for bitcoin-tx v22.0.0
|
||||
.SH SYNOPSIS
|
||||
.B bitcoin-tx
|
||||
[\fI\,options\/\fR] \fI\,<hex-tx> \/\fR[\fI\,commands\/\fR] \fI\,Update hex-encoded bitcoin transaction\/\fR
|
||||
.br
|
||||
.B bitcoin-tx
|
||||
[\fI\,options\/\fR] \fI\,-create \/\fR[\fI\,commands\/\fR] \fI\,Create hex-encoded bitcoin transaction\/\fR
|
||||
.SH DESCRIPTION
|
||||
Bitcoin Core bitcoin\-tx utility version v22.0.0
|
||||
.SH OPTIONS
|
||||
.HP
|
||||
\-?
|
||||
.IP
|
||||
Print this help message and exit
|
||||
.HP
|
||||
\fB\-create\fR
|
||||
.IP
|
||||
Create new, empty TX.
|
||||
.HP
|
||||
\fB\-json\fR
|
||||
.IP
|
||||
Select JSON output
|
||||
.HP
|
||||
\fB\-txid\fR
|
||||
.IP
|
||||
Output only the hex\-encoded transaction id of the resultant transaction.
|
||||
.HP
|
||||
\fB\-version\fR
|
||||
.IP
|
||||
Print version and exit
|
||||
.PP
|
||||
Debugging/Testing options:
|
||||
.PP
|
||||
Chain selection options:
|
||||
.HP
|
||||
\fB\-chain=\fR<chain>
|
||||
.IP
|
||||
Use the chain <chain> (default: main). Allowed values: main, test,
|
||||
signet, regtest
|
||||
.HP
|
||||
\fB\-signet\fR
|
||||
.IP
|
||||
Use the signet chain. Equivalent to \fB\-chain\fR=\fI\,signet\/\fR. Note that the network
|
||||
is defined by the \fB\-signetchallenge\fR parameter
|
||||
.HP
|
||||
\fB\-signetchallenge\fR
|
||||
.IP
|
||||
Blocks must satisfy the given script to be considered valid (only for
|
||||
signet networks; defaults to the global default signet test
|
||||
network challenge)
|
||||
.HP
|
||||
\fB\-signetseednode\fR
|
||||
.IP
|
||||
Specify a seed node for the signet network, in the hostname[:port]
|
||||
format, e.g. sig.net:1234 (may be used multiple times to specify
|
||||
multiple seed nodes; defaults to the global default signet test
|
||||
network seed node(s))
|
||||
.HP
|
||||
\fB\-testnet\fR
|
||||
.IP
|
||||
Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR.
|
||||
.PP
|
||||
Commands:
|
||||
.IP
|
||||
delin=N
|
||||
.IP
|
||||
Delete input N from TX
|
||||
.IP
|
||||
delout=N
|
||||
.IP
|
||||
Delete output N from TX
|
||||
.IP
|
||||
in=TXID:VOUT(:SEQUENCE_NUMBER)
|
||||
.IP
|
||||
Add input to TX
|
||||
.IP
|
||||
locktime=N
|
||||
.IP
|
||||
Set TX lock time to N
|
||||
.IP
|
||||
nversion=N
|
||||
.IP
|
||||
Set TX version to N
|
||||
.IP
|
||||
outaddr=VALUE:ADDRESS
|
||||
.IP
|
||||
Add address\-based output to TX
|
||||
.IP
|
||||
outdata=[VALUE:]DATA
|
||||
.IP
|
||||
Add data\-based output to TX
|
||||
.IP
|
||||
outmultisig=VALUE:REQUIRED:PUBKEYS:PUBKEY1:PUBKEY2:....[:FLAGS]
|
||||
.IP
|
||||
Add Pay To n\-of\-m Multi\-sig output to TX. n = REQUIRED, m = PUBKEYS.
|
||||
Optionally add the "W" flag to produce a
|
||||
pay\-to\-witness\-script\-hash output. Optionally add the "S" flag to
|
||||
wrap the output in a pay\-to\-script\-hash.
|
||||
.IP
|
||||
outpubkey=VALUE:PUBKEY[:FLAGS]
|
||||
.IP
|
||||
Add pay\-to\-pubkey output to TX. Optionally add the "W" flag to produce a
|
||||
pay\-to\-witness\-pubkey\-hash output. Optionally add the "S" flag to
|
||||
wrap the output in a pay\-to\-script\-hash.
|
||||
.IP
|
||||
outscript=VALUE:SCRIPT[:FLAGS]
|
||||
.IP
|
||||
Add raw script output to TX. Optionally add the "W" flag to produce a
|
||||
pay\-to\-witness\-script\-hash output. Optionally add the "S" flag to
|
||||
wrap the output in a pay\-to\-script\-hash.
|
||||
.IP
|
||||
replaceable(=N)
|
||||
.IP
|
||||
Set RBF opt\-in sequence number for input N (if not provided, opt\-in all
|
||||
available inputs)
|
||||
.IP
|
||||
sign=SIGHASH\-FLAGS
|
||||
.IP
|
||||
Add zero or more signatures to transaction. This command requires JSON
|
||||
registers:prevtxs=JSON object, privatekeys=JSON object. See
|
||||
signrawtransactionwithkey docs for format of sighash flags, JSON
|
||||
objects.
|
||||
.PP
|
||||
Register Commands:
|
||||
.IP
|
||||
load=NAME:FILENAME
|
||||
.IP
|
||||
Load JSON file FILENAME into register NAME
|
||||
.IP
|
||||
set=NAME:JSON\-STRING
|
||||
.IP
|
||||
Set register NAME to given JSON\-STRING
|
||||
|
||||
@@ -1,5 +1,55 @@
|
||||
.TH BITCOIN-UTIL "1"
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
|
||||
.TH BITCOIN-UTIL "1" "September 2021" "bitcoin-util v22.0.0" "User Commands"
|
||||
.SH NAME
|
||||
bitcoin-util \- manual page for bitcoin-util
|
||||
|
||||
This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
|
||||
bitcoin-util \- manual page for bitcoin-util v22.0.0
|
||||
.SH SYNOPSIS
|
||||
.B bitcoin-util
|
||||
[\fI\,options\/\fR] [\fI\,commands\/\fR] \fI\,Do stuff\/\fR
|
||||
.SH DESCRIPTION
|
||||
Bitcoin Core bitcoin\-util utility version v22.0.0
|
||||
.SH OPTIONS
|
||||
.HP
|
||||
\-?
|
||||
.IP
|
||||
Print this help message and exit
|
||||
.HP
|
||||
\fB\-version\fR
|
||||
.IP
|
||||
Print version and exit
|
||||
.PP
|
||||
Debugging/Testing options:
|
||||
.PP
|
||||
Chain selection options:
|
||||
.HP
|
||||
\fB\-chain=\fR<chain>
|
||||
.IP
|
||||
Use the chain <chain> (default: main). Allowed values: main, test,
|
||||
signet, regtest
|
||||
.HP
|
||||
\fB\-signet\fR
|
||||
.IP
|
||||
Use the signet chain. Equivalent to \fB\-chain\fR=\fI\,signet\/\fR. Note that the network
|
||||
is defined by the \fB\-signetchallenge\fR parameter
|
||||
.HP
|
||||
\fB\-signetchallenge\fR
|
||||
.IP
|
||||
Blocks must satisfy the given script to be considered valid (only for
|
||||
signet networks; defaults to the global default signet test
|
||||
network challenge)
|
||||
.HP
|
||||
\fB\-signetseednode\fR
|
||||
.IP
|
||||
Specify a seed node for the signet network, in the hostname[:port]
|
||||
format, e.g. sig.net:1234 (may be used multiple times to specify
|
||||
multiple seed nodes; defaults to the global default signet test
|
||||
network seed node(s))
|
||||
.HP
|
||||
\fB\-testnet\fR
|
||||
.IP
|
||||
Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR.
|
||||
.PP
|
||||
Commands:
|
||||
.IP
|
||||
grind
|
||||
.IP
|
||||
Perform proof of work on hex header string
|
||||
|
||||
@@ -1,5 +1,107 @@
|
||||
.TH BITCOIN-WALLET "1"
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
|
||||
.TH BITCOIN-WALLET "1" "September 2021" "bitcoin-wallet v22.0.0" "User Commands"
|
||||
.SH NAME
|
||||
bitcoin-wallet \- manual page for bitcoin-wallet
|
||||
|
||||
This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
|
||||
bitcoin-wallet \- manual page for bitcoin-wallet v22.0.0
|
||||
.SH DESCRIPTION
|
||||
Bitcoin Core bitcoin\-wallet version v22.0.0
|
||||
.PP
|
||||
bitcoin\-wallet is an offline tool for creating and interacting with Bitcoin Core wallet files.
|
||||
By default bitcoin\-wallet will act on wallets in the default mainnet wallet directory in the datadir.
|
||||
To change the target wallet, use the \fB\-datadir\fR, \fB\-wallet\fR and \fB\-testnet\fR/\-regtest arguments.
|
||||
.SS "Usage:"
|
||||
.IP
|
||||
bitcoin\-wallet [options] <command>
|
||||
.SH OPTIONS
|
||||
.HP
|
||||
\-?
|
||||
.IP
|
||||
Print this help message and exit
|
||||
.HP
|
||||
\fB\-datadir=\fR<dir>
|
||||
.IP
|
||||
Specify data directory
|
||||
.HP
|
||||
\fB\-descriptors\fR
|
||||
.IP
|
||||
Create descriptors wallet. Only for 'create'
|
||||
.HP
|
||||
\fB\-dumpfile=\fR<file name>
|
||||
.IP
|
||||
When used with 'dump', writes out the records to this file. When used
|
||||
with 'createfromdump', loads the records into a new wallet.
|
||||
.HP
|
||||
\fB\-format=\fR<format>
|
||||
.IP
|
||||
The format of the wallet file to create. Either "bdb" or "sqlite". Only
|
||||
used with 'createfromdump'
|
||||
.HP
|
||||
\fB\-version\fR
|
||||
.IP
|
||||
Print version and exit
|
||||
.HP
|
||||
\fB\-wallet=\fR<wallet\-name>
|
||||
.IP
|
||||
Specify wallet name
|
||||
.PP
|
||||
Debugging/Testing options:
|
||||
.HP
|
||||
\fB\-debug=\fR<category>
|
||||
.IP
|
||||
Output debugging information (default: 0).
|
||||
.HP
|
||||
\fB\-printtoconsole\fR
|
||||
.IP
|
||||
Send trace/debug info to console (default: 1 when no \fB\-debug\fR is true, 0
|
||||
otherwise).
|
||||
.PP
|
||||
Chain selection options:
|
||||
.HP
|
||||
\fB\-chain=\fR<chain>
|
||||
.IP
|
||||
Use the chain <chain> (default: main). Allowed values: main, test,
|
||||
signet, regtest
|
||||
.HP
|
||||
\fB\-signet\fR
|
||||
.IP
|
||||
Use the signet chain. Equivalent to \fB\-chain\fR=\fI\,signet\/\fR. Note that the network
|
||||
is defined by the \fB\-signetchallenge\fR parameter
|
||||
.HP
|
||||
\fB\-signetchallenge\fR
|
||||
.IP
|
||||
Blocks must satisfy the given script to be considered valid (only for
|
||||
signet networks; defaults to the global default signet test
|
||||
network challenge)
|
||||
.HP
|
||||
\fB\-signetseednode\fR
|
||||
.IP
|
||||
Specify a seed node for the signet network, in the hostname[:port]
|
||||
format, e.g. sig.net:1234 (may be used multiple times to specify
|
||||
multiple seed nodes; defaults to the global default signet test
|
||||
network seed node(s))
|
||||
.HP
|
||||
\fB\-testnet\fR
|
||||
.IP
|
||||
Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR.
|
||||
.PP
|
||||
Commands:
|
||||
.IP
|
||||
create
|
||||
.IP
|
||||
Create new wallet file
|
||||
.IP
|
||||
createfromdump
|
||||
.IP
|
||||
Create new wallet file from dumped records
|
||||
.IP
|
||||
dump
|
||||
.IP
|
||||
Print out all of the wallet key\-value records
|
||||
.IP
|
||||
info
|
||||
.IP
|
||||
Get wallet info
|
||||
.IP
|
||||
salvage
|
||||
.IP
|
||||
Attempt to recover private keys from a corrupt wallet. Warning:
|
||||
\&'salvage' is experimental.
|
||||
|
||||
@@ -1,5 +1,767 @@
|
||||
.TH BITCOIND "1"
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
|
||||
.TH BITCOIND "1" "September 2021" "bitcoind v22.0.0" "User Commands"
|
||||
.SH NAME
|
||||
bitcoind \- manual page for bitcoind
|
||||
|
||||
This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
|
||||
bitcoind \- manual page for bitcoind v22.0.0
|
||||
.SH SYNOPSIS
|
||||
.B bitcoind
|
||||
[\fI\,options\/\fR] \fI\,Start Bitcoin Core\/\fR
|
||||
.SH DESCRIPTION
|
||||
Bitcoin Core version v22.0.0
|
||||
Copyright \(co 2009\-2021 The Bitcoin Core developers
|
||||
.PP
|
||||
Please contribute if you find Bitcoin Core useful. Visit
|
||||
<https://bitcoincore.org/> for further information about the software.
|
||||
The source code is available from <https://github.com/bitcoin/bitcoin>.
|
||||
.PP
|
||||
This is experimental software.
|
||||
Distributed under the MIT software license, see the accompanying file COPYING
|
||||
or <https://opensource.org/licenses/MIT>
|
||||
.SH OPTIONS
|
||||
.HP
|
||||
\-?
|
||||
.IP
|
||||
Print this help message and exit
|
||||
.HP
|
||||
\fB\-alertnotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command when a relevant alert is received or we see a really
|
||||
long fork (%s in cmd is replaced by message)
|
||||
.HP
|
||||
\fB\-assumevalid=\fR<hex>
|
||||
.IP
|
||||
If this block is in the chain assume that it and its ancestors are valid
|
||||
and potentially skip their script verification (0 to verify all,
|
||||
default:
|
||||
00000000000000000008a89e854d57e5667df88f1cdef6fde2fbca1de5b639ad,
|
||||
testnet:
|
||||
0000000000004ae2f3896ca8ecd41c460a35bf6184e145d91558cece1c688a76,
|
||||
signet:
|
||||
000000187d4440e5bff91488b700a140441e089a8aaea707414982460edbfe54)
|
||||
.HP
|
||||
\fB\-blockfilterindex=\fR<type>
|
||||
.IP
|
||||
Maintain an index of compact filters by block (default: 0, values:
|
||||
basic). If <type> is not supplied or if <type> = 1, indexes for
|
||||
all known types are enabled.
|
||||
.HP
|
||||
\fB\-blocknotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command when the best block changes (%s in cmd is replaced by
|
||||
block hash)
|
||||
.HP
|
||||
\fB\-blockreconstructionextratxn=\fR<n>
|
||||
.IP
|
||||
Extra transactions to keep in memory for compact block reconstructions
|
||||
(default: 100)
|
||||
.HP
|
||||
\fB\-blocksdir=\fR<dir>
|
||||
.IP
|
||||
Specify directory to hold blocks subdirectory for *.dat files (default:
|
||||
<datadir>)
|
||||
.HP
|
||||
\fB\-blocksonly\fR
|
||||
.IP
|
||||
Whether to reject transactions from network peers. Automatic broadcast
|
||||
and rebroadcast of any transactions from inbound peers is
|
||||
disabled, unless the peer has the 'forcerelay' permission. RPC
|
||||
transactions are not affected. (default: 0)
|
||||
.HP
|
||||
\fB\-coinstatsindex\fR
|
||||
.IP
|
||||
Maintain coinstats index used by the gettxoutsetinfo RPC (default: 0)
|
||||
.HP
|
||||
\fB\-conf=\fR<file>
|
||||
.IP
|
||||
Specify path to read\-only configuration file. Relative paths will be
|
||||
prefixed by datadir location. (default: bitcoin.conf)
|
||||
.HP
|
||||
\fB\-daemon\fR
|
||||
.IP
|
||||
Run in the background as a daemon and accept commands (default: 0)
|
||||
.HP
|
||||
\fB\-daemonwait\fR
|
||||
.IP
|
||||
Wait for initialization to be finished before exiting. This implies
|
||||
\fB\-daemon\fR (default: 0)
|
||||
.HP
|
||||
\fB\-datadir=\fR<dir>
|
||||
.IP
|
||||
Specify data directory
|
||||
.HP
|
||||
\fB\-dbcache=\fR<n>
|
||||
.IP
|
||||
Maximum database cache size <n> MiB (4 to 16384, default: 450). In
|
||||
addition, unused mempool memory is shared for this cache (see
|
||||
\fB\-maxmempool\fR).
|
||||
.HP
|
||||
\fB\-debuglogfile=\fR<file>
|
||||
.IP
|
||||
Specify location of debug log file. Relative paths will be prefixed by a
|
||||
net\-specific datadir location. (\fB\-nodebuglogfile\fR to disable;
|
||||
default: debug.log)
|
||||
.HP
|
||||
\fB\-includeconf=\fR<file>
|
||||
.IP
|
||||
Specify additional configuration file, relative to the \fB\-datadir\fR path
|
||||
(only useable from configuration file, not command line)
|
||||
.HP
|
||||
\fB\-loadblock=\fR<file>
|
||||
.IP
|
||||
Imports blocks from external file on startup
|
||||
.HP
|
||||
\fB\-maxmempool=\fR<n>
|
||||
.IP
|
||||
Keep the transaction memory pool below <n> megabytes (default: 300)
|
||||
.HP
|
||||
\fB\-maxorphantx=\fR<n>
|
||||
.IP
|
||||
Keep at most <n> unconnectable transactions in memory (default: 100)
|
||||
.HP
|
||||
\fB\-mempoolexpiry=\fR<n>
|
||||
.IP
|
||||
Do not keep transactions in the mempool longer than <n> hours (default:
|
||||
336)
|
||||
.HP
|
||||
\fB\-par=\fR<n>
|
||||
.IP
|
||||
Set the number of script verification threads (\fB\-6\fR to 15, 0 = auto, <0 =
|
||||
leave that many cores free, default: 0)
|
||||
.HP
|
||||
\fB\-persistmempool\fR
|
||||
.IP
|
||||
Whether to save the mempool on shutdown and load on restart (default: 1)
|
||||
.HP
|
||||
\fB\-pid=\fR<file>
|
||||
.IP
|
||||
Specify pid file. Relative paths will be prefixed by a net\-specific
|
||||
datadir location. (default: bitcoind.pid)
|
||||
.HP
|
||||
\fB\-prune=\fR<n>
|
||||
.IP
|
||||
Reduce storage requirements by enabling pruning (deleting) of old
|
||||
blocks. This allows the pruneblockchain RPC to be called to
|
||||
delete specific blocks, and enables automatic pruning of old
|
||||
blocks if a target size in MiB is provided. This mode is
|
||||
incompatible with \fB\-txindex\fR, \fB\-coinstatsindex\fR and \fB\-rescan\fR. Warning:
|
||||
Reverting this setting requires re\-downloading the entire
|
||||
blockchain. (default: 0 = disable pruning blocks, 1 = allow
|
||||
manual pruning via RPC, >=550 = automatically prune block files
|
||||
to stay under the specified target size in MiB)
|
||||
.HP
|
||||
\fB\-reindex\fR
|
||||
.IP
|
||||
Rebuild chain state and block index from the blk*.dat files on disk
|
||||
.HP
|
||||
\fB\-reindex\-chainstate\fR
|
||||
.IP
|
||||
Rebuild chain state from the currently indexed blocks. When in pruning
|
||||
mode or if blocks on disk might be corrupted, use full \fB\-reindex\fR
|
||||
instead.
|
||||
.HP
|
||||
\fB\-settings=\fR<file>
|
||||
.IP
|
||||
Specify path to dynamic settings data file. Can be disabled with
|
||||
\fB\-nosettings\fR. File is written at runtime and not meant to be
|
||||
edited by users (use bitcoin.conf instead for custom settings).
|
||||
Relative paths will be prefixed by datadir location. (default:
|
||||
settings.json)
|
||||
.HP
|
||||
\fB\-startupnotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command on startup.
|
||||
.HP
|
||||
\fB\-sysperms\fR
|
||||
.IP
|
||||
Create new files with system default permissions, instead of umask 077
|
||||
(only effective with disabled wallet functionality)
|
||||
.HP
|
||||
\fB\-txindex\fR
|
||||
.IP
|
||||
Maintain a full transaction index, used by the getrawtransaction rpc
|
||||
call (default: 0)
|
||||
.HP
|
||||
\fB\-version\fR
|
||||
.IP
|
||||
Print version and exit
|
||||
.PP
|
||||
Connection options:
|
||||
.HP
|
||||
\fB\-addnode=\fR<ip>
|
||||
.IP
|
||||
Add a node to connect to and attempt to keep the connection open (see
|
||||
the addnode RPC help for more info). This option can be specified
|
||||
multiple times to add multiple nodes; connections are limited to
|
||||
8 at a time and are counted separately from the \fB\-maxconnections\fR
|
||||
limit.
|
||||
.HP
|
||||
\fB\-asmap=\fR<file>
|
||||
.IP
|
||||
Specify asn mapping used for bucketing of the peers (default:
|
||||
ip_asn.map). Relative paths will be prefixed by the net\-specific
|
||||
datadir location.
|
||||
.HP
|
||||
\fB\-bantime=\fR<n>
|
||||
.IP
|
||||
Default duration (in seconds) of manually configured bans (default:
|
||||
86400)
|
||||
.HP
|
||||
\fB\-bind=\fR<addr>[:<port>][=onion]
|
||||
.IP
|
||||
Bind to given address and always listen on it (default: 0.0.0.0). Use
|
||||
[host]:port notation for IPv6. Append =onion to tag any incoming
|
||||
connections to that address and port as incoming Tor connections
|
||||
(default: 127.0.0.1:8334=onion, testnet: 127.0.0.1:18334=onion,
|
||||
signet: 127.0.0.1:38334=onion, regtest: 127.0.0.1:18445=onion)
|
||||
.HP
|
||||
\fB\-connect=\fR<ip>
|
||||
.IP
|
||||
Connect only to the specified node; \fB\-noconnect\fR disables automatic
|
||||
connections (the rules for this peer are the same as for
|
||||
\fB\-addnode\fR). This option can be specified multiple times to connect
|
||||
to multiple nodes.
|
||||
.HP
|
||||
\fB\-discover\fR
|
||||
.IP
|
||||
Discover own IP addresses (default: 1 when listening and no \fB\-externalip\fR
|
||||
or \fB\-proxy\fR)
|
||||
.HP
|
||||
\fB\-dns\fR
|
||||
.IP
|
||||
Allow DNS lookups for \fB\-addnode\fR, \fB\-seednode\fR and \fB\-connect\fR (default: 1)
|
||||
.HP
|
||||
\fB\-dnsseed\fR
|
||||
.IP
|
||||
Query for peer addresses via DNS lookup, if low on addresses (default: 1
|
||||
unless \fB\-connect\fR used)
|
||||
.HP
|
||||
\fB\-externalip=\fR<ip>
|
||||
.IP
|
||||
Specify your own public address
|
||||
.HP
|
||||
\fB\-fixedseeds\fR
|
||||
.IP
|
||||
Allow fixed seeds if DNS seeds don't provide peers (default: 1)
|
||||
.HP
|
||||
\fB\-forcednsseed\fR
|
||||
.IP
|
||||
Always query for peer addresses via DNS lookup (default: 0)
|
||||
.HP
|
||||
\fB\-i2pacceptincoming\fR
|
||||
.IP
|
||||
If set and \fB\-i2psam\fR is also set then incoming I2P connections are
|
||||
accepted via the SAM proxy. If this is not set but \fB\-i2psam\fR is set
|
||||
then only outgoing connections will be made to the I2P network.
|
||||
Ignored if \fB\-i2psam\fR is not set. Listening for incoming I2P
|
||||
connections is done through the SAM proxy, not by binding to a
|
||||
local address and port (default: 1)
|
||||
.HP
|
||||
\fB\-i2psam=\fR<ip:port>
|
||||
.IP
|
||||
I2P SAM proxy to reach I2P peers and accept I2P connections (default:
|
||||
none)
|
||||
.HP
|
||||
\fB\-listen\fR
|
||||
.IP
|
||||
Accept connections from outside (default: 1 if no \fB\-proxy\fR or \fB\-connect\fR)
|
||||
.HP
|
||||
\fB\-listenonion\fR
|
||||
.IP
|
||||
Automatically create Tor onion service (default: 1)
|
||||
.HP
|
||||
\fB\-maxconnections=\fR<n>
|
||||
.IP
|
||||
Maintain at most <n> connections to peers (default: 125). This limit
|
||||
does not apply to connections manually added via \fB\-addnode\fR or the
|
||||
addnode RPC, which have a separate limit of 8.
|
||||
.HP
|
||||
\fB\-maxreceivebuffer=\fR<n>
|
||||
.IP
|
||||
Maximum per\-connection receive buffer, <n>*1000 bytes (default: 5000)
|
||||
.HP
|
||||
\fB\-maxsendbuffer=\fR<n>
|
||||
.IP
|
||||
Maximum per\-connection send buffer, <n>*1000 bytes (default: 1000)
|
||||
.HP
|
||||
\fB\-maxtimeadjustment\fR
|
||||
.IP
|
||||
Maximum allowed median peer time offset adjustment. Local perspective of
|
||||
time may be influenced by peers forward or backward by this
|
||||
amount. (default: 4200 seconds)
|
||||
.HP
|
||||
\fB\-maxuploadtarget=\fR<n>
|
||||
.IP
|
||||
Tries to keep outbound traffic under the given target (in MiB per 24h).
|
||||
Limit does not apply to peers with 'download' permission. 0 = no
|
||||
limit (default: 0)
|
||||
.HP
|
||||
\fB\-natpmp\fR
|
||||
.IP
|
||||
Use NAT\-PMP to map the listening port (default: 0)
|
||||
.HP
|
||||
\fB\-networkactive\fR
|
||||
.IP
|
||||
Enable all P2P network activity (default: 1). Can be changed by the
|
||||
setnetworkactive RPC command
|
||||
.HP
|
||||
\fB\-onion=\fR<ip:port>
|
||||
.IP
|
||||
Use separate SOCKS5 proxy to reach peers via Tor onion services, set
|
||||
\fB\-noonion\fR to disable (default: \fB\-proxy\fR)
|
||||
.HP
|
||||
\fB\-onlynet=\fR<net>
|
||||
.IP
|
||||
Make outgoing connections only through network <net> (ipv4, ipv6, onion,
|
||||
i2p). Incoming connections are not affected by this option. This
|
||||
option can be specified multiple times to allow multiple
|
||||
networks. Warning: if it is used with non\-onion networks and the
|
||||
\fB\-onion\fR or \fB\-proxy\fR option is set, then outbound onion connections
|
||||
will still be made; use \fB\-noonion\fR or \fB\-onion\fR=\fI\,0\/\fR to disable outbound
|
||||
onion connections in this case.
|
||||
.HP
|
||||
\fB\-peerblockfilters\fR
|
||||
.IP
|
||||
Serve compact block filters to peers per BIP 157 (default: 0)
|
||||
.HP
|
||||
\fB\-peerbloomfilters\fR
|
||||
.IP
|
||||
Support filtering of blocks and transaction with bloom filters (default:
|
||||
0)
|
||||
.HP
|
||||
\fB\-permitbaremultisig\fR
|
||||
.IP
|
||||
Relay non\-P2SH multisig (default: 1)
|
||||
.HP
|
||||
\fB\-port=\fR<port>
|
||||
.IP
|
||||
Listen for connections on <port>. Nodes not using the default ports
|
||||
(default: 8333, testnet: 18333, signet: 38333, regtest: 18444)
|
||||
are unlikely to get incoming connections. Not relevant for I2P
|
||||
(see doc/i2p.md).
|
||||
.HP
|
||||
\fB\-proxy=\fR<ip:port>
|
||||
.IP
|
||||
Connect through SOCKS5 proxy, set \fB\-noproxy\fR to disable (default:
|
||||
disabled)
|
||||
.HP
|
||||
\fB\-proxyrandomize\fR
|
||||
.IP
|
||||
Randomize credentials for every proxy connection. This enables Tor
|
||||
stream isolation (default: 1)
|
||||
.HP
|
||||
\fB\-seednode=\fR<ip>
|
||||
.IP
|
||||
Connect to a node to retrieve peer addresses, and disconnect. This
|
||||
option can be specified multiple times to connect to multiple
|
||||
nodes.
|
||||
.HP
|
||||
\fB\-timeout=\fR<n>
|
||||
.IP
|
||||
Specify socket connection timeout in milliseconds. If an initial attempt
|
||||
to connect is unsuccessful after this amount of time, drop it
|
||||
(minimum: 1, default: 5000)
|
||||
.HP
|
||||
\fB\-torcontrol=\fR<ip>:<port>
|
||||
.IP
|
||||
Tor control port to use if onion listening enabled (default:
|
||||
127.0.0.1:9051)
|
||||
.HP
|
||||
\fB\-torpassword=\fR<pass>
|
||||
.IP
|
||||
Tor control port password (default: empty)
|
||||
.HP
|
||||
\fB\-upnp\fR
|
||||
.IP
|
||||
Use UPnP to map the listening port (default: 0)
|
||||
.HP
|
||||
\fB\-whitebind=\fR<[permissions@]addr>
|
||||
.IP
|
||||
Bind to the given address and add permission flags to the peers
|
||||
connecting to it. Use [host]:port notation for IPv6. Allowed
|
||||
permissions: bloomfilter (allow requesting BIP37 filtered blocks
|
||||
and transactions), noban (do not ban for misbehavior; implies
|
||||
download), forcerelay (relay transactions that are already in the
|
||||
mempool; implies relay), relay (relay even in \fB\-blocksonly\fR mode,
|
||||
and unlimited transaction announcements), mempool (allow
|
||||
requesting BIP35 mempool contents), download (allow getheaders
|
||||
during IBD, no disconnect after maxuploadtarget limit), addr
|
||||
(responses to GETADDR avoid hitting the cache and contain random
|
||||
records with the most up\-to\-date info). Specify multiple
|
||||
permissions separated by commas (default:
|
||||
download,noban,mempool,relay). Can be specified multiple times.
|
||||
.HP
|
||||
\fB\-whitelist=\fR<[permissions@]IP address or network>
|
||||
.IP
|
||||
Add permission flags to the peers connecting from the given IP address
|
||||
(e.g. 1.2.3.4) or CIDR\-notated network (e.g. 1.2.3.0/24). Uses
|
||||
the same permissions as \fB\-whitebind\fR. Can be specified multiple
|
||||
times.
|
||||
.PP
|
||||
Wallet options:
|
||||
.HP
|
||||
\fB\-addresstype\fR
|
||||
.IP
|
||||
What type of addresses to use ("legacy", "p2sh\-segwit", or "bech32",
|
||||
default: "bech32")
|
||||
.HP
|
||||
\fB\-avoidpartialspends\fR
|
||||
.IP
|
||||
Group outputs by address, selecting many (possibly all) or none, instead
|
||||
of selecting on a per\-output basis. Privacy is improved as
|
||||
addresses are mostly swept with fewer transactions and outputs
|
||||
are aggregated in clean change addresses. It may result in higher
|
||||
fees due to less optimal coin selection caused by this added
|
||||
limitation and possibly a larger\-than\-necessary number of inputs
|
||||
being used. Always enabled for wallets with "avoid_reuse"
|
||||
enabled, otherwise default: 0.
|
||||
.HP
|
||||
\fB\-changetype\fR
|
||||
.IP
|
||||
What type of change to use ("legacy", "p2sh\-segwit", or "bech32").
|
||||
Default is same as \fB\-addresstype\fR, except when
|
||||
\fB\-addresstype\fR=\fI\,p2sh\-segwit\/\fR a native segwit output is used when
|
||||
sending to a native segwit address)
|
||||
.HP
|
||||
\fB\-disablewallet\fR
|
||||
.IP
|
||||
Do not load the wallet and disable wallet RPC calls
|
||||
.HP
|
||||
\fB\-discardfee=\fR<amt>
|
||||
.IP
|
||||
The fee rate (in BTC/kvB) that indicates your tolerance for discarding
|
||||
change by adding it to the fee (default: 0.0001). Note: An output
|
||||
is discarded if it is dust at this rate, but we will always
|
||||
discard up to the dust relay fee and a discard fee above that is
|
||||
limited by the fee estimate for the longest target
|
||||
.HP
|
||||
\fB\-fallbackfee=\fR<amt>
|
||||
.IP
|
||||
A fee rate (in BTC/kvB) that will be used when fee estimation has
|
||||
insufficient data. 0 to entirely disable the fallbackfee feature.
|
||||
(default: 0.00)
|
||||
.HP
|
||||
\fB\-keypool=\fR<n>
|
||||
.IP
|
||||
Set key pool size to <n> (default: 1000). Warning: Smaller sizes may
|
||||
increase the risk of losing funds when restoring from an old
|
||||
backup, if none of the addresses in the original keypool have
|
||||
been used.
|
||||
.HP
|
||||
\fB\-maxapsfee=\fR<n>
|
||||
.IP
|
||||
Spend up to this amount in additional (absolute) fees (in BTC) if it
|
||||
allows the use of partial spend avoidance (default: 0.00)
|
||||
.HP
|
||||
\fB\-mintxfee=\fR<amt>
|
||||
.IP
|
||||
Fee rates (in BTC/kvB) smaller than this are considered zero fee for
|
||||
transaction creation (default: 0.00001)
|
||||
.HP
|
||||
\fB\-paytxfee=\fR<amt>
|
||||
.IP
|
||||
Fee rate (in BTC/kvB) to add to transactions you send (default: 0.00)
|
||||
.HP
|
||||
\fB\-rescan\fR
|
||||
.IP
|
||||
Rescan the block chain for missing wallet transactions on startup
|
||||
.HP
|
||||
\fB\-signer=\fR<cmd>
|
||||
.IP
|
||||
External signing tool, see doc/external\-signer.md
|
||||
.HP
|
||||
\fB\-spendzeroconfchange\fR
|
||||
.IP
|
||||
Spend unconfirmed change when sending transactions (default: 1)
|
||||
.HP
|
||||
\fB\-txconfirmtarget=\fR<n>
|
||||
.IP
|
||||
If paytxfee is not set, include enough fee so transactions begin
|
||||
confirmation on average within n blocks (default: 6)
|
||||
.HP
|
||||
\fB\-wallet=\fR<path>
|
||||
.IP
|
||||
Specify wallet path to load at startup. Can be used multiple times to
|
||||
load multiple wallets. Path is to a directory containing wallet
|
||||
data and log files. If the path is not absolute, it is
|
||||
interpreted relative to <walletdir>. This only loads existing
|
||||
wallets and does not create new ones. For backwards compatibility
|
||||
this also accepts names of existing top\-level data files in
|
||||
<walletdir>.
|
||||
.HP
|
||||
\fB\-walletbroadcast\fR
|
||||
.IP
|
||||
Make the wallet broadcast transactions (default: 1)
|
||||
.HP
|
||||
\fB\-walletdir=\fR<dir>
|
||||
.IP
|
||||
Specify directory to hold wallets (default: <datadir>/wallets if it
|
||||
exists, otherwise <datadir>)
|
||||
.HP
|
||||
\fB\-walletnotify=\fR<cmd>
|
||||
.IP
|
||||
Execute command when a wallet transaction changes. %s in cmd is replaced
|
||||
by TxID, %w is replaced by wallet name, %b is replaced by the
|
||||
hash of the block including the transaction (set to 'unconfirmed'
|
||||
if the transaction is not included) and %h is replaced by the
|
||||
block height (\fB\-1\fR if not included). %w is not currently
|
||||
implemented on windows. On systems where %w is supported, it
|
||||
should NOT be quoted because this would break shell escaping used
|
||||
to invoke the command.
|
||||
.HP
|
||||
\fB\-walletrbf\fR
|
||||
.IP
|
||||
Send transactions with full\-RBF opt\-in enabled (RPC only, default: 0)
|
||||
.PP
|
||||
ZeroMQ notification options:
|
||||
.HP
|
||||
\fB\-zmqpubhashblock=\fR<address>
|
||||
.IP
|
||||
Enable publish hash block in <address>
|
||||
.HP
|
||||
\fB\-zmqpubhashblockhwm=\fR<n>
|
||||
.IP
|
||||
Set publish hash block outbound message high water mark (default: 1000)
|
||||
.HP
|
||||
\fB\-zmqpubhashtx=\fR<address>
|
||||
.IP
|
||||
Enable publish hash transaction in <address>
|
||||
.HP
|
||||
\fB\-zmqpubhashtxhwm=\fR<n>
|
||||
.IP
|
||||
Set publish hash transaction outbound message high water mark (default:
|
||||
1000)
|
||||
.HP
|
||||
\fB\-zmqpubrawblock=\fR<address>
|
||||
.IP
|
||||
Enable publish raw block in <address>
|
||||
.HP
|
||||
\fB\-zmqpubrawblockhwm=\fR<n>
|
||||
.IP
|
||||
Set publish raw block outbound message high water mark (default: 1000)
|
||||
.HP
|
||||
\fB\-zmqpubrawtx=\fR<address>
|
||||
.IP
|
||||
Enable publish raw transaction in <address>
|
||||
.HP
|
||||
\fB\-zmqpubrawtxhwm=\fR<n>
|
||||
.IP
|
||||
Set publish raw transaction outbound message high water mark (default:
|
||||
1000)
|
||||
.HP
|
||||
\fB\-zmqpubsequence=\fR<address>
|
||||
.IP
|
||||
Enable publish hash block and tx sequence in <address>
|
||||
.HP
|
||||
\fB\-zmqpubsequencehwm=\fR<n>
|
||||
.IP
|
||||
Set publish hash sequence message high water mark (default: 1000)
|
||||
.PP
|
||||
Debugging/Testing options:
|
||||
.HP
|
||||
\fB\-debug=\fR<category>
|
||||
.IP
|
||||
Output debugging information (default: \fB\-nodebug\fR, supplying <category> is
|
||||
optional). If <category> is not supplied or if <category> = 1,
|
||||
output all debugging information. <category> can be: net, tor,
|
||||
mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman,
|
||||
selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej,
|
||||
libevent, coindb, qt, leveldb, validation, i2p, ipc. This option
|
||||
can be specified multiple times to output multiple categories.
|
||||
.HP
|
||||
\fB\-debugexclude=\fR<category>
|
||||
.IP
|
||||
Exclude debugging information for a category. Can be used in conjunction
|
||||
with \fB\-debug\fR=\fI\,1\/\fR to output debug logs for all categories except the
|
||||
specified category. This option can be specified multiple times
|
||||
to exclude multiple categories.
|
||||
.HP
|
||||
\fB\-help\-debug\fR
|
||||
.IP
|
||||
Print help message with debugging options and exit
|
||||
.HP
|
||||
\fB\-logips\fR
|
||||
.IP
|
||||
Include IP addresses in debug output (default: 0)
|
||||
.HP
|
||||
\fB\-logsourcelocations\fR
|
||||
.IP
|
||||
Prepend debug output with name of the originating source location
|
||||
(source file, line number and function name) (default: 0)
|
||||
.HP
|
||||
\fB\-logthreadnames\fR
|
||||
.IP
|
||||
Prepend debug output with name of the originating thread (only available
|
||||
on platforms supporting thread_local) (default: 0)
|
||||
.HP
|
||||
\fB\-logtimestamps\fR
|
||||
.IP
|
||||
Prepend debug output with timestamp (default: 1)
|
||||
.HP
|
||||
\fB\-maxtxfee=\fR<amt>
|
||||
.IP
|
||||
Maximum total fees (in BTC) to use in a single wallet transaction;
|
||||
setting this too low may abort large transactions (default: 0.10)
|
||||
.HP
|
||||
\fB\-printtoconsole\fR
|
||||
.IP
|
||||
Send trace/debug info to console (default: 1 when no \fB\-daemon\fR. To disable
|
||||
logging to file, set \fB\-nodebuglogfile\fR)
|
||||
.HP
|
||||
\fB\-shrinkdebugfile\fR
|
||||
.IP
|
||||
Shrink debug.log file on client startup (default: 1 when no \fB\-debug\fR)
|
||||
.HP
|
||||
\fB\-uacomment=\fR<cmt>
|
||||
.IP
|
||||
Append comment to the user agent string
|
||||
.PP
|
||||
Chain selection options:
|
||||
.HP
|
||||
\fB\-chain=\fR<chain>
|
||||
.IP
|
||||
Use the chain <chain> (default: main). Allowed values: main, test,
|
||||
signet, regtest
|
||||
.HP
|
||||
\fB\-signet\fR
|
||||
.IP
|
||||
Use the signet chain. Equivalent to \fB\-chain\fR=\fI\,signet\/\fR. Note that the network
|
||||
is defined by the \fB\-signetchallenge\fR parameter
|
||||
.HP
|
||||
\fB\-signetchallenge\fR
|
||||
.IP
|
||||
Blocks must satisfy the given script to be considered valid (only for
|
||||
signet networks; defaults to the global default signet test
|
||||
network challenge)
|
||||
.HP
|
||||
\fB\-signetseednode\fR
|
||||
.IP
|
||||
Specify a seed node for the signet network, in the hostname[:port]
|
||||
format, e.g. sig.net:1234 (may be used multiple times to specify
|
||||
multiple seed nodes; defaults to the global default signet test
|
||||
network seed node(s))
|
||||
.HP
|
||||
\fB\-testnet\fR
|
||||
.IP
|
||||
Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR.
|
||||
.PP
|
||||
Node relay options:
|
||||
.HP
|
||||
\fB\-bytespersigop\fR
|
||||
.IP
|
||||
Equivalent bytes per sigop in transactions for relay and mining
|
||||
(default: 20)
|
||||
.HP
|
||||
\fB\-datacarrier\fR
|
||||
.IP
|
||||
Relay and mine data carrier transactions (default: 1)
|
||||
.HP
|
||||
\fB\-datacarriersize\fR
|
||||
.IP
|
||||
Maximum size of data in data carrier transactions we relay and mine
|
||||
(default: 83)
|
||||
.HP
|
||||
\fB\-minrelaytxfee=\fR<amt>
|
||||
.IP
|
||||
Fees (in BTC/kvB) smaller than this are considered zero fee for
|
||||
relaying, mining and transaction creation (default: 0.00001)
|
||||
.HP
|
||||
\fB\-whitelistforcerelay\fR
|
||||
.IP
|
||||
Add 'forcerelay' permission to whitelisted inbound peers with default
|
||||
permissions. This will relay transactions even if the
|
||||
transactions were already in the mempool. (default: 0)
|
||||
.HP
|
||||
\fB\-whitelistrelay\fR
|
||||
.IP
|
||||
Add 'relay' permission to whitelisted inbound peers with default
|
||||
permissions. This will accept relayed transactions even when not
|
||||
relaying transactions (default: 1)
|
||||
.PP
|
||||
Block creation options:
|
||||
.HP
|
||||
\fB\-blockmaxweight=\fR<n>
|
||||
.IP
|
||||
Set maximum BIP141 block weight (default: 3996000)
|
||||
.HP
|
||||
\fB\-blockmintxfee=\fR<amt>
|
||||
.IP
|
||||
Set lowest fee rate (in BTC/kvB) for transactions to be included in
|
||||
block creation. (default: 0.00001)
|
||||
.PP
|
||||
RPC server options:
|
||||
.HP
|
||||
\fB\-rest\fR
|
||||
.IP
|
||||
Accept public REST requests (default: 0)
|
||||
.HP
|
||||
\fB\-rpcallowip=\fR<ip>
|
||||
.IP
|
||||
Allow JSON\-RPC connections from specified source. Valid for <ip> are a
|
||||
single IP (e.g. 1.2.3.4), a network/netmask (e.g.
|
||||
1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This
|
||||
option can be specified multiple times
|
||||
.HP
|
||||
\fB\-rpcauth=\fR<userpw>
|
||||
.IP
|
||||
Username and HMAC\-SHA\-256 hashed password for JSON\-RPC connections. The
|
||||
field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A
|
||||
canonical python script is included in share/rpcauth. The client
|
||||
then connects normally using the
|
||||
rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This
|
||||
option can be specified multiple times
|
||||
.HP
|
||||
\fB\-rpcbind=\fR<addr>[:port]
|
||||
.IP
|
||||
Bind to given address to listen for JSON\-RPC connections. Do not expose
|
||||
the RPC server to untrusted networks such as the public internet!
|
||||
This option is ignored unless \fB\-rpcallowip\fR is also passed. Port is
|
||||
optional and overrides \fB\-rpcport\fR. Use [host]:port notation for
|
||||
IPv6. This option can be specified multiple times (default:
|
||||
127.0.0.1 and ::1 i.e., localhost)
|
||||
.HP
|
||||
\fB\-rpccookiefile=\fR<loc>
|
||||
.IP
|
||||
Location of the auth cookie. Relative paths will be prefixed by a
|
||||
net\-specific datadir location. (default: data dir)
|
||||
.HP
|
||||
\fB\-rpcpassword=\fR<pw>
|
||||
.IP
|
||||
Password for JSON\-RPC connections
|
||||
.HP
|
||||
\fB\-rpcport=\fR<port>
|
||||
.IP
|
||||
Listen for JSON\-RPC connections on <port> (default: 8332, testnet:
|
||||
18332, signet: 38332, regtest: 18443)
|
||||
.HP
|
||||
\fB\-rpcserialversion\fR
|
||||
.IP
|
||||
Sets the serialization of raw transaction or block hex returned in
|
||||
non\-verbose mode, non\-segwit(0) or segwit(1) (default: 1)
|
||||
.HP
|
||||
\fB\-rpcthreads=\fR<n>
|
||||
.IP
|
||||
Set the number of threads to service RPC calls (default: 4)
|
||||
.HP
|
||||
\fB\-rpcuser=\fR<user>
|
||||
.IP
|
||||
Username for JSON\-RPC connections
|
||||
.HP
|
||||
\fB\-rpcwhitelist=\fR<whitelist>
|
||||
.IP
|
||||
Set a whitelist to filter incoming RPC calls for a specific user. The
|
||||
field <whitelist> comes in the format: <USERNAME>:<rpc 1>,<rpc
|
||||
2>,...,<rpc n>. If multiple whitelists are set for a given user,
|
||||
they are set\-intersected. See \fB\-rpcwhitelistdefault\fR documentation
|
||||
for information on default whitelist behavior.
|
||||
.HP
|
||||
\fB\-rpcwhitelistdefault\fR
|
||||
.IP
|
||||
Sets default behavior for rpc whitelisting. Unless rpcwhitelistdefault
|
||||
is set to 0, if any \fB\-rpcwhitelist\fR is set, the rpc server acts as
|
||||
if all rpc users are subject to empty\-unless\-otherwise\-specified
|
||||
whitelists. If rpcwhitelistdefault is set to 1 and no
|
||||
\fB\-rpcwhitelist\fR is set, rpc server acts as if all rpc users are
|
||||
subject to empty whitelists.
|
||||
.HP
|
||||
\fB\-server\fR
|
||||
.IP
|
||||
Accept command line and JSON\-RPC commands
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -199,30 +199,22 @@ popd
|
||||
|
||||
### After 3 or more people have guix-built and their results match:
|
||||
|
||||
Combine `all.SHA256SUMS` and `all.SHA256SUMS.asc` into a clear-signed
|
||||
`SHA256SUMS.asc` message:
|
||||
|
||||
```sh
|
||||
echo -e "-----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA256\n\n$(cat all.SHA256SUMS)\n$(cat filename.txt.asc)" > SHA256SUMS.asc
|
||||
```
|
||||
|
||||
Here's an equivalent, more readable command if you're confident that you won't
|
||||
mess up whitespaces when copy-pasting:
|
||||
Combine the `all.SHA256SUMS.asc` file from all signers into `SHA256SUMS.asc`:
|
||||
|
||||
```bash
|
||||
cat << EOF > SHA256SUMS.asc
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
$(cat all.SHA256SUMS)
|
||||
$(cat all.SHA256SUMS.asc)
|
||||
EOF
|
||||
cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc
|
||||
```
|
||||
|
||||
- Upload to the bitcoincore.org server (`/var/www/bin/bitcoin-core-${VERSION}`):
|
||||
1. The contents of `./bitcoin/guix-build-${VERSION}/output`, except for
|
||||
|
||||
- Upload to the bitcoincore.org server (`/var/www/bin/bitcoin-core-${VERSION}/`):
|
||||
1. The contents of each `./bitcoin/guix-build-${VERSION}/output/${HOST}/` directory, except for
|
||||
`*-debug*` files.
|
||||
|
||||
Guix will output all of the results into host subdirectories, but the SHA256SUMS
|
||||
file does not include these subdirectories. In order for downloads via torrent
|
||||
to verify without directory structure modification, all of the uploaded files
|
||||
need to be in the same directory as the SHA256SUMS file.
|
||||
|
||||
The `*-debug*` files generated by the guix build contain debug symbols
|
||||
for troubleshooting by developers. It is assumed that anyone that is
|
||||
interested in debugging can run guix to generate the files for
|
||||
@@ -230,7 +222,13 @@ EOF
|
||||
as save storage space *do not upload these to the bitcoincore.org server,
|
||||
nor put them in the torrent*.
|
||||
|
||||
2. The combined clear-signed message you just created `SHA256SUMS.asc`
|
||||
```sh
|
||||
find guix-build-${VERSION}/output/ -maxdepth 2 -type f -not -name "SHA256SUMS.part" -and -not -name "*debug*" -exec scp {} user@bitcoincore.org:/var/www/bin/bitcoin-core-${VERSION} \;
|
||||
```
|
||||
|
||||
2. The `SHA256SUMS` file
|
||||
|
||||
3. The `SHA256SUMS.asc` combined signature file you just created
|
||||
|
||||
- Create a torrent of the `/var/www/bin/bitcoin-core-${VERSION}` directory such
|
||||
that at the top level there is only one file: the `bitcoin-core-${VERSION}`
|
||||
|
||||
@@ -30,8 +30,10 @@ const std::string CLIENT_NAME("Satoshi");
|
||||
#define BUILD_DESC BUILD_GIT_TAG
|
||||
#define BUILD_SUFFIX ""
|
||||
#else
|
||||
#define BUILD_DESC "v" STRINGIZE(CLIENT_VERSION_MAJOR) "." STRINGIZE(CLIENT_VERSION_MINOR) "." STRINGIZE(CLIENT_VERSION_BUILD)
|
||||
#ifdef BUILD_GIT_COMMIT
|
||||
#define BUILD_DESC "v" PACKAGE_VERSION
|
||||
#if CLIENT_VERSION_IS_RELEASE
|
||||
#define BUILD_SUFFIX ""
|
||||
#elif defined(BUILD_GIT_COMMIT)
|
||||
#define BUILD_SUFFIX "-" BUILD_GIT_COMMIT
|
||||
#elif defined(GIT_COMMIT_ID)
|
||||
#define BUILD_SUFFIX "-g" GIT_COMMIT_ID
|
||||
|
||||
@@ -23,7 +23,7 @@ enum BuriedDeployment : int16_t {
|
||||
DEPLOYMENT_CSV,
|
||||
DEPLOYMENT_SEGWIT,
|
||||
};
|
||||
constexpr bool ValidDeployment(BuriedDeployment dep) { return DEPLOYMENT_HEIGHTINCB <= dep && dep <= DEPLOYMENT_SEGWIT; }
|
||||
constexpr bool ValidDeployment(BuriedDeployment dep) { return dep <= DEPLOYMENT_SEGWIT; }
|
||||
|
||||
enum DeploymentPos : uint16_t {
|
||||
DEPLOYMENT_TESTDUMMY,
|
||||
@@ -31,7 +31,7 @@ enum DeploymentPos : uint16_t {
|
||||
// NOTE: Also add new deployments to VersionBitsDeploymentInfo in deploymentinfo.cpp
|
||||
MAX_VERSION_BITS_DEPLOYMENTS
|
||||
};
|
||||
constexpr bool ValidDeployment(DeploymentPos dep) { return DEPLOYMENT_TESTDUMMY <= dep && dep <= DEPLOYMENT_TAPROOT; }
|
||||
constexpr bool ValidDeployment(DeploymentPos dep) { return dep < MAX_VERSION_BITS_DEPLOYMENTS; }
|
||||
|
||||
/**
|
||||
* Struct for each individual consensus rule change using BIP9.
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
#include <consensus/params.h>
|
||||
#include <versionbits.h>
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
VersionBitsCache g_versionbitscache;
|
||||
|
||||
/* Basic sanity checking for BuriedDeployment/DeploymentPos enums and
|
||||
@@ -15,3 +17,18 @@ VersionBitsCache g_versionbitscache;
|
||||
static_assert(ValidDeployment(Consensus::DEPLOYMENT_TESTDUMMY), "sanity check of DeploymentPos failed (TESTDUMMY not valid)");
|
||||
static_assert(!ValidDeployment(Consensus::MAX_VERSION_BITS_DEPLOYMENTS), "sanity check of DeploymentPos failed (MAX value considered valid)");
|
||||
static_assert(!ValidDeployment(static_cast<Consensus::BuriedDeployment>(Consensus::DEPLOYMENT_TESTDUMMY)), "sanity check of BuriedDeployment failed (overlaps with DeploymentPos)");
|
||||
|
||||
/* ValidDeployment only checks upper bounds for ensuring validity.
|
||||
* This checks that the lowest possible value or the type is also a
|
||||
* (specific) valid deployment so that lower bounds don't need to be checked.
|
||||
*/
|
||||
|
||||
template<typename T, T x>
|
||||
static constexpr bool is_minimum()
|
||||
{
|
||||
using U = typename std::underlying_type<T>::type;
|
||||
return x == std::numeric_limits<U>::min();
|
||||
}
|
||||
|
||||
static_assert(is_minimum<Consensus::BuriedDeployment, Consensus::DEPLOYMENT_HEIGHTINCB>(), "heightincb is not minimum value for BuriedDeployment");
|
||||
static_assert(is_minimum<Consensus::DeploymentPos, Consensus::DEPLOYMENT_TESTDUMMY>(), "testdummy is not minimum value for DeploymentPos");
|
||||
|
||||
@@ -242,7 +242,11 @@ void ofstream::close()
|
||||
}
|
||||
#else // __GLIBCXX__
|
||||
|
||||
#if BOOST_VERSION >= 107700
|
||||
static_assert(sizeof(*BOOST_FILESYSTEM_C_STR(fs::path())) == sizeof(wchar_t),
|
||||
#else
|
||||
static_assert(sizeof(*fs::path().BOOST_FILESYSTEM_C_STR) == sizeof(wchar_t),
|
||||
#endif // BOOST_VERSION >= 107700
|
||||
"Warning: This build is using boost::filesystem ofstream and ifstream "
|
||||
"implementations which will fail to open paths containing multibyte "
|
||||
"characters. You should delete this static_assert to ignore this warning, "
|
||||
|
||||
@@ -682,8 +682,6 @@ void BitcoinGUI::addWallet(WalletModel* walletModel)
|
||||
m_wallet_selector_label_action->setVisible(true);
|
||||
m_wallet_selector_action->setVisible(true);
|
||||
}
|
||||
const QString display_name = walletModel->getDisplayName();
|
||||
m_wallet_selector->addItem(display_name, QVariant::fromValue(walletModel));
|
||||
|
||||
connect(wallet_view, &WalletView::outOfSyncWarningClicked, this, &BitcoinGUI::showModalOverlay);
|
||||
connect(wallet_view, &WalletView::transactionClicked, this, &BitcoinGUI::gotoHistoryPage);
|
||||
@@ -696,6 +694,8 @@ void BitcoinGUI::addWallet(WalletModel* walletModel)
|
||||
connect(wallet_view, &WalletView::hdEnabledStatusChanged, this, &BitcoinGUI::updateWalletStatus);
|
||||
connect(this, &BitcoinGUI::setPrivacy, wallet_view, &WalletView::setPrivacy);
|
||||
wallet_view->setPrivacy(isPrivacyModeActivated());
|
||||
const QString display_name = walletModel->getDisplayName();
|
||||
m_wallet_selector->addItem(display_name, QVariant::fromValue(walletModel));
|
||||
}
|
||||
|
||||
void BitcoinGUI::removeWallet(WalletModel* walletModel)
|
||||
|
||||
@@ -32,7 +32,7 @@ CreateWalletDialog::CreateWalletDialog(QWidget* parent) :
|
||||
// set to true, enable it when isEncryptWalletChecked is false.
|
||||
ui->disable_privkeys_checkbox->setEnabled(!checked);
|
||||
#ifdef ENABLE_EXTERNAL_SIGNER
|
||||
ui->external_signer_checkbox->setEnabled(!checked);
|
||||
ui->external_signer_checkbox->setEnabled(m_has_signers && !checked);
|
||||
#endif
|
||||
// When the disable_privkeys_checkbox is disabled, uncheck it.
|
||||
if (!ui->disable_privkeys_checkbox->isEnabled()) {
|
||||
@@ -115,7 +115,8 @@ CreateWalletDialog::~CreateWalletDialog()
|
||||
|
||||
void CreateWalletDialog::setSigners(const std::vector<ExternalSigner>& signers)
|
||||
{
|
||||
if (!signers.empty()) {
|
||||
m_has_signers = !signers.empty();
|
||||
if (m_has_signers) {
|
||||
ui->external_signer_checkbox->setEnabled(true);
|
||||
ui->external_signer_checkbox->setChecked(true);
|
||||
ui->encrypt_wallet_checkbox->setEnabled(false);
|
||||
|
||||
@@ -35,6 +35,7 @@ public:
|
||||
|
||||
private:
|
||||
Ui::CreateWalletDialog *ui;
|
||||
bool m_has_signers = false;
|
||||
};
|
||||
|
||||
#endif // BITCOIN_QT_CREATEWALLETDIALOG_H
|
||||
|
||||
@@ -298,6 +298,10 @@ Daxil olma, yalnız 'qanuni' tipli ünvanlar ilə mümkündür.</translation>
|
||||
<source>Reverting this setting requires re-downloading the entire blockchain.</source>
|
||||
<translation type="unfinished">Bu tənzimləməni geri almaq bütün blok zəncirinin yenidən endirilməsini tələb edəcək. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Map port using &UPnP</source>
|
||||
<translation>&UPnP istifadə edən xəritə portu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The user interface language can be set here. This setting will take effect after restarting %1.</source>
|
||||
<translation type="unfinished">İstifadəçi interfeys dili burada tənzimlənə bilər. Bu tənzimləmə %1 yenidən başladıldıqdan sonra təsirli olacaq.</translation>
|
||||
@@ -392,6 +396,10 @@ Daxil olma, yalnız 'qanuni' tipli ünvanlar ilə mümkündür.</translation>
|
||||
</context>
|
||||
<context>
|
||||
<name>TransactionView</name>
|
||||
<message>
|
||||
<source>Other</source>
|
||||
<translation type="unfinished">Başqa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Label</source>
|
||||
<translation type="unfinished">Etiket</translation>
|
||||
|
||||
@@ -1223,6 +1223,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Greška</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The configuration file could not be opened.</source>
|
||||
<translation type="unfinished">Konfiguracijski falj nije bilo moguce otvoriti.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OverviewPage</name>
|
||||
@@ -1230,6 +1234,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Form</source>
|
||||
<translation>Obrazac</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation>Moguće je da su prikazane informacije zastarjele.Vaš novčanik se automatski sinhronizira sa Bitcoin mrežom nakon što je konekcija uspostavljena, ali proces nije još uvijek dovršen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Recent transactions</source>
|
||||
<translation type="unfinished">Nedavne transakcije</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PeerTableModel</name>
|
||||
|
||||
@@ -318,17 +318,17 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>%n hour(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n hodina</numerusform>
|
||||
<numerusform>%n hodin</numerusform>
|
||||
<numerusform>%n hodin</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n day(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n den</numerusform>
|
||||
<numerusform>%n dnů</numerusform>
|
||||
<numerusform>%n dnů</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
@@ -435,6 +435,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>&Receive</source>
|
||||
<translation>Při&jmi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Options…</source>
|
||||
<translation type="unfinished">&Možnosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Show / Hide</source>
|
||||
<translation>&Zobraz/Skryj</translation>
|
||||
@@ -455,6 +459,18 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Verify messages to ensure they were signed with specified Bitcoin addresses</source>
|
||||
<translation>Ověř zprávy, aby ses ujistil, že byly podepsány danými bitcoinovými adresami</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Wallet…</source>
|
||||
<translation type="unfinished">Zavřít peněženku...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create Wallet…</source>
|
||||
<translation type="unfinished">Vytvořit peněženku...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close All Wallets…</source>
|
||||
<translation type="unfinished">Zavřít všcehny peněženky...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&File</source>
|
||||
<translation>&Soubor</translation>
|
||||
@@ -471,6 +487,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Tabs toolbar</source>
|
||||
<translation>Panel s listy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Indexing blocks on disk…</source>
|
||||
<translation type="unfinished">Vytvářím index bloků na disku...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Request payments (generates QR codes and bitcoin: URIs)</source>
|
||||
<translation type="unfinished">Požaduj platby (generuje QR kódy a bitcoin: URI)</translation>
|
||||
@@ -1019,6 +1039,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>Intro</name>
|
||||
<message>
|
||||
<source>%1 GB of free space available</source>
|
||||
<translation type="unfinished">%1 GB volného místa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>(of %1 GB needed)</source>
|
||||
<translation type="unfinished">(z požadovaných %1 GB )</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>At least %1 GB of data will be stored in this directory, and it will grow over time.</source>
|
||||
<translation type="unfinished">Bude proto potřebovat do tohoto adresáře uložit nejméně %1 GB dat – tohle číslo navíc bude v průběhu času růst.</translation>
|
||||
@@ -1072,6 +1100,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Vrácení tohoto nastavení vyžaduje opětovné stažení celého blockchainu. Je rychlejší stáhnout celý řetězec nejprve a prořezat jej později. Některé pokročilé funkce budou zakázány, dokud celý blockchain nebude stažen nanovo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> GB</source>
|
||||
<translation type="unfinished">GB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Prvotní synchronizace je velice náročná, a mohou se tak díky ní začít na tvém počítači projevovat dosud skryté hardwarové problémy. Pokaždé, když spustíš %1, bude stahování pokračovat tam, kde skončilo.</translation>
|
||||
@@ -1129,6 +1161,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Number of blocks left</source>
|
||||
<translation type="unfinished">Zbývající počet bloků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown…</source>
|
||||
<translation type="unfinished">Neznámý…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>calculating…</source>
|
||||
<translation type="unfinished">propočítávám…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Last block time</source>
|
||||
<translation type="unfinished">Čas posledního bloku</translation>
|
||||
@@ -1533,6 +1573,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy to Clipboard</source>
|
||||
<translation type="unfinished">Kopírovat do schránky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save…</source>
|
||||
<translation type="unfinished">Uložit...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Zavřít</translation>
|
||||
@@ -1682,6 +1726,11 @@ Pokud vidíte tuto chybu, měli byste požádat, aby obchodník poskytl adresu k
|
||||
<extracomment>Title of Peers Table column which indicates the current latency of the connection with the peer.</extracomment>
|
||||
<translation type="unfinished">Odezva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Peer</source>
|
||||
<extracomment>Title of Peers Table column which contains a unique number used to identify a connection.</extracomment>
|
||||
<translation type="unfinished">Protějšek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sent</source>
|
||||
<extracomment>Title of Peers Table column which indicates the total amount of network information we have sent to the peer.</extracomment>
|
||||
@@ -2306,6 +2355,10 @@ Pokud vidíte tuto chybu, měli byste požádat, aby obchodník poskytl adresu k
|
||||
<source>Dust:</source>
|
||||
<translation type="unfinished">Prach:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Choose…</source>
|
||||
<translation type="unfinished">Zvol...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hide transaction fee settings</source>
|
||||
<translation type="unfinished">Schovat nastavení poplatků transakce - transaction fee</translation>
|
||||
@@ -2378,6 +2431,11 @@ Pokud vidíte tuto chybu, měli byste požádat, aby obchodník poskytl adresu k
|
||||
<source>%1 (%2 blocks)</source>
|
||||
<translation type="unfinished">%1 (%2 bloků)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign on device</source>
|
||||
<extracomment>"device" usually means a hardware wallet</extracomment>
|
||||
<translation type="unfinished">Přihlásit na zařízení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cr&eate Unsigned</source>
|
||||
<translation type="unfinished">Vytvořit bez podpisu</translation>
|
||||
|
||||
@@ -445,6 +445,10 @@ Das Signieren ist nur mit Adressen vom Typ 'Legacy' möglich.</translation>
|
||||
<source>Create a new wallet</source>
|
||||
<translation type="unfinished">Neue Wallet erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet:</source>
|
||||
<translation type="unfinished">Brieftasche:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Network activity disabled.</source>
|
||||
<extracomment>A substring of the tooltip.</extracomment>
|
||||
@@ -598,13 +602,6 @@ Das Signieren ist nur mit Adressen vom Typ 'Legacy' möglich.</translation>
|
||||
<source>&Command-line options</source>
|
||||
<translation type="unfinished">&Kommandozeilenoptionen</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Processed %n block(s) of transaction history.</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%1 behind</source>
|
||||
<translation>%1 im Rückstand</translation>
|
||||
@@ -767,6 +764,12 @@ Das Signieren ist nur mit Adressen vom Typ 'Legacy' möglich.</translation>
|
||||
<source>Amount: %1
|
||||
</source>
|
||||
<translation type="unfinished">Betrag: %1
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet: %1
|
||||
</source>
|
||||
<translation type="unfinished">Brieftasche: %1
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1053,6 +1056,10 @@ Das Signieren ist nur mit Adressen vom Typ 'Legacy' möglich.</translation>
|
||||
<source>Wallet Name</source>
|
||||
<translation type="unfinished">Wallet-Name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet</source>
|
||||
<translation type="unfinished">Brieftasche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Encrypt the wallet. The wallet will be encrypted with a passphrase of your choice.</source>
|
||||
<translation type="unfinished">Verschlüssele das Wallet. Das Wallet wird mit einer Passphrase deiner Wahl verschlüsselt.</translation>
|
||||
@@ -1215,8 +1222,8 @@ Das Signieren ist nur mit Adressen vom Typ 'Legacy' möglich.</translation>
|
||||
<source>(sufficient to restore backups %n day(s) old)</source>
|
||||
<extracomment>Explanatory text on the capability of the current prune target.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>(für Wiederherstellung ausreichende Sicherung %n Tag alt)</numerusform>
|
||||
<numerusform>(für Wiederherstellung ausreichende Sicherung %n Tage alt)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1442,6 +1449,10 @@ Das Signieren ist nur mit Adressen vom Typ 'Legacy' möglich.</translation>
|
||||
<source>(0 = auto, <0 = leave that many cores free)</source>
|
||||
<translation type="unfinished">(0 = automatisch, <0 = so viele Kerne frei lassen)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>W&allet</source>
|
||||
<translation type="unfinished">B&rieftasche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Expert</source>
|
||||
<translation type="unfinished">Experten-Optionen</translation>
|
||||
@@ -1566,6 +1577,10 @@ Das Signieren ist nur mit Adressen vom Typ 'Legacy' möglich.</translation>
|
||||
<source>Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor onion services.</source>
|
||||
<translation type="unfinished">Verbinde mit dem Bitcoin-Netzwerk über einen separaten SOCKS5-Proxy für Tor-Onion-Dienste.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use separate SOCKS&5 proxy to reach peers via Tor onion services:</source>
|
||||
<translation type="unfinished">Nutze separaten SOCKS&5-Proxy um Gegenstellen über Tor-Onion-Dienste zu erreichen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Third party transaction URLs</source>
|
||||
<translation type="unfinished">&Externe Transaktions-URLs</translation>
|
||||
@@ -2462,6 +2477,10 @@ Für weitere Informationen über diese Konsole, tippe %6.
|
||||
<source>Message:</source>
|
||||
<translation type="unfinished">Nachricht:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet:</source>
|
||||
<translation type="unfinished">Brieftasche:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &URI</source>
|
||||
<translation type="unfinished">&URI kopieren</translation>
|
||||
@@ -2801,6 +2820,10 @@ Hinweis: Da die Gebühr auf Basis der Bytes berechnet wird, führt eine Gebühre
|
||||
<source>You can increase the fee later (signals Replace-By-Fee, BIP-125).</source>
|
||||
<translation type="unfinished">Sie können die Gebühr später erhöhen (zeigt Replace-By-Fee, BIP-125).</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Überprüfen Sie bitte Ihr Transaktionsvorhaben. Dadurch wird eine teilweise signierte Bitcoin-Transaktion (TSBT) erstellt, die Sie speichern oder kopieren und dann z. B. mit einer Offline-Brieftasche %1 oder einer TSBT-kompatible Hardware-Brieftasche nutzen können.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Please, review your transaction.</source>
|
||||
<translation type="unfinished">Bitte überprüfen sie ihre Transaktion.</translation>
|
||||
@@ -2864,8 +2887,8 @@ Hinweis: Da die Gebühr auf Basis der Bytes berechnet wird, führt eine Gebühre
|
||||
<message numerus="yes">
|
||||
<source>Estimated to begin confirmation within %n block(s).</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>Voraussichtlicher Beginn der Bestätigung innerhalb von %n Block.</numerusform>
|
||||
<numerusform>Voraussichtlicher Beginn der Bestätigung innerhalb von %n Blöcken.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -3108,8 +3131,8 @@ Hinweis: Da die Gebühr auf Basis der Bytes berechnet wird, führt eine Gebühre
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>Für weiteren %n Block offen</numerusform>
|
||||
<numerusform>Für weitere %n Blöcke offen</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -3187,8 +3210,8 @@ Hinweis: Da die Gebühr auf Basis der Bytes berechnet wird, führt eine Gebühre
|
||||
<message numerus="yes">
|
||||
<source>matures in %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>reift noch %n weiteren Block.</numerusform>
|
||||
<numerusform>reift noch %n weitere Blöcke.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -3304,8 +3327,8 @@ Hinweis: Da die Gebühr auf Basis der Bytes berechnet wird, führt eine Gebühre
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>Für weiteren Block offen</numerusform>
|
||||
<numerusform>Für weitere %n Blöcke offen</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
||||
@@ -749,8 +749,8 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>%n active connection(s) to Bitcoin network.</source>
|
||||
<extracomment>A substring of the tooltip.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
<numerusform></numerusform>
|
||||
<numerusform>%n active connection to Bitcoin network.</numerusform>
|
||||
<numerusform>%n active connections to Bitcoin network.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1376,8 +1376,8 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>(sufficient to restore backups %n day(s) old)</source>
|
||||
<extracomment>Explanatory text on the capability of the current prune target.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
<numerusform></numerusform>
|
||||
<numerusform>(sufficient to restore backups %n day old)</numerusform>
|
||||
<numerusform>(sufficient to restore backups %n days old)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Create a new address</source>
|
||||
<translation>Crea una nueva dirección</translation>
|
||||
<translation>Crear una nueva dirección</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&New</source>
|
||||
@@ -267,6 +267,10 @@ Firmar solo es posible con direcciones del tipo Legacy.</translation>
|
||||
<source>%1 didn't yet exit safely…</source>
|
||||
<translation type="unfinished">1%1 todavía no ha terminado de forma segura...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Internal</source>
|
||||
<translation type="unfinished">Interno</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n second(s)</source>
|
||||
<translation>
|
||||
@@ -456,8 +460,8 @@ Firmar solo es posible con direcciones del tipo Legacy.</translation>
|
||||
<message numerus="yes">
|
||||
<source>Processed %n block(s) of transaction history.</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>Se ha procesado %n bloque del historial de transacciones.</numerusform>
|
||||
<numerusform>Se han procesado %n bloques del historial de transacciones.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -578,6 +582,14 @@ Firmar solo es posible con direcciones del tipo Legacy.</translation>
|
||||
<source>Confirmed</source>
|
||||
<translation type="unfinished">Confirmado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">copiar dirección </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">copiar y etiquetar </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>yes</source>
|
||||
<translation type="unfinished">sí</translation>
|
||||
@@ -948,6 +960,14 @@ Firmar solo es posible con direcciones del tipo Legacy.</translation>
|
||||
<source>&Amount:</source>
|
||||
<translation type="unfinished">&Cantidad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">copiar dirección </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">copiar y etiquetar </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Could not generate new %1 address</source>
|
||||
<translation type="unfinished">No se ha podido generar una nueva dirección %1</translation>
|
||||
@@ -1145,6 +1165,14 @@ Firmar solo es posible con direcciones del tipo Legacy.</translation>
|
||||
</context>
|
||||
<context>
|
||||
<name>TransactionView</name>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">copiar dirección </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">copiar y etiquetar </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Confirmed</source>
|
||||
<translation type="unfinished">Confirmado</translation>
|
||||
|
||||
@@ -183,6 +183,22 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Enter the old passphrase and new passphrase for the wallet.</source>
|
||||
<translation type="unfinished">Ingresa la antigua frase de contraseña y la nueva frase de contraseña para la billetera.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer.</source>
|
||||
<translation type="unfinished">Recuerda que cifrar tu billetera no garantiza total protección de robo de tus bitcoins si tu ordenador es infectado con malware.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet to be encrypted</source>
|
||||
<translation type="unfinished">Billetera a cifrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Your wallet is about to be encrypted. </source>
|
||||
<translation type="unfinished">Tu billetera esta a punto de ser encriptada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Your wallet is now encrypted. </source>
|
||||
<translation type="unfinished">Tu billetera ha sido cifrada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet.</source>
|
||||
<translation type="unfinished">IMPORTANTE: Cualquier respaldo anterior que hayas hecho del archivo de tu billetera debe ser reemplazado por el nuevo archivo encriptado que has generado. Por razones de seguridad, todos los respaldos realizados anteriormente serán inutilizables al momento de que utilices tu nueva billetera encriptada.</translation>
|
||||
@@ -227,6 +243,13 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<translation type="unfinished">Suspendido hasta</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>BitcoinApplication</name>
|
||||
<message>
|
||||
<source>Internal error</source>
|
||||
<translation type="unfinished">Error interno</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
@@ -350,6 +373,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Modify configuration options for %1</source>
|
||||
<translation type="unfinished">Modificar las opciones de configuración para %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create a new wallet</source>
|
||||
<translation type="unfinished">Crear una nueva billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet:</source>
|
||||
<translation type="unfinished">Billetera:</translation>
|
||||
@@ -391,18 +418,46 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Show or hide the main Window</source>
|
||||
<translation>Mostrar u ocultar la ventana principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Encrypt Wallet…</source>
|
||||
<translation type="unfinished">&Encriptar billetera…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Encrypt the private keys that belong to your wallet</source>
|
||||
<translation>Cifrar las claves privadas de su monedero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Backup Wallet…</source>
|
||||
<translation type="unfinished">&Realizar copia de seguridad de la billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign &message…</source>
|
||||
<translation type="unfinished">Firmar &mensaje...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign messages with your Bitcoin addresses to prove you own them</source>
|
||||
<translation>Firmar un mensaje para provar que usted es dueño de esta dirección</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Verify message…</source>
|
||||
<translation type="unfinished">&Verificar mensaje...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verify messages to ensure they were signed with specified Bitcoin addresses</source>
|
||||
<translation>Verificar mensajes comprobando que están firmados con direcciones Bitcoin concretas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Wallet…</source>
|
||||
<translation type="unfinished">Cerrar Billetera...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create Wallet…</source>
|
||||
<translation type="unfinished">Crear Billetera...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close All Wallets…</source>
|
||||
<translation type="unfinished">Cerrar todas las billeteras...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&File</source>
|
||||
<translation>&Archivo</translation>
|
||||
@@ -466,10 +521,58 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Up to date</source>
|
||||
<translation>Actualizado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load Partially Signed Bitcoin Transaction from clipboard</source>
|
||||
<translation type="unfinished">Cargar una transacción de Bitcoin parcialmente firmada desde el Portapapeles</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Node window</source>
|
||||
<translation type="unfinished">Ventana del nodo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open node debugging and diagnostic console</source>
|
||||
<translation type="unfinished">Abrir consola de depuración y diagnóstico del nodo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Sending addresses</source>
|
||||
<translation type="unfinished">&Direcciones de envío</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Receiving addresses</source>
|
||||
<translation type="unfinished">&Direcciones de entrega</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open a bitcoin: URI</source>
|
||||
<translation type="unfinished">Abrir un bitcoin: URI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open Wallet</source>
|
||||
<translation type="unfinished">Abrir billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open a wallet</source>
|
||||
<translation type="unfinished">Abrir una billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close wallet</source>
|
||||
<translation type="unfinished">Cerrar billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close all wallets</source>
|
||||
<translation type="unfinished">Cerrar todas las billeteras</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show the %1 help message to get a list with possible Bitcoin command-line options</source>
|
||||
<translation type="unfinished">Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de Bitcoin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">billetera predeterminada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No wallets available</source>
|
||||
<translation type="unfinished">No hay billeteras disponibles</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Window</source>
|
||||
<translation type="unfinished">y windows
|
||||
@@ -479,6 +582,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Minimize</source>
|
||||
<translation type="unfinished">Minimizar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Zoom</source>
|
||||
<translation type="unfinished">Acercar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Main Window</source>
|
||||
<translation type="unfinished">Ventana principal</translation>
|
||||
@@ -495,6 +602,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<numerusform />
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Warning: %1</source>
|
||||
<translation type="unfinished">Advertencia: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Date: %1
|
||||
</source>
|
||||
@@ -559,7 +670,11 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Wallet is <b>encrypted</b> and currently <b>locked</b></source>
|
||||
<translation>La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b></translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Original message:</source>
|
||||
<translation type="unfinished">Mensaje original:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UnitDisplayStatusBarControl</name>
|
||||
<message>
|
||||
@@ -691,16 +806,89 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<translation type="unfinished">(cambio)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreateWalletActivity</name>
|
||||
<message>
|
||||
<source>Create wallet failed</source>
|
||||
<translation type="unfinished">Fallo al crear la billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create wallet warning</source>
|
||||
<translation type="unfinished">Advertencia de crear billetera</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenWalletActivity</name>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">billetera predeterminada</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WalletController</name>
|
||||
<message>
|
||||
<source>Close wallet</source>
|
||||
<translation type="unfinished">Cerrar billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close all wallets</source>
|
||||
<translation type="unfinished">Cerrar todas las billeteras</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you wish to close all wallets?</source>
|
||||
<translation type="unfinished">¿Está seguro de que desea cerrar todas las billeteras?</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreateWalletDialog</name>
|
||||
<message>
|
||||
<source>Create Wallet</source>
|
||||
<translation type="unfinished">Crear Billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet Name</source>
|
||||
<translation type="unfinished">Nombre de la billetera </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet</source>
|
||||
<translation type="unfinished">Cartera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Encrypt the wallet. The wallet will be encrypted with a passphrase of your choice.</source>
|
||||
<translation type="unfinished">Encriptar la billetera. La billetera será encriptada con una contraseña de tu elección.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Encrypt Wallet</source>
|
||||
<translation type="unfinished">Encriptar la billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Advanced Options</source>
|
||||
<translation type="unfinished">Opciones avanzadas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Desactivar las claves privadas para esta billetera. Las billeteras con claves privadas desactivadas no tendrán claves privadas y no podrán tener ninguna semilla HD o claves privadas importadas. Esto es ideal para billeteras de solo lectura.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Disable Private Keys</source>
|
||||
<translation type="unfinished">Desactivar las claves privadas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Crea una billetera en blanco. Las billeteras en blanco inicialmente no tienen llaves privadas o texto. Las llaves privadas y las direcciones pueden ser importadas, o se puede establecer una semilla HD, más tarde.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make Blank Wallet</source>
|
||||
<translation type="unfinished">Crear billetera vacía</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Descriptor Wallet</source>
|
||||
<translation type="unfinished">Descriptor de la billetera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create</source>
|
||||
<translation type="unfinished">Crear</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditAddressDialog</name>
|
||||
@@ -1189,11 +1377,31 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
</context>
|
||||
<context>
|
||||
<name>PSBTOperationsDialog</name>
|
||||
<message>
|
||||
<source>Dialog</source>
|
||||
<translation type="unfinished">Dialogo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Cerrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save Transaction Data</source>
|
||||
<translation type="unfinished">Guardar datos de la transacción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Total Amount</source>
|
||||
<translation type="unfinished">Monto total</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>or</source>
|
||||
<translation type="unfinished">o</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Transaction status is unknown.</source>
|
||||
<translation type="unfinished">El estado de la transacción es desconocido.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PaymentServer</name>
|
||||
<message>
|
||||
@@ -1298,6 +1506,14 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Memory usage</source>
|
||||
<translation type="unfinished">Memoria utilizada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet: </source>
|
||||
<translation type="unfinished">Billetera:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>(none)</source>
|
||||
<translation type="unfinished">(ninguno)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Reset</source>
|
||||
<translation type="unfinished">&Reestablecer</translation>
|
||||
@@ -1335,6 +1551,14 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Synced Blocks</source>
|
||||
<translation type="unfinished">Bloques sincronizados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Node window</source>
|
||||
<translation type="unfinished">Ventana del nodo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Current block height</source>
|
||||
<translation type="unfinished">Altura del bloque actual</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Decrease font size</source>
|
||||
<translation type="unfinished">Disminuir tamaño de fuente</translation>
|
||||
@@ -1343,6 +1567,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Increase font size</source>
|
||||
<translation type="unfinished">Aumentar tamaño de fuente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Permissions</source>
|
||||
<translation type="unfinished">Permisos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Services</source>
|
||||
<translation type="unfinished">Servicios</translation>
|
||||
@@ -1529,10 +1757,18 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
</context>
|
||||
<context>
|
||||
<name>ReceiveRequestDialog</name>
|
||||
<message>
|
||||
<source>Address:</source>
|
||||
<translation type="unfinished">Dirección:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount:</source>
|
||||
<translation type="unfinished">Cantidad:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Label:</source>
|
||||
<translation type="unfinished">Etiqueta:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Message:</source>
|
||||
<translation type="unfinished">Mensaje:</translation>
|
||||
@@ -1672,6 +1908,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Dust:</source>
|
||||
<translation type="unfinished">Polvo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hide transaction fee settings</source>
|
||||
<translation type="unfinished">Esconder ajustes de la tarifa de transacción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Confirmation time target:</source>
|
||||
<translation type="unfinished">Objetivo de tiempo de confirmación</translation>
|
||||
@@ -1720,6 +1960,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>%1 (%2 blocks)</source>
|
||||
<translation type="unfinished">%1 (%2 bloques)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> from wallet '%1'</source>
|
||||
<translation type="unfinished">desde la billetera '%1'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%1 to %2</source>
|
||||
<translation type="unfinished">%1 a %2</translation>
|
||||
@@ -1728,18 +1972,34 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Are you sure you want to send?</source>
|
||||
<translation type="unfinished">¿Seguro que quiere enviar?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save Transaction Data</source>
|
||||
<translation type="unfinished">Guardar datos de la transacción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>or</source>
|
||||
<translation type="unfinished">o</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Please, review your transaction.</source>
|
||||
<translation type="unfinished">Por favor, revise su transacción.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction fee</source>
|
||||
<translation type="unfinished">Comisión de transacción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Total Amount</source>
|
||||
<translation type="unfinished">Monto total</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Confirm send coins</source>
|
||||
<translation type="unfinished">Confirmar el envió de monedas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Confirm transaction proposal</source>
|
||||
<translation type="unfinished">Confirmar la propuesta de transacción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The recipient address is not valid. Please recheck.</source>
|
||||
<translation type="unfinished">La dirección de envío no es válida. Por favor revisala.</translation>
|
||||
@@ -1756,6 +2016,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>The total exceeds your balance when the %1 transaction fee is included.</source>
|
||||
<translation type="unfinished">El total sobrepasa tu saldo cuando se incluyen %1 como comisión de envió.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Duplicate address found: addresses should only be used once each.</source>
|
||||
<translation type="unfinished">Dirección duplicada encontrada: las direcciones sólo deben ser utilizadas una vez.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction creation failed!</source>
|
||||
<translation type="unfinished">¡Fallo al crear la transacción!</translation>
|
||||
@@ -1830,6 +2094,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>S&ubtract fee from amount</source>
|
||||
<translation type="unfinished">Restar comisiones del monto.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use available balance</source>
|
||||
<translation type="unfinished">Usar el saldo disponible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Message:</source>
|
||||
<translation type="unfinished">Mensaje:</translation>
|
||||
@@ -1941,6 +2209,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Wallet unlock was cancelled.</source>
|
||||
<translation type="unfinished">El desbloqueo del monedero fue cancelado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No error</source>
|
||||
<translation type="unfinished">No hay error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Private key for the entered address is not available.</source>
|
||||
<translation type="unfinished">La llave privada para la dirección introducida no está disponible.</translation>
|
||||
@@ -2352,6 +2624,13 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<translation type="unfinished">para</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WalletFrame</name>
|
||||
<message>
|
||||
<source>Create a new wallet</source>
|
||||
<translation type="unfinished">Crear una nueva billetera</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WalletModel</name>
|
||||
<message>
|
||||
@@ -2394,7 +2673,11 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Could not commit transaction</source>
|
||||
<translation type="unfinished">No se pudo confirmar la transacción</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">billetera predeterminada</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WalletView</name>
|
||||
<message>
|
||||
@@ -2405,6 +2688,10 @@ Firmar solo es posible con direcciones del tipo 'Legacy'.</translation>
|
||||
<source>Export the data in the current tab to a file</source>
|
||||
<translation type="unfinished">Exportar los datos de la pestaña actual a un archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load Transaction Data</source>
|
||||
<translation type="unfinished">Cargar datos de la transacción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backup Wallet</source>
|
||||
<translation type="unfinished">Respaldar monedero</translation>
|
||||
|
||||
@@ -281,8 +281,8 @@
|
||||
<message numerus="yes">
|
||||
<source>%n second(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%nsegundos</numerusform>
|
||||
<numerusform>%n segundos</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
@@ -1143,6 +1143,10 @@ Si recibe este error, debe solicitar al vendedor un URI compatible con BIP21.</
|
||||
</context>
|
||||
<context>
|
||||
<name>QRImageWidget</name>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Guardar imagen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy Image</source>
|
||||
<translation type="unfinished">&Copiar Imagen</translation>
|
||||
@@ -1159,7 +1163,12 @@ Si recibe este error, debe solicitar al vendedor un URI compatible con BIP21.</
|
||||
<source>Save QR Code</source>
|
||||
<translation type="unfinished">Guardar Código QR</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>PNG Image</source>
|
||||
<extracomment>Expanded name of the PNG file format. See https://en.wikipedia.org/wiki/Portable_Network_Graphics</extracomment>
|
||||
<translation type="unfinished">Imagen PNG</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RPCConsole</name>
|
||||
<message>
|
||||
@@ -1234,6 +1243,23 @@ Si recibe este error, debe solicitar al vendedor un URI compatible con BIP21.</
|
||||
<source>Executing command without any wallet</source>
|
||||
<translation type="unfinished">Ejecutando el comando sin ninguna cartera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.
|
||||
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</source>
|
||||
<extracomment>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.</extracomment>
|
||||
<translation type="unfinished">Bienvenido a la %1 consola RPC.
|
||||
Utilice la flecha arriba y abajo para navegar el historial y %2 para limpiar la consola.
|
||||
Utilice%3 y %4 para aumentar o reducir el tamaño de fuente.
|
||||
Escriba %5 para una visión general de los comandos disponibles.
|
||||
Para obtener más información, escriba %6.
|
||||
|
||||
%7ADVERTENCIA: Los estafadores, de forma activa, han estado indicando a los usuarios que escriban comandos aquí y de esta manera roban el contenido de sus monederos. No utilice esta consola si no comprende perfectamente las ramificaciones de un comando.%8</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished">Sí</translation>
|
||||
@@ -1348,6 +1374,10 @@ Si recibe este error, debe solicitar al vendedor un URI compatible con BIP21.</
|
||||
<source>Copy &Address</source>
|
||||
<translation type="unfinished">&Copiar dirección</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Guardar imagen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RecentRequestsTableModel</name>
|
||||
@@ -1893,6 +1923,10 @@ Si recibe este error, debe solicitar al vendedor un URI compatible con BIP21.</
|
||||
</context>
|
||||
<context>
|
||||
<name>bitcoin-core</name>
|
||||
<message>
|
||||
<source>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source>
|
||||
<translation type="unfinished">No se pudo cambiar la versión %i a la versión anterior %i. Versión del monedero sin cambios.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The transaction amount is too small to send after the fee has been deducted</source>
|
||||
<translation type="unfinished">La cantidad de la transacción es demasiado pequeña para enviarla después de que se haya deducido la tarifa</translation>
|
||||
|
||||
@@ -3,23 +3,23 @@
|
||||
<name>AddressBookPage</name>
|
||||
<message>
|
||||
<source>Right-click to edit address or label</source>
|
||||
<translation type="unfinished">برای ویرایش آدرس یا برچسبگذاری راستکلیک کنید</translation>
|
||||
<translation type="unfinished">برای ویرایش نشانی یا برچسب کلیکراست کنید</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create a new address</source>
|
||||
<translation>ایجاد یک آدرس جدید</translation>
|
||||
<translation>نشانی جدید ایجاد کنید</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&New</source>
|
||||
<translation type="unfinished">جدید</translation>
|
||||
<translation type="unfinished">&تازه</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy the currently selected address to the system clipboard</source>
|
||||
<translation>کپیکردن آدرس انتخابشده به حافظهٔ کلیپبورد سیستم</translation>
|
||||
<translation>کپی کردن آدرس انتخاب شده به کلیپ برد سیستم</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy</source>
|
||||
<translation type="unfinished">کپی</translation>
|
||||
<translation type="unfinished">&کپی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>C&lose</source>
|
||||
@@ -27,15 +27,15 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete the currently selected address from the list</source>
|
||||
<translation>حذف آدرس های انتخاب شده از لیست</translation>
|
||||
<translation>حذف نشانیهای انتخابی از فهرست</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enter address or label to search</source>
|
||||
<translation type="unfinished">آدرس یا برچسب را برای جستجو وارد کنید</translation>
|
||||
<translation type="unfinished">نشانی یا برچسب را برای جستجو وارد کنید</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export the data in the current tab to a file</source>
|
||||
<translation>صدور داده نوار جاری به یک فایل</translation>
|
||||
<translation>خروجی گرفتن دادههای برگهی فعلی،به یک فایل</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Export</source>
|
||||
@@ -464,20 +464,60 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Show or hide the main Window</source>
|
||||
<translation>نمایش یا عدم نمایش پنجره اصلی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Encrypt Wallet…</source>
|
||||
<translation type="unfinished">رمزنگاری کیف پول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Encrypt the private keys that belong to your wallet</source>
|
||||
<translation>کلیدهای خصوصی متعلق به کیف پول شما را رمزگذاری کنید
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Backup Wallet…</source>
|
||||
<translation type="unfinished">نسخه پشتیبان کیف پول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Change Passphrase…</source>
|
||||
<translation type="unfinished">تغییر عبارت عبور</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign messages with your Bitcoin addresses to prove you own them</source>
|
||||
<translation>پیامها را با آدرس بیتکوین خود امضا کنید تا مالکیت آنها را اثبات کنید</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Verify message…</source>
|
||||
<translation type="unfinished">پیام تایید</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verify messages to ensure they were signed with specified Bitcoin addresses</source>
|
||||
<translation>پیام ها را تأیید کنید تا مطمئن شوید با آدرس های مشخص شده بیت کوین امضا شده اند
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Load PSBT from file…</source>
|
||||
<translation type="unfinished">بارگیری PSBT از پرونده</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load PSBT from clipboard…</source>
|
||||
<translation type="unfinished">بارگیری PSBT از کلیپبورد</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open &URI…</source>
|
||||
<translation type="unfinished">تکثیر نشانی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Wallet…</source>
|
||||
<translation type="unfinished">بستن کیف پول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create Wallet…</source>
|
||||
<translation type="unfinished">ساخت کیف پول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close All Wallets…</source>
|
||||
<translation type="unfinished">بستن همهٔ کیف پولها</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&File</source>
|
||||
<translation>فایل</translation>
|
||||
@@ -494,6 +534,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Tabs toolbar</source>
|
||||
<translation>نوار ابزار</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Synchronizing with network…</source>
|
||||
<translation type="unfinished">هماهنگسازی با شبکه</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Request payments (generates QR codes and bitcoin: URIs)</source>
|
||||
<translation type="unfinished">درخواست پرداخت (ساخت کد QR و بیتکوین: URIs)</translation>
|
||||
@@ -618,6 +662,21 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<numerusform />
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Click for more actions.</source>
|
||||
<extracomment>A substring of the tooltip. "More actions" are available via the context menu.</extracomment>
|
||||
<translation type="unfinished">برای عملیاتهای بیشتر کلیک کنید.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Disable network activity</source>
|
||||
<extracomment>A context menu item.</extracomment>
|
||||
<translation type="unfinished">غیرفعالسازی فعالیت شبکه</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enable network activity</source>
|
||||
<extracomment>A context menu item. The network activity was disabled previously.</extracomment>
|
||||
<translation type="unfinished">فعالسازی فعالیت شبکه</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: %1</source>
|
||||
<translation type="unfinished">خطا: %1</translation>
|
||||
@@ -772,6 +831,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy amount</source>
|
||||
<translation type="unfinished">کپی مقدار</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">تکثیر نشانی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">تکثیر برچسب</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy quantity</source>
|
||||
<translation type="unfinished">کپی مقدار</translation>
|
||||
@@ -827,6 +894,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreateWalletActivity</name>
|
||||
<message>
|
||||
<source>Creating Wallet <b>%1</b>…</source>
|
||||
<translation type="unfinished">در حال ساخت کیف پول <b>%1</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create wallet failed</source>
|
||||
<translation type="unfinished">کیف پول "ایجاد" نشد
|
||||
@@ -837,7 +908,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<translation type="unfinished">هشدار کیف پول ایجاد کنید
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Can't list signers</source>
|
||||
<translation type="unfinished">نمیتوان امضاکنندگان را فهرست کرد</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenWalletActivity</name>
|
||||
<message>
|
||||
@@ -853,7 +928,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<translation type="unfinished">کیف پول پیش فرض
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Opening Wallet <b>%1</b>…</source>
|
||||
<translation type="unfinished">در حال باز کردن کیف پول <b>%1</b></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WalletController</name>
|
||||
<message>
|
||||
@@ -912,6 +991,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Make Blank Wallet</source>
|
||||
<translation type="unfinished">ساخت کیف پول خالی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use an external signing device such as a hardware wallet. Configure the external signer script in wallet preferences first.</source>
|
||||
<translation type="unfinished">از یک دستگاه دیگر مانند کیف پول سختافزاری برای ورود استفاده کنید. در ابتدا امضاکنندهٔ جانبی اسکریپت را در ترجیحات کیف پول پیکربندی کنید.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer</source>
|
||||
<translation type="unfinished">امضاکنندهٔ جانبی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create</source>
|
||||
<translation type="unfinished">ایجاد</translation>
|
||||
@@ -994,6 +1081,18 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Bitcoin</source>
|
||||
<translation type="unfinished">بیت کوین</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%1 GB of free space available</source>
|
||||
<translation type="unfinished">%1 گیگابایت فضای خالی در دسترس است</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>(of %1 GB needed)</source>
|
||||
<translation type="unfinished">(%1 گیگابایت لازم است)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>(%1 GB needed for full chain)</source>
|
||||
<translation type="unfinished">(%1 برای زنجیر کامل نیاز است)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>At least %1 GB of data will be stored in this directory, and it will grow over time.</source>
|
||||
<translation type="unfinished">حداقل %1 گیگابایت اطلاعات در این شاخه ذخیره خواهد شد، که به مرور زمان افزایش خواهد یافت.</translation>
|
||||
@@ -1033,6 +1132,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>As this is the first time the program is launched, you can choose where %1 will store its data.</source>
|
||||
<translation type="unfinished">از آنجا که اولین مرتبه این برنامه اجرا میشود، شما میتوانید محل ذخیره دادههای %1 را انتخاب نمایید.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> GB</source>
|
||||
<translation type="unfinished">گیگابایت</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">اگر تصمیم بگیرید که فضای ذخیره سازی زنجیره بلوک (هرس) را محدود کنید ، داده های تاریخی باید بارگیری و پردازش شود ، اما اگر آن را حذف کنید ، اگر شما دیسک کم استفاده کنید.
|
||||
@@ -1065,6 +1168,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShutdownWindow</name>
|
||||
<message>
|
||||
<source>%1 is shutting down…</source>
|
||||
<translation type="unfinished">%1 در حال خاموش شدن است</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do not shut down the computer until this window disappears.</source>
|
||||
<translation type="unfinished">تا پیش از بسته شدن این پنجره کامپیوتر خود را خاموش نکنید.</translation>
|
||||
@@ -1085,6 +1192,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Number of blocks left</source>
|
||||
<translation type="unfinished">تعداد بلوکهای باقیمانده</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown…</source>
|
||||
<translation type="unfinished">ناشناخته</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>calculating…</source>
|
||||
<translation type="unfinished">در حال رایانش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Last block time</source>
|
||||
<translation type="unfinished">زمان آخرین بلوک</translation>
|
||||
@@ -1109,7 +1224,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Esc</source>
|
||||
<translation type="unfinished">خروج</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Unknown. Syncing Headers (%1, %2%)…</source>
|
||||
<translation type="unfinished">ناشناخته. هماهنگسازی سربرگها (%1، %2%) </translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenURIDialog</name>
|
||||
<message>
|
||||
@@ -1168,6 +1287,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Enable coin &control features</source>
|
||||
<translation type="unfinished">فعال کردن قابلیت سکه و کنترل</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External Signer (e.g. hardware wallet)</source>
|
||||
<translation type="unfinished">امضاکنندهٔ جانبی (برای نمونه، کیف پول سختافزاری)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&External signer script path</source>
|
||||
<translation type="unfinished">مسیر اسکریپت امضاکنندهٔ جانبی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source>
|
||||
<translation>باز کردن خودکار درگاه شبکهٔ بیتکوین روی روترها. تنها زمانی کار میکند که روتر از پروتکل UPnP پشتیبانی کند و این پروتکل فعال باشد.</translation>
|
||||
@@ -1176,6 +1303,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Map port using &UPnP</source>
|
||||
<translation>نگاشت درگاه شبکه با استفاده از پروتکل &UPnP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Map port using NA&T-PMP</source>
|
||||
<translation type="unfinished">درگاه نقشه با استفاده از NA&T-PMP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Accept connections from outside.</source>
|
||||
<translation type="unfinished">پذیرفتن اتصال شدن از بیرون</translation>
|
||||
@@ -1210,6 +1341,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>&Window</source>
|
||||
<translation>پنجره</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show the icon in the system tray.</source>
|
||||
<translation type="unfinished">نمایش نمادک در سینی سامانه.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Show tray icon</source>
|
||||
<translation type="unfinished">نمایش نمادک سینی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show only a tray icon after minimizing the window.</source>
|
||||
<translation>تنها بعد از کوچک کردن پنجره، tray icon را نشان بده.</translation>
|
||||
@@ -1824,6 +1963,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy &URI</source>
|
||||
<translation type="unfinished">کپی کردن &آدرس URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">تکثیر نشانی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">تکثیر برچسب</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Could not unlock wallet.</source>
|
||||
<translation type="unfinished">نمیتوان کیف پول را باز کرد.</translation>
|
||||
@@ -2645,6 +2792,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Min amount</source>
|
||||
<translation type="unfinished">حداقل میزان وجه</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">تکثیر نشانی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">تکثیر برچسب</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export Transaction History</source>
|
||||
<translation type="unfinished">خارج کردن یا بالا بردن سابقه تراکنش ها</translation>
|
||||
|
||||
@@ -887,6 +887,18 @@ Allekirjoitus on mahdollista vain 'legacy'-tyyppisillä osoitteilla.</translatio
|
||||
<source>Copy amount</source>
|
||||
<translation type="unfinished">Kopioi määrä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopioi osoite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopioi &viite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopioi &määrä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy quantity</source>
|
||||
<translation type="unfinished">Kopioi lukumäärä</translation>
|
||||
@@ -958,7 +970,11 @@ Allekirjoitus on mahdollista vain 'legacy'-tyyppisillä osoitteilla.</translatio
|
||||
<source>Create wallet warning</source>
|
||||
<translation type="unfinished">Luo lompakkovaroitus</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Can't list signers</source>
|
||||
<translation type="unfinished">Allekirjoittajia ei voida listata</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenWalletActivity</name>
|
||||
<message>
|
||||
@@ -1047,6 +1063,10 @@ Allekirjoitus on mahdollista vain 'legacy'-tyyppisillä osoitteilla.</translatio
|
||||
<source>Descriptor Wallet</source>
|
||||
<translation type="unfinished">Kuvaajalompakko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer</source>
|
||||
<translation type="unfinished">Ulkopuolinen allekirjoittaja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create</source>
|
||||
<translation type="unfinished">Luo</translation>
|
||||
@@ -1419,6 +1439,10 @@ Allekirjoitus on mahdollista vain 'legacy'-tyyppisillä osoitteilla.</translatio
|
||||
<source>&Spend unconfirmed change</source>
|
||||
<translation type="unfinished">&Käytä varmistamattomia vaihtorahoja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External Signer (e.g. hardware wallet)</source>
|
||||
<translation type="unfinished">Ulkopuolinen allekirjoittaja (esim. laitelompakko)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source>
|
||||
<translation>Avaa Bitcoin-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä.</translation>
|
||||
@@ -2320,6 +2344,22 @@ Jos saat tämän virheen, pyydä kauppiasta antamaan BIP21-yhteensopiva URI.</tr
|
||||
<source>Copy &URI</source>
|
||||
<translation type="unfinished">Kopioi &URI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopioi osoite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopioi &viite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &message</source>
|
||||
<translation type="unfinished">Kopioi &viesti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopioi &määrä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Could not unlock wallet.</source>
|
||||
<translation type="unfinished">Lompakkoa ei voitu avata.</translation>
|
||||
@@ -2331,6 +2371,10 @@ Jos saat tämän virheen, pyydä kauppiasta antamaan BIP21-yhteensopiva URI.</tr
|
||||
</context>
|
||||
<context>
|
||||
<name>ReceiveRequestDialog</name>
|
||||
<message>
|
||||
<source>Request payment to …</source>
|
||||
<translation type="unfinished">Pyydä maksua ooitteeseen ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Address:</source>
|
||||
<translation type="unfinished">Osoite:</translation>
|
||||
@@ -2359,6 +2403,14 @@ Jos saat tämän virheen, pyydä kauppiasta antamaan BIP21-yhteensopiva URI.</tr
|
||||
<source>Copy &Address</source>
|
||||
<translation type="unfinished">Kopioi &Osoite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Verify</source>
|
||||
<translation type="unfinished">&Varmenna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verify this address on e.g. a hardware wallet screen</source>
|
||||
<translation type="unfinished">Varmista tämä osoite esimerkiksi laitelompakon näytöltä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Tallenna kuva...</translation>
|
||||
@@ -2577,6 +2629,10 @@ Jos saat tämän virheen, pyydä kauppiasta antamaan BIP21-yhteensopiva URI.</tr
|
||||
<source>%1 (%2 blocks)</source>
|
||||
<translation type="unfinished">%1 (%2 lohkoa)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Connect your hardware wallet first.</source>
|
||||
<translation type="unfinished">Yhdistä lompakkolaitteesi ensin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cr&eate Unsigned</source>
|
||||
<translation type="unfinished">L&uo allekirjoittamaton</translation>
|
||||
@@ -2601,10 +2657,19 @@ Jos saat tämän virheen, pyydä kauppiasta antamaan BIP21-yhteensopiva URI.</tr
|
||||
<source>Create Unsigned</source>
|
||||
<translation type="unfinished">Luo allekirjoittamaton</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign and send</source>
|
||||
<translation type="unfinished">Allekirjoita ja lähetä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign failed</source>
|
||||
<translation type="unfinished">Allekirjoittaminen epäonnistui</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer not found</source>
|
||||
<extracomment>"External signer" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Ulkopuolista allekirjoittajaa ei löydy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save Transaction Data</source>
|
||||
<translation type="unfinished">Tallenna siirtotiedot</translation>
|
||||
@@ -2618,6 +2683,10 @@ Jos saat tämän virheen, pyydä kauppiasta antamaan BIP21-yhteensopiva URI.</tr
|
||||
<source>PSBT saved</source>
|
||||
<translation type="unfinished">PSBT tallennettu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External balance:</source>
|
||||
<translation type="unfinished">Ulkopuolinen saldo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>or</source>
|
||||
<translation type="unfinished">tai</translation>
|
||||
@@ -3292,6 +3361,18 @@ Jos saat tämän virheen, pyydä kauppiasta antamaan BIP21-yhteensopiva URI.</tr
|
||||
<source>Range…</source>
|
||||
<translation type="unfinished">Alue...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopioi osoite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopioi &viite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopioi &määrä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export Transaction History</source>
|
||||
<translation type="unfinished">Vie rahansiirtohistoria</translation>
|
||||
@@ -3419,6 +3500,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Could not commit transaction</source>
|
||||
<translation type="unfinished">Siirtoa ei voitu tehdä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Can't display address</source>
|
||||
<translation type="unfinished">Osoitetta ei voida näyttää</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">oletuslompakko</translation>
|
||||
@@ -3502,6 +3587,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>-maxtxfee is set very high! Fees this large could be paid on a single transaction.</source>
|
||||
<translation type="unfinished">-maxtxfee on asetettu erittäin suureksi! Tämänkokoisia kuluja saatetaan maksaa yhdessä rahansiirrossa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source>
|
||||
<translation type="unfinished">Ei voida alentaa lompakon versiota versiosta %i versioon %i. Lompakon versio pysyy ennallaan.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot obtain a lock on data directory %s. %s is probably already running.</source>
|
||||
<translation type="unfinished">Ei voida lukita data-hakemistoa %s. %s on luultavasti jo käynnissä.</translation>
|
||||
@@ -3518,6 +3607,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</source>
|
||||
<translation type="unfinished">Virhe luettaessa %s! Avaimet luetttiin oikein, mutta rahansiirtotiedot tai osoitekirjan sisältö saattavat olla puutteellisia tai vääriä.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Dumpfile version is not supported. This version of bitcoin-wallet only supports version 1 dumpfiles. Got dumpfile with version %s</source>
|
||||
<translation type="unfinished">Virhe: Dump-tiedoston versio ei ole tuettu. Tämä bitcoin-lompakon versio tukee vain version 1 dump-tiedostoja. Annetun dump-tiedoston versio %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Listening for incoming connections failed (listen returned error %s)</source>
|
||||
<translation type="unfinished">Virhe: Saapuvien yhteyksien kuuntelu epäonnistui (kuuntelu palautti virheen %s)</translation>
|
||||
@@ -3658,6 +3751,14 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Done loading</source>
|
||||
<translation type="unfinished">Lataus on valmis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Dump file %s does not exist.</source>
|
||||
<translation type="unfinished">Dump-tiedostoa %s ei ole olemassa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error creating %s</source>
|
||||
<translation type="unfinished">Virhe luodessa %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error initializing block database</source>
|
||||
<translation type="unfinished">Virhe alustaessa lohkotietokantaa</translation>
|
||||
@@ -3710,6 +3811,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Error: Disk space is low for %s</source>
|
||||
<translation type="unfinished">Virhe: levytila vähissä kohteessa %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Dumpfile checksum does not match. Computed %s, expected %s</source>
|
||||
<translation type="unfinished">Virhe: Dump-tiedoston tarkistussumma ei täsmää. Laskettu %s, odotettu %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Keypool ran out, please call keypoolrefill first</source>
|
||||
<translation type="unfinished">Virhe: Avainallas tyhjentyi, ole hyvä ja kutsu keypoolrefill ensin</translation>
|
||||
@@ -3754,6 +3859,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Insufficient funds</source>
|
||||
<translation type="unfinished">Lompakon saldo ei riitä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Invalid -i2psam address or hostname: '%s'</source>
|
||||
<translation type="unfinished">Virheellinen -i2psam osoite tai isäntänimi: '%s'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Invalid -onion address or hostname: '%s'</source>
|
||||
<translation type="unfinished">Virheellinen -onion osoite tai isäntänimi: '%s'</translation>
|
||||
@@ -3786,6 +3895,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Loading P2P addresses…</source>
|
||||
<translation type="unfinished">Ladataan P2P-osoitteita...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading banlist…</source>
|
||||
<translation type="unfinished">Ladataan kieltolistaa...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading block index…</source>
|
||||
<translation type="unfinished">Ladataan lohkoindeksiä...</translation>
|
||||
@@ -3810,14 +3923,26 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Prune cannot be configured with a negative value.</source>
|
||||
<translation type="unfinished">Karsintaa ei voi toteuttaa negatiivisella arvolla.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Prune mode is incompatible with -coinstatsindex.</source>
|
||||
<translation type="unfinished">Karsintatila ei ole yhteenopiva -coinstatsindex:n kanssa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Prune mode is incompatible with -txindex.</source>
|
||||
<translation type="unfinished">Karsittu tila ei ole yhteensopiva -txindex:n kanssa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pruning blockstore…</source>
|
||||
<translation type="unfinished">Karsitaan lohkovarastoa...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reducing -maxconnections from %d to %d, because of system limitations.</source>
|
||||
<translation type="unfinished">Vähennetään -maxconnections arvoa %d:stä %d:hen järjestelmän rajoitusten vuoksi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Replaying blocks…</source>
|
||||
<translation type="unfinished">Tarkastetaan lohkoja...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rescanning…</source>
|
||||
<translation type="unfinished">Uudelleen skannaus...</translation>
|
||||
@@ -3862,6 +3987,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>The source code is available from %s.</source>
|
||||
<translation type="unfinished">Lähdekoodi löytyy %s.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The specified config file %s does not exist</source>
|
||||
<translation type="unfinished">Määritettyä asetustiedostoa %s ei ole olemassa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The transaction amount is too small to pay the fee</source>
|
||||
<translation type="unfinished">Rahansiirron määrä on liian pieni kattaakseen maksukulun</translation>
|
||||
@@ -3898,6 +4027,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Transaction must have at least one recipient</source>
|
||||
<translation type="unfinished">Lähetyksessä tulee olla ainakin yksi vastaanottaja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction needs a change address, but we can't generate it. %s</source>
|
||||
<translation type="unfinished">Siirtoon tarvitaan vaihto-osoite, mutta emme voi luoda sitä. %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction too large</source>
|
||||
<translation type="unfinished">Siirtosumma liian iso</translation>
|
||||
@@ -3922,6 +4055,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Unable to generate keys</source>
|
||||
<translation type="unfinished">Avaimia ei voitu luoda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to open %s for writing</source>
|
||||
<translation type="unfinished">Ei pystytä avaamaan %s kirjoittamista varten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to start HTTP server. See debug log for details.</source>
|
||||
<translation type="unfinished">HTTP-palvelinta ei voitu käynnistää. Katso debug-lokista lisätietoja.</translation>
|
||||
@@ -3942,6 +4079,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Unknown network specified in -onlynet: '%s'</source>
|
||||
<translation type="unfinished">Tuntematon verkko -onlynet parametrina: '%s'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown new rules activated (versionbit %i)</source>
|
||||
<translation type="unfinished">Tuntemattomia uusia sääntöjä aktivoitu (versiobitti %i)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unsupported logging category %s=%s.</source>
|
||||
<translation type="unfinished">Lokikategoriaa %s=%s ei tueta.</translation>
|
||||
@@ -3962,6 +4103,10 @@ Siirry osioon Tiedosto > Avaa lompakko ladataksesi lompakon.
|
||||
<source>Verifying blocks…</source>
|
||||
<translation type="unfinished">Varmennetaan lohkoja...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verifying wallet(s)…</source>
|
||||
<translation type="unfinished">Varmennetaan lompakko(ita)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet needed to be rewritten: restart %s to complete</source>
|
||||
<translation type="unfinished">Lompakko tarvitsee uudelleenkirjoittaa: käynnistä %s uudelleen</translation>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<name>AddressBookPage</name>
|
||||
<message>
|
||||
<source>Right-click to edit address or label</source>
|
||||
<translation type="unfinished">Cliquer à droite pour modifier l’adresse ou l’étiquette</translation>
|
||||
<translation type="unfinished">Clic droit pour modifier l’adresse ou l’étiquette</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create a new address</source>
|
||||
@@ -93,7 +93,7 @@
|
||||
<message>
|
||||
<source>There was an error trying to save the address list to %1. Please try again.</source>
|
||||
<extracomment>An error message. %1 is a stand-in argument for the name of the file we attempted to save to.</extracomment>
|
||||
<translation type="unfinished">Une erreur est survenue lors de l’enregistrement de la liste d’adresses vers %1. Veuillez ressayer plus tard.</translation>
|
||||
<translation type="unfinished">Une erreur est survenue lors de l’enregistrement de la liste d’adresses vers %1. Veuillez réessayer plus tard.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Exporting Failed</source>
|
||||
@@ -243,7 +243,11 @@
|
||||
<source>Internal error</source>
|
||||
<translation type="unfinished">erreur interne</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>An internal error occurred. %1 will attempt to continue safely. This is an unexpected bug which can be reported as described below.</source>
|
||||
<translation type="unfinished">Une erreur interne s'est produite. %1 va tenter de continuer en toute sécurité. Il s'agit d'un problème inattendu qui peut être signalé de la manière indiquée ci-dessous.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
@@ -258,6 +262,10 @@
|
||||
<source>Error: %1</source>
|
||||
<translation type="unfinished">Erreur : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%1 didn't yet exit safely…</source>
|
||||
<translation type="unfinished">%1 ne s'est pas fermé correctement...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unknown</source>
|
||||
<translation type="unfinished">inconnue</translation>
|
||||
@@ -452,6 +460,10 @@
|
||||
<source>Verify messages to ensure they were signed with specified Bitcoin addresses</source>
|
||||
<translation>Vérifier les messages pour s’assurer qu’ils ont été signés avec les adresses Bitcoin indiquées</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load PSBT from clipboard…</source>
|
||||
<translation type="unfinished">Charger la TBSP à partir du presse-papiers...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Wallet…</source>
|
||||
<translation type="unfinished">Fermer le portefeuille...</translation>
|
||||
@@ -749,6 +761,22 @@
|
||||
<source>Copy amount</source>
|
||||
<translation type="unfinished">Copier le montant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Copier l’adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Copier &l’étiquette</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Copier le &montant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy transaction &ID</source>
|
||||
<translation type="unfinished">Copier l’&ID de la transaction</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy quantity</source>
|
||||
<translation type="unfinished">Copier la quantité</translation>
|
||||
@@ -1501,6 +1529,10 @@
|
||||
</context>
|
||||
<context>
|
||||
<name>QRImageWidget</name>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Enregistrer l’image…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy Image</source>
|
||||
<translation type="unfinished">&Copier l’image</translation>
|
||||
@@ -1871,6 +1903,18 @@
|
||||
<source>Copy &URI</source>
|
||||
<translation type="unfinished">Copier l’&URI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Copier l’adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Copier &l’étiquette</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Copier le &montant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Could not unlock wallet.</source>
|
||||
<translation type="unfinished">Impossible de déverrouiller le porte-monnaie.</translation>
|
||||
@@ -1898,6 +1942,10 @@
|
||||
<source>Copy &Address</source>
|
||||
<translation type="unfinished">Copier l’&adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Enregistrer l’image…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Payment information</source>
|
||||
<translation type="unfinished">Informations de paiement</translation>
|
||||
@@ -2020,10 +2068,18 @@
|
||||
<source>Clear all fields of the form.</source>
|
||||
<translation type="unfinished">Effacer tous les champs du formulaire.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Inputs…</source>
|
||||
<translation type="unfinished">Inputs...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Dust:</source>
|
||||
<translation type="unfinished">Poussière :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Choose…</source>
|
||||
<translation type="unfinished">Choisir...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hide transaction fee settings</source>
|
||||
<translation type="unfinished">Cacher les paramètres de frais de transaction</translation>
|
||||
@@ -2096,6 +2152,15 @@
|
||||
<source>%1 (%2 blocks)</source>
|
||||
<translation type="unfinished">%1 (%2 blocs)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign on device</source>
|
||||
<extracomment>"device" usually means a hardware wallet</extracomment>
|
||||
<translation type="unfinished">Signer sur le porte-monnaie hardware</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Connect your hardware wallet first.</source>
|
||||
<translation type="unfinished">Connecter le porte-monnaie hardware en premier lieu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cr&eate Unsigned</source>
|
||||
<translation type="unfinished">Cr&éer une transaction non signée</translation>
|
||||
@@ -2124,6 +2189,10 @@
|
||||
<source>Are you sure you want to send?</source>
|
||||
<translation type="unfinished">Voulez-vous vraiment envoyer ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign and send</source>
|
||||
<translation type="unfinished">Signer et envoyer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign failed</source>
|
||||
<translation type="unfinished">Échec de la signature</translation>
|
||||
@@ -2762,6 +2831,26 @@
|
||||
<source>Min amount</source>
|
||||
<translation type="unfinished">Montant min.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Copier l’adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Copier l’&étiquette</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Copier le &montant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy transaction &ID</source>
|
||||
<translation type="unfinished">Copier l’&ID de la transaction</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>A&bandon transaction</source>
|
||||
<translation type="unfinished">A&bandonner la transaction</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export Transaction History</source>
|
||||
<translation type="unfinished">Exporter l’historique transactionnel</translation>
|
||||
@@ -2877,6 +2966,10 @@
|
||||
<source>Could not commit transaction</source>
|
||||
<translation type="unfinished">Impossible de valider la transaction</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Can't display address</source>
|
||||
<translation type="unfinished">Impossible d'afficher l'adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">porte-monnaie par défaut</translation>
|
||||
@@ -2900,6 +2993,11 @@
|
||||
<source>Backup Wallet</source>
|
||||
<translation type="unfinished">Sauvegarder le porte-monnaie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet Data</source>
|
||||
<extracomment>Name of the wallet data file format.</extracomment>
|
||||
<translation type="unfinished">Données du porte-monnaie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backup Failed</source>
|
||||
<translation type="unfinished">Échec de la sauvegarde</translation>
|
||||
@@ -2931,6 +3029,10 @@
|
||||
<source>-maxtxfee is set very high! Fees this large could be paid on a single transaction.</source>
|
||||
<translation type="unfinished">La valeur -maxtxfee est très élevée ! Des frais aussi élevés pourraient être payés en une seule transaction.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source>
|
||||
<translation type="unfinished">Impossible de rétrograder le porte-monnaie de la version %i à la version %i. La version du porte-monnaie reste inchangée.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot obtain a lock on data directory %s. %s is probably already running.</source>
|
||||
<translation type="unfinished">Impossible d’obtenir un verrou sur le répertoire de données %s. %s fonctionne probablement déjà.</translation>
|
||||
@@ -2955,6 +3057,10 @@
|
||||
<source>Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee.</source>
|
||||
<translation type="unfinished">Échec d’estimation des frais. L’option de frais de repli est désactivée. Attendez quelques blocs ou activez -fallbackfee.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>File %s already exists. If you are sure this is what you want, move it out of the way first.</source>
|
||||
<translation type="unfinished">Le fichier %sexiste déjà. Si vous souhaitez continuer, veuillez vous en débarasser.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)</source>
|
||||
<translation type="unfinished">Montant invalide pour -maxtxfee=<amount> : « %s » (doit être au moins les frais minrelay de %s pour prévenir le blocage des transactions)</translation>
|
||||
@@ -3063,6 +3169,10 @@
|
||||
<source>Done loading</source>
|
||||
<translation type="unfinished">Chargement terminé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error creating %s</source>
|
||||
<translation type="unfinished">Erreur lors de la création de %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error initializing block database</source>
|
||||
<translation type="unfinished">Erreur d’initialisation de la base de données de blocs</translation>
|
||||
@@ -3099,14 +3209,26 @@
|
||||
<source>Error reading from database, shutting down.</source>
|
||||
<translation type="unfinished">Erreur de lecture de la base de données, fermeture en cours.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error reading next record from wallet database</source>
|
||||
<translation type="unfinished">Erreur de lecture du registre suivant dans la base de données du porte-monnaie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error upgrading chainstate database</source>
|
||||
<translation type="unfinished">Erreur de mise à niveau de la base de données d’état de la chaîne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Couldn't create cursor into database</source>
|
||||
<translation type="unfinished">Erreur : Impossible de créer le curseur dans la base de données</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Disk space is low for %s</source>
|
||||
<translation type="unfinished">Erreur : Il reste peu d’espace disque sur %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Unable to write record to new wallet</source>
|
||||
<translation type="unfinished">Erreur : Impossible d'inscrire les données dans le nouveau porte-monnaie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Failed to listen on any port. Use -listen=0 if you want this.</source>
|
||||
<translation type="unfinished">Échec d’écoute sur un port quelconque. Utiliser -listen=0 si vous le voulez.</translation>
|
||||
@@ -3115,6 +3237,10 @@
|
||||
<source>Failed to rescan the wallet during initialization</source>
|
||||
<translation type="unfinished">Échec de réanalyse du porte-monnaie lors de l’initialisation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Importing…</source>
|
||||
<translation type="unfinished">Importation...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Incorrect or no genesis block found. Wrong datadir for network?</source>
|
||||
<translation type="unfinished">Bloc de genèse incorrect ou introuvable. Mauvais datadir pour le réseau ?</translation>
|
||||
@@ -3127,6 +3253,10 @@
|
||||
<source>Insufficient funds</source>
|
||||
<translation type="unfinished">Fonds insuffisants</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Invalid -i2psam address or hostname: '%s'</source>
|
||||
<translation type="unfinished">Adresse -i2psam ou hôte invalide :'%s'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Invalid -onion address or hostname: '%s'</source>
|
||||
<translation type="unfinished">Adresse ou nom d’hôte -onion invalide : « %s »</translation>
|
||||
@@ -3159,6 +3289,22 @@
|
||||
<source>Invalid netmask specified in -whitelist: '%s'</source>
|
||||
<translation type="unfinished">Masque réseau invalide indiqué dans -whitelist : « %s »</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading P2P addresses…</source>
|
||||
<translation type="unfinished">Chargement des adresses P2P...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading banlist…</source>
|
||||
<translation type="unfinished">Chargement de la banlist...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading block index…</source>
|
||||
<translation type="unfinished">Chargement du bloc d'index...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading wallet…</source>
|
||||
<translation type="unfinished">Chargement du porte-monnaie...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Need to specify a port with -whitebind: '%s'</source>
|
||||
<translation type="unfinished">Un port doit être précisé avec -whitebind : « %s »</translation>
|
||||
@@ -3179,6 +3325,10 @@
|
||||
<source>Reducing -maxconnections from %d to %d, because of system limitations.</source>
|
||||
<translation type="unfinished">Réduction de -maxconnections de %d à %d, due aux restrictions du système</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rescanning…</source>
|
||||
<translation type="unfinished">Rescan...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Section [%s] is not recognized.</source>
|
||||
<translation type="unfinished">La section [%s] n’est pas reconnue.</translation>
|
||||
@@ -3203,10 +3353,18 @@
|
||||
<source>Specified blocks directory "%s" does not exist.</source>
|
||||
<translation type="unfinished">Le répertoire des blocs indiqué « %s » n’existe pas.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Starting network threads…</source>
|
||||
<translation type="unfinished">Démarrage des fils d'éxécution...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The source code is available from %s.</source>
|
||||
<translation type="unfinished">Le code source se trouve sur %s.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The specified config file %s does not exist</source>
|
||||
<translation type="unfinished">Le fichier de configuration spécifié %s n'existe pas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The transaction amount is too small to pay the fee</source>
|
||||
<translation type="unfinished">Le montant de la transaction est trop bas pour que les frais soient payés</translation>
|
||||
@@ -3243,6 +3401,10 @@
|
||||
<source>Transaction must have at least one recipient</source>
|
||||
<translation type="unfinished">La transaction doit comporter au moins un destinataire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction needs a change address, but we can't generate it. %s</source>
|
||||
<translation type="unfinished">La transaction nécessite un changement d'adresse, mais nous ne pouvons pas le réaliser. %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction too large</source>
|
||||
<translation type="unfinished">La transaction est trop grosse</translation>
|
||||
@@ -3267,6 +3429,10 @@
|
||||
<source>Unable to generate keys</source>
|
||||
<translation type="unfinished">Impossible de générer les clés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to open %s for writing</source>
|
||||
<translation type="unfinished"> Impossible d'ouvrir %s en écriture</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to start HTTP server. See debug log for details.</source>
|
||||
<translation type="unfinished">Impossible de démarrer le serveur HTTP. Voir le journal de débogage pour plus de détails.</translation>
|
||||
@@ -3287,6 +3453,10 @@
|
||||
<source>Unknown network specified in -onlynet: '%s'</source>
|
||||
<translation type="unfinished">Réseau inconnu précisé dans -onlynet : « %s »</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown new rules activated (versionbit %i)</source>
|
||||
<translation type="unfinished">Nouvelles règles inconnues activées (versionbit%i)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unsupported logging category %s=%s.</source>
|
||||
<translation type="unfinished">Catégorie de journalisation non prise en charge %s=%s.</translation>
|
||||
|
||||
@@ -91,6 +91,11 @@ Ní féidir síniú ach le seoltaí 'oidhreachta'.</translation>
|
||||
<source>Export Address List</source>
|
||||
<translation type="unfinished">Easpórtáil Liosta Seoltaí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Comma separated file</source>
|
||||
<extracomment>Expanded name of the CSV file format. See https://en.wikipedia.org/wiki/Comma-separated_values</extracomment>
|
||||
<translation type="unfinished">Comhad athróige camógdheighilte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Exporting Failed</source>
|
||||
<translation type="unfinished">Theip ar Easpórtáil</translation>
|
||||
@@ -893,6 +898,10 @@ Ní féidir síniú ach le seoltaí 'oidhreachta'.</translation>
|
||||
<source>Encrypt Wallet</source>
|
||||
<translation type="unfinished">Criptigh Sparán</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Advanced Options</source>
|
||||
<translation type="unfinished">Ardroghanna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Díchumasaigh eochracha príobháideacha don sparán seo. Ní bheidh eochracha príobháideacha ag sparán a bhfuil eochracha príobháideacha díchumasaithe agus ní féidir síol Cinnteachaíocha Ordlathach nó eochracha príobháideacha iompórtáilte a bheith acu. Tá sé seo idéalach do sparán faire-amháin.</translation>
|
||||
@@ -2984,6 +2993,11 @@ Ní féidir síniú ach le seoltaí 'oidhreachta'.</translation>
|
||||
<source>Export Transaction History</source>
|
||||
<translation type="unfinished">Easpórtáil Stair Idirbheart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Comma separated file</source>
|
||||
<extracomment>Expanded name of the CSV file format. See https://en.wikipedia.org/wiki/Comma-separated_values</extracomment>
|
||||
<translation type="unfinished">Comhad athróige camógdheighilte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Confirmed</source>
|
||||
<translation type="unfinished">Deimhnithe</translation>
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete the currently selected address from the list</source>
|
||||
<translation>Hapus alamat yang sementara dipilih dari daftar</translation>
|
||||
<translation>Hapus alamat yang dipilih dari daftar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enter address or label to search</source>
|
||||
@@ -67,12 +67,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.</source>
|
||||
<translation type="unfinished">Berikut ialah alamat-alamat Bitcoin Anda yang digunakan untuk mengirimkan pembayaran. Selalu periksa jumlah dan alamat penerima sebelum mengirimkan koin.</translation>
|
||||
<translation type="unfinished">Berikut ini adalah alamat-alamat Bitcoin Anda yang digunakan untuk mengirimkan pembayaran. Selalu periksa jumlah dan alamat penerima sebelum mengirimkan koin-koin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>These are your Bitcoin addresses for receiving payments. Use the 'Create new receiving address' button in the receive tab to create new addresses.
|
||||
Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<translation type="unfinished">Ini adalah alamat-alamat bitcoinmu untuk menerima pembayaran. Gunakan tombol 'Buat alamat penerima baru' di atas tab menerima untuk membuat alamat baru. Tanda tangan hanya bisa digunakan dengan tipe alamat 'Lama'</translation>
|
||||
<translation type="unfinished">Berikut ini adalah alamat-alamat bitcoinmu untuk menerima pembayaran. Gunakan tombol 'Buat alamat penerima baru' di tab menerima untuk membuat alamat baru. Tanda tangan hanya bisa digunakan dengan tipe alamat 'warisan'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy Address</source>
|
||||
@@ -98,7 +98,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message>
|
||||
<source>There was an error trying to save the address list to %1. Please try again.</source>
|
||||
<extracomment>An error message. %1 is a stand-in argument for the name of the file we attempted to save to.</extracomment>
|
||||
<translation type="unfinished">Terjadi kesalahan saat mencoba menyimpan daftar alamat ke %1. Silakan coba lagi.</translation>
|
||||
<translation type="unfinished">Terjadi sebuah kesalahan saat mencoba menyimpan daftar alamat ke %1. Silakan coba lagi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Exporting Failed</source>
|
||||
@@ -242,22 +242,30 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>A fatal error occurred. %1 can no longer continue safely and will quit.</source>
|
||||
<translation type="unfinished">Error yang fatal telah terjadi. %1 tidak bisa berlanjut dengan selamat dan akan keluar.</translation>
|
||||
<translation type="unfinished">Kesalahan yang fatal telah terjadi. %1 tidak bisa berlanjut dengan selamat dan akan keluar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Internal error</source>
|
||||
<translation type="unfinished">Kesalahan internal</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>An internal error occurred. %1 will attempt to continue safely. This is an unexpected bug which can be reported as described below.</source>
|
||||
<translation type="unfinished">Terjadi kesalahan internal. %1 akan mencoba melanjutkan secara aman. Ini adalah bug yang tidak terduga yang dapat dilaporkan seperti penjelasan di bawah ini.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<source>Error: Specified data directory "%1" does not exist.</source>
|
||||
<translation type="unfinished">Error: Direktori data yang ditentukan "%1" tidak ada.</translation>
|
||||
<translation type="unfinished">Kesalahan: Direktori data yang ditentukan "%1" tidak ada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Cannot parse configuration file: %1.</source>
|
||||
<translation type="unfinished">Error: Tidak dapat parse konfigurasi file: %1.</translation>
|
||||
<translation type="unfinished">Kesalahan: Tidak dapat mengurai file konfigurasi : %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: %1</source>
|
||||
<translation type="unfinished">Kesalahan: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error initializing settings: %1</source>
|
||||
@@ -326,31 +334,31 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>%n second(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>%ndetik</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n minute(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>%n menit</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n hour(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%njam</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n day(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n hari</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n week(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%nminggu</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -360,7 +368,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>%n year(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n tahun</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
@@ -477,7 +485,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign messages with your Bitcoin addresses to prove you own them</source>
|
||||
<translation>Tanda tangani sebuah pesan menggunakan alamat Bitcoin Anda untuk membuktikan bahwa Anda adalah pemilik alamat tersebut</translation>
|
||||
<translation>Tanda tangani sebuah pesan menggunakan alamat Bitcoin Anda untuk membuktikan bahwa Anda adalah pemiliknya</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Verify message…</source>
|
||||
@@ -570,7 +578,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>Processed %n block(s) of transaction history.</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>%nblok riwayat transaksi yang diproses.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -689,7 +697,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>%n active connection(s) to Bitcoin network.</source>
|
||||
<extracomment>A substring of the tooltip.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n koneksi yang aktif ke jaringan Bitcoin</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -712,6 +720,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<extracomment>A context menu item. The network activity was disabled previously.</extracomment>
|
||||
<translation type="unfinished">aktifkan aktivitas jaringan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: %1</source>
|
||||
<translation type="unfinished">Kesalahan: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Warning: %1</source>
|
||||
<translation type="unfinished">Peringatan: %1</translation>
|
||||
@@ -842,6 +854,30 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy amount</source>
|
||||
<translation type="unfinished">Salin Jumlah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Salin alamat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Salin &label</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Salin &jumlah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy transaction &ID</source>
|
||||
<translation type="unfinished">salin &ID transaksi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>L&ock unspent</source>
|
||||
<translation type="unfinished">K&unci yang belum digunakan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Unlock unspent</source>
|
||||
<translation type="unfinished">&Buka kunci yang belum digunakan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy quantity</source>
|
||||
<translation type="unfinished">Salin Kuantitas</translation>
|
||||
@@ -913,7 +949,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Create wallet warning</source>
|
||||
<translation type="unfinished">Peringatan membuat dompet</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Can't list signers</source>
|
||||
<translation type="unfinished">Tidak dapat mencantumkan penandatangan</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenWalletActivity</name>
|
||||
<message>
|
||||
@@ -1006,6 +1046,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Descriptor Wallet</source>
|
||||
<translation type="unfinished">Dompet Deskriptor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use an external signing device such as a hardware wallet. Configure the external signer script in wallet preferences first.</source>
|
||||
<translation type="unfinished">Gunakan perangkat penandatanganan eksternal seperti dompet perangkat keras. Konfigurasikan skrip penandatangan eksternal di preferensi dompet terlebih dahulu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer</source>
|
||||
<translation type="unfinished">Penandatangan eksternal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create</source>
|
||||
<translation type="unfinished">Membuat</translation>
|
||||
@@ -1014,7 +1062,12 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Compiled without sqlite support (required for descriptor wallets)</source>
|
||||
<translation type="unfinished">Dikompilasi tanpa support sqlite (dibutuhkan untuk dompet deskriptor)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Compiled without external signing support (required for external signing)</source>
|
||||
<extracomment>"External signing" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Dikompilasi tanpa dukungan penandatanganan eksternal (diperlukan untuk penandatanganan eksternal)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditAddressDialog</name>
|
||||
<message>
|
||||
@@ -1115,7 +1168,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>(sufficient to restore backups %n day(s) old)</source>
|
||||
<extracomment>Explanatory text on the capability of the current prune target.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>(cukup untuk memulihkan cadangan %n hari)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1361,6 +1414,18 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>&Spend unconfirmed change</source>
|
||||
<translation type="unfinished">&Perubahan saldo untuk transaksi yang belum dikonfirmasi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External Signer (e.g. hardware wallet)</source>
|
||||
<translation type="unfinished">Penandatangan eksternal (seperti dompet perangkat keras)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&External signer script path</source>
|
||||
<translation type="unfinished">&Jalur skrip penanda tangan eksternal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Full path to a Bitcoin Core compatible script (e.g. C:\Downloads\hwi.exe or /Users/you/Downloads/hwi.py). Beware: malware can steal your coins!</source>
|
||||
<translation type="unfinished">Jalur lengkap ke skrip yang kompatibel dengan Bitcoin Core (seperti C:\Downloads\hwi.exe atau /Users/you/Downloads/hwi.py). Hati-hati: malware dapat mencuri koin Anda!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source>
|
||||
<translation>Otomatis membuka port client Bitcoin di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable.</translation>
|
||||
@@ -1481,6 +1546,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>&Cancel</source>
|
||||
<translation>&Batal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Compiled without external signing support (required for external signing)</source>
|
||||
<extracomment>"External signing" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Dikompilasi tanpa dukungan penandatanganan eksternal (diperlukan untuk penandatanganan eksternal)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default</source>
|
||||
<translation>standar</translation>
|
||||
@@ -1645,7 +1715,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown error processing transaction.</source>
|
||||
<translation type="unfinished">Error yang tidak diketahui memproses transaksi</translation>
|
||||
<translation type="unfinished">Kesalahan yang tidak diketahui ketika memproses transaksi </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction broadcast successfully! Transaction ID: %1</source>
|
||||
@@ -2111,6 +2181,10 @@ Jika Anda menerima kesalahan ini, Anda harus meminta pedagang untuk memberikan U
|
||||
<source>1 &hour</source>
|
||||
<translation type="unfinished">1 &jam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>1 d&ay</source>
|
||||
<translation type="unfinished">1 h&ari</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>1 &week</source>
|
||||
<translation type="unfinished">1 &minggu</translation>
|
||||
@@ -2260,6 +2334,22 @@ Untuk informasi lebih lanjut tentang menggunakan konsol ini, ketik %6.
|
||||
<source>Copy &URI</source>
|
||||
<translation type="unfinished">Salin &URI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Salin alamat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Salin &label</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &message</source>
|
||||
<translation type="unfinished">salin &pesan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Salin &jumlah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Could not unlock wallet.</source>
|
||||
<translation type="unfinished">Tidak dapat membuka dompet.</translation>
|
||||
@@ -2295,6 +2385,14 @@ Untuk informasi lebih lanjut tentang menggunakan konsol ini, ketik %6.
|
||||
<source>Copy &Address</source>
|
||||
<translation type="unfinished">Salin &Alamat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Verify</source>
|
||||
<translation type="unfinished">&periksa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verify this address on e.g. a hardware wallet screen</source>
|
||||
<translation type="unfinished">Periksa alamat ini misalnya pada layar dompet perangkat keras</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Simpan Gambar...</translation>
|
||||
@@ -2509,6 +2607,20 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<source>%1 (%2 blocks)</source>
|
||||
<translation type="unfinished">%1 (%2 block)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign on device</source>
|
||||
<extracomment>"device" usually means a hardware wallet</extracomment>
|
||||
<translation type="unfinished">Masuk ke perangkat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Connect your hardware wallet first.</source>
|
||||
<translation type="unfinished">Hubungkan dompet perangkat keras Anda terlebih dahulu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Set external signer script path in Options -> Wallet</source>
|
||||
<extracomment>"External signer" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Setel jalur skrip penanda tangan eksternal di Opsi -> Dompet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cr&eate Unsigned</source>
|
||||
<translation type="unfinished">bu&at Tidak ditandai</translation>
|
||||
@@ -2545,6 +2657,24 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<source>Create Unsigned</source>
|
||||
<translation type="unfinished">Buat Tidak ditandai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign and send</source>
|
||||
<translation type="unfinished">Tanda tangani dan kirim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign failed</source>
|
||||
<translation type="unfinished">Tanda tangan gagal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer not found</source>
|
||||
<extracomment>"External signer" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">penandatangan eksternal tidak ditemukan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer failure</source>
|
||||
<extracomment>"External signer" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">penandatangan eksternal gagal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save Transaction Data</source>
|
||||
<translation type="unfinished">Simpan data Transaksi</translation>
|
||||
@@ -2558,6 +2688,10 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<source>PSBT saved</source>
|
||||
<translation type="unfinished">PSBT disimpan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External balance:</source>
|
||||
<translation type="unfinished">Saldo eksternal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>or</source>
|
||||
<translation type="unfinished">atau</translation>
|
||||
@@ -2625,7 +2759,7 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<message numerus="yes">
|
||||
<source>Estimated to begin confirmation within %n block(s).</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>Diperkirakan akan memulai konfirmasi dalam %n blok.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -2876,7 +3010,7 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>Buka untuk %nblok lagi</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -2950,7 +3084,7 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<message numerus="yes">
|
||||
<source>matures in %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>matang dalam %n blok lagi</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -3050,7 +3184,7 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>buka untuk %n blok lagi</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -3192,6 +3326,46 @@ Catatan: Karena biaya dihitung berdasarkan per byte, tarif biaya "100 satoshi pe
|
||||
<source>Range…</source>
|
||||
<translation type="unfinished">Jarak...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Salin alamat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Salin &label</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Salin &jumlah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy transaction &ID</source>
|
||||
<translation type="unfinished">salin transaksi &ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &raw transaction</source>
|
||||
<translation type="unfinished">salin &transaksi mentah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy full transaction &details</source>
|
||||
<translation type="unfinished">salin seluruh transaksi &detail</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Show transaction details</source>
|
||||
<translation type="unfinished">&Tampilkan detail transaski</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Increase transaction &fee</source>
|
||||
<translation type="unfinished">Naikkan biaya transaksi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>A&bandon transaction</source>
|
||||
<translation type="unfinished">A&batalkan transaksi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Edit address label</source>
|
||||
<translation type="unfinished">&Ubah label alamat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export Transaction History</source>
|
||||
<translation type="unfinished">Ekspor Riwayat Transaksi</translation>
|
||||
@@ -3319,6 +3493,10 @@ Pergi ke File > Open Wallet untuk memuat dompet.
|
||||
<source>Could not commit transaction</source>
|
||||
<translation type="unfinished">Tidak dapat melakukan transaksi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Can't display address</source>
|
||||
<translation type="unfinished">Tidak dapat menampilkan alamat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">wallet default</translation>
|
||||
@@ -3434,9 +3612,13 @@ Pergi ke File > Open Wallet untuk memuat dompet.
|
||||
<source>Error: Dumpfile version is not supported. This version of bitcoin-wallet only supports version 1 dumpfiles. Got dumpfile with version %s</source>
|
||||
<translation type="unfinished">Kesalahan: Versi Dumpfile tidak didukung. Versi dompet bitcoin ini hanya mendukung dumpfile versi 1. Dumpfile yang didapat adalah versi %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Legacy wallets only support the "legacy", "p2sh-segwit", and "bech32" address types</source>
|
||||
<translation type="unfinished">Kesalahan: Dompet lama hanya mendukung jenis alamat "warisan", "p2sh-segwit", dan "bech32"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Listening for incoming connections failed (listen returned error %s)</source>
|
||||
<translation type="unfinished">Error: Mendengarkan koneksi yang masuk gagal (dengarkan kesalahan yang dikembalikan %s)</translation>
|
||||
<translation type="unfinished">Kesalahan: Mendengarkan koneksi yang masuk gagal (dengarkan kesalahan yang dikembalikan %s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee.</source>
|
||||
@@ -3614,25 +3796,29 @@ Pergi ke File > Open Wallet untuk memuat dompet.
|
||||
<source>Error initializing wallet database environment %s!</source>
|
||||
<translation type="unfinished">Kesalahan menginisialisasi dompet pada database%s!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error loading %s</source>
|
||||
<translation type="unfinished">Kesalahan memuat %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error loading %s: Private keys can only be disabled during creation</source>
|
||||
<translation type="unfinished">Error loading %s: Kunci privat hanya bisa dimatikan saat kreasi</translation>
|
||||
<translation type="unfinished">Kesalahan memuat %s: Kunci privat hanya bisa dimatikan saat membuat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error loading %s: Wallet corrupted</source>
|
||||
<translation type="unfinished">Error loading %s: Dompet rusak</translation>
|
||||
<translation type="unfinished">Kesalahan memuat %s: Dompet rusak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error loading %s: Wallet requires newer version of %s</source>
|
||||
<translation type="unfinished">Error loading %s: Dompet membutuhkan versi yang lebih baru dari %s</translation>
|
||||
<translation type="unfinished">Kesalahan memuat %s: Dompet membutuhkan versi yang lebih baru dari %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error loading block database</source>
|
||||
<translation type="unfinished">Gagal memuat database blok</translation>
|
||||
<translation type="unfinished">Kesalahan memuat database blok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error opening block database</source>
|
||||
<translation type="unfinished">Menemukan masalah membukakan database blok</translation>
|
||||
<translation type="unfinished">Kesalahan membukakan database blok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error reading from database, shutting down.</source>
|
||||
@@ -3652,7 +3838,7 @@ Pergi ke File > Open Wallet untuk memuat dompet.
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Disk space is low for %s</source>
|
||||
<translation type="unfinished">Eror: Kapasitas penyimpanan penuh untuk %s</translation>
|
||||
<translation type="unfinished">Kesalahan: Kapasitas penyimpanan sedikit untuk %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Dumpfile checksum does not match. Computed %s, expected %s</source>
|
||||
@@ -3668,12 +3854,16 @@ Pergi ke File > Open Wallet untuk memuat dompet.
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Keypool ran out, please call keypoolrefill first</source>
|
||||
<translation type="unfinished">Error: Keypool habis, harap panggil keypoolrefill terlebih dahulu</translation>
|
||||
<translation type="unfinished">Kesalahan: Keypool habis, harap panggil keypoolrefill terlebih dahulu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Missing checksum</source>
|
||||
<translation type="unfinished">Kesalahan: Checksum tidak ada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: No %s addresses available.</source>
|
||||
<translation type="unfinished">Kesalahan: Tidak ada %s alamat yang tersedia.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Unable to parse version %u as a uint32_t</source>
|
||||
<translation type="unfinished">Kesalahan: Tidak dapat mengurai versi %u sebagai uint32_t </translation>
|
||||
@@ -3894,6 +4084,10 @@ Pergi ke File > Open Wallet untuk memuat dompet.
|
||||
<source>Transaction must have at least one recipient</source>
|
||||
<translation type="unfinished">Transaksi harus mempunyai paling tidak satu penerima</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction needs a change address, but we can't generate it. %s</source>
|
||||
<translation type="unfinished">Transaksi memerlukan alamat perubahan, tetapi kami tidak dapat membuatnya. %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction too large</source>
|
||||
<translation type="unfinished">Transaksi terlalu besar</translation>
|
||||
@@ -3942,6 +4136,10 @@ Pergi ke File > Open Wallet untuk memuat dompet.
|
||||
<source>Unknown network specified in -onlynet: '%s'</source>
|
||||
<translation type="unfinished">Jaringan tidak diketahui yang ditentukan dalam -onlynet: '%s'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown new rules activated (versionbit %i)</source>
|
||||
<translation type="unfinished">Aturan baru yang tidak diketahui diaktifkan (bit versi %i)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unsupported logging category %s=%s.</source>
|
||||
<translation type="unfinished">Kategori logging yang tidak didukung %s=%s.</translation>
|
||||
|
||||
@@ -334,8 +334,8 @@ E' possibile firmare solo con indirizzi di tipo "legacy".</translation>
|
||||
<message numerus="yes">
|
||||
<source>%n minute(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n minuti</numerusform>
|
||||
<numerusform>%n minuti</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -327,13 +327,13 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>%n second(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>%n초</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n minute(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>%n분</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
|
||||
@@ -128,19 +128,19 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enter passphrase</source>
|
||||
<translation>Oppgi passord setning</translation>
|
||||
<translation>Oppgi passordfrase</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New passphrase</source>
|
||||
<translation>Ny passord setning</translation>
|
||||
<translation>Ny passordfrase</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Repeat new passphrase</source>
|
||||
<translation>Repeter passorsetningen</translation>
|
||||
<translation>Repeter passordfrasen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show passphrase</source>
|
||||
<translation type="unfinished">Vis adgangsfrase</translation>
|
||||
<translation type="unfinished">Vis passordfrase</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Encrypt wallet</source>
|
||||
@@ -148,7 +148,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>This operation needs your wallet passphrase to unlock the wallet.</source>
|
||||
<translation type="unfinished">Denne operasjonen krever passordsetningen for å låse opp lommeboken.</translation>
|
||||
<translation type="unfinished">Denne operasjonen krever passordfrasen for å låse opp lommeboken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unlock wallet</source>
|
||||
@@ -156,7 +156,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Change passphrase</source>
|
||||
<translation type="unfinished">Endre passordsetningen</translation>
|
||||
<translation type="unfinished">Endre passordfrase</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Confirm wallet encryption</source>
|
||||
@@ -164,7 +164,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>!</source>
|
||||
<translation type="unfinished">Advarsel: Dersom du krypterer lommeboken og mister passordsetningen vil du <b>MISTE ALLE DINE BITCOIN</b>!</translation>
|
||||
<translation type="unfinished">Advarsel: Dersom du krypterer lommeboken og mister passordfrasen vil du <b>MISTE ALLE DINE BITCOIN</b>!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you wish to encrypt your wallet?</source>
|
||||
@@ -180,7 +180,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enter the old passphrase and new passphrase for the wallet.</source>
|
||||
<translation type="unfinished">Svriv inn den gamle passfrasen og den nye passordfrasen for lommeboken.</translation>
|
||||
<translation type="unfinished">Skriv inn den gamle passordfrasen og den nye passordfrasen for lommeboken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer.</source>
|
||||
@@ -212,7 +212,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>The supplied passphrases do not match.</source>
|
||||
<translation type="unfinished">De oppgitte passordsetningene er forskjellige.</translation>
|
||||
<translation type="unfinished">De oppgitte passordfrasene er forskjellige.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet unlock failed</source>
|
||||
@@ -220,11 +220,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>The passphrase entered for the wallet decryption was incorrect.</source>
|
||||
<translation type="unfinished">Passordsetningen som ble oppgitt for å dekryptere lommeboken var feil.</translation>
|
||||
<translation type="unfinished">Passordfrasen som ble oppgitt for å dekryptere lommeboken var feil.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet passphrase was successfully changed.</source>
|
||||
<translation type="unfinished">Passordsetningen for lommeboken ble endret</translation>
|
||||
<translation type="unfinished">Passordfrasen for lommeboken ble endret</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Warning: The Caps Lock key is on!</source>
|
||||
@@ -267,6 +267,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Error initializing settings: %1</source>
|
||||
<translation type="unfinished">Initialisering av innstillinger feilet: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%1 didn't yet exit safely…</source>
|
||||
<translation type="unfinished">%1 har ikke avsluttet trygt enda…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unknown</source>
|
||||
<translation type="unfinished">ukjent</translation>
|
||||
@@ -306,36 +310,36 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>%n second(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n sekund</numerusform>
|
||||
<numerusform>%n sekunder</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n minute(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n minutt</numerusform>
|
||||
<numerusform>%n minutter</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n hour(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n time</numerusform>
|
||||
<numerusform>%n timer</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n day(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n dag</numerusform>
|
||||
<numerusform>%n dager</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n week(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n uke</numerusform>
|
||||
<numerusform>%n uker</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -345,8 +349,8 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>%n year(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n år</numerusform>
|
||||
<numerusform>%n år</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
@@ -423,7 +427,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Change the passphrase used for wallet encryption</source>
|
||||
<translation>Endre passordsetningen for kryptering av lommeboken</translation>
|
||||
<translation>Endre passordfrasen for kryptering av lommeboken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Send</source>
|
||||
@@ -459,7 +463,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Change Passphrase…</source>
|
||||
<translation type="unfinished">&Endre Adgangsfrase...</translation>
|
||||
<translation type="unfinished">&Endre Passordfrase...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign &message…</source>
|
||||
@@ -560,8 +564,8 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<message numerus="yes">
|
||||
<source>Processed %n block(s) of transaction history.</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n blokk med transaksjonshistorikk er prosessert.</numerusform>
|
||||
<numerusform>%n blokker med transaksjonshistorikk er prosessert.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -680,10 +684,20 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>%n active connection(s) to Bitcoin network.</source>
|
||||
<extracomment>A substring of the tooltip.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform> %n aktiv tilkobling til Bitcoin-nettverket.</numerusform>
|
||||
<numerusform>%n aktive tilkoblinger til Bitcoin-nettverket.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Click for more actions.</source>
|
||||
<extracomment>A substring of the tooltip. "More actions" are available via the context menu.</extracomment>
|
||||
<translation type="unfinished">Trykk for flere valg.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show Peers tab</source>
|
||||
<extracomment>A context menu item. The "Peers tab" is an element of the "Node window".</extracomment>
|
||||
<translation type="unfinished">Vis Likemann fane</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Disable network activity</source>
|
||||
<extracomment>A context menu item.</extracomment>
|
||||
@@ -788,7 +802,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Fee:</source>
|
||||
<translation type="unfinished">Avgift:</translation>
|
||||
<translation type="unfinished">Gebyr:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Dust:</source>
|
||||
@@ -842,6 +856,26 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy amount</source>
|
||||
<translation type="unfinished">Kopier beløp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopier adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopier &beskrivelse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopier &beløp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>L&ock unspent</source>
|
||||
<translation type="unfinished">Lås ubrukte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Unlock unspent</source>
|
||||
<translation type="unfinished">&Lås opp ubrukte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy quantity</source>
|
||||
<translation type="unfinished">Kopiér mengde</translation>
|
||||
@@ -1091,6 +1125,18 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>Intro</name>
|
||||
<message>
|
||||
<source>%1 GB of free space available</source>
|
||||
<translation type="unfinished">%1 GB med ledig lagringsplass</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>(of %1 GB needed)</source>
|
||||
<translation type="unfinished">(av %1 GB som trengs)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>(%1 GB needed for full chain)</source>
|
||||
<translation type="unfinished">(%1 GB kreves for hele kjeden)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>At least %1 GB of data will be stored in this directory, and it will grow over time.</source>
|
||||
<translation type="unfinished">Minst %1 GB data vil bli lagret i denne mappen og den vil vokse over tid.</translation>
|
||||
@@ -1103,8 +1149,8 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>(sufficient to restore backups %n day(s) old)</source>
|
||||
<extracomment>Explanatory text on the capability of the current prune target.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>(Tilstrekkelig å gjenopprette backuper som er %n dag gammel) </numerusform>
|
||||
<numerusform>(Tilstrekkelig å gjenopprette backuper som er %n dager gamle) </numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1139,10 +1185,18 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched.</source>
|
||||
<translation type="unfinished">Når du klikker OK, vil %1 starte nedlasting og behandle hele den %4 blokkjeden (%2GB) fra de eldste transaksjonene i %3 når %4 først startet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Limit block chain storage to</source>
|
||||
<translation type="unfinished">Begrens blokkjedelagring til</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Gjenoppretting av denne innstillingen krever at du laster ned hele blockchain på nytt. Det er raskere å laste ned hele kjeden først og beskjære den senere Deaktiver noen avanserte funksjoner.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> GB</source>
|
||||
<translation type="unfinished">GB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Den initielle synkroniseringen er svært krevende, og kan forårsake problemer med maskinvaren i datamaskinen din som du tidligere ikke merket. Hver gang du kjører %1 vil den fortsette nedlastingen der den sluttet.</translation>
|
||||
@@ -1177,6 +1231,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShutdownWindow</name>
|
||||
<message>
|
||||
<source>%1 is shutting down…</source>
|
||||
<translation type="unfinished">%1 stenges ned...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do not shut down the computer until this window disappears.</source>
|
||||
<translation type="unfinished">Slå ikke av datamaskinen før dette vinduet forsvinner.</translation>
|
||||
@@ -1200,6 +1258,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Number of blocks left</source>
|
||||
<translation type="unfinished">Antall gjenværende blokker</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown…</source>
|
||||
<translation type="unfinished">Ukjent...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>calculating…</source>
|
||||
<translation type="unfinished">kalkulerer...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Last block time</source>
|
||||
<translation type="unfinished">Tidspunkt for siste blokk</translation>
|
||||
@@ -1222,7 +1288,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>%1 is currently syncing. It will download headers and blocks from peers and validate them until reaching the tip of the block chain.</source>
|
||||
<translation type="unfinished">%1 synkroniseres for øyeblikket. Den vil laste ned overskrifter og blokker fra jevnaldrende og validere dem til de når spissen av blokkjeden.</translation>
|
||||
<translation type="unfinished">%1 synkroniseres for øyeblikket. Den vil laste ned blokkhoder og blokker fra likemenn og validere dem til de når enden av blokkjeden.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1264,7 +1330,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type.</source>
|
||||
<translation type="unfinished">Viser hvorvidt angitt SOCKS5-mellomtjener blir brukt for å nå noder via denne nettverkstypen.</translation>
|
||||
<translation type="unfinished">Viser om den medfølgende standard SOCKS5-mellomtjeneren blir brukt for å nå likemenn via denne nettverkstypen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
@@ -1356,7 +1422,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Used for reaching peers via:</source>
|
||||
<translation type="unfinished">Brukt for å nå noder via:</translation>
|
||||
<translation type="unfinished">Brukt for å nå likemenn via:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Window</source>
|
||||
@@ -1418,6 +1484,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>&Third party transaction URLs</source>
|
||||
<translation type="unfinished">Tredjepart transaksjon URLer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>embedded "%1"</source>
|
||||
<translation type="unfinished">Innebygd "%1"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Options set in this dialog are overridden by the command line or in the configuration file:</source>
|
||||
<translation type="unfinished">Alternativer som er satt i denne dialogboksen overstyres av kommandolinjen eller i konfigurasjonsfilen:</translation>
|
||||
@@ -1564,6 +1634,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy to Clipboard</source>
|
||||
<translation type="unfinished">Kopier til utklippstavle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save…</source>
|
||||
<translation type="unfinished">Lagre...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Lukk</translation>
|
||||
@@ -1608,6 +1682,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Save Transaction Data</source>
|
||||
<translation type="unfinished">Lagre Transaksjonsdata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Partially Signed Transaction (Binary)</source>
|
||||
<extracomment>Expanded name of the binary PSBT file format. See: BIP 174.</extracomment>
|
||||
<translation type="unfinished">Delvis Signert Transaksjon (Binær)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>PSBT saved to disk.</source>
|
||||
<translation type="unfinished">PSBT lagret til disk.</translation>
|
||||
@@ -1622,7 +1701,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pays transaction fee: </source>
|
||||
<translation type="unfinished">Betaler transasjonsavgift:</translation>
|
||||
<translation type="unfinished">Betaler transasjonsgebyr:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Total Amount</source>
|
||||
@@ -1679,6 +1758,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>'bitcoin://' is not a valid URI. Use 'bitcoin:' instead.</source>
|
||||
<translation type="unfinished">'bitcoin: //' er ikke en gyldig URI. Bruk 'bitcoin:' i stedet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Kan ikke prosessere betalingsforespørsel fordi BIP70 ikke er støttet.
|
||||
Grunnet utbredte sikkerhetshull i BIP70 er det sterkt anbefalt å ignorere instruksjoner fra forretningsdrivende om å bytte lommebøker.
|
||||
Hvis du får denne feilen burde du be forretningsdrivende om å tilby en BIP21 kompatibel URI.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters.</source>
|
||||
<translation type="unfinished">URI kan ikke fortolkes! Dette kan være forårsaket av en ugyldig bitcoin-adresse eller feilformede URI-parametre.</translation>
|
||||
@@ -1700,6 +1787,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<extracomment>Title of Peers Table column which indicates the current latency of the connection with the peer.</extracomment>
|
||||
<translation type="unfinished">Nettverkssvarkall</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Peer</source>
|
||||
<extracomment>Title of Peers Table column which contains a unique number used to identify a connection.</extracomment>
|
||||
<translation type="unfinished">Likemann</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sent</source>
|
||||
<extracomment>Title of Peers Table column which indicates the total amount of network information we have sent to the peer.</extracomment>
|
||||
@@ -1723,6 +1815,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>QRImageWidget</name>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Lagre Bilde...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy Image</source>
|
||||
<translation type="unfinished">&Kopier bilde</translation>
|
||||
@@ -1793,7 +1889,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Memory Pool</source>
|
||||
<translation type="unfinished">Hukommelsespulje</translation>
|
||||
<translation type="unfinished">Minnepool</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Current number of transactions</source>
|
||||
@@ -1825,15 +1921,15 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Peers</source>
|
||||
<translation type="unfinished">&Noder</translation>
|
||||
<translation type="unfinished">&Likemenn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Banned peers</source>
|
||||
<translation type="unfinished">Utestengte noder</translation>
|
||||
<translation type="unfinished">Utestengte likemenn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Select a peer to view detailed information.</source>
|
||||
<translation type="unfinished">Velg en node for å vise detaljert informasjon.</translation>
|
||||
<translation type="unfinished">Velg en likemann for å vise detaljert informasjon.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@@ -1853,7 +1949,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>The mapped Autonomous System used for diversifying peer selection.</source>
|
||||
<translation type="unfinished">Det kartlagte autonome systemet som brukes til å diversifisere valg av fagfeller.</translation>
|
||||
<translation type="unfinished">Det kartlagte Autonome Systemet som brukes til å diversifisere valg av likemenn.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Mapped AS</source>
|
||||
@@ -1887,14 +1983,30 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Permissions</source>
|
||||
<translation type="unfinished">Rettigheter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The direction and type of peer connection: %1</source>
|
||||
<translation type="unfinished">Retning og type likemanntilkobling: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Direction/Type</source>
|
||||
<translation type="unfinished">Retning/Type</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS.</source>
|
||||
<translation type="unfinished">Nettverksprotokollen som denne likemannen er tilkoblet gjennom: IPv4, IPv6, Onion, I2P eller CJDNS.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Services</source>
|
||||
<translation type="unfinished">Tjenester</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Whether the peer requested us to relay transactions.</source>
|
||||
<translation type="unfinished">Hvorvidt likemannen ba oss om å videresende transaksjoner.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>High Bandwidth</source>
|
||||
<translation type="unfinished">Høy Båndbredde</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Connection Time</source>
|
||||
<translation type="unfinished">Tilkoblingstid</translation>
|
||||
@@ -1903,6 +2015,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Last Block</source>
|
||||
<translation type="unfinished">Siste blokk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Elapsed time since a novel transaction accepted into our mempool was received from this peer.</source>
|
||||
<translation type="unfinished">Tid som har passert siden en ny transaksjon akseptert inn i vår minnepool ble mottatt fra denne likemann.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Last Tx</source>
|
||||
<translation type="unfinished">Siste Tx</translation>
|
||||
@@ -1971,6 +2087,15 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Out:</source>
|
||||
<translation type="unfinished">Ut:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Inbound: initiated by peer</source>
|
||||
<translation type="unfinished">Innkommende: initiert av likemann</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Ctrl+=</source>
|
||||
<extracomment>Secondary shortcut to increase the RPC console font size.</extracomment>
|
||||
<translation type="unfinished">Cltr+=</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Disconnect</source>
|
||||
<translation type="unfinished">&Koble fra</translation>
|
||||
@@ -2003,6 +2128,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Executing command using "%1" wallet</source>
|
||||
<translation type="unfinished">Utfør kommando med lommebok "%1"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>(peer: %1)</source>
|
||||
<translation type="unfinished">(likemann: %1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished">Ja</translation>
|
||||
@@ -2114,6 +2243,22 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy &URI</source>
|
||||
<translation type="unfinished">Kopier &URI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopier adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopier &beskrivelse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &message</source>
|
||||
<translation type="unfinished">Kopier &melding</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopier &beløp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Could not unlock wallet.</source>
|
||||
<translation type="unfinished">Kunne ikke låse opp lommebok.</translation>
|
||||
@@ -2125,6 +2270,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>ReceiveRequestDialog</name>
|
||||
<message>
|
||||
<source>Request payment to …</source>
|
||||
<translation type="unfinished">Be om betaling til ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Address:</source>
|
||||
<translation type="unfinished">Adresse:</translation>
|
||||
@@ -2153,6 +2302,14 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Copy &Address</source>
|
||||
<translation type="unfinished">Kopier &Adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Verify</source>
|
||||
<translation type="unfinished">&Verifiser</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Lagre Bilde...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Payment information</source>
|
||||
<translation type="unfinished">Betalingsinformasjon</translation>
|
||||
@@ -2221,7 +2378,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Fee:</source>
|
||||
<translation type="unfinished">Avgift:</translation>
|
||||
<translation type="unfinished">Gebyr:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>After Fee:</source>
|
||||
@@ -2245,7 +2402,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Bruk av tilbakefallsgebyr kan medføre at en transaksjon tar flere timer eller dager, å fullføre, eller aldri gjør det. Overvei å velge et gebyr manuelt, eller vent til du har bekreftet hele kjeden.</translation>
|
||||
<translation type="unfinished">Bruk av tilbakefallsgebyr kan medføre at en transaksjon tar flere timer eller dager (eller for alltid) å fullføre. Vurder å velge et gebyr manuelt, eller vent til du har validert den komplette kjeden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Warning: Fee estimation is currently not possible.</source>
|
||||
@@ -2279,13 +2436,17 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Dust:</source>
|
||||
<translation type="unfinished">Støv:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Choose…</source>
|
||||
<translation type="unfinished">Velg...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hide transaction fee settings</source>
|
||||
<translation type="unfinished">Skjul innstillinger for transaksjonsgebyr</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Når det er mindre transaksjonsvolum enn plass i blokkene, kan gruvearbeidere så vel som videresende noder håndheve et minimumsgebyr. Å betale bare denne minsteavgiften er helt greit, men vær klar over at dette kan resultere i en aldri bekreftende transaksjon når det er større etterspørsel etter bitcoin-transaksjoner enn nettverket kan behandle.</translation>
|
||||
<translation type="unfinished">Når det er mindre transaksjonsvolum enn plass i blokkene, kan minere så vel som noder håndheve et minimumsgebyr for videresending. Å kun betale minsteavgiften er helt greit, men vær klar over at dette kan skape en transaksjon som aldri blir bekreftet hvis det blir større etterspørsel etter bitcoin-transaksjoner enn nettverket kan behandle.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>A too low fee might result in a never confirming transaction (read the tooltip)</source>
|
||||
@@ -2347,6 +2508,15 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>%1 (%2 blocks)</source>
|
||||
<translation type="unfinished">%1 (%2 blokker)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign on device</source>
|
||||
<extracomment>"device" usually means a hardware wallet</extracomment>
|
||||
<translation type="unfinished">Signer på enhet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Connect your hardware wallet first.</source>
|
||||
<translation type="unfinished">Koble til din fysiske lommebok først.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cr&eate Unsigned</source>
|
||||
<translation type="unfinished">Cr & eate Usignert</translation>
|
||||
@@ -2367,6 +2537,10 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Create Unsigned</source>
|
||||
<translation type="unfinished">Lag usignert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign and send</source>
|
||||
<translation type="unfinished">Signer og send</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign failed</source>
|
||||
<translation type="unfinished">Signering feilet</translation>
|
||||
@@ -2375,6 +2549,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Save Transaction Data</source>
|
||||
<translation type="unfinished">Lagre Transaksjonsdata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Partially Signed Transaction (Binary)</source>
|
||||
<extracomment>Expanded name of the binary PSBT file format. See: BIP 174.</extracomment>
|
||||
<translation type="unfinished">Delvis Signert Transaksjon (Binær)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>PSBT saved</source>
|
||||
<translation type="unfinished">PSBT lagret</translation>
|
||||
@@ -2716,11 +2895,11 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>in memory pool</source>
|
||||
<translation type="unfinished">i hukommelsespulje</translation>
|
||||
<translation type="unfinished">i minnepool</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>not in memory pool</source>
|
||||
<translation type="unfinished">ikke i hukommelsespulje</translation>
|
||||
<translation type="unfinished">ikke i minnepool</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>abandoned</source>
|
||||
@@ -3037,6 +3216,22 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<source>Min amount</source>
|
||||
<translation type="unfinished">Minimumsbeløp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopier adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopier &beskrivelse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopier &beløp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy full transaction &details</source>
|
||||
<translation type="unfinished">Kopier komplette transaksjons&detaljer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export Transaction History</source>
|
||||
<translation type="unfinished">Eksporter transaksjonshistorikk</translation>
|
||||
@@ -3160,6 +3355,10 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Could not commit transaction</source>
|
||||
<translation type="unfinished">Kunne ikke sende inn transaksjon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Can't display address</source>
|
||||
<translation type="unfinished">Kan ikke vise adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">standard lommebok</translation>
|
||||
@@ -3203,6 +3402,11 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Backup Wallet</source>
|
||||
<translation type="unfinished">Sikkerhetskopier lommebok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet Data</source>
|
||||
<extracomment>Name of the wallet data file format.</extracomment>
|
||||
<translation type="unfinished">Lommebokdata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backup Failed</source>
|
||||
<translation type="unfinished">Sikkerhetskopiering mislyktes</translation>
|
||||
@@ -3238,6 +3442,10 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>-maxtxfee is set very high! Fees this large could be paid on a single transaction.</source>
|
||||
<translation type="unfinished">-maxtxfee er satt veldig høyt! Så stort gebyr kan bli betalt ved en enkelt transaksjon.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source>
|
||||
<translation type="unfinished">Kan ikke nedgradere lommebok fra versjon %i til versjon %i. Lommebokversjon er uforandret.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot obtain a lock on data directory %s. %s is probably already running.</source>
|
||||
<translation type="unfinished">Kan ikke låse datamappen %s. %s kjører antagelig allerede.</translation>
|
||||
@@ -3246,6 +3454,10 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Cannot provide specific connections and have addrman find outgoing connections at the same.</source>
|
||||
<translation type="unfinished">Kan ikke angi spesifikke tilkoblinger og ha addrman til å finne utgående tilkoblinger samtidig.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Kan ikke oppgradere en ikke-HD delt lommebok fra versjon %i til versjon %i uten å først oppgradere for å få støtte for forhåndsdelt keypool. Vennligst bruk versjon %i eller ingen versjon spesifisert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Distributed under the MIT software license, see the accompanying file %s or %s</source>
|
||||
<translation type="unfinished">Lisensiert MIT. Se tilhørende fil %s eller %s</translation>
|
||||
@@ -3264,7 +3476,7 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
</message>
|
||||
<message>
|
||||
<source>Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)</source>
|
||||
<translation type="unfinished">Ugyldig beløp for -maxtxfee=<amount>: '%s' (må være minst minimum relé gebyr på %s for å hindre fastlåste transaksjoner)</translation>
|
||||
<translation type="unfinished">Ugyldig beløp for -maxtxfee=<amount>: '%s' (et minrelay gebyr på minimum %s kreves for å forhindre fastlåste transaksjoner)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>More than one onion bind address is provided. Using %s for the automatically created Tor onion service.</source>
|
||||
@@ -3382,6 +3594,10 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Done loading</source>
|
||||
<translation type="unfinished">Ferdig med lasting</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error creating %s</source>
|
||||
<translation type="unfinished">Feil under opprettelse av %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error initializing block database</source>
|
||||
<translation type="unfinished">Feil under initialisering av blokkdatabase</translation>
|
||||
@@ -3422,10 +3638,18 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Error: Disk space is low for %s</source>
|
||||
<translation type="unfinished">Feil: Ikke nok ledig diskplass for %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Dumpfile checksum does not match. Computed %s, expected %s</source>
|
||||
<translation type="unfinished">Feil: Dumpfil sjekksum samsvarer ikke. Beregnet %s, forventet %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Keypool ran out, please call keypoolrefill first</source>
|
||||
<translation type="unfinished">Feil: Keypool gikk tom, kall keypoolrefill først.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Missing checksum</source>
|
||||
<translation type="unfinished">Feil: Manglende sjekksum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Failed to listen on any port. Use -listen=0 if you want this.</source>
|
||||
<translation type="unfinished">Kunne ikke lytte på noen port. Bruk -listen=0 hvis det er dette du vil.</translation>
|
||||
@@ -3446,6 +3670,10 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Ignoring duplicate -wallet %s.</source>
|
||||
<translation type="unfinished">Ignorerer dupliserte -wallet %s.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Importing…</source>
|
||||
<translation type="unfinished">Importerer...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Incorrect or no genesis block found. Wrong datadir for network?</source>
|
||||
<translation type="unfinished">Ugyldig eller ingen skaperblokk funnet. Feil datamappe for nettverk?</translation>
|
||||
@@ -3486,6 +3714,10 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Invalid netmask specified in -whitelist: '%s'</source>
|
||||
<translation type="unfinished">Ugyldig nettmaske spesifisert i -whitelist: '%s'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading wallet…</source>
|
||||
<translation type="unfinished">Laster lommebok...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Need to specify a port with -whitebind: '%s'</source>
|
||||
<translation type="unfinished">Må oppgi en port med -whitebind: '%s'</translation>
|
||||
@@ -3506,10 +3738,18 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Prune mode is incompatible with -txindex.</source>
|
||||
<translation type="unfinished">Beskjæringsmodus er ikke kompatibel med -txindex.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pruning blockstore…</source>
|
||||
<translation type="unfinished">Beskjærer blokklageret...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reducing -maxconnections from %d to %d, because of system limitations.</source>
|
||||
<translation type="unfinished">Reduserer -maxconnections fra %d til %d, pga. systembegrensninger.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rescanning…</source>
|
||||
<translation type="unfinished">Leser gjennom igjen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Signing transaction failed</source>
|
||||
<translation type="unfinished">Signering av transaksjon feilet</translation>
|
||||
@@ -3526,10 +3766,18 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>Specified -walletdir "%s" is not a directory</source>
|
||||
<translation type="unfinished">Oppgitt -walletdir "%s" er ikke en katalog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Starting network threads…</source>
|
||||
<translation type="unfinished">Starter nettverkstråder…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The source code is available from %s.</source>
|
||||
<translation type="unfinished">Kildekoden er tilgjengelig fra %s.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The specified config file %s does not exist</source>
|
||||
<translation type="unfinished">Konfigurasjonsfilen %s eksisterer ikke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The transaction amount is too small to pay the fee</source>
|
||||
<translation type="unfinished">Transaksjonsbeløpet er for lite til å betale gebyr</translation>
|
||||
@@ -3560,7 +3808,7 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction has too long of a mempool chain</source>
|
||||
<translation type="unfinished">Transaksjonen har for lang hukommelsespuljekjede</translation>
|
||||
<translation type="unfinished">Transaksjonen har for lang minnepoolkjede</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction must have at least one recipient</source>
|
||||
@@ -3610,6 +3858,14 @@ Gå til Fil > Åpne lommebok for å laste en lommebok.
|
||||
<source>User Agent comment (%s) contains unsafe characters.</source>
|
||||
<translation type="unfinished">User Agent kommentar (%s) inneholder utrygge tegn.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verifying blocks…</source>
|
||||
<translation type="unfinished">Verifiserer blokker...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verifying wallet(s)…</source>
|
||||
<translation type="unfinished">Verifiserer lommebøker...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Wallet needed to be rewritten: restart %s to complete</source>
|
||||
<translation type="unfinished">Lommeboka må skrives om: Start %s på nytt for å fullføre</translation>
|
||||
|
||||
@@ -339,36 +339,36 @@ Ondertekenen is alleen mogelijk met adressen van het type 'legacy'.</translation
|
||||
<message numerus="yes">
|
||||
<source>%n second(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n seconde</numerusform>
|
||||
<numerusform>%n seconden</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n minute(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n minuut</numerusform>
|
||||
<numerusform>%n minuten</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n hour(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n uur</numerusform>
|
||||
<numerusform>%n uren</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n day(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n dag</numerusform>
|
||||
<numerusform>%n dagen</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n week(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n week</numerusform>
|
||||
<numerusform>%n weken</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -378,8 +378,8 @@ Ondertekenen is alleen mogelijk met adressen van het type 'legacy'.</translation
|
||||
<message numerus="yes">
|
||||
<source>%n year(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n jaar</numerusform>
|
||||
<numerusform>%n jaren</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -597,8 +597,8 @@ Ondertekenen is alleen mogelijk met adressen van het type 'legacy'.</translation
|
||||
<message numerus="yes">
|
||||
<source>Processed %n block(s) of transaction history.</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n blokken aan transactiegeschiedenis verwerkt.</numerusform>
|
||||
<numerusform>%n blokken aan transactiegeschiedenis verwerkt.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -713,8 +713,8 @@ Ondertekenen is alleen mogelijk met adressen van het type 'legacy'.</translation
|
||||
<source>%n active connection(s) to Bitcoin network.</source>
|
||||
<extracomment>A substring of the tooltip.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>%n actieve verbinding(en) met Bitcoinnetwerk.</numerusform>
|
||||
<numerusform>%n actieve verbinding(en) met Bitcoinnetwerk.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -879,6 +879,30 @@ Ondertekenen is alleen mogelijk met adressen van het type 'legacy'.</translation
|
||||
<source>Copy amount</source>
|
||||
<translation type="unfinished">Kopieer bedrag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopieer adres</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopieer &label</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopieer &bedrag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy transaction &ID</source>
|
||||
<translation type="unfinished">Kopieer transactie-&ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>L&ock unspent</source>
|
||||
<translation type="unfinished">Bl&okeer ongebruikte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Unlock unspent</source>
|
||||
<translation type="unfinished">&Deblokkeer ongebruikte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy quantity</source>
|
||||
<translation type="unfinished">Kopieer aantal</translation>
|
||||
@@ -950,7 +974,11 @@ Ondertekenen is alleen mogelijk met adressen van het type 'legacy'.</translation
|
||||
<source>Create wallet warning</source>
|
||||
<translation type="unfinished">Aanmaken wallet waarschuwing</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Can't list signers</source>
|
||||
<translation type="unfinished">Kan geen lijst maken van ondertekenaars</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenWalletActivity</name>
|
||||
<message>
|
||||
@@ -1044,6 +1072,14 @@ Dit is ideaal voor alleen-lezen portommonees.</translation>
|
||||
<source>Descriptor Wallet</source>
|
||||
<translation type="unfinished">Descriptor Portemonnee</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use an external signing device such as a hardware wallet. Configure the external signer script in wallet preferences first.</source>
|
||||
<translation type="unfinished">Gebruik een extern onderteken device zoals een hardware wallet. Configureer eerst het externe ondertekenaar script in wallet preferences.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer</source>
|
||||
<translation type="unfinished">Externe ondertekenaar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create</source>
|
||||
<translation type="unfinished">Creëer</translation>
|
||||
@@ -1052,7 +1088,12 @@ Dit is ideaal voor alleen-lezen portommonees.</translation>
|
||||
<source>Compiled without sqlite support (required for descriptor wallets)</source>
|
||||
<translation type="unfinished">Gecompileerd zonder ondersteuning van sqlite (noodzakelijk voor beschrijvende portemonees)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Compiled without external signing support (required for external signing)</source>
|
||||
<extracomment>"External signing" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Gecompileerd zonder ondersteuning voor externe ondertekenaars (vereist voor extern ondertekenen)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditAddressDialog</name>
|
||||
<message>
|
||||
@@ -1153,8 +1194,8 @@ Dit is ideaal voor alleen-lezen portommonees.</translation>
|
||||
<source>(sufficient to restore backups %n day(s) old)</source>
|
||||
<extracomment>Explanatory text on the capability of the current prune target.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>(voldoende om back-ups van %n dag(en) oud te herstellen)</numerusform>
|
||||
<numerusform>(voldoende om back-ups van %n dag(en) oud te herstellen)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1396,6 +1437,18 @@ Dit is ideaal voor alleen-lezen portommonees.</translation>
|
||||
<source>&Spend unconfirmed change</source>
|
||||
<translation type="unfinished">&Spendeer onbevestigd wisselgeld</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External Signer (e.g. hardware wallet)</source>
|
||||
<translation type="unfinished">Externe ondertekenaar (b.v. een hardware wallet)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&External signer script path</source>
|
||||
<translation type="unfinished">&Extern ondertekenscript directory</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Full path to a Bitcoin Core compatible script (e.g. C:\Downloads\hwi.exe or /Users/you/Downloads/hwi.py). Beware: malware can steal your coins!</source>
|
||||
<translation type="unfinished">Volledige pad naar een Bitcoin Core compatibel script (b.v. C:\Downloads\hwi.exe of /Users/you/Downloads/hwi.py). Let op: Malware kan je coins stelen!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source>
|
||||
<translation>Open de Bitcoinpoort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en het aanstaat.</translation>
|
||||
@@ -1524,6 +1577,11 @@ Dit is ideaal voor alleen-lezen portommonees.</translation>
|
||||
<source>&Cancel</source>
|
||||
<translation>&Annuleren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Compiled without external signing support (required for external signing)</source>
|
||||
<extracomment>"External signing" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Gecompileerd zonder ondersteuning voor externe ondertekenaars (vereist voor extern ondertekenen)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default</source>
|
||||
<translation>standaard</translation>
|
||||
@@ -2136,6 +2194,10 @@ Als je deze fout ziet zou je de aanbieder moeten verzoeken om een BIP21 compatib
|
||||
<source>1 &hour</source>
|
||||
<translation type="unfinished">1 &uur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>1 d&ay</source>
|
||||
<translation type="unfinished">1 d&ag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>1 &year</source>
|
||||
<translation type="unfinished">1 &jaar</translation>
|
||||
@@ -2285,6 +2347,22 @@ Voor meer informatie over het gebruik van deze console, type %6.
|
||||
<source>Copy &URI</source>
|
||||
<translation type="unfinished">Kopieer &URI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopieer adres</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopieer &label</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &message</source>
|
||||
<translation type="unfinished">Kopieer &bericht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopieer &bedrag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Could not unlock wallet.</source>
|
||||
<translation type="unfinished">Kon de portemonnee niet openen.</translation>
|
||||
@@ -2324,6 +2402,14 @@ Voor meer informatie over het gebruik van deze console, type %6.
|
||||
<source>Copy &Address</source>
|
||||
<translation type="unfinished">Kopieer &adres</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Verify</source>
|
||||
<translation type="unfinished">&Verifiëren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verify this address on e.g. a hardware wallet screen</source>
|
||||
<translation type="unfinished">Verifieer dit adres, bijvoorbeeld op een hardware wallet scherm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Save Image…</source>
|
||||
<translation type="unfinished">&Afbeelding opslaan...</translation>
|
||||
@@ -2538,6 +2624,20 @@ Notitie: Omdat de vergoeding per byte wordt gerekend, zal een vergoeding van "10
|
||||
<source>%1 (%2 blocks)</source>
|
||||
<translation type="unfinished">%1 (%2 blokken)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign on device</source>
|
||||
<extracomment>"device" usually means a hardware wallet</extracomment>
|
||||
<translation type="unfinished">Inlog apparaat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Connect your hardware wallet first.</source>
|
||||
<translation type="unfinished">Verbind eerst met je hardware wallet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Set external signer script path in Options -> Wallet</source>
|
||||
<extracomment>"External signer" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Stel een extern onderteken script pad in Opties -> Wallet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cr&eate Unsigned</source>
|
||||
<translation type="unfinished">Cr&eëer Ongetekend</translation>
|
||||
@@ -2574,10 +2674,24 @@ Notitie: Omdat de vergoeding per byte wordt gerekend, zal een vergoeding van "10
|
||||
<source>Create Unsigned</source>
|
||||
<translation type="unfinished">Creër ongetekende</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign and send</source>
|
||||
<translation type="unfinished">Ondertekenen en verzenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sign failed</source>
|
||||
<translation type="unfinished">Ondertekenen mislukt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer not found</source>
|
||||
<extracomment>"External signer" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Externe ondertekenaar niet gevonden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External signer failure</source>
|
||||
<extracomment>"External signer" means using devices such as hardware wallets.</extracomment>
|
||||
<translation type="unfinished">Externe ondertekenaars fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save Transaction Data</source>
|
||||
<translation type="unfinished">Transactiedata Opslaan</translation>
|
||||
@@ -2591,6 +2705,10 @@ Notitie: Omdat de vergoeding per byte wordt gerekend, zal een vergoeding van "10
|
||||
<source>PSBT saved</source>
|
||||
<translation type="unfinished">PSBT opgeslagen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>External balance:</source>
|
||||
<translation type="unfinished">Extern tegoed:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>or</source>
|
||||
<translation type="unfinished">of</translation>
|
||||
@@ -2667,8 +2785,8 @@ Vb. een offline %1 portemonee, of een PSBT-combatiebele hardware portemonee.</tr
|
||||
<message numerus="yes">
|
||||
<source>Estimated to begin confirmation within %n block(s).</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>Start van bevestiging binnen naar schatting %n blok.</numerusform>
|
||||
<numerusform>Start van bevestiging binnen naar schatting %n blokken.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -2907,8 +3025,8 @@ Vb. een offline %1 portemonee, of een PSBT-combatiebele hardware portemonee.</tr
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>Open voor nog %n blok(ken)</numerusform>
|
||||
<numerusform>Open voor nog %n blok(ken)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -2978,8 +3096,8 @@ Vb. een offline %1 portemonee, of een PSBT-combatiebele hardware portemonee.</tr
|
||||
<message numerus="yes">
|
||||
<source>matures in %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>komt beschikbaar na %n nieuwe blok(ken)</numerusform>
|
||||
<numerusform>komt beschikbaar na %n nieuwe blok(ken)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -3079,8 +3197,8 @@ Vb. een offline %1 portemonee, of een PSBT-combatiebele hardware portemonee.</tr
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform />
|
||||
<numerusform>Open voor nog %n blok(ken)</numerusform>
|
||||
<numerusform>Open voor nog %n blok(ken)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -3230,6 +3348,46 @@ Vb. een offline %1 portemonee, of een PSBT-combatiebele hardware portemonee.</tr
|
||||
<source>Range…</source>
|
||||
<translation type="unfinished">Bereik...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy address</source>
|
||||
<translation type="unfinished">&Kopieer adres</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &label</source>
|
||||
<translation type="unfinished">Kopieer &label</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &amount</source>
|
||||
<translation type="unfinished">Kopieer &bedrag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy transaction &ID</source>
|
||||
<translation type="unfinished">Kopieer transactie-&ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy &raw transaction</source>
|
||||
<translation type="unfinished">Kopieer &ruwe transactie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy full transaction &details</source>
|
||||
<translation type="unfinished">Kopieer volledige transactie&details</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Show transaction details</source>
|
||||
<translation type="unfinished">Toon tran&sactiedetails</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Increase transaction &fee</source>
|
||||
<translation type="unfinished">Verhoog transactiekosten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>A&bandon transaction</source>
|
||||
<translation type="unfinished">Transactie &afbreken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Edit address label</source>
|
||||
<translation type="unfinished">B&ewerk adreslabel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export Transaction History</source>
|
||||
<translation type="unfinished">Exporteer transactiegeschiedenis</translation>
|
||||
@@ -3353,6 +3511,10 @@ Ga naar Bestand > Open portemonee om er één te openen.
|
||||
<source>Could not commit transaction</source>
|
||||
<translation type="unfinished">Kon de transactie niet voltooien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Can't display address</source>
|
||||
<translation type="unfinished">Adres kan niet weergegeven worden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>default wallet</source>
|
||||
<translation type="unfinished">standaard portemonnee</translation>
|
||||
@@ -3472,6 +3634,10 @@ Ga naar Bestand > Open portemonee om er één te openen.
|
||||
<source>Error: Dumpfile version is not supported. This version of bitcoin-wallet only supports version 1 dumpfiles. Got dumpfile with version %s</source>
|
||||
<translation type="unfinished">Fout: Dumpbestandsversie wordt niet ondersteund. Deze versie bitcoinportemonnee ondersteunt alleen versie 1 dumpbestanden. Dumpbestand met versie %s gekregen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Legacy wallets only support the "legacy", "p2sh-segwit", and "bech32" address types</source>
|
||||
<translation type="unfinished">Fout: Legacy wallets ondersteunen alleen "legacy", "p2sh-segwit" en "bech32" adres types</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Listening for incoming connections failed (listen returned error %s)</source>
|
||||
<translation type="unfinished">Fout: luisteren naar binnenkomende verbindingen mislukt (luisteren gaf foutmelding %s)</translation>
|
||||
@@ -3725,6 +3891,10 @@ Indien dit het geval is, gelieve de software te gebruiken waarmee deze portefeui
|
||||
<source>Error: Missing checksum</source>
|
||||
<translation type="unfinished">Fout: Ontbrekende checksum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: No %s addresses available.</source>
|
||||
<translation type="unfinished">Fout: Geen %s adressen beschikbaar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error: Unable to parse version %u as a uint32_t</source>
|
||||
<translation type="unfinished">Fout: Kan versie %u niet als een uint32_t verwerken</translation>
|
||||
@@ -3949,6 +4119,10 @@ Indien dit het geval is, gelieve de software te gebruiken waarmee deze portefeui
|
||||
<source>Transaction must have at least one recipient</source>
|
||||
<translation type="unfinished">Transactie moet ten minste één ontvanger hebben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction needs a change address, but we can't generate it. %s</source>
|
||||
<translation type="unfinished">De transactie heeft een 'change' adres nodig, maar we kunnen er geen genereren. %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction too large</source>
|
||||
<translation type="unfinished">Transactie te groot</translation>
|
||||
@@ -3997,6 +4171,10 @@ Indien dit het geval is, gelieve de software te gebruiken waarmee deze portefeui
|
||||
<source>Unknown network specified in -onlynet: '%s'</source>
|
||||
<translation type="unfinished">Onbekend netwerk gespecificeerd in -onlynet: '%s'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown new rules activated (versionbit %i)</source>
|
||||
<translation type="unfinished">Onbekende nieuwe regels geactiveerd (versionbit %i)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unsupported logging category %s=%s.</source>
|
||||
<translation type="unfinished">Niet-ondersteunde logcategorie %s=%s.</translation>
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Enter address or label to search</source>
|
||||
<translation type="unfinished">Procure um endereço ou rótulo</translation>
|
||||
<translation type="unfinished">Insira um endereço ou rótulo para buscar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Export the data in the current tab to a file</source>
|
||||
@@ -43,7 +43,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>&Delete</source>
|
||||
<translation>E&xcluir</translation>
|
||||
<translation>&Excluir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Choose the address to send coins to</source>
|
||||
@@ -73,7 +73,7 @@
|
||||
<source>These are your Bitcoin addresses for receiving payments. Use the 'Create new receiving address' button in the receive tab to create new addresses.
|
||||
Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
<translation type="unfinished">Estes são seus endereços Bitcoin para receber pagamentos. Use o botão 'Criar novos endereços de recebimento' na barra receber para criar novos endereços.
|
||||
Somente é possível assinar com endereços do tipo 'legado'.</translation>
|
||||
Somente é possível acessar com endereços do tipo 'legado'.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy Address</source>
|
||||
@@ -91,6 +91,11 @@ Somente é possível assinar com endereços do tipo 'legado'.</translation>
|
||||
<source>Export Address List</source>
|
||||
<translation type="unfinished">Exportar lista de endereços</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Comma separated file</source>
|
||||
<extracomment>Expanded name of the CSV file format. See https://en.wikipedia.org/wiki/Comma-separated_values</extracomment>
|
||||
<translation type="unfinished">Arquivo separado por vírgula</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There was an error trying to save the address list to %1. Please try again.</source>
|
||||
<extracomment>An error message. %1 is a stand-in argument for the name of the file we attempted to save to.</extracomment>
|
||||
@@ -136,7 +141,7 @@ Somente é possível assinar com endereços do tipo 'legado'.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show passphrase</source>
|
||||
<translation type="unfinished">Exibir senha</translation>
|
||||
<translation type="unfinished">Exibir frase de segurança</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Encrypt wallet</source>
|
||||
|
||||
@@ -770,7 +770,11 @@ Semnarea este posibilă numai cu adrese de tip "legacy".</translation>
|
||||
<source>Wallet is <b>encrypted</b> and currently <b>locked</b></source>
|
||||
<translation>Portofelul este <b>criptat</b> iar în momentul de faţă este <b>blocat</b></translation>
|
||||
</message>
|
||||
</context>
|
||||
<message>
|
||||
<source>Original message:</source>
|
||||
<translation type="unfinished">Mesajul original:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UnitDisplayStatusBarControl</name>
|
||||
<message>
|
||||
@@ -968,6 +972,10 @@ Semnarea este posibilă numai cu adrese de tip "legacy".</translation>
|
||||
<source>Encrypt Wallet</source>
|
||||
<translation type="unfinished">Criptează portofelul.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Advanced Options</source>
|
||||
<translation type="unfinished">Optiuni Avansate</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Dezactivează cheile private pentru acest portofel. Portofelele cu cheile private dezactivate nu vor avea chei private şi nu vor putea avea samanţă HD sau chei private importate. Ideal pentru portofele marcate doar pentru citire.</translation>
|
||||
@@ -980,10 +988,22 @@ Semnarea este posibilă numai cu adrese de tip "legacy".</translation>
|
||||
<source>Make Blank Wallet</source>
|
||||
<translation type="unfinished">Faceți Portofel gol</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use descriptors for scriptPubKey management</source>
|
||||
<translation type="unfinished">Utilizați descriptori pentru gestionarea scriptPubKey</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Descriptor Wallet</source>
|
||||
<translation type="unfinished"> Descriptor Portofel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create</source>
|
||||
<translation type="unfinished">Creează</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Compiled without sqlite support (required for descriptor wallets)</source>
|
||||
<translation type="unfinished">Compilat fără suport sqlite (necesar pentru portofele descriptor)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditAddressDialog</name>
|
||||
@@ -1114,6 +1134,10 @@ Semnarea este posibilă numai cu adrese de tip "legacy".</translation>
|
||||
<source>When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched.</source>
|
||||
<translation type="unfinished">Cand apasati OK, %1 va incepe descarcarea si procesarea intregului %4 blockchain (%2GB) incepand cu cele mai vechi tranzactii din %3 de la lansarea initiala a %4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Revenirea la această setare necesită re-descărcarea întregului blockchain. Este mai rapid să descărcați mai întâi rețeaua complet și să o fragmentați mai târziu. Dezactivează unele funcții avansate.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Sincronizarea initiala necesita foarte multe resurse, si poate releva probleme de hardware ale computerului care anterior au trecut neobservate. De fiecare data cand rulati %1, descarcarea va continua de unde a fost intrerupta.</translation>
|
||||
@@ -1472,6 +1496,10 @@ Semnarea este posibilă numai cu adrese de tip "legacy".</translation>
|
||||
</context>
|
||||
<context>
|
||||
<name>PSBTOperationsDialog</name>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Inchide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Total Amount</source>
|
||||
<translation type="unfinished">Suma totală</translation>
|
||||
|
||||
@@ -3736,7 +3736,7 @@ Go to File > Open Wallet to load a wallet.
|
||||
</message>
|
||||
<message>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished">Внимание: комиссия может быть увеличена путём уменьшения выводов для сдачи или добавления входов (по необходимости). Может быть добавлен новый вывод для сдачи, если он не существует. Эти изменения могут привести к ухудшению вашей конфиденциальности.ё</translation>
|
||||
<translation type="unfinished">Внимание: комиссия может быть увеличена путём уменьшения выводов для сдачи или добавления входов (по необходимости). Может быть добавлен новый вывод для сдачи, если он не существует. Эти изменения могут привести к ухудшению вашей конфиденциальности.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Confirm fee bump</source>
|
||||
|
||||
@@ -2019,7 +2019,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Create new receiving address</source>
|
||||
<translation type="unfinished">&Vytvoriť novú príjmaciu adresu</translation>
|
||||
<translation type="unfinished">&Vytvoriť novú prijímaciu adresu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Clear all fields of the form.</source>
|
||||
@@ -2031,7 +2031,7 @@ Signing is only possible with addresses of the type 'legacy'.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Native segwit addresses (aka Bech32 or BIP-173) reduce your transaction fees later on and offer better protection against typos, but old wallets don't support them. When unchecked, an address compatible with older wallets will be created instead.</source>
|
||||
<translation type="unfinished">Natívne segwit adresy (Bech32 or BIP-173) znižujú Vaše budúce transakčné poplatky and ponúkajú lepšiu ochranu pred preklepmi, avšak staré peňaženky ich nepodporujú. Ak je toto pole nezaškrtnuté, bude vytvorená adresa kompatibilná so staršími peňaženkami.</translation>
|
||||
<translation type="unfinished">Natívne segwit adresy (Bech32 or BIP-173) znižujú Vaše budúce transakčné poplatky a ponúkajú lepšiu ochranu pred preklepmi, avšak staré peňaženky ich nepodporujú. Ak je toto pole nezaškrtnuté, bude vytvorená adresa kompatibilná so staršími peňaženkami.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Generate native segwit (Bech32) address</source>
|
||||
|
||||
@@ -193,31 +193,31 @@
|
||||
<message numerus="yes">
|
||||
<source>%n second(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>%n seconds</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n minute(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>%n minutes</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n hour(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n hours</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n day(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n days</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%n week(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n weeks</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -227,7 +227,7 @@
|
||||
<message numerus="yes">
|
||||
<source>%n year(s)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n years</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
@@ -360,7 +360,7 @@
|
||||
<message numerus="yes">
|
||||
<source>Processed %n block(s) of transaction history.</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>Processed %n blocks of transaction history.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -455,7 +455,7 @@
|
||||
<source>%n active connection(s) to Bitcoin network.</source>
|
||||
<extracomment>A substring of the tooltip.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>%n active connection(s) to Bitcoin network.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -735,7 +735,7 @@
|
||||
<source>(sufficient to restore backups %n day(s) old)</source>
|
||||
<extracomment>Explanatory text on the capability of the current prune target.</extracomment>
|
||||
<translation type="unfinished">
|
||||
<numerusform />
|
||||
<numerusform>(sufficient to restore backups %n day(s) old)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1147,7 +1147,7 @@
|
||||
<message numerus="yes">
|
||||
<source>Estimated to begin confirmation within %n block(s).</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>Estimated to begin confirmation within %n blocks.</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1194,7 +1194,7 @@
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>Open for %n more blocks</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1216,7 +1216,7 @@
|
||||
<message numerus="yes">
|
||||
<source>matures in %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>matures in %n more blocks</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1249,7 +1249,7 @@
|
||||
<message numerus="yes">
|
||||
<source>Open for %n more block(s)</source>
|
||||
<translation>
|
||||
<numerusform />
|
||||
<numerusform>Open for %n more blocks</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
||||
@@ -1564,10 +1564,18 @@ Cüzdan kilidini aç.</translation>
|
||||
<source>PSBT saved to disk.</source>
|
||||
<translation type="unfinished">PSBT diske kaydedildi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pays transaction fee: </source>
|
||||
<translation type="unfinished">İşlem ücreti:<br></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>or</source>
|
||||
<translation type="unfinished">veya</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction still needs signature(s).</source>
|
||||
<translation type="unfinished">İşlemin hala imza(lar)a ihtiyacı var.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transaction status is unknown.</source>
|
||||
<translation type="unfinished">İşlem durumu bilinmiyor.</translation>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -195,7 +195,7 @@ static void ApproximateBestSubset(const std::vector<OutputGroup>& groups, const
|
||||
//the selection random.
|
||||
if (nPass == 0 ? insecure_rand.randbool() : !vfIncluded[i])
|
||||
{
|
||||
nTotal += groups[i].m_value;
|
||||
nTotal += groups[i].GetSelectionAmount();
|
||||
vfIncluded[i] = true;
|
||||
if (nTotal >= nTargetValue)
|
||||
{
|
||||
@@ -205,7 +205,7 @@ static void ApproximateBestSubset(const std::vector<OutputGroup>& groups, const
|
||||
nBest = nTotal;
|
||||
vfBest = vfIncluded;
|
||||
}
|
||||
nTotal -= groups[i].m_value;
|
||||
nTotal -= groups[i].GetSelectionAmount();
|
||||
vfIncluded[i] = false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -778,6 +778,10 @@ bool CWallet::CreateTransactionInternal(
|
||||
fee_needed = coin_selection_params.m_effective_feerate.GetFee(nBytes);
|
||||
}
|
||||
|
||||
// The only time that fee_needed should be less than the amount available for fees (in change_and_fee - change_amount) is when
|
||||
// we are subtracting the fee from the outputs. If this occurs at any other time, it is a bug.
|
||||
assert(coin_selection_params.m_subtract_fee_outputs || fee_needed <= change_and_fee - change_amount);
|
||||
|
||||
// Update nFeeRet in case fee_needed changed due to dropping the change output
|
||||
if (fee_needed <= change_and_fee - change_amount) {
|
||||
nFeeRet = change_and_fee - change_amount;
|
||||
|
||||
@@ -25,7 +25,11 @@ BOOST_AUTO_TEST_CASE(getwalletenv_file)
|
||||
std::string test_name = "test_name.dat";
|
||||
const fs::path datadir = gArgs.GetDataDirNet();
|
||||
fs::path file_path = datadir / test_name;
|
||||
#if BOOST_VERSION >= 107700
|
||||
std::ofstream f(BOOST_FILESYSTEM_C_STR(file_path));
|
||||
#else
|
||||
std::ofstream f(file_path.BOOST_FILESYSTEM_C_STR);
|
||||
#endif // BOOST_VERSION >= 107700
|
||||
f.close();
|
||||
|
||||
std::string filename;
|
||||
|
||||
@@ -32,7 +32,11 @@ InitWalletDirTestingSetup::InitWalletDirTestingSetup(const std::string& chainNam
|
||||
fs::create_directories(m_walletdir_path_cases["default"]);
|
||||
fs::create_directories(m_walletdir_path_cases["custom"]);
|
||||
fs::create_directories(m_walletdir_path_cases["relative"]);
|
||||
#if BOOST_VERSION >= 107700
|
||||
std::ofstream f(BOOST_FILESYSTEM_C_STR(m_walletdir_path_cases["file"]));
|
||||
#else
|
||||
std::ofstream f(m_walletdir_path_cases["file"].BOOST_FILESYSTEM_C_STR);
|
||||
#endif // BOOST_VERSION >= 107700
|
||||
f.close();
|
||||
}
|
||||
|
||||
|
||||
@@ -99,6 +99,7 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||
self.test_subtract_fee_with_presets()
|
||||
self.test_transaction_too_large()
|
||||
self.test_include_unsafe()
|
||||
self.test_22670()
|
||||
|
||||
def test_change_position(self):
|
||||
"""Ensure setting changePosition in fundraw with an exact match is handled properly."""
|
||||
@@ -969,6 +970,62 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||
signedtx = wallet.signrawtransactionwithwallet(fundedtx['hex'])
|
||||
wallet.sendrawtransaction(signedtx['hex'])
|
||||
|
||||
def test_22670(self):
|
||||
# In issue #22670, it was observed that ApproximateBestSubset may
|
||||
# choose enough value to cover the target amount but not enough to cover the transaction fees.
|
||||
# This leads to a transaction whose actual transaction feerate is lower than expected.
|
||||
# However at normal feerates, the difference between the effective value and the real value
|
||||
# that this bug is not detected because the transaction fee must be at least 0.01 BTC (the minimum change value).
|
||||
# Otherwise the targeted minimum change value will be enough to cover the transaction fees that were not
|
||||
# being accounted for. So the minimum relay fee is set to 0.1 BTC/kvB in this test.
|
||||
self.log.info("Test issue 22670 ApproximateBestSubset bug")
|
||||
# Make sure the default wallet will not be loaded when restarted with a high minrelaytxfee
|
||||
self.nodes[0].unloadwallet(self.default_wallet_name, False)
|
||||
feerate = Decimal("0.1")
|
||||
self.restart_node(0, [f"-minrelaytxfee={feerate}", "-discardfee=0"]) # Set high minrelayfee, set discardfee to 0 for easier calculation
|
||||
|
||||
self.nodes[0].loadwallet(self.default_wallet_name, True)
|
||||
funds = self.nodes[0].get_wallet_rpc(self.default_wallet_name)
|
||||
self.nodes[0].createwallet(wallet_name="tester")
|
||||
tester = self.nodes[0].get_wallet_rpc("tester")
|
||||
|
||||
# Because this test is specifically for ApproximateBestSubset, the target value must be greater
|
||||
# than any single input available, and require more than 1 input. So we make 3 outputs
|
||||
for i in range(0, 3):
|
||||
funds.sendtoaddress(tester.getnewaddress(address_type="bech32"), 1)
|
||||
self.nodes[0].generate(1)
|
||||
|
||||
# Create transactions in order to calculate fees for the target bounds that can trigger this bug
|
||||
change_tx = tester.fundrawtransaction(tester.createrawtransaction([], [{funds.getnewaddress(): 1.5}]))
|
||||
tx = tester.createrawtransaction([], [{funds.getnewaddress(): 2}])
|
||||
no_change_tx = tester.fundrawtransaction(tx, {"subtractFeeFromOutputs": [0]})
|
||||
|
||||
overhead_fees = feerate * len(tx) / 2 / 1000
|
||||
cost_of_change = change_tx["fee"] - no_change_tx["fee"]
|
||||
fees = no_change_tx["fee"]
|
||||
assert_greater_than(fees, 0.01)
|
||||
|
||||
def do_fund_send(target):
|
||||
create_tx = tester.createrawtransaction([], [{funds.getnewaddress(): target}])
|
||||
funded_tx = tester.fundrawtransaction(create_tx)
|
||||
signed_tx = tester.signrawtransactionwithwallet(funded_tx["hex"])
|
||||
assert signed_tx["complete"]
|
||||
decoded_tx = tester.decoderawtransaction(signed_tx["hex"])
|
||||
assert_equal(len(decoded_tx["vin"]), 3)
|
||||
assert tester.testmempoolaccept([signed_tx["hex"]])[0]["allowed"]
|
||||
|
||||
# We want to choose more value than is available in 2 inputs when considering the fee,
|
||||
# but not enough to need 3 inputs when not considering the fee.
|
||||
# So the target value must be at least 2.00000001 - fee.
|
||||
lower_bound = Decimal("2.00000001") - fees
|
||||
# The target value must be at most 2 - cost_of_change - not_input_fees - min_change (these are all
|
||||
# included in the target before ApproximateBestSubset).
|
||||
upper_bound = Decimal("2.0") - cost_of_change - overhead_fees - Decimal("0.01")
|
||||
assert_greater_than_or_equal(upper_bound, lower_bound)
|
||||
do_fund_send(lower_bound)
|
||||
do_fund_send(upper_bound)
|
||||
|
||||
self.restart_node(0)
|
||||
|
||||
if __name__ == '__main__':
|
||||
RawTransactionsTest().main()
|
||||
|
||||
Reference in New Issue
Block a user