From 7ca56632cf25d66ec18a3843f315f8121ac8f095 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Mon, 18 Nov 2024 12:22:13 -0600 Subject: [PATCH 01/24] Merge #6397: ci: add powerpc64 to GH Guix job matrix c5d5b14205e2e5f8b3775c3681f217e288319b8b ci: add powerpc64 to GH Guix job matrix (UdjinM6) Pull request description: ## Issue being fixed or feature implemented I guess we should make sure that binaries for every possible platform can be built via Guix with no issues even if we do not want to provide "official" binaries for it. ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ Top commit has no ACKs. Tree-SHA512: 6464b68a47e680bb379c82842599200d6917adb8f1493fa75ac80ddc7a6fea92a9190215cfa3f32b0bd88e2dd0425d4eb13846ea2d7e19e144afff9c1171ff13 --- .github/workflows/guix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/guix-build.yml b/.github/workflows/guix-build.yml index 1ad6101e3a83c..8a48ee178b80f 100644 --- a/.github/workflows/guix-build.yml +++ b/.github/workflows/guix-build.yml @@ -68,7 +68,7 @@ jobs: # if: ${{ contains(github.event.pull_request.labels.*.name, 'guix-build') }} strategy: matrix: - build_target: [x86_64-linux-gnu, arm-linux-gnueabihf, aarch64-linux-gnu, riscv64-linux-gnu, x86_64-w64-mingw32, x86_64-apple-darwin, arm64-apple-darwin] + build_target: [x86_64-linux-gnu, arm-linux-gnueabihf, aarch64-linux-gnu, riscv64-linux-gnu, powerpc64-linux-gnu, x86_64-w64-mingw32, x86_64-apple-darwin, arm64-apple-darwin] timeout-minutes: 480 steps: From 66f67879dc8a89c586efb1b5262dd020c33c14ab Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Mon, 18 Nov 2024 13:18:03 -0600 Subject: [PATCH 02/24] Merge #6401: ci: deduplicate depends building 2f18c1af30c18f876ab1c550ad7ca5e50908e837 ci: deduplicate depends building (pasta) Pull request description: ## Issue being fixed or feature implemented Currently we build the same host / options multiple times. Don't do this! ## What was done? Now building depends only twice ## How Has This Been Tested? Local CI appears to be working ## Breaking Changes None ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: kwvg: utACK 2f18c1af30c18f876ab1c550ad7ca5e50908e837 UdjinM6: utACK 2f18c1af30c18f876ab1c550ad7ca5e50908e837 Tree-SHA512: 67460508a2e9458152f7c8bb5f4a1a786aedcfded0e5c54fb03d85010ba8bb87362b66a0c322b51aeba75752e36418fc235d8dc4197ef10695e234ccc5a00a39 --- .github/workflows/build.yml | 70 ++++++++++--------------------------- 1 file changed, 18 insertions(+), 52 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b8997dc15dfa..08340771196e3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,6 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - - name: Prepare id: prepare run: | @@ -68,18 +67,6 @@ jobs: host: arm-linux-gnueabihf - build_target: linux64 host: x86_64-pc-linux-gnu - - build_target: linux64_tsan - host: x86_64-pc-linux-gnu - - build_target: linux64_ubsan - host: x86_64-pc-linux-gnu - - build_target: linux64_fuzz - host: x86_64-pc-linux-gnu - - build_target: linux64_cxx20 - host: x86_64-pc-linux-gnu - - build_target: linux64_sqlite - host: x86_64-pc-linux-gnu - - build_target: linux64_nowallet - host: x86_64-pc-linux-gnu container: image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }} @@ -90,7 +77,6 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - - name: Cache depends sources uses: actions/cache@v4 with: @@ -113,6 +99,12 @@ jobs: - name: Build dependencies run: make -j$(nproc) -C depends HOST=${{ matrix.host }} + - name: Upload built depends + uses: actions/upload-artifact@v4 + with: + name: depends-${{ matrix.build_target }} + path: depends/${{ matrix.host }} + build: name: Build needs: [build-image, build-depends] @@ -123,20 +115,28 @@ jobs: include: - build_target: arm-linux host: arm-linux-gnueabihf + depends_on: arm-linux - build_target: linux64 host: x86_64-pc-linux-gnu + depends_on: linux64 - build_target: linux64_tsan host: x86_64-pc-linux-gnu + depends_on: linux64 - build_target: linux64_ubsan host: x86_64-pc-linux-gnu + depends_on: linux64 - build_target: linux64_fuzz host: x86_64-pc-linux-gnu + depends_on: linux64 - build_target: linux64_cxx20 host: x86_64-pc-linux-gnu + depends_on: linux64 - build_target: linux64_sqlite host: x86_64-pc-linux-gnu + depends_on: linux64 - build_target: linux64_nowallet host: x86_64-pc-linux-gnu + depends_on: linux64 container: image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }} options: --user root @@ -146,16 +146,11 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - - - name: Restore Cache dependencies - uses: actions/cache/restore@v4 + - name: Download built depends + uses: actions/download-artifact@v4 with: - path: | - depends/${{ matrix.host }} - key: ${{ runner.os }}-depends-${{ matrix.build_target }}-${{ hashFiles('depends/packages/*') }} - restore-keys: | - ${{ runner.os }}-depends-${{ matrix.build_target }}-${{ hashFiles('depends/packages/*') }} - ${{ runner.os }}-depends-${{ matrix.build_target }} + name: depends-${{ matrix.depends_on }} + path: depends/${{ matrix.host }} - name: Determine PR Base SHA id: vars @@ -192,32 +187,3 @@ jobs: name: build-artifacts-${{ matrix.build_target }} path: | /output - - -# Come back to this later and implement tests :) -# test: -# name: Test -# needs: [build-image, build] -# runs-on: ubuntu-22.04 -# container: -# image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }} -# options: --user root -# steps: -# - name: Checkout code -# uses: actions/checkout@v4 -# with: -# ref: ${{ github.event.pull_request.head.sha }} -# -# - name: Download build artifacts -# uses: actions/download-artifact@v4 -# with: -# name: build-artifacts -# path: src/ -# -## - name: Setup environment -## run: | -## echo "BUILD_TARGET=${{ needs.build.matrix.build_target }}" -## source ./ci/dash/matrix.sh -# -# - name: Run integration tests -# run: ./ci/dash/test_integrationtests.sh --extended --exclude feature_pruning,feature_dbcrash From 90a3807903f8176878dae281da854b6faf6d8701 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Mon, 18 Nov 2024 13:16:37 -0600 Subject: [PATCH 03/24] Merge #6402: ci: cache built 9604d87af1689d844c5be870c2cb3f305d67856d ci: cache depends/built like gitlab (pasta) Pull request description: ## Issue being fixed or feature implemented Depends build didn't seem to be caching properly ## What was done? changed depends/${{ matrix.host }} to depends/built as gitlab does ## How Has This Been Tested? Depends "build" now takes only ~1 minute instead of ~15 minutes in CI: https://github.com/PastaPastaPasta/dash/actions/runs/11899038167 ## Breaking Changes None ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: UdjinM6: utACK 9604d87af1689d844c5be870c2cb3f305d67856d kwvg: utACK 9604d87af1689d844c5be870c2cb3f305d67856d Tree-SHA512: 63d2321f41b284be6cc2f0b2d53294cf220b1623af464d411225c0e43ec14268e1c3a701e23973e5c641925b6ea28dcb92062d8cefb9e6baed6ac5bb619ce1a1 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 08340771196e3..197426c65741a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -90,7 +90,7 @@ jobs: uses: actions/cache@v4 with: path: | - depends/${{ matrix.host }} + depends/built key: ${{ runner.os }}-depends-${{ matrix.build_target }}-${{ hashFiles('depends/packages/*') }} restore-keys: | ${{ runner.os }}-depends-${{ matrix.build_target }}-${{ hashFiles('depends/packages/*') }} From a1f7e96025c3e61f56feacc92dd2ddf6a7f1262f Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 19 Nov 2024 15:08:46 -0600 Subject: [PATCH 04/24] Merge #6406: ci: use `actions/cache` to manage depends cache 9cc29a832ed7021f9f6c27ece6fa48899d29d777 ci: use `actions/cache` to manage depends cache (Kittywhiskers Van Gogh) Pull request description: ## Additional Information * Builds after [dash#6401](https://github.com/dashpay/dash/pull/6401) have silently stopped building Dash Qt, see pre-[dash#6401](https://github.com/dashpay/dash/pull/6401) `develop` (6a51ab27)'s [build](https://github.com/dashpay/dash/actions/runs/11881892222/job/33106960691#step:7:725) compared against [build \#1](https://github.com/PastaPastaPasta/dash/actions/runs/11897504945/job/33152711720#step:7:1432) and [build \#2](https://github.com/kwvg/dash/actions/runs/11898510091/job/33156186503#step:7:1432) from [dash#6401](https://github.com/dashpay/dash/pull/6401)'s review process. This pull request aims to correct that regression. ## Breaking Changes None expected. ## Checklist - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas **(note: N/A)** - [x] I have added or updated relevant unit/integration/functional/e2e tests **(note: N/A)** - [x] I have made corresponding changes to the documentation **(note: N/A)** - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK https://github.com/dashpay/dash/commit/9cc29a832ed7021f9f6c27ece6fa48899d29d777 UdjinM6: utACK 9cc29a832ed7021f9f6c27ece6fa48899d29d777 Tree-SHA512: 09663987696d29e12c98b48297960c7c1e6484e337ddc8311f340fee1d026ace572674e8cbca578ba743ff781caabb6fcc1853cee8ddff3e13af3fe3d0361776 --- .github/workflows/build.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 197426c65741a..7b9dbd80207f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,25 +86,20 @@ jobs: restore-keys: | depends-sources- - - name: Cache dependencies + - name: Cache depends uses: actions/cache@v4 with: path: | depends/built + depends/${{ matrix.host }} key: ${{ runner.os }}-depends-${{ matrix.build_target }}-${{ hashFiles('depends/packages/*') }} restore-keys: | ${{ runner.os }}-depends-${{ matrix.build_target }}-${{ hashFiles('depends/packages/*') }} ${{ runner.os }}-depends-${{ matrix.build_target }} - - name: Build dependencies + - name: Build depends run: make -j$(nproc) -C depends HOST=${{ matrix.host }} - - name: Upload built depends - uses: actions/upload-artifact@v4 - with: - name: depends-${{ matrix.build_target }} - path: depends/${{ matrix.host }} - build: name: Build needs: [build-image, build-depends] @@ -146,11 +141,13 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - - name: Download built depends - uses: actions/download-artifact@v4 + - name: Restore depends cache + uses: actions/cache/restore@v4 with: - name: depends-${{ matrix.depends_on }} - path: depends/${{ matrix.host }} + path: | + depends/built + depends/${{ matrix.host }} + key: ${{ runner.os }}-depends-${{ matrix.depends_on }}-${{ hashFiles('depends/packages/*') }} - name: Determine PR Base SHA id: vars From 86105daab3a23069ffa01508d6bbef8be2630c19 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Wed, 20 Nov 2024 11:28:35 -0600 Subject: [PATCH 05/24] Merge #6408: refactor: removed pre-MN_RR logic of validation of CL 3f2e064b18bdb47bbf0100307d2b339ebe124998 refactor: set `const auto& cbTx` to avoid using optional throughout method (pasta) 0c0d91e49189739c4ba1eb3a36d7586e2499a619 fix: functional test feature_llmq_chainlocks.py should activate MN_RR instead v20 (Konstantin Akimov) af93e877f29828bb268ab8b472192a47186160e1 refactor: removed pre-MN_RR logic of validation of CL (Konstantin Akimov) Pull request description: ## Issue being fixed or feature implemented The fork MN_RR is active awhile on testnet and mainnet and no more need legacy check ## What was done? Removes legacy version of checks for CL and related functional tests ## How Has This Been Tested? Run unit / functional test - DONE Reindex testnet - DONE Reindex mainnet - DONE ## Breaking Changes Removed pre-mn_rr version of checks for CL. It's no more relevant on mainnet and testnet. It affects behavior on new devnets and regtest for pre-mn_rr activation blocks. ## Checklist: - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have added or updated relevant unit/integration/functional/e2e tests - [x] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone ACKs for top commit: UdjinM6: utACK 3f2e064b18bdb47bbf0100307d2b339ebe124998 Tree-SHA512: 8b4b3a20a54602f4df9d98e17c79004214493b15c0bce9c08c68d667a5cba86b817947f008d646c48ef9f2f86676c02085c7d0ed36e83548ef5425b64faffb89 --- src/evo/cbtx.cpp | 39 +++++++++++----------- src/evo/cbtx.h | 2 +- src/evo/specialtxman.cpp | 2 +- test/functional/feature_llmq_chainlocks.py | 33 ++++++------------ 4 files changed, 32 insertions(+), 44 deletions(-) diff --git a/src/evo/cbtx.cpp b/src/evo/cbtx.cpp index a9a5abe762f8e..fc08bd5db57fd 100644 --- a/src/evo/cbtx.cpp +++ b/src/evo/cbtx.cpp @@ -332,7 +332,7 @@ bool CalcCbTxMerkleRootQuorums(const CBlock& block, const CBlockIndex* pindexPre } bool CheckCbTxBestChainlock(const CBlock& block, const CBlockIndex* pindex, - const llmq::CChainLocksHandler& chainlock_handler, BlockValidationState& state, const bool check_clhdiff) + const llmq::CChainLocksHandler& chainlock_handler, BlockValidationState& state) { if (block.vtx[0]->nType != TRANSACTION_COINBASE) { return true; @@ -342,44 +342,43 @@ bool CheckCbTxBestChainlock(const CBlock& block, const CBlockIndex* pindex, if (!opt_cbTx) { return state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "bad-cbtx-payload"); } + const auto& cbTx = *opt_cbTx; - if (opt_cbTx->nVersion < CCbTx::Version::CLSIG_AND_BALANCE) { + if (cbTx.nVersion < CCbTx::Version::CLSIG_AND_BALANCE) { return true; } auto best_clsig = chainlock_handler.GetBestChainLock(); - if (best_clsig.getHeight() == pindex->nHeight - 1 && opt_cbTx->bestCLHeightDiff == 0 && opt_cbTx->bestCLSignature == best_clsig.getSig()) { + if (best_clsig.getHeight() == pindex->nHeight - 1 && cbTx.bestCLHeightDiff == 0 && cbTx.bestCLSignature == best_clsig.getSig()) { // matches our best clsig which still hold values for the previous block return true; } - if (check_clhdiff) { - auto prevBlockCoinbaseChainlock = GetNonNullCoinbaseChainlock(pindex->pprev); - // If std::optional prevBlockCoinbaseChainlock is empty, then up to the previous block, coinbase Chainlock is null. - if (prevBlockCoinbaseChainlock.has_value()) { - // Previous block Coinbase has a non-null Chainlock: current block's Chainlock must be non-null and at least as new as the previous one - if (!opt_cbTx->bestCLSignature.IsValid()) { - // IsNull() doesn't exist for CBLSSignature: we assume that a non valid BLS sig is null - return state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "bad-cbtx-null-clsig"); - } - if (opt_cbTx->bestCLHeightDiff > prevBlockCoinbaseChainlock.value().second + 1) { - return state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "bad-cbtx-older-clsig"); - } + const auto prevBlockCoinbaseChainlock = GetNonNullCoinbaseChainlock(pindex->pprev); + // If std::optional prevBlockCoinbaseChainlock is empty, then up to the previous block, coinbase Chainlock is null. + if (prevBlockCoinbaseChainlock.has_value()) { + // Previous block Coinbase has a non-null Chainlock: current block's Chainlock must be non-null and at least as new as the previous one + if (!cbTx.bestCLSignature.IsValid()) { + // IsNull() doesn't exist for CBLSSignature: we assume that a non valid BLS sig is null + return state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "bad-cbtx-null-clsig"); + } + if (cbTx.bestCLHeightDiff > prevBlockCoinbaseChainlock.value().second + 1) { + return state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "bad-cbtx-older-clsig"); } } // IsNull() doesn't exist for CBLSSignature: we assume that a valid BLS sig is non-null - if (opt_cbTx->bestCLSignature.IsValid()) { - int curBlockCoinbaseCLHeight = pindex->nHeight - static_cast<int>(opt_cbTx->bestCLHeightDiff) - 1; - if (best_clsig.getHeight() == curBlockCoinbaseCLHeight && best_clsig.getSig() == opt_cbTx->bestCLSignature) { + if (cbTx.bestCLSignature.IsValid()) { + int curBlockCoinbaseCLHeight = pindex->nHeight - static_cast<int>(cbTx.bestCLHeightDiff) - 1; + if (best_clsig.getHeight() == curBlockCoinbaseCLHeight && best_clsig.getSig() == cbTx.bestCLSignature) { // matches our best (but outdated) clsig, no need to verify it again return true; } uint256 curBlockCoinbaseCLBlockHash = pindex->GetAncestor(curBlockCoinbaseCLHeight)->GetBlockHash(); - if (chainlock_handler.VerifyChainLock(llmq::CChainLockSig(curBlockCoinbaseCLHeight, curBlockCoinbaseCLBlockHash, opt_cbTx->bestCLSignature)) != llmq::VerifyRecSigStatus::Valid) { + if (chainlock_handler.VerifyChainLock(llmq::CChainLockSig(curBlockCoinbaseCLHeight, curBlockCoinbaseCLBlockHash, cbTx.bestCLSignature)) != llmq::VerifyRecSigStatus::Valid) { return state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "bad-cbtx-invalid-clsig"); } - } else if (opt_cbTx->bestCLHeightDiff != 0) { + } else if (cbTx.bestCLHeightDiff != 0) { // Null bestCLSignature is allowed only with bestCLHeightDiff = 0 return state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "bad-cbtx-cldiff"); } diff --git a/src/evo/cbtx.h b/src/evo/cbtx.h index cb8ab1f92cc4f..ad6b74d10fb90 100644 --- a/src/evo/cbtx.h +++ b/src/evo/cbtx.h @@ -96,7 +96,7 @@ bool CalcCbTxMerkleRootQuorums(const CBlock& block, const CBlockIndex* pindexPre BlockValidationState& state); bool CheckCbTxBestChainlock(const CBlock& block, const CBlockIndex* pindexPrev, - const llmq::CChainLocksHandler& chainlock_handler, BlockValidationState& state, const bool check_clhdiff); + const llmq::CChainLocksHandler& chainlock_handler, BlockValidationState& state); bool CalcCbTxBestChainlock(const llmq::CChainLocksHandler& chainlock_handler, const CBlockIndex* pindexPrev, uint32_t& bestCLHeightDiff, CBLSSignature& bestCLSignature); diff --git a/src/evo/specialtxman.cpp b/src/evo/specialtxman.cpp index c8c84e84bed44..5ed1e08c10ba0 100644 --- a/src/evo/specialtxman.cpp +++ b/src/evo/specialtxman.cpp @@ -188,7 +188,7 @@ bool CSpecialTxProcessor::ProcessSpecialTxsInBlock(const CBlock& block, const CB nTimeMerkle += nTime5 - nTime4; LogPrint(BCLog::BENCHMARK, " - CheckCbTxMerkleRoots: %.2fms [%.2fs]\n", 0.001 * (nTime5 - nTime4), nTimeMerkle * 0.000001); - if (fCheckCbTxMerkleRoots && !CheckCbTxBestChainlock(block, pindex, m_clhandler, state, DeploymentActiveAt(*pindex, m_consensus_params, Consensus::DEPLOYMENT_MN_RR))) { + if (fCheckCbTxMerkleRoots && !CheckCbTxBestChainlock(block, pindex, m_clhandler, state)) { // pass the state returned by the function above return false; } diff --git a/test/functional/feature_llmq_chainlocks.py b/test/functional/feature_llmq_chainlocks.py index 03807ddd2ba30..1714393939b00 100755 --- a/test/functional/feature_llmq_chainlocks.py +++ b/test/functional/feature_llmq_chainlocks.py @@ -15,12 +15,12 @@ from test_framework.messages import CBlock, CCbTx from test_framework.test_framework import DashTestFramework -from test_framework.util import assert_equal, assert_raises_rpc_error, force_finish_mnsync, softfork_active +from test_framework.util import assert_equal, assert_raises_rpc_error, force_finish_mnsync class LLMQChainLocksTest(DashTestFramework): def set_test_params(self): - self.set_dash_test_params(5, 4, [["-testactivationheight=mn_rr@1100"]] * 5) + self.set_dash_test_params(5, 4) def run_test(self): # Connect all nodes to node1 so that we always have the whole network connected @@ -31,8 +31,8 @@ def run_test(self): self.test_coinbase_best_cl(self.nodes[0], expected_cl_in_cb=False) - self.activate_v20(expected_activation_height=900) - self.log.info("Activated v20 at height:" + str(self.nodes[0].getblockcount())) + self.activate_mn_rr(expected_activation_height=900) + self.log.info("Activated MN_RR at height:" + str(self.nodes[0].getblockcount())) # v20 is active for the next block, not for the tip self.test_coinbase_best_cl(self.nodes[0], expected_cl_in_cb=False) @@ -243,14 +243,8 @@ def run_test(self): assert_equal(tip_1['cbTx']['bestCLSignature'], tip_0['cbTx']['bestCLSignature']) assert_equal(tip_1['cbTx']['bestCLHeightDiff'], tip_0['cbTx']['bestCLHeightDiff'] + 1) - self.log.info("Test that bestCLHeightDiff conditions are relaxed before mn_rr") - self.test_bestCLHeightDiff(False) - - self.activate_mn_rr(expected_activation_height=1100) - self.log.info("Activated mn_rr at height:" + str(self.nodes[0].getblockcount())) - - self.log.info("Test that bestCLHeightDiff conditions are stricter after mn_rr") - self.test_bestCLHeightDiff(True) + self.log.info("Test bestCLHeightDiff restrictions") + self.test_bestCLHeightDiff() def create_chained_txs(self, node, amount): txid = node.sendtoaddress(node.getnewaddress(), amount) @@ -293,11 +287,10 @@ def test_coinbase_best_cl(self, node, expected_cl_in_cb=True, expected_null_cl=F else: assert "bestCLHeightDiff" not in cbtx and "bestCLSignature" not in cbtx - def test_bestCLHeightDiff(self, mn_rr_active): + def test_bestCLHeightDiff(self): # We need 2 blocks we can grab clsigs from for _ in range(2): self.wait_for_chainlocked_block_all_nodes(self.generate(self.nodes[0], 1, sync_fun=self.no_op)[0]) - assert_equal(softfork_active(self.nodes[1], "mn_rr"), mn_rr_active) tip1_hash = self.nodes[1].getbestblockhash() self.isolate_node(1) @@ -339,10 +332,10 @@ def test_bestCLHeightDiff(self, mn_rr_active): mal_block.hashMerkleRoot = mal_block.calc_merkle_root() mal_block.solve() result = self.nodes[1].submitblock(mal_block.serialize().hex()) - assert_equal(result, "bad-cbtx-older-clsig" if mn_rr_active else "bad-cbtx-invalid-clsig") + assert_equal(result, "bad-cbtx-older-clsig") assert_equal(self.nodes[1].getbestblockhash(), tip1_hash) - # Update the sig too and it should pass now when mn_rr is not active and fail otherwise + # Update the sig too and it should fail old_blockhash = self.nodes[1].getblockhash(self.nodes[1].getblockcount() - 1) cbtx.bestCLSignature = bytes.fromhex(self.nodes[1].getblock(old_blockhash, 2)["tx"][0]["cbTx"]["bestCLSignature"]) mal_block.vtx[0].vExtraPayload = cbtx.serialize() @@ -350,12 +343,8 @@ def test_bestCLHeightDiff(self, mn_rr_active): mal_block.hashMerkleRoot = mal_block.calc_merkle_root() mal_block.solve() result = self.nodes[1].submitblock(mal_block.serialize().hex()) - if mn_rr_active: - assert_equal(result, "bad-cbtx-older-clsig") - assert_equal(self.nodes[1].getbestblockhash(), tip1_hash) - else: - assert_equal(result, None) - assert not self.nodes[1].getbestblockhash() == tip1_hash + assert_equal(result, "bad-cbtx-older-clsig") + assert_equal(self.nodes[1].getbestblockhash(), tip1_hash) self.reconnect_isolated_node(1, 0) self.sync_all() From 9fed4564f4aa979560a9446a40545bdb3ed85227 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Wed, 20 Nov 2024 22:08:56 -0600 Subject: [PATCH 06/24] Merge #6407: fix: dataraces 5078baea2b1ca3684ea582eda6ac4cea0924ce43 fix(test): wait for chainlock before mining a block we expect to include said chainlock (pasta) f39c1e6f4c2f7595a0d8b369f9edf6bb0132c6ce fix: guard m_can_tx_relay behind m_tx_relay_mutex; make it private; add additional annotations (pasta) Pull request description: ## Issue being fixed or feature implemented See each commit; fixes two bugs, both discovered while running feature_llmq_chainlocks.py with tsan / debug. one a datarace in net_processing.cpp and the other in the test I was using to ensure this fix was correct, feature_llmq_chainlocks ## What was done? ### net_processing.cpp You can see the datarace here: https://gist.github.com/PastaPastaPasta/c966a9f805758b34524085e3d52ea7f8 We simply guard it with an existing mutex that is always locked in close proximity. ### feature_llmq_chainlocks.py Most of the time, while generating the cycle quorum, there is sufficient time to generate a chainlock; however, this is racey, and I've observed locally where the block gets generated before a chainlock is present and as such `test_coinbase_best_cl` fails. We should instead wait for the chainlock first, and then mine the block. This was we can ensure the mined block will include that chainlock. This was observed locally maybe 1/10 times or so ## How Has This Been Tested? ran feature_llmq_chainlocks.py ~40 times locally with tsan / debug ## Breaking Changes None ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: kwvg: utACK 5078baea2b1ca3684ea582eda6ac4cea0924ce43 knst: utACK 5078baea2b1ca3684ea582eda6ac4cea0924ce43 UdjinM6: utACK 5078baea2b1ca3684ea582eda6ac4cea0924ce43 Tree-SHA512: b346fc60809df72d0161f625073dce7062bd2641d35e4f80160fac9afeec63707de552e2856940ac2604875908ae3b98a225d352de36bfbfc6ee3fbe1e1538ff --- src/net_processing.cpp | 16 +++++++++------- test/functional/feature_llmq_chainlocks.py | 7 +++---- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 8676ad337116d..b6f75dfa00155 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -309,21 +309,23 @@ struct Peer { /** * (Bitcoin) Initializes a TxRelay struct for this peer. Can be called at most once for a peer. * (Dash) Enables the flag that allows GetTxRelay() to return m_tx_relay */ - TxRelay* SetTxRelay() + TxRelay* SetTxRelay() LOCKS_EXCLUDED(m_tx_relay_mutex) { + LOCK(m_tx_relay_mutex); Assume(!m_can_tx_relay); m_can_tx_relay = true; - return WITH_LOCK(m_tx_relay_mutex, return m_tx_relay.get()); + return m_tx_relay.get(); }; - TxRelay* GetInvRelay() + TxRelay* GetInvRelay() LOCKS_EXCLUDED(m_tx_relay_mutex) { return WITH_LOCK(m_tx_relay_mutex, return m_tx_relay.get()); } - TxRelay* GetTxRelay() + TxRelay* GetTxRelay() LOCKS_EXCLUDED(m_tx_relay_mutex) { - return m_can_tx_relay ? WITH_LOCK(m_tx_relay_mutex, return m_tx_relay.get()) : nullptr; + LOCK(m_tx_relay_mutex); + return m_can_tx_relay ? m_tx_relay.get() : nullptr; }; /** A vector of addresses to send to the peer, limited to MAX_ADDR_TO_SEND. */ @@ -353,8 +355,6 @@ struct Peer { * This field must correlate with whether m_addr_known has been * initialized.*/ std::atomic_bool m_addr_relay_enabled{false}; - /** Whether a peer can relay transactions */ - bool m_can_tx_relay{false}; /** Whether a getaddr request to this peer is outstanding. */ bool m_getaddr_sent GUARDED_BY(NetEventsInterface::g_msgproc_mutex){false}; /** Guards address sending timers. */ @@ -406,6 +406,8 @@ struct Peer { * (non-transaction relay should use GetInvRelay(), which will provide * unconditional access) */ std::unique_ptr<TxRelay> m_tx_relay GUARDED_BY(m_tx_relay_mutex){std::make_unique<TxRelay>()}; + /** Whether a peer can relay transactions */ + bool m_can_tx_relay GUARDED_BY(m_tx_relay_mutex) {false}; }; using PeerRef = std::shared_ptr<Peer>; diff --git a/test/functional/feature_llmq_chainlocks.py b/test/functional/feature_llmq_chainlocks.py index 1714393939b00..599d350c7508b 100755 --- a/test/functional/feature_llmq_chainlocks.py +++ b/test/functional/feature_llmq_chainlocks.py @@ -56,11 +56,10 @@ def run_test(self): self.move_to_next_cycle() self.log.info("Cycle H+2C height:" + str(self.nodes[0].getblockcount())) self.mine_cycle_quorum(llmq_type_name="llmq_test_dip0024", llmq_type=103) - - - self.log.info("Mine single block, wait for chainlock") - self.generate(self.nodes[0], 1, sync_fun=self.no_op) self.wait_for_chainlocked_block_all_nodes(self.nodes[0].getbestblockhash()) + + self.log.info("Mine single block, ensure it includes latest chainlock") + self.generate(self.nodes[0], 1, sync_fun=self.sync_blocks) self.test_coinbase_best_cl(self.nodes[0]) # ChainLock locks all the blocks below it so nocl_block_hash should be locked too From 18f636f9a4c50981a80c4f2498a7f874a44d6eba Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 26 Nov 2024 08:25:57 -0600 Subject: [PATCH 07/24] Merge #6426: fix: respect SENDDSQUEUE message, move DSQ relay into net processing / peerman dafa7363a38f6ebe445461ff7d8a707f867bbc82 fix: respect SENDDSQUEUE message, move DSQ relay into net processing / peerman (pasta) Pull request description: ## Issue being fixed or feature implemented in #6148, I broke the functionality where a peer must opt in / opt out of DSQUEUE messages. This was mostly ok, and not immediately detected, as with this bug, simply everyone would receive DSQ messages over inventory (or classically, old proto versions were not affected by this bug). But this still would result in quite a bit of wasted bandwidth for peers which may not care about DSQ at all. ## What was done? This commit should restore the prior functionality, where a node should send the SENDDSQUEUE message if they wish to receive DSQs. Once they've sent that, depending on their protocol version, they will either have the messages pushed to them as available, or on modern protocols, they will thereafter receive DSQs over the inventory system. NOTE: I also refactor the code in this commit, moving some network proccessing into.... wait for it... net_processing.cpp! This allowed us to remove some dependencies in coinjoin.h. DSQ messages are now relayed to peers by calling peer_manager.RelayDSQ ## How Has This Been Tested? I have not yet mixed on testnet with this; we should include it in rc.2 and test ## Breaking Changes Slightly breaking for v22.0.x (so rc.1), as they in theory could be relying on this new logic of always receiving the DSQ inv. But I don't think anyone besides core is using this new protocol. ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone ACKs for top commit: UdjinM6: light ACK dafa7363a38f6ebe445461ff7d8a707f867bbc82 kwvg: utACK dafa7363a38f6ebe445461ff7d8a707f867bbc82 Tree-SHA512: 18f9b0dfe05cde19db451653db9bb9a00352efd1bc37adffd83f74958010475f2782b1111b1c0d2dd967e7a851c3c4795fa55033b4bd0cc810aa293e754ce314 --- src/coinjoin/client.cpp | 2 +- src/coinjoin/client.h | 1 + src/coinjoin/coinjoin.cpp | 14 ------------ src/coinjoin/coinjoin.h | 4 ---- src/coinjoin/server.cpp | 6 ++--- src/coinjoin/server.h | 1 + src/net_processing.cpp | 46 ++++++++++++++++++++++++++++++++++++++- src/net_processing.h | 4 ++++ 8 files changed, 55 insertions(+), 23 deletions(-) diff --git a/src/coinjoin/client.cpp b/src/coinjoin/client.cpp index 4c15f98f4a518..9804b1be5bee9 100644 --- a/src/coinjoin/client.cpp +++ b/src/coinjoin/client.cpp @@ -132,7 +132,7 @@ PeerMsgRet CCoinJoinClientQueueManager::ProcessDSQueue(const CNode& peer, CDataS WITH_LOCK(cs_vecqueue, vecCoinJoinQueue.push_back(dsq)); } } // cs_ProcessDSQueue - dsq.Relay(connman, *peerman); + peerman->RelayDSQ(dsq); return {}; } diff --git a/src/coinjoin/client.h b/src/coinjoin/client.h index c4e22b71230ce..17239b9a71b7d 100644 --- a/src/coinjoin/client.h +++ b/src/coinjoin/client.h @@ -28,6 +28,7 @@ class CMasternodeSync; class CNode; class CoinJoinWalletManager; class CTxMemPool; +class PeerManager; class UniValue; diff --git a/src/coinjoin/coinjoin.cpp b/src/coinjoin/coinjoin.cpp index 338b4cf054c42..74fc644a70911 100644 --- a/src/coinjoin/coinjoin.cpp +++ b/src/coinjoin/coinjoin.cpp @@ -14,7 +14,6 @@ #include <masternode/node.h> #include <masternode/sync.h> #include <messagesigner.h> -#include <net_processing.h> #include <netmessagemaker.h> #include <txmempool.h> #include <util/moneystr.h> @@ -71,19 +70,6 @@ bool CCoinJoinQueue::CheckSignature(const CBLSPublicKey& blsPubKey) const return true; } -bool CCoinJoinQueue::Relay(CConnman& connman, PeerManager& peerman) -{ - CInv inv(MSG_DSQ, GetHash()); - peerman.RelayInv(inv, DSQ_INV_VERSION); - connman.ForEachNode([&connman, this](CNode* pnode) { - CNetMsgMaker msgMaker(pnode->GetCommonVersion()); - if (pnode->fSendDSQueue && pnode->nVersion < DSQ_INV_VERSION) { - connman.PushMessage(pnode, msgMaker.Make(NetMsgType::DSQUEUE, (*this))); - } - }); - return true; -} - bool CCoinJoinQueue::IsTimeOutOfBounds(int64_t current_time) const { return current_time - nTime > COINJOIN_QUEUE_TIMEOUT || diff --git a/src/coinjoin/coinjoin.h b/src/coinjoin/coinjoin.h index 5680b8abc20fc..68e2f40c05549 100644 --- a/src/coinjoin/coinjoin.h +++ b/src/coinjoin/coinjoin.h @@ -24,14 +24,12 @@ class CActiveMasternodeManager; class CChainState; -class CConnman; class CBLSPublicKey; class CBlockIndex; class ChainstateManager; class CMasternodeSync; class CTxMemPool; class TxValidationState; -class PeerManager; namespace llmq { class CChainLocksHandler; @@ -221,8 +219,6 @@ class CCoinJoinQueue /// Check if we have a valid Masternode address [[nodiscard]] bool CheckSignature(const CBLSPublicKey& blsPubKey) const; - bool Relay(CConnman& connman, PeerManager& peerman); - /// Check if a queue is too old or too far into the future [[nodiscard]] bool IsTimeOutOfBounds(int64_t current_time = GetAdjustedTime()) const; diff --git a/src/coinjoin/server.cpp b/src/coinjoin/server.cpp index 856cf5fc7ed5e..bb65990dd9006 100644 --- a/src/coinjoin/server.cpp +++ b/src/coinjoin/server.cpp @@ -186,7 +186,7 @@ PeerMsgRet CCoinJoinServer::ProcessDSQUEUE(const CNode& peer, CDataStream& vRecv TRY_LOCK(cs_vecqueue, lockRecv); if (!lockRecv) return {}; vecCoinJoinQueue.push_back(dsq); - dsq.Relay(connman, *m_peerman); + m_peerman->RelayDSQ(dsq); } return {}; } @@ -519,7 +519,7 @@ void CCoinJoinServer::CheckForCompleteQueue() LogPrint(BCLog::COINJOIN, "CCoinJoinServer::CheckForCompleteQueue -- queue is ready, signing and relaying (%s) " /* Continued */ "with %d participants\n", dsq.ToString(), vecSessionCollaterals.size()); dsq.Sign(*m_mn_activeman); - dsq.Relay(connman, *m_peerman); + m_peerman->RelayDSQ(dsq); } } @@ -732,7 +732,7 @@ bool CCoinJoinServer::CreateNewSession(const CCoinJoinAccept& dsa, PoolMessage& GetAdjustedTime(), false); LogPrint(BCLog::COINJOIN, "CCoinJoinServer::CreateNewSession -- signing and relaying new queue: %s\n", dsq.ToString()); dsq.Sign(*m_mn_activeman); - dsq.Relay(connman, *m_peerman); + m_peerman->RelayDSQ(dsq); LOCK(cs_vecqueue); vecCoinJoinQueue.push_back(dsq); } diff --git a/src/coinjoin/server.h b/src/coinjoin/server.h index e7f3a2340b640..c33e98fbf8e70 100644 --- a/src/coinjoin/server.h +++ b/src/coinjoin/server.h @@ -11,6 +11,7 @@ class CActiveMasternodeManager; class CCoinJoinServer; +class CConnman; class CDataStream; class CDeterministicMNManager; class CDSTXManager; diff --git a/src/net_processing.cpp b/src/net_processing.cpp index b6f75dfa00155..0997044e504d2 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -366,6 +366,15 @@ struct Peer { /** Whether the peer has signaled support for receiving ADDRv2 (BIP155) * messages, indicating a preference to receive ADDRv2 instead of ADDR ones. */ std::atomic_bool m_wants_addrv2{false}; + + enum class WantsDSQ { + NONE, // Peer doesn't want DSQs + INV, // Peer will be notified of DSQs over Inventory System (see: DSQ_INV_VERSION) + ALL, // Peer will be notified of all DSQs, by simply sending them the DSQ + }; + + std::atomic<WantsDSQ> m_wants_dsq{WantsDSQ::NONE}; + /** Whether this peer has already sent us a getaddr message. */ bool m_getaddr_recvd GUARDED_BY(NetEventsInterface::g_msgproc_mutex){false}; /** Number of addresses that can be processed from this peer. Start at 1 to @@ -607,6 +616,7 @@ class PeerManagerImpl final : public PeerManager void RelayInvFiltered(CInv &inv, const CTransaction &relatedTx, const int minProtoVersion) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex); void RelayInvFiltered(CInv &inv, const uint256 &relatedTxHash, const int minProtoVersion) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex); void RelayTransaction(const uint256& txid) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex); + void RelayDSQ(const CCoinJoinQueue& queue) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex); void SetBestHeight(int height) override { m_best_height = height; }; void Misbehaving(const NodeId pnode, const int howmuch, const std::string& message = "") override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex); void ProcessMessage(CNode& pfrom, const std::string& msg_type, CDataStream& vRecv, @@ -2276,6 +2286,34 @@ void PeerManagerImpl::RelayInv(CInv &inv, const int minProtoVersion) }); } +void PeerManagerImpl::RelayDSQ(const CCoinJoinQueue& queue) +{ + CInv inv{MSG_DSQ, queue.GetHash()}; + std::vector<NodeId> nodes_send_all; + { + LOCK(m_peer_mutex); + for (const auto& [nodeid, peer] : m_peer_map) { + switch (peer->m_wants_dsq) { + case Peer::WantsDSQ::NONE: + break; + case Peer::WantsDSQ::INV: + PushInv(*peer, inv); + break; + case Peer::WantsDSQ::ALL: + nodes_send_all.push_back(nodeid); + break; + } + } + } + for (auto nodeId : nodes_send_all) { + m_connman.ForNode(nodeId, [&](CNode* pnode) -> bool { + CNetMsgMaker msgMaker(pnode->GetCommonVersion()); + m_connman.PushMessage(pnode, msgMaker.Make(NetMsgType::DSQUEUE, queue)); + return true; + }); + } +} + void PeerManagerImpl::RelayInvFiltered(CInv &inv, const CTransaction& relatedTx, const int minProtoVersion) { // TODO: Migrate to iteration through m_peer_map @@ -3940,7 +3978,13 @@ void PeerManagerImpl::ProcessMessage( { bool b; vRecv >> b; - pfrom.fSendDSQueue = b; + if (!b) { + peer->m_wants_dsq = Peer::WantsDSQ::NONE; + } else if (pfrom.GetCommonVersion() < DSQ_INV_VERSION) { + peer->m_wants_dsq = Peer::WantsDSQ::ALL; + } else { + peer->m_wants_dsq = Peer::WantsDSQ::INV; + } return; } diff --git a/src/net_processing.h b/src/net_processing.h index a857201516053..58925a6db7218 100644 --- a/src/net_processing.h +++ b/src/net_processing.h @@ -16,6 +16,7 @@ class CActiveMasternodeManager; class AddrMan; class CTxMemPool; +class CCoinJoinQueue; class CDeterministicMNManager; class CMasternodeMetaMan; class CMasternodeSync; @@ -93,6 +94,9 @@ class PeerManager : public CValidationInterface, public NetEventsInterface /** Broadcast inventory message to a specific peer. */ virtual void PushInventory(NodeId nodeid, const CInv& inv) = 0; + /** Relay DSQ based on peer preference */ + virtual void RelayDSQ(const CCoinJoinQueue& queue) = 0; + /** Relay inventories to all peers */ virtual void RelayInv(CInv &inv, const int minProtoVersion = MIN_PEER_PROTO_VERSION) = 0; virtual void RelayInvFiltered(CInv &inv, const CTransaction &relatedTx, From 3bbcd3d4f8b54af18ef8edc3ec4c699a44d75ab2 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 26 Nov 2024 08:26:58 -0600 Subject: [PATCH 08/24] Merge #6393: docs: mention building for some HOSTs only in `release-process.md` 87c31ad67a92f738e317f81ef9873a8fb80028f7 Update doc/release-process.md (UdjinM6) 55d74630b43058b51f22d3ac9da6f3d1295416a8 docs: mention building for some HOSTs only in `release-process.md` (UdjinM6) Pull request description: ## Issue being fixed or feature implemented https://github.com/dashpay/guix.sigs/pull/73 #6390 follow-up ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ Top commit has no ACKs. Tree-SHA512: b4a2cadf5899a8aea6612b4ff9c0e9f9c530a9e2344eb090967fbcf9a2ab219aff02f11f86434e4082f84c401d578cf2d033b6838c94705f532beca4ab604986 --- doc/release-process.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/release-process.md b/doc/release-process.md index 221da92d0d518..6089e43eab148 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -97,6 +97,8 @@ Follow the relevant Guix README.md sections: - [Building](/contrib/guix/README.md#building) - [Attesting to build outputs](/contrib/guix/README.md#attesting-to-build-outputs) +_Note: we ship releases for only some supported HOSTs so consider providing limited `HOSTS` variable or run `./contrib/containers/guix/scripts/guix-start` instead of `./contrib/guix/guix-build` when building binaries for quicker builds that exclude the supported but not shipped HOSTs_ + ### Verify other builders' signatures to your own. (Optional) Add other builders keys to your gpg keyring, and/or refresh keys: See `../dash/contrib/builder-keys/README.md`. From 02ad523a22fff8e475a80ed286d5bbeb893a143d Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Thu, 21 Nov 2024 14:29:19 -0600 Subject: [PATCH 09/24] Merge #6411: chore: update nMinimumChainWork, defaultAssumeValid, checkpointData, chainTxData for mainnet and testnet 31243ca313d52dd327d41ba1e7102ed4a6ee9b9b chore: update nMinimumChainWork, defaultAssumeValid, checkpointData, chainTxData for mainnet and testnet (pasta) Pull request description: ## Issue being fixed or feature implemented Bump chainparams in prep for v22 ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: UdjinM6: utACK 31243ca313d52dd327d41ba1e7102ed4a6ee9b9b Tree-SHA512: 6a01bbbaefb69437e053340b968e0ce68e2bd9e5e5fd2900864d88ffc21c5cd3f9c2a50d8f5b19f16515cd4c62a4a8fc2d981dd6d0456e86ef96f40e350e786a --- src/chainparams.cpp | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index eeab97c2c479f..616f4e650f42c 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -219,10 +219,10 @@ class CMainParams : public CChainParams { consensus.vDeployments[Consensus::DEPLOYMENT_WITHDRAWALS].useEHF = true; // The best chain should have at least this much work. - consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000988117deadb0db9cd5b8"); // 2109672 + consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000009eb0f1d7fefc8750aebb"); // 2175051 // By default assume that the signatures in ancestors of this block are valid. - consensus.defaultAssumeValid = uint256S("0x000000000000001889bd33ef019065e250d32bd46911f4003d3fdd8128b5358d"); // 2109672 + consensus.defaultAssumeValid = uint256S("0x000000000000001cf26547602d982dcaa909231bbcd1e70c0eb3c65de25473ba"); // 2175051 /** * The message start string is designed to be unlikely to occur in normal data. @@ -332,6 +332,7 @@ class CMainParams : public CChainParams { {1969000, uint256S("0x000000000000000c8b7a3bdcd8b9f516462122314529c8342244c685a4c899bf")}, {2029000, uint256S("0x0000000000000020d5e38b6aef5bc8e430029444d7977b46f710c7d281ef1281")}, {2109672, uint256S("0x000000000000001889bd33ef019065e250d32bd46911f4003d3fdd8128b5358d")}, + {2175051, uint256S("0x000000000000001cf26547602d982dcaa909231bbcd1e70c0eb3c65de25473ba")}, } }; @@ -339,12 +340,12 @@ class CMainParams : public CChainParams { // TODO to be specified in a future patch. }; - // getchaintxstats 17280 000000000000001889bd33ef019065e250d32bd46911f4003d3fdd8128b5358d + // getchaintxstats 17280 000000000000001cf26547602d982dcaa909231bbcd1e70c0eb3c65de25473ba chainTxData = ChainTxData{ - 1721769714, // * UNIX timestamp of last known number of transactions (Block 1969000) - 53767892, // * total number of transactions between genesis and that timestamp + 1732068694, // * UNIX timestamp of last known number of transactions (Block 1969000) + 55191134, // * total number of transactions between genesis and that timestamp // (the tx=... number in the ChainStateFlushed debug.log lines) - 0.1580795981751139, // * estimated number of transactions per second after that timestamp + 0.1528060985790164, // * estimated number of transactions per second after that timestamp }; } }; @@ -416,10 +417,10 @@ class CTestNetParams : public CChainParams { consensus.vDeployments[Consensus::DEPLOYMENT_WITHDRAWALS].useEHF = true; // The best chain should have at least this much work. - consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000031779704a0f54b4"); // 1069875 + consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000031ee38bc0876cef"); // 1143608 // By default assume that the signatures in ancestors of this block are valid. - consensus.defaultAssumeValid = uint256S("0x00000034bfeb926662ba547c0b8dd4ba8cbb6e0c581f4e7d1bddce8f9ca3a608"); // 1069875 + consensus.defaultAssumeValid = uint256S("0x000000eef20eb0062abd4e799967e98bdebb165dd1c567ab4118c1c86c6e948f"); // 1143608 pchMessageStart[0] = 0xce; pchMessageStart[1] = 0xe2; @@ -505,6 +506,7 @@ class CTestNetParams : public CChainParams { {905100, uint256S("0x0000020c5e0f86f385cbf8e90210de9a9fd63633f01433bf47a6b3227a2851fd")}, {960000, uint256S("0x0000000386cf5061ea16404c66deb83eb67892fa4f79b9e58e5eaab097ec2bd6")}, {1069875, uint256S("0x00000034bfeb926662ba547c0b8dd4ba8cbb6e0c581f4e7d1bddce8f9ca3a608")}, + {1143608, uint256S("0x000000eef20eb0062abd4e799967e98bdebb165dd1c567ab4118c1c86c6e948f")}, } }; @@ -512,12 +514,12 @@ class CTestNetParams : public CChainParams { // TODO to be specified in a future patch. }; - // getchaintxstats 17280 00000034bfeb926662ba547c0b8dd4ba8cbb6e0c581f4e7d1bddce8f9ca3a608 + // getchaintxstats 17280 000000eef20eb0062abd4e799967e98bdebb165dd1c567ab4118c1c86c6e948f chainTxData = ChainTxData{ - 1721770009, // * UNIX timestamp of last known number of transactions (Block 905100) - 6548039, // * total number of transactions between genesis and that timestamp + 1732068833, // * UNIX timestamp of last known number of transactions (Block 905100) + 6701197, // * total number of transactions between genesis and that timestamp // (the tx=... number in the ChainStateFlushed debug.log lines) - 0.0152605485140752, // * estimated number of transactions per second after that timestamp + 0.01528131540752872, // * estimated number of transactions per second after that timestamp }; } }; From 8b88ff7ed6085687e6b3a2e4248ff67663d445c0 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Wed, 20 Nov 2024 13:59:00 -0600 Subject: [PATCH 10/24] Merge #6414: chore: bump seeds for v22 5741d5da28f9fb74256f3c636a3afcd87118bc8e chore: update seeds (Kittywhiskers Van Gogh) 2d732fc66e88ba6fb0af4c1c9c601f80a015b8a4 chore: drop defunct onion seeds, add new existing onion hosts as seeds (pasta) Pull request description: ## Issue being fixed or feature implemented Update onion seeds for upcoming version ## What was done? Update onion seeds to reflect latest status ## How Has This Been Tested? As of today, all of these are able to be connected to on port 9999; I've not actually connected to all of them and verified they're on latest core or something like that; but their addresses my core knows about, and are able to be trivially connected to ## Breaking Changes ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: kwvg: utACK 5741d5da28f9fb74256f3c636a3afcd87118bc8e UdjinM6: utACK 5741d5da28f9fb74256f3c636a3afcd87118bc8e Tree-SHA512: 541bcc510b2ebf6de08ac91f2b7e5b1c910536dca9bab0b38930d6e5cfa1cd05e8c014ba4c74c14c43ed211cda3275fffb5baaf1489bbd1221567130d804b0ec --- contrib/seeds/nodes_main.txt | 258 ++++++++++++++++++++++------------ contrib/seeds/onion_seeds.txt | 43 ++++-- src/chainparamsseeds.h | 258 ++++++++++++++++++++++------------ 3 files changed, 368 insertions(+), 191 deletions(-) diff --git a/contrib/seeds/nodes_main.txt b/contrib/seeds/nodes_main.txt index 0078a96b726dc..1ec14942c37a9 100644 --- a/contrib/seeds/nodes_main.txt +++ b/contrib/seeds/nodes_main.txt @@ -1,170 +1,248 @@ -zmkohnwhp67nxtaspaudwvbac3r3oab4j36kxoo7ofk636wcd2bflxad.onion:9999 -yvcukkjk6vsjliszrlhh3f4qal76w6n2hoi4hl4edp6b5zyifhcixoyd.onion:9999 -v7ttoiov7rc5aut64nfomyfwxt424ihufwvr5ilf7moeg3fwibjpjcqd.onion:9999 +xmbwpdsrsn2gdamvofesyy5zrgqcswsoorrh25jx7qy4w2gftttga7ad.onion:9999 +xjn2wouhpr2jrqtqa3itkccjxfvrpvjgehgkrqltggnei5wl2535eiyd.onion:9999 +wzf6u7feqa65kyd5ooyyvw3rxozurmuzgzr4r3qrigne3xlj5tazwnyd.onion:9999 +wtby3fkid4eqaknfvmakg6vofvpda4ukhuec7k52no76n6szxcvf7pid.onion:9999 +uf3otvrjnj7grwm7skwslf6ltibo24hkolrwuyxyx7yzlalwnupw4bid.onion:9999 tuzjyti6guw32smcxgswmt2fkjlkyxnt47rtspvmqerbalzdeyguczyd.onion:9999 snu2xaql3crh2b4t6g2wxemgrpzmaxfxla4tua63bnp2phhxwr6hzzid.onion:9999 +rwl447roxllklmqkmbp5aq2bxj4vwzomx6ellodoguc5vegnrr6v3yyd.onion:9999 qkcdtz6ejiycge6i3g6uyf6m4ivby7t77syt7yezlwwhtmbsk37u74yd.onion:9999 +qbqa37m7uiie63723muhzgl4swqjvs6oddzhtzw5ke32t47am6lq5mad.onion:9999 +qaocy2qaktafiuzyd3i4apyukvr2hr6fwjet625cqwbwq5yr4qqocbid.onion:9999 pcabrbxdlxgybiyykuiccajsfzazmigvc7cemqbzpqw5du27iqaihmyd.onion:9999 -nl7j4rwrb2yemyn5meu64jfbfj5pkeuyo73afihtjdytsh6fpiibkrad.onion:9999 -njmniixuv2ji4an6lfqol6d3bqbijt7cko6wpfgc2wyxe2jg5htwoiad.onion:9999 -mn3zcamezyz5fryftzvmenv4vtbv5ki2eodxugq5gjwka7fft7po4uid.onion:9999 -l2ae5ngumxbcoqwpaxquxq7p6fwtvgfqbokrm7vqiaho4rkijd4ssmyd.onion:9999 +p2d6rg6vh5f3mjrb75l2ppxtbbpjbf45vteyp3c4u3nxfonwpezaq4ad.onion:9999 +mj5zq3oeodlwselk5bnx5lhiuhwuuz6xgmijx4kbnpnhamkf5t7aqcqd.onion:9999 +lqg6nfbek54fbsgdycq6rej7edqcg4ps6mqmvsqr645iecbt7cz7e5qd.onion:9999 k6bzqtkhtzyziethin3kkys342rlzcmqkrs5ibashqclcu23ehuz6oqd.onion:9999 +k5gdngvamlwymwh2an6qlazpgvlhkrukaso6nv56d35pentpfhimvayd.onion:9999 k532fqvgzqotj6epfw3rfc377elrj3td47ztad2tkn6vwnw6nhxacrqd.onion:9999 +jqssjynvlqwfiordnux2vqt6glnr3fypypfwasrizbpwhbj2lvtuzqqd.onion:9999 +jjjhwysk4t3i7nrjyxyrf4yjjqmole4doowga7nnkyjih3hmi7q2jsad.onion:9999 +iy6wzfp65f5peehquqchqperx5r4qsybfmvvdjhe2ak3ig6pt3a452yd.onion:9999 itkatc2gpfkuvbmjflxgranktjrsokc7wcunu25mq7ptqms7fwex6jyd.onion:9999 -iekgzhetngwhhf7rfxglb3mdwajtoikpcvg3e3etpx4ylku6chr6jrqd.onion:9999 +iddbcb6xzrbrjpzwbozhe3pztgrhkwjo76o4wkrpi43p5jya6jv6m7qd.onion:9999 i75yxbzhzkk6q55oig6xeidcexswpgcbquhjuxkkwehy6rvjq6sjxmad.onion:9999 +hu43stbffzpgfixmzgx4ae2sp65nrjui6kagzrhkpqhmgsk2kbnfs6id.onion:9999 +hsq4dkpmgc3yeirpiufopkonabxq62kl43vkzry65vhp7ctlyl3ngayd.onion:9999 +h4rycn3lgltahxvfxte6rzuyu3ooa3f3a5pcgzhkvh5baqei7s3w6yid.onion:9999 h2cpqmjd3rqehro52stehi4vnyofxymfqdsexchhf7dpbbkoqkmjjiyd.onion:9999 +ggyyhg4yr2cv4cbjedcs43ag3vh3qvynaptmlg6yzono5hhgjqif37yd.onion:9999 gbg2wd4uwc5k7w5j3w46zre6r5ioezulgjriketxv4qekybzg2zwdnid.onion:9999 -g6qaacqm3z6xup6kmprb2uvb5wtv3a4isflh4aege2yfgpuvaozfnkad.onion:9999 +g62ldh5nedukfk5hvokn6ztbhmql6q7qegrq6dbzyvzir72xerqba6yd.onion:9999 +fzo6z4dcjtfg5eg7absrzsskznto5ivgsqty23hmcvf6bjeg4mq2m6yd.onion:9999 +etiufki5csbodchyyoqv4bv4qm2xzaljidnst4khl632xkdrsiihulad.onion:9999 eee7cdynbju7pax44vm3bo7aazi72qbqgwktpvk37hoxg7jkqez2kcad.onion:9999 +dw4u6agw6gktz7ykmgxn7m3fmgnnybhhlnish3lvnuylcb5wcwzutdqd.onion:9999 cmhr5r3lqhy7ic2ebeil66ftcz5u62zq5qhbfdz53l6sqxljh7zxntyd.onion:9999 +c5qhh5xrwnonmtniag5r7bftfweniwt2f6fdixq37c7gnunbjzgx26qd.onion:9999 buo3et3xvzdjqkpx6iscjz4oexyurhpbpl3is46d653kfitl2gdzm6yd.onion:9999 +ayhwwpjq4rg3bslbtt7yejqyhucyaqsbb7tn45blh4r7xj62wfonryqd.onion:9999 5v5lgddolcidtt2qmhmvyka2ewht4mkmmj73tfwuimlckgmqb5lthtid.onion:9999 -467ho3bhmndzbktbqd3nxf64isib54umiis5xc5n2xnt35u2ofhs5gid.onion:9999 -2h6yzlqtogqkaj4yhrofsccntpjyafpjxwutti65dkpqliuzah3is7ad.onion:9999 +5gnyyuxpkwsqv6sm2ee2k6uaiuq5ayaipjm33n5pwe22uit37yozrcid.onion:9999 +542grzvty3cnbtzc3sjatubkmnhw22x5gfvnj2lromdparwlc4j7o4qd.onion:9999 +4da4s6fvz2wt672kxxqgra4iurots4jnzzmeplbdt7abix655fjn23qd.onion:9999 +3uvcjymiixi6n6m2p6fsgyjxkx2ceaesd7eopi3p7jn364i5z646koid.onion:9999 +3cova3snmiydrdaqrszj5krnujpwgkueh2kjodun4hvixk3y5l5zmgid.onion:9999 +2br37z5ilg3i3rawwkznmh6lhczboql5zdrfgmkaxns4tpfrxmu6s5yd.onion:9999 216.250.97.52:9999 216.238.75.46:9999 216.230.232.125:9999 -216.189.154.8:9999 -216.189.154.7:9999 -213.168.249.174:9999 +213.218.209.34:9999 +213.199.34.250:9999 +213.171.15.125:9999 +213.159.77.221:9999 +212.52.0.210:9999 212.24.110.128:9999 -212.24.107.223:9999 +209.145.48.154:9999 +209.141.36.206:9999 +209.58.164.42:9999 +208.87.102.91:9999 207.244.247.40:9999 -206.189.132.224:9999 -206.168.213.108:9999 -206.168.212.226:9999 -206.168.212.178:9999 -206.168.212.144:9999 -194.158.71.228:9999 +202.5.16.33:9999 +198.7.115.48:9999 +195.181.211.64:9999 +195.98.95.210:9999 194.135.81.214:9999 -193.164.149.50:9999 -193.31.30.55:9999 -188.208.196.183:9999 +194.5.157.214:9999 +192.169.6.87:9999 +188.127.237.243:9999 188.127.230.40:9999 -188.68.223.94:9999 +188.40.178.67:9999 185.243.115.219:9999 +185.228.83.156:9999 +185.217.127.139:9999 185.213.24.34:9999 +185.198.234.54:9999 +185.198.234.33:9999 +185.198.234.25:9999 +185.198.234.17:9999 +185.185.40.171:9999 +185.185.40.104:9999 +185.166.217.154:9999 185.165.171.117:9999 185.164.163.218:9999 185.164.163.85:9999 -185.135.80.200:9999 +185.158.107.124:9999 +185.155.99.34:9999 +185.142.212.144:9999 +185.112.249.49:9999 185.87.149.61:9999 178.208.87.226:9999 178.208.87.213:9999 -178.157.91.179:9999 -178.157.91.176:9999 -178.157.91.126:9999 +178.159.2.12:9999 +178.157.91.184:9999 +178.157.91.178:9999 +178.157.91.177:9999 178.63.121.129:9999 -176.126.127.16:9999 -176.126.127.15:9999 -174.34.233.207:9999 -174.34.233.206:9999 -174.34.233.205:9999 -174.34.233.202:9999 -173.249.21.122:9999 +176.102.65.145:9999 +174.34.233.212:9999 +174.34.233.211:9999 +174.34.233.209:9999 +174.34.233.204:9999 +172.104.145.166:9999 172.104.90.249:9999 +170.75.167.244:9999 +170.75.162.212:9999 168.119.80.4:9999 167.88.169.16:9999 +167.88.165.175:9999 165.22.234.135:9999 -159.89.124.102:9999 -155.133.23.221:9999 +163.172.66.41:9999 +163.172.20.210:9999 +163.172.20.209:9999 +163.172.20.205:9999 +162.250.191.31:9999 +162.246.17.248:9999 +159.75.121.163:9999 +157.173.202.14:9999 +157.66.81.162:9999 +157.10.199.82:9999 +157.10.199.79:9999 +157.10.199.77:9999 +154.127.57.63:9999 150.158.48.6:9999 -145.239.20.176:9999 -144.91.127.166:9999 -142.202.205.95:9999 -139.59.100.103:9999 +147.45.183.128:9999 +147.45.103.99:9999 +146.190.230.104:9999 +146.103.48.209:9999 +146.103.48.203:9999 +146.59.45.235:9999 +139.162.131.197:9999 +135.181.53.130:9999 +134.255.182.186:9999 133.18.228.84:9999 130.162.233.186:9999 +130.61.120.252:9999 123.193.64.166:9999 -109.235.70.100:9999 -109.235.69.170:9999 -109.235.65.226:9999 -109.235.65.95:9999 +109.235.69.82:9999 +109.173.240.233:9999 +107.189.3.74:9999 +107.170.254.160:9999 106.55.9.22:9999 -104.238.35.116:9999 -104.200.67.251:9999 +104.225.159.232:9999 104.200.24.196:9999 -103.160.95.219:9999 95.211.196.46:9999 +95.211.196.34:9999 95.211.196.32:9999 95.211.196.8:9999 -95.183.53.44:9999 95.183.51.141:9999 +95.171.21.131:9999 +95.169.181.71:9999 +94.172.109.161:9999 93.21.76.185:9999 +92.63.176.202:9999 +91.234.35.132:9999 +91.222.237.98:9999 +91.199.149.177:9999 89.179.73.96:9999 89.117.19.10:9999 +89.40.13.80:9999 +89.40.10.45:9999 +89.40.8.160:9999 +89.40.0.109:9999 +89.35.131.61:9999 +87.228.24.64:9999 +87.209.245.227:9999 +86.107.168.47:9999 +86.107.168.46:9999 +86.107.168.43:9999 +86.107.168.29:9999 85.215.107.202:9999 -85.209.241.190:9999 -85.209.241.188:9999 +85.209.241.185:9999 +85.209.241.86:9999 85.209.241.71:9999 85.209.241.35:9999 +84.242.179.204:9999 +84.9.50.17:9999 +83.239.99.40:9999 82.211.25.193:9999 82.211.25.105:9999 82.211.21.179:9999 82.211.21.23:9999 82.202.230.83:9999 81.227.250.51:9999 +80.249.147.8:9999 +80.240.132.231:9999 80.209.234.170:9999 78.83.19.0:9999 -77.232.132.89:9999 -77.232.132.4:9999 77.223.99.4:9999 +77.221.148.204:9999 +74.50.90.113:9999 +69.61.107.215:9999 +66.245.196.52:9999 66.244.243.70:9999 66.244.243.69:9999 -58.110.224.166:9999 -54.37.234.121:9999 +52.36.102.91:9999 52.33.9.172:9999 -51.158.243.250:9999 -51.158.169.237:9999 -51.79.160.197:9999 -51.68.155.64:9999 -51.15.117.42:9999 -51.15.96.206:9999 -47.109.109.166:9999 -46.254.241.21:9999 +51.38.142.66:9999 +51.38.142.62:9999 +51.38.142.61:9999 +47.110.184.170:9999 +46.254.241.9:9999 +46.254.241.8:9999 +46.254.241.7:9999 46.254.241.4:9999 46.36.40.242:9999 +46.30.189.251:9999 46.30.189.214:9999 +46.30.189.213:9999 46.30.189.116:9999 -46.4.162.127:9999 +45.153.186.100:9999 45.140.19.201:9999 -45.93.139.117:9999 +45.135.180.79:9999 45.91.94.217:9999 -45.85.117.169:9999 -45.85.117.40:9999 45.83.122.122:9999 -45.79.18.106:9999 45.76.83.91:9999 45.71.159.104:9999 45.71.158.108:9999 45.71.158.58:9999 -45.63.107.90:9999 -45.58.56.221:9999 +45.61.186.121:9999 +45.58.56.79:9999 45.32.159.48:9999 45.11.182.64:9999 -45.8.250.154:9999 44.240.99.214:9999 -37.77.104.166:9999 +43.229.77.46:9999 +43.167.244.109:9999 +43.167.240.90:9999 +43.163.251.51:9999 +43.128.72.114:9999 +38.99.82.230:9999 +38.99.82.21:9999 +38.91.101.92:9999 +38.91.100.202:9999 +38.88.125.51:9999 +38.88.125.50:9999 +37.97.227.21:9999 +35.174.217.98:9999 +34.246.176.25:9999 31.148.99.104:9999 +31.57.190.188:9999 +31.57.190.31:9999 31.10.97.36:9999 -23.163.0.203:9999 -23.163.0.175:9999 -13.251.11.55:9999 -5.252.21.24:9999 -5.189.253.252:9999 -5.189.239.52:9999 -5.189.145.80:9999 -5.181.202.15:9999 +5.255.106.192:9999 5.161.110.79:9999 -5.79.109.243:9999 -5.78.74.118:9999 -5.35.103.111:9999 -5.35.103.74:9999 -5.35.103.64:9999 -5.35.103.58:9999 -5.9.237.34:9999 +5.35.103.26:9999 +5.35.103.25:9999 +5.35.103.19:9999 5.2.73.58:9999 -3.35.224.65:9999 -2.56.213.221:9999 +2.233.120.35:9999 diff --git a/contrib/seeds/onion_seeds.txt b/contrib/seeds/onion_seeds.txt index 6833a1ce27132..6dcd72828b351 100644 --- a/contrib/seeds/onion_seeds.txt +++ b/contrib/seeds/onion_seeds.txt @@ -1,25 +1,46 @@ cmhr5r3lqhy7ic2ebeil66ftcz5u62zq5qhbfdz53l6sqxljh7zxntyd.onion:9999 k532fqvgzqotj6epfw3rfc377elrj3td47ztad2tkn6vwnw6nhxacrqd.onion:9999 -v7ttoiov7rc5aut64nfomyfwxt424ihufwvr5ilf7moeg3fwibjpjcqd.onion:9999 snu2xaql3crh2b4t6g2wxemgrpzmaxfxla4tua63bnp2phhxwr6hzzid.onion:9999 5v5lgddolcidtt2qmhmvyka2ewht4mkmmj73tfwuimlckgmqb5lthtid.onion:9999 -yvcukkjk6vsjliszrlhh3f4qal76w6n2hoi4hl4edp6b5zyifhcixoyd.onion:9999 k6bzqtkhtzyziethin3kkys342rlzcmqkrs5ibashqclcu23ehuz6oqd.onion:9999 -2h6yzlqtogqkaj4yhrofsccntpjyafpjxwutti65dkpqliuzah3is7ad.onion:9999 tuzjyti6guw32smcxgswmt2fkjlkyxnt47rtspvmqerbalzdeyguczyd.onion:9999 -467ho3bhmndzbktbqd3nxf64isib54umiis5xc5n2xnt35u2ofhs5gid.onion:9999 h2cpqmjd3rqehro52stehi4vnyofxymfqdsexchhf7dpbbkoqkmjjiyd.onion:9999 -l2ae5ngumxbcoqwpaxquxq7p6fwtvgfqbokrm7vqiaho4rkijd4ssmyd.onion:9999 eee7cdynbju7pax44vm3bo7aazi72qbqgwktpvk37hoxg7jkqez2kcad.onion:9999 qkcdtz6ejiycge6i3g6uyf6m4ivby7t77syt7yezlwwhtmbsk37u74yd.onion:9999 -g6qaacqm3z6xup6kmprb2uvb5wtv3a4isflh4aege2yfgpuvaozfnkad.onion:9999 buo3et3xvzdjqkpx6iscjz4oexyurhpbpl3is46d653kfitl2gdzm6yd.onion:9999 -iekgzhetngwhhf7rfxglb3mdwajtoikpcvg3e3etpx4ylku6chr6jrqd.onion:9999 -nl7j4rwrb2yemyn5meu64jfbfj5pkeuyo73afihtjdytsh6fpiibkrad.onion:9999 gbg2wd4uwc5k7w5j3w46zre6r5ioezulgjriketxv4qekybzg2zwdnid.onion:9999 pcabrbxdlxgybiyykuiccajsfzazmigvc7cemqbzpqw5du27iqaihmyd.onion:9999 -mn3zcamezyz5fryftzvmenv4vtbv5ki2eodxugq5gjwka7fft7po4uid.onion:9999 itkatc2gpfkuvbmjflxgranktjrsokc7wcunu25mq7ptqms7fwex6jyd.onion:9999 -zmkohnwhp67nxtaspaudwvbac3r3oab4j36kxoo7ofk636wcd2bflxad.onion:9999 -njmniixuv2ji4an6lfqol6d3bqbijt7cko6wpfgc2wyxe2jg5htwoiad.onion:9999 i75yxbzhzkk6q55oig6xeidcexswpgcbquhjuxkkwehy6rvjq6sjxmad.onion:9999 +ggyyhg4yr2cv4cbjedcs43ag3vh3qvynaptmlg6yzono5hhgjqif37yd.onion:9999 +g62ldh5nedukfk5hvokn6ztbhmql6q7qegrq6dbzyvzir72xerqba6yd.onion:9999 +5gnyyuxpkwsqv6sm2ee2k6uaiuq5ayaipjm33n5pwe22uit37yozrcid.onion:9999 +xmbwpdsrsn2gdamvofesyy5zrgqcswsoorrh25jx7qy4w2gftttga7ad.onion:9999 +qaocy2qaktafiuzyd3i4apyukvr2hr6fwjet625cqwbwq5yr4qqocbid.onion:9999 +2br37z5ilg3i3rawwkznmh6lhczboql5zdrfgmkaxns4tpfrxmu6s5yd.onion:9999 +3cova3snmiydrdaqrszj5krnujpwgkueh2kjodun4hvixk3y5l5zmgid.onion:9999 +iy6wzfp65f5peehquqchqperx5r4qsybfmvvdjhe2ak3ig6pt3a452yd.onion:9999 +k5gdngvamlwymwh2an6qlazpgvlhkrukaso6nv56d35pentpfhimvayd.onion:9999 +4da4s6fvz2wt672kxxqgra4iurots4jnzzmeplbdt7abix655fjn23qd.onion:9999 +uf3otvrjnj7grwm7skwslf6ltibo24hkolrwuyxyx7yzlalwnupw4bid.onion:9999 +dw4u6agw6gktz7ykmgxn7m3fmgnnybhhlnish3lvnuylcb5wcwzutdqd.onion:9999 +c5qhh5xrwnonmtniag5r7bftfweniwt2f6fdixq37c7gnunbjzgx26qd.onion:9999 +h4rycn3lgltahxvfxte6rzuyu3ooa3f3a5pcgzhkvh5baqei7s3w6yid.onion:9999 +mj5zq3oeodlwselk5bnx5lhiuhwuuz6xgmijx4kbnpnhamkf5t7aqcqd.onion:9999 +fzo6z4dcjtfg5eg7absrzsskznto5ivgsqty23hmcvf6bjeg4mq2m6yd.onion:9999 +3uvcjymiixi6n6m2p6fsgyjxkx2ceaesd7eopi3p7jn364i5z646koid.onion:9999 +wzf6u7feqa65kyd5ooyyvw3rxozurmuzgzr4r3qrigne3xlj5tazwnyd.onion:9999 +hu43stbffzpgfixmzgx4ae2sp65nrjui6kagzrhkpqhmgsk2kbnfs6id.onion:9999 +xjn2wouhpr2jrqtqa3itkccjxfvrpvjgehgkrqltggnei5wl2535eiyd.onion:9999 +hsq4dkpmgc3yeirpiufopkonabxq62kl43vkzry65vhp7ctlyl3ngayd.onion:9999 +ayhwwpjq4rg3bslbtt7yejqyhucyaqsbb7tn45blh4r7xj62wfonryqd.onion:9999 +iddbcb6xzrbrjpzwbozhe3pztgrhkwjo76o4wkrpi43p5jya6jv6m7qd.onion:9999 +542grzvty3cnbtzc3sjatubkmnhw22x5gfvnj2lromdparwlc4j7o4qd.onion:9999 +qbqa37m7uiie63723muhzgl4swqjvs6oddzhtzw5ke32t47am6lq5mad.onion:9999 +etiufki5csbodchyyoqv4bv4qm2xzaljidnst4khl632xkdrsiihulad.onion:9999 +lqg6nfbek54fbsgdycq6rej7edqcg4ps6mqmvsqr645iecbt7cz7e5qd.onion:9999 +rwl447roxllklmqkmbp5aq2bxj4vwzomx6ellodoguc5vegnrr6v3yyd.onion:9999 +p2d6rg6vh5f3mjrb75l2ppxtbbpjbf45vteyp3c4u3nxfonwpezaq4ad.onion:9999 +jqssjynvlqwfiordnux2vqt6glnr3fypypfwasrizbpwhbj2lvtuzqqd.onion:9999 +jjjhwysk4t3i7nrjyxyrf4yjjqmole4doowga7nnkyjih3hmi7q2jsad.onion:9999 +wtby3fkid4eqaknfvmakg6vofvpda4ukhuec7k52no76n6szxcvf7pid.onion:9999 diff --git a/src/chainparamsseeds.h b/src/chainparamsseeds.h index 8cebf2109c5ea..734090de975fc 100644 --- a/src/chainparamsseeds.h +++ b/src/chainparamsseeds.h @@ -7,176 +7,254 @@ * Each line contains a BIP155 serialized (networkID, addr, port) tuple. */ static const uint8_t chainparams_seed_main[] = { - 0x04,0x20,0xcb,0x14,0xe3,0xb6,0xc7,0x7f,0xbe,0xdb,0xcc,0x12,0x78,0x28,0x3b,0x54,0x20,0x16,0xe3,0xb7,0x00,0x3c,0x4e,0xfc,0xab,0xb9,0xdf,0x71,0x55,0xed,0xfa,0xc2,0x1e,0x82,0x27,0x0f, - 0x04,0x20,0xc5,0x45,0x45,0x29,0x2a,0xf5,0x64,0x95,0xa2,0x59,0x8a,0xce,0x7d,0x97,0x90,0x02,0xff,0xeb,0x79,0xba,0x3b,0x91,0xc3,0xaf,0x84,0x1b,0xfc,0x1e,0xe7,0x08,0x29,0xc4,0x27,0x0f, - 0x04,0x20,0xaf,0xe7,0x37,0x21,0xd5,0xfc,0x45,0xd0,0x52,0x7e,0xe3,0x4a,0xe6,0x60,0xb6,0xbc,0xf9,0xae,0x20,0xf4,0x2d,0xab,0x1e,0xa1,0x65,0xfb,0x1c,0x43,0x6c,0xb6,0x40,0x52,0x27,0x0f, + 0x04,0x20,0xbb,0x03,0x67,0x8e,0x51,0x93,0x74,0x61,0x81,0x95,0x71,0x49,0x2c,0x63,0xb9,0x89,0xa0,0x29,0x5a,0x4e,0x74,0x62,0x7d,0x75,0x37,0xfc,0x31,0xcb,0x68,0xc5,0x9c,0xe6,0x27,0x0f, + 0x04,0x20,0xba,0x5b,0xab,0x3a,0x87,0x7c,0x74,0x98,0xc2,0x70,0x06,0xd1,0x35,0x08,0x49,0xb9,0x6b,0x17,0xd5,0x26,0x21,0xcc,0xa8,0xc1,0x73,0x31,0x9a,0x44,0x76,0xcb,0xd7,0x77,0x27,0x0f, + 0x04,0x20,0xb6,0x4b,0xea,0x7c,0xa4,0x80,0x3d,0xd5,0x60,0x7d,0x73,0xb1,0x8a,0xdb,0x71,0xbb,0xb3,0x48,0xb2,0x99,0x36,0x63,0xc8,0xee,0x11,0x41,0x9a,0x4d,0xdd,0x69,0xec,0xc1,0x27,0x0f, + 0x04,0x20,0xb4,0xc3,0x8d,0x95,0x48,0x1f,0x09,0x00,0x29,0xa5,0xab,0x00,0xa3,0x7a,0xae,0x2d,0x5e,0x30,0x72,0x8a,0x3d,0x08,0x2f,0xab,0xba,0x6b,0xbf,0xe6,0xfa,0x59,0xb8,0xaa,0x27,0x0f, + 0x04,0x20,0xa1,0x76,0xe9,0xd6,0x29,0x6a,0x7e,0x68,0xd9,0x9f,0x92,0xad,0x25,0x97,0xcb,0x9a,0x02,0xed,0x70,0xea,0x72,0xe3,0x6a,0x62,0xf8,0xbf,0xf1,0x95,0x81,0x76,0x6d,0x1f,0x27,0x0f, 0x04,0x20,0x9d,0x32,0x9c,0x4d,0x1e,0x35,0x2d,0xbd,0x49,0x82,0xb9,0xa5,0x66,0x4f,0x45,0x52,0x56,0xac,0x5d,0xb3,0xe7,0xe3,0x39,0x3e,0xac,0x81,0x22,0x10,0x2f,0x23,0x26,0x0d,0x27,0x0f, 0x04,0x20,0x93,0x69,0xab,0x82,0x0b,0xd8,0xa2,0x7d,0x07,0x93,0xf1,0xb5,0x6b,0x91,0x86,0x8b,0xf2,0xc0,0x5c,0xb7,0x58,0x39,0x3a,0x03,0xdb,0x0b,0x5f,0xa7,0x9c,0xf7,0xb4,0x7c,0x27,0x0f, + 0x04,0x20,0x8d,0x97,0xce,0x7e,0x2e,0xba,0xd6,0xa5,0xb2,0x0a,0x60,0x5f,0xd0,0x43,0x41,0xba,0x79,0x5b,0x65,0xcc,0xbf,0x88,0xb5,0xb8,0x6e,0x35,0x05,0xda,0x90,0xcd,0x8c,0x7d,0x27,0x0f, 0x04,0x20,0x82,0x84,0x39,0xe7,0xc4,0x4a,0x30,0x23,0x13,0xc8,0xd9,0xbd,0x4c,0x17,0xcc,0xe2,0x2a,0x1c,0x7e,0x7f,0xfc,0xb1,0x3f,0xe0,0x99,0x5d,0xac,0x79,0xb0,0x32,0x56,0xff,0x27,0x0f, + 0x04,0x20,0x80,0x60,0x0d,0xfd,0x9f,0xa2,0x10,0x4f,0x6f,0xfa,0xdb,0x28,0x7c,0x99,0x7c,0x95,0xa0,0x9a,0xcb,0xce,0x18,0xf2,0x79,0xe6,0xdd,0x51,0x37,0xa9,0xf3,0xe0,0x67,0x97,0x27,0x0f, + 0x04,0x20,0x80,0x1c,0x2c,0x6a,0x00,0x54,0xc0,0x54,0x53,0x38,0x1e,0xd1,0xc0,0x3f,0x14,0x55,0x63,0xa3,0xc7,0xc5,0xb2,0x49,0x3f,0x6b,0xa2,0x85,0x83,0x68,0x77,0x11,0xe4,0x20,0x27,0x0f, 0x04,0x20,0x78,0x80,0x18,0x86,0xe3,0x5d,0xcd,0x80,0xa3,0x18,0x55,0x10,0x21,0x01,0x32,0x2e,0x41,0x96,0x20,0xd5,0x17,0xc4,0x46,0x40,0x39,0x7c,0x2d,0xd1,0xd3,0x5f,0x44,0x00,0x27,0x0f, - 0x04,0x20,0x6a,0xfe,0x9e,0x46,0xd1,0x0e,0xb0,0x46,0x61,0xbd,0x61,0x29,0xee,0x24,0xa1,0x2a,0x7a,0xf5,0x12,0x98,0x77,0xf6,0x02,0xa0,0xf3,0x48,0xf1,0x39,0x1f,0xc5,0x7a,0x10,0x27,0x0f, - 0x04,0x20,0x6a,0x58,0xd4,0x22,0xf4,0xae,0x92,0x8e,0x01,0xbe,0x59,0x60,0xe5,0xf8,0x7b,0x0c,0x02,0x84,0xcf,0xe2,0x53,0xbd,0x67,0x94,0xc2,0xd5,0xb1,0x72,0x69,0x26,0xe9,0xe7,0x27,0x0f, - 0x04,0x20,0x63,0x77,0x91,0x01,0x84,0xce,0x33,0xd2,0xc7,0x05,0x9e,0x6a,0xc2,0x36,0xbc,0xac,0xc3,0x5e,0xa9,0x1a,0x23,0x87,0x7a,0x1a,0x1d,0x32,0x6c,0xa0,0x7c,0xa5,0x9f,0xde,0x27,0x0f, - 0x04,0x20,0x5e,0x80,0x4e,0xb4,0xd4,0x65,0xc2,0x27,0x42,0xcf,0x05,0xe1,0x4b,0xc3,0xef,0xf1,0x6d,0x3a,0x98,0xb0,0x0b,0x95,0x16,0x7e,0xb0,0x40,0x0e,0xee,0x45,0x48,0x48,0xf9,0x27,0x0f, + 0x04,0x20,0x7e,0x87,0xe8,0x9b,0xd5,0x3f,0x4b,0xb6,0x26,0x21,0xff,0x57,0xa7,0xbe,0xf3,0x08,0x5e,0x90,0x97,0x9d,0xac,0xc9,0x87,0xec,0x5c,0xa6,0xdb,0x72,0xb9,0xb6,0x79,0x32,0x27,0x0f, + 0x04,0x20,0x62,0x7b,0x98,0x6d,0xc4,0x70,0xd7,0x69,0x11,0x6a,0xe8,0x5b,0x7e,0xac,0xe8,0xa1,0xed,0x4a,0x67,0xd7,0x33,0x10,0x9b,0xf1,0x41,0x6b,0xda,0x70,0x31,0x45,0xec,0xfe,0x27,0x0f, + 0x04,0x20,0x5c,0x0d,0xe6,0x94,0x24,0x57,0x78,0x50,0xc8,0xc3,0xc0,0xa1,0xe8,0x91,0x3f,0x20,0xe0,0x23,0x71,0xf2,0xf3,0x20,0xca,0xca,0x11,0xf7,0x3a,0x82,0x08,0x33,0xf8,0xb3,0x27,0x0f, 0x04,0x20,0x57,0x83,0x98,0x4d,0x47,0x9e,0x71,0x94,0x12,0x67,0x43,0x76,0xa5,0x62,0x5b,0xe6,0xa2,0xbc,0x89,0x90,0x54,0x65,0xd4,0x04,0x12,0x3c,0x04,0xb1,0x53,0x5b,0x21,0xe9,0x27,0x0f, + 0x04,0x20,0x57,0x4c,0x36,0x9a,0xa0,0x62,0xed,0x86,0x58,0xfa,0x03,0x7d,0x05,0x83,0x2f,0x35,0x56,0x75,0x46,0x8a,0x04,0x9d,0xe6,0xd7,0xbe,0x1e,0xfa,0xf2,0x36,0x6f,0x29,0xd0,0x27,0x0f, 0x04,0x20,0x57,0x77,0xa2,0xc2,0xa6,0xcc,0x1d,0x34,0xf8,0x8f,0x2d,0xb7,0x12,0x8b,0x7f,0xf9,0x17,0x14,0xee,0x63,0xe7,0xf3,0x30,0x0f,0x53,0x53,0x7d,0x5b,0x36,0xde,0x69,0xee,0x27,0x0f, + 0x04,0x20,0x4c,0x25,0x24,0xe1,0xb5,0x5c,0x2c,0x54,0x3a,0x23,0x6d,0x2f,0xaa,0xc2,0x7e,0x32,0xdb,0x1d,0x97,0x0f,0xc3,0xcb,0x60,0x4a,0x28,0xc8,0x5f,0x63,0x85,0x3a,0x5d,0x67,0x27,0x0f, + 0x04,0x20,0x4a,0x52,0x7b,0x62,0x4a,0xe4,0xf6,0x8f,0xb6,0x29,0xc5,0xf1,0x12,0xf3,0x09,0x4c,0x18,0xe5,0x93,0x83,0x73,0xac,0x60,0x7d,0xad,0x56,0x12,0x83,0xec,0xec,0x47,0xe1,0x27,0x0f, + 0x04,0x20,0x46,0x3d,0x6c,0x95,0xfe,0xe9,0x7a,0xf2,0x10,0xf0,0xa4,0x04,0x78,0x3c,0x91,0xbf,0x63,0xc8,0x4b,0x01,0x2b,0x2b,0x51,0xa4,0xe4,0xd0,0x15,0xb4,0x1b,0xcf,0x9e,0xc1,0x27,0x0f, 0x04,0x20,0x44,0xd4,0x09,0x8b,0x46,0x79,0x55,0x4a,0x85,0x89,0x2a,0xee,0x68,0x81,0xaa,0x9a,0x63,0x27,0x28,0x5f,0xb0,0xa8,0xda,0x6b,0xac,0x87,0xdf,0x38,0x32,0x5f,0x2d,0x89,0x27,0x0f, - 0x04,0x20,0x41,0x14,0x6c,0x9c,0x93,0x69,0xac,0x73,0x97,0xf1,0x2d,0xcc,0xb0,0xed,0x83,0xb0,0x13,0x37,0x21,0x4f,0x15,0x4d,0xb2,0x6c,0x93,0x7d,0xf9,0x85,0xaa,0x9e,0x11,0xe3,0x27,0x0f, + 0x04,0x20,0x40,0xc6,0x11,0x07,0xd7,0xcc,0x43,0x14,0xbf,0x36,0x0b,0xb2,0x72,0x6d,0xf9,0x99,0xa2,0x75,0x59,0x2e,0xff,0x9d,0xcb,0x2a,0x2f,0x47,0x36,0xfe,0xa7,0x00,0xf2,0x6b,0x27,0x0f, 0x04,0x20,0x47,0xfb,0x8b,0x87,0x27,0xca,0x95,0xe8,0x77,0xae,0x41,0xbd,0x72,0x20,0x62,0x25,0xe5,0x67,0x98,0x41,0x85,0x0e,0x9a,0x5d,0x4a,0xb1,0x0f,0x8f,0x46,0xa9,0x87,0xa4,0x27,0x0f, + 0x04,0x20,0x3d,0x39,0xb9,0x4c,0x25,0x2e,0x5e,0x62,0xa2,0xec,0xc9,0xaf,0xc0,0x13,0x52,0x7f,0xba,0xd8,0xa6,0x88,0xf2,0x80,0x6c,0xc4,0xea,0x7c,0x0e,0xc3,0x49,0x5a,0x50,0x5a,0x27,0x0f, + 0x04,0x20,0x3c,0xa1,0xc1,0xa9,0xec,0x30,0xb7,0x82,0x22,0x2f,0x45,0x0a,0xe7,0xa9,0xcd,0x00,0x6f,0x0f,0x69,0x4b,0xe6,0xea,0xac,0xc7,0x1e,0xed,0x4e,0xff,0x8a,0x6b,0xc2,0xf6,0x27,0x0f, + 0x04,0x20,0x3f,0x23,0x81,0x37,0x6b,0x32,0xe6,0x03,0xde,0xa5,0xbc,0xc9,0xe8,0xe6,0x98,0xa6,0xdc,0xe0,0x6c,0xbb,0x07,0x5e,0x23,0x64,0xea,0xa9,0xfa,0x10,0x40,0x88,0xfc,0xb7,0x27,0x0f, 0x04,0x20,0x3e,0x84,0xf8,0x31,0x23,0xdc,0x60,0x43,0xc5,0xdd,0xd4,0xa6,0x43,0xa3,0x95,0x6e,0x1c,0x5b,0xe1,0x85,0x80,0xe4,0x4b,0x88,0xe7,0x2f,0xc6,0xf0,0x85,0x4e,0x82,0x98,0x27,0x0f, + 0x04,0x20,0x31,0xb1,0x83,0x9b,0x98,0x8e,0x85,0x5e,0x08,0x29,0x20,0xc5,0x2e,0x6c,0x06,0xdd,0x4f,0xb8,0x57,0x0d,0x03,0xe6,0xc5,0x9b,0xd8,0xcb,0x9a,0xee,0x9c,0xe6,0x4c,0x10,0x27,0x0f, 0x04,0x20,0x30,0x4d,0xab,0x0f,0x94,0xb0,0xba,0xaf,0xdb,0xa9,0xdd,0xb9,0xec,0xc4,0x9e,0x8f,0x50,0xe2,0x66,0x8b,0x32,0x62,0x85,0x12,0x77,0xaf,0x20,0x45,0x60,0x39,0x36,0xb3,0x27,0x0f, - 0x04,0x20,0x37,0xa0,0x00,0x0a,0x0c,0xde,0x7d,0x7a,0x3f,0xca,0x63,0xe2,0x1d,0x52,0xa1,0xed,0xa7,0x5d,0x83,0x88,0x91,0x56,0x7e,0x00,0x86,0x26,0xb0,0x53,0x3e,0x95,0x03,0xb2,0x27,0x0f, + 0x04,0x20,0x37,0xb4,0xb1,0x9f,0xad,0x20,0xe8,0xa2,0xab,0xa7,0xab,0x94,0xdf,0x66,0x61,0x3b,0x20,0xbf,0x43,0xf0,0x21,0xa3,0x0f,0x0c,0x39,0xc5,0x72,0x88,0xff,0x57,0x24,0x60,0x27,0x0f, + 0x04,0x20,0x2e,0x5d,0xec,0xf0,0x62,0x4c,0xca,0x6e,0x90,0xdf,0x00,0x65,0x1c,0xca,0x4a,0xcb,0x66,0xee,0xa2,0xa6,0x94,0x27,0x8d,0x6c,0xec,0x15,0x4b,0xe0,0xa4,0x86,0xe3,0x21,0x27,0x0f, + 0x04,0x20,0x24,0xd1,0x42,0xa9,0x1d,0x14,0x82,0xe1,0x88,0xf8,0xc3,0xa1,0x5e,0x06,0xbc,0x83,0x35,0x7c,0x81,0x69,0x40,0xdb,0x29,0xf1,0x47,0x5f,0xb7,0xab,0xa8,0x71,0x92,0x10,0x27,0x0f, 0x04,0x20,0x21,0x09,0xf1,0x0f,0x0d,0x0a,0x69,0xf7,0x82,0xfc,0xe5,0x59,0xb0,0xbb,0xe0,0x06,0x51,0xfd,0x40,0x30,0x35,0x95,0x37,0xd5,0x5b,0xf9,0xdd,0x73,0x7d,0x2a,0x81,0x33,0x27,0x0f, + 0x04,0x20,0x1d,0xb9,0x4f,0x00,0xd6,0xf1,0x95,0x3c,0xff,0x0a,0x61,0xae,0xdf,0xb3,0x65,0x61,0x9a,0xdc,0x04,0xe7,0x5b,0x51,0x23,0xed,0x75,0x6d,0x30,0xb1,0x07,0xb6,0x15,0xb3,0x27,0x0f, 0x04,0x20,0x13,0x0f,0x1e,0xc7,0x6b,0x81,0xf1,0xf4,0x0b,0x44,0x09,0x10,0xbf,0x78,0xb3,0x16,0x7b,0x4f,0x6b,0x30,0xec,0x0e,0x12,0x8f,0x3d,0xda,0xfd,0x28,0x5d,0x69,0x3f,0xf3,0x27,0x0f, + 0x04,0x20,0x17,0x60,0x73,0xf6,0xf1,0xb3,0x5c,0xd6,0x4d,0xa8,0x01,0xbb,0x1f,0x84,0xb3,0x2d,0x88,0xd4,0x5a,0x7a,0x2f,0x8a,0x34,0x5e,0x1b,0xf8,0xbe,0x66,0xd1,0xa1,0x4e,0x4d,0x27,0x0f, 0x04,0x20,0x0d,0x1d,0xb2,0x4f,0x77,0xae,0x46,0x98,0x29,0xf7,0xf2,0x24,0x24,0xe7,0x8e,0x25,0xf1,0x48,0x9d,0xe1,0x7a,0xf6,0x89,0x73,0xc3,0xf7,0x76,0xa2,0xa2,0x6b,0xd1,0x87,0x27,0x0f, + 0x04,0x20,0x06,0x0f,0x6b,0x3d,0x30,0xe4,0x4d,0xb0,0xc9,0x61,0x9c,0xff,0x82,0x26,0x18,0x3d,0x05,0x80,0x42,0x41,0x0f,0xe6,0xde,0x74,0x2b,0x3f,0x23,0xfb,0xa7,0xda,0xb1,0x5c,0x27,0x0f, 0x04,0x20,0xed,0x7a,0xb3,0x0c,0x6e,0x58,0x90,0x39,0xcf,0x50,0x61,0xd9,0x5c,0x28,0x1a,0x25,0x8f,0x3e,0x31,0x4c,0x62,0x7f,0xb9,0x96,0xd4,0x43,0x16,0x25,0x19,0x90,0x0f,0x57,0x27,0x0f, - 0x04,0x20,0xe7,0xbe,0x77,0x6c,0x27,0x63,0x47,0x90,0xaa,0x61,0x80,0xf6,0xdb,0x97,0xdc,0x44,0x90,0x1e,0xf2,0x8c,0x42,0x25,0xdb,0x8b,0xad,0xd5,0xdb,0x3d,0xf6,0x9a,0x71,0x4f,0x27,0x0f, - 0x04,0x20,0xd1,0xfd,0x8c,0xae,0x13,0x71,0xa0,0xa0,0x27,0x98,0x3c,0x5c,0x59,0x08,0x4d,0x9b,0xd3,0x80,0x15,0xe9,0xbd,0xa9,0x39,0xa3,0xdd,0x1a,0x9f,0x05,0xa2,0x99,0x01,0xf6,0x27,0x0f, + 0x04,0x20,0xe9,0x9b,0x8c,0x52,0xef,0x55,0xa5,0x0a,0xfa,0x4c,0xd1,0x09,0xa5,0x7a,0x80,0x45,0x21,0xd0,0x60,0x08,0x7a,0x59,0xbd,0xb7,0xaf,0xb1,0x35,0xaa,0x22,0x7b,0xfe,0x1d,0x27,0x0f, + 0x04,0x20,0xef,0x34,0x68,0xe6,0xb3,0xc6,0xc4,0xd0,0xcf,0x22,0xdc,0x92,0x09,0xd0,0x2a,0x63,0x4f,0x6d,0x6a,0xfd,0x31,0x6a,0xd4,0xe9,0x71,0x73,0x06,0xf0,0x46,0xcb,0x17,0x13,0x27,0x0f, + 0x04,0x20,0xe0,0xc1,0xc9,0x78,0xb5,0xce,0xad,0x3f,0x7f,0x4a,0xbd,0xe0,0x68,0x83,0x88,0xa4,0x5d,0x39,0x71,0x2d,0xce,0x58,0x47,0xac,0x23,0x9f,0xc0,0x14,0x5f,0xdd,0xe9,0x52,0x27,0x0f, + 0x04,0x20,0xdd,0x2a,0x24,0xe1,0x88,0x45,0xd1,0xe6,0xf9,0x9a,0x7f,0x8b,0x23,0x61,0x37,0x55,0xf4,0x22,0x00,0x92,0x1f,0xc8,0xe7,0xa3,0x6f,0xfa,0x5b,0xbf,0x71,0x1d,0xcf,0xb9,0x27,0x0f, + 0x04,0x20,0xd8,0x9d,0x50,0x6e,0x4d,0x62,0x30,0x38,0x8c,0x10,0x8c,0xb2,0x9e,0xaa,0x2d,0xa2,0x5f,0x63,0x2a,0x84,0x3e,0x94,0x97,0x0e,0x8d,0xe1,0xea,0x8b,0xab,0x78,0xea,0xfb,0x27,0x0f, + 0x04,0x20,0xd0,0x63,0xbf,0xe7,0xa8,0x59,0xb6,0x8d,0xc4,0x16,0xb2,0xb2,0xd6,0x1f,0xcb,0x38,0xb2,0x17,0x41,0x7d,0xc8,0xe2,0x53,0x31,0x40,0xbb,0x65,0xc9,0xbc,0xb1,0xbb,0x29,0x27,0x0f, 0x01,0x04,0xd8,0xfa,0x61,0x34,0x27,0x0f, 0x01,0x04,0xd8,0xee,0x4b,0x2e,0x27,0x0f, 0x01,0x04,0xd8,0xe6,0xe8,0x7d,0x27,0x0f, - 0x01,0x04,0xd8,0xbd,0x9a,0x08,0x27,0x0f, - 0x01,0x04,0xd8,0xbd,0x9a,0x07,0x27,0x0f, - 0x01,0x04,0xd5,0xa8,0xf9,0xae,0x27,0x0f, + 0x01,0x04,0xd5,0xda,0xd1,0x22,0x27,0x0f, + 0x01,0x04,0xd5,0xc7,0x22,0xfa,0x27,0x0f, + 0x01,0x04,0xd5,0xab,0x0f,0x7d,0x27,0x0f, + 0x01,0x04,0xd5,0x9f,0x4d,0xdd,0x27,0x0f, + 0x01,0x04,0xd4,0x34,0x00,0xd2,0x27,0x0f, 0x01,0x04,0xd4,0x18,0x6e,0x80,0x27,0x0f, - 0x01,0x04,0xd4,0x18,0x6b,0xdf,0x27,0x0f, + 0x01,0x04,0xd1,0x91,0x30,0x9a,0x27,0x0f, + 0x01,0x04,0xd1,0x8d,0x24,0xce,0x27,0x0f, + 0x01,0x04,0xd1,0x3a,0xa4,0x2a,0x27,0x0f, + 0x01,0x04,0xd0,0x57,0x66,0x5b,0x27,0x0f, 0x01,0x04,0xcf,0xf4,0xf7,0x28,0x27,0x0f, - 0x01,0x04,0xce,0xbd,0x84,0xe0,0x27,0x0f, - 0x01,0x04,0xce,0xa8,0xd5,0x6c,0x27,0x0f, - 0x01,0x04,0xce,0xa8,0xd4,0xe2,0x27,0x0f, - 0x01,0x04,0xce,0xa8,0xd4,0xb2,0x27,0x0f, - 0x01,0x04,0xce,0xa8,0xd4,0x90,0x27,0x0f, - 0x01,0x04,0xc2,0x9e,0x47,0xe4,0x27,0x0f, + 0x01,0x04,0xca,0x05,0x10,0x21,0x27,0x0f, + 0x01,0x04,0xc6,0x07,0x73,0x30,0x27,0x0f, + 0x01,0x04,0xc3,0xb5,0xd3,0x40,0x27,0x0f, + 0x01,0x04,0xc3,0x62,0x5f,0xd2,0x27,0x0f, 0x01,0x04,0xc2,0x87,0x51,0xd6,0x27,0x0f, - 0x01,0x04,0xc1,0xa4,0x95,0x32,0x27,0x0f, - 0x01,0x04,0xc1,0x1f,0x1e,0x37,0x27,0x0f, - 0x01,0x04,0xbc,0xd0,0xc4,0xb7,0x27,0x0f, + 0x01,0x04,0xc2,0x05,0x9d,0xd6,0x27,0x0f, + 0x01,0x04,0xc0,0xa9,0x06,0x57,0x27,0x0f, + 0x01,0x04,0xbc,0x7f,0xed,0xf3,0x27,0x0f, 0x01,0x04,0xbc,0x7f,0xe6,0x28,0x27,0x0f, - 0x01,0x04,0xbc,0x44,0xdf,0x5e,0x27,0x0f, + 0x01,0x04,0xbc,0x28,0xb2,0x43,0x27,0x0f, 0x01,0x04,0xb9,0xf3,0x73,0xdb,0x27,0x0f, + 0x01,0x04,0xb9,0xe4,0x53,0x9c,0x27,0x0f, + 0x01,0x04,0xb9,0xd9,0x7f,0x8b,0x27,0x0f, 0x01,0x04,0xb9,0xd5,0x18,0x22,0x27,0x0f, + 0x01,0x04,0xb9,0xc6,0xea,0x36,0x27,0x0f, + 0x01,0x04,0xb9,0xc6,0xea,0x21,0x27,0x0f, + 0x01,0x04,0xb9,0xc6,0xea,0x19,0x27,0x0f, + 0x01,0x04,0xb9,0xc6,0xea,0x11,0x27,0x0f, + 0x01,0x04,0xb9,0xb9,0x28,0xab,0x27,0x0f, + 0x01,0x04,0xb9,0xb9,0x28,0x68,0x27,0x0f, + 0x01,0x04,0xb9,0xa6,0xd9,0x9a,0x27,0x0f, 0x01,0x04,0xb9,0xa5,0xab,0x75,0x27,0x0f, 0x01,0x04,0xb9,0xa4,0xa3,0xda,0x27,0x0f, 0x01,0x04,0xb9,0xa4,0xa3,0x55,0x27,0x0f, - 0x01,0x04,0xb9,0x87,0x50,0xc8,0x27,0x0f, + 0x01,0x04,0xb9,0x9e,0x6b,0x7c,0x27,0x0f, + 0x01,0x04,0xb9,0x9b,0x63,0x22,0x27,0x0f, + 0x01,0x04,0xb9,0x8e,0xd4,0x90,0x27,0x0f, + 0x01,0x04,0xb9,0x70,0xf9,0x31,0x27,0x0f, 0x01,0x04,0xb9,0x57,0x95,0x3d,0x27,0x0f, 0x01,0x04,0xb2,0xd0,0x57,0xe2,0x27,0x0f, 0x01,0x04,0xb2,0xd0,0x57,0xd5,0x27,0x0f, - 0x01,0x04,0xb2,0x9d,0x5b,0xb3,0x27,0x0f, - 0x01,0x04,0xb2,0x9d,0x5b,0xb0,0x27,0x0f, - 0x01,0x04,0xb2,0x9d,0x5b,0x7e,0x27,0x0f, + 0x01,0x04,0xb2,0x9f,0x02,0x0c,0x27,0x0f, + 0x01,0x04,0xb2,0x9d,0x5b,0xb8,0x27,0x0f, + 0x01,0x04,0xb2,0x9d,0x5b,0xb2,0x27,0x0f, + 0x01,0x04,0xb2,0x9d,0x5b,0xb1,0x27,0x0f, 0x01,0x04,0xb2,0x3f,0x79,0x81,0x27,0x0f, - 0x01,0x04,0xb0,0x7e,0x7f,0x10,0x27,0x0f, - 0x01,0x04,0xb0,0x7e,0x7f,0x0f,0x27,0x0f, - 0x01,0x04,0xae,0x22,0xe9,0xcf,0x27,0x0f, - 0x01,0x04,0xae,0x22,0xe9,0xce,0x27,0x0f, - 0x01,0x04,0xae,0x22,0xe9,0xcd,0x27,0x0f, - 0x01,0x04,0xae,0x22,0xe9,0xca,0x27,0x0f, - 0x01,0x04,0xad,0xf9,0x15,0x7a,0x27,0x0f, + 0x01,0x04,0xb0,0x66,0x41,0x91,0x27,0x0f, + 0x01,0x04,0xae,0x22,0xe9,0xd4,0x27,0x0f, + 0x01,0x04,0xae,0x22,0xe9,0xd3,0x27,0x0f, + 0x01,0x04,0xae,0x22,0xe9,0xd1,0x27,0x0f, + 0x01,0x04,0xae,0x22,0xe9,0xcc,0x27,0x0f, + 0x01,0x04,0xac,0x68,0x91,0xa6,0x27,0x0f, 0x01,0x04,0xac,0x68,0x5a,0xf9,0x27,0x0f, + 0x01,0x04,0xaa,0x4b,0xa7,0xf4,0x27,0x0f, + 0x01,0x04,0xaa,0x4b,0xa2,0xd4,0x27,0x0f, 0x01,0x04,0xa8,0x77,0x50,0x04,0x27,0x0f, 0x01,0x04,0xa7,0x58,0xa9,0x10,0x27,0x0f, + 0x01,0x04,0xa7,0x58,0xa5,0xaf,0x27,0x0f, 0x01,0x04,0xa5,0x16,0xea,0x87,0x27,0x0f, - 0x01,0x04,0x9f,0x59,0x7c,0x66,0x27,0x0f, - 0x01,0x04,0x9b,0x85,0x17,0xdd,0x27,0x0f, + 0x01,0x04,0xa3,0xac,0x42,0x29,0x27,0x0f, + 0x01,0x04,0xa3,0xac,0x14,0xd2,0x27,0x0f, + 0x01,0x04,0xa3,0xac,0x14,0xd1,0x27,0x0f, + 0x01,0x04,0xa3,0xac,0x14,0xcd,0x27,0x0f, + 0x01,0x04,0xa2,0xfa,0xbf,0x1f,0x27,0x0f, + 0x01,0x04,0xa2,0xf6,0x11,0xf8,0x27,0x0f, + 0x01,0x04,0x9f,0x4b,0x79,0xa3,0x27,0x0f, + 0x01,0x04,0x9d,0xad,0xca,0x0e,0x27,0x0f, + 0x01,0x04,0x9d,0x42,0x51,0xa2,0x27,0x0f, + 0x01,0x04,0x9d,0x0a,0xc7,0x52,0x27,0x0f, + 0x01,0x04,0x9d,0x0a,0xc7,0x4f,0x27,0x0f, + 0x01,0x04,0x9d,0x0a,0xc7,0x4d,0x27,0x0f, + 0x01,0x04,0x9a,0x7f,0x39,0x3f,0x27,0x0f, 0x01,0x04,0x96,0x9e,0x30,0x06,0x27,0x0f, - 0x01,0x04,0x91,0xef,0x14,0xb0,0x27,0x0f, - 0x01,0x04,0x90,0x5b,0x7f,0xa6,0x27,0x0f, - 0x01,0x04,0x8e,0xca,0xcd,0x5f,0x27,0x0f, - 0x01,0x04,0x8b,0x3b,0x64,0x67,0x27,0x0f, + 0x01,0x04,0x93,0x2d,0xb7,0x80,0x27,0x0f, + 0x01,0x04,0x93,0x2d,0x67,0x63,0x27,0x0f, + 0x01,0x04,0x92,0xbe,0xe6,0x68,0x27,0x0f, + 0x01,0x04,0x92,0x67,0x30,0xd1,0x27,0x0f, + 0x01,0x04,0x92,0x67,0x30,0xcb,0x27,0x0f, + 0x01,0x04,0x92,0x3b,0x2d,0xeb,0x27,0x0f, + 0x01,0x04,0x8b,0xa2,0x83,0xc5,0x27,0x0f, + 0x01,0x04,0x87,0xb5,0x35,0x82,0x27,0x0f, + 0x01,0x04,0x86,0xff,0xb6,0xba,0x27,0x0f, 0x01,0x04,0x85,0x12,0xe4,0x54,0x27,0x0f, 0x01,0x04,0x82,0xa2,0xe9,0xba,0x27,0x0f, + 0x01,0x04,0x82,0x3d,0x78,0xfc,0x27,0x0f, 0x01,0x04,0x7b,0xc1,0x40,0xa6,0x27,0x0f, - 0x01,0x04,0x6d,0xeb,0x46,0x64,0x27,0x0f, - 0x01,0x04,0x6d,0xeb,0x45,0xaa,0x27,0x0f, - 0x01,0x04,0x6d,0xeb,0x41,0xe2,0x27,0x0f, - 0x01,0x04,0x6d,0xeb,0x41,0x5f,0x27,0x0f, + 0x01,0x04,0x6d,0xeb,0x45,0x52,0x27,0x0f, + 0x01,0x04,0x6d,0xad,0xf0,0xe9,0x27,0x0f, + 0x01,0x04,0x6b,0xbd,0x03,0x4a,0x27,0x0f, + 0x01,0x04,0x6b,0xaa,0xfe,0xa0,0x27,0x0f, 0x01,0x04,0x6a,0x37,0x09,0x16,0x27,0x0f, - 0x01,0x04,0x68,0xee,0x23,0x74,0x27,0x0f, - 0x01,0x04,0x68,0xc8,0x43,0xfb,0x27,0x0f, + 0x01,0x04,0x68,0xe1,0x9f,0xe8,0x27,0x0f, 0x01,0x04,0x68,0xc8,0x18,0xc4,0x27,0x0f, - 0x01,0x04,0x67,0xa0,0x5f,0xdb,0x27,0x0f, 0x01,0x04,0x5f,0xd3,0xc4,0x2e,0x27,0x0f, + 0x01,0x04,0x5f,0xd3,0xc4,0x22,0x27,0x0f, 0x01,0x04,0x5f,0xd3,0xc4,0x20,0x27,0x0f, 0x01,0x04,0x5f,0xd3,0xc4,0x08,0x27,0x0f, - 0x01,0x04,0x5f,0xb7,0x35,0x2c,0x27,0x0f, 0x01,0x04,0x5f,0xb7,0x33,0x8d,0x27,0x0f, + 0x01,0x04,0x5f,0xab,0x15,0x83,0x27,0x0f, + 0x01,0x04,0x5f,0xa9,0xb5,0x47,0x27,0x0f, + 0x01,0x04,0x5e,0xac,0x6d,0xa1,0x27,0x0f, 0x01,0x04,0x5d,0x15,0x4c,0xb9,0x27,0x0f, + 0x01,0x04,0x5c,0x3f,0xb0,0xca,0x27,0x0f, + 0x01,0x04,0x5b,0xea,0x23,0x84,0x27,0x0f, + 0x01,0x04,0x5b,0xde,0xed,0x62,0x27,0x0f, + 0x01,0x04,0x5b,0xc7,0x95,0xb1,0x27,0x0f, 0x01,0x04,0x59,0xb3,0x49,0x60,0x27,0x0f, 0x01,0x04,0x59,0x75,0x13,0x0a,0x27,0x0f, + 0x01,0x04,0x59,0x28,0x0d,0x50,0x27,0x0f, + 0x01,0x04,0x59,0x28,0x0a,0x2d,0x27,0x0f, + 0x01,0x04,0x59,0x28,0x08,0xa0,0x27,0x0f, + 0x01,0x04,0x59,0x28,0x00,0x6d,0x27,0x0f, + 0x01,0x04,0x59,0x23,0x83,0x3d,0x27,0x0f, + 0x01,0x04,0x57,0xe4,0x18,0x40,0x27,0x0f, + 0x01,0x04,0x57,0xd1,0xf5,0xe3,0x27,0x0f, + 0x01,0x04,0x56,0x6b,0xa8,0x2f,0x27,0x0f, + 0x01,0x04,0x56,0x6b,0xa8,0x2e,0x27,0x0f, + 0x01,0x04,0x56,0x6b,0xa8,0x2b,0x27,0x0f, + 0x01,0x04,0x56,0x6b,0xa8,0x1d,0x27,0x0f, 0x01,0x04,0x55,0xd7,0x6b,0xca,0x27,0x0f, - 0x01,0x04,0x55,0xd1,0xf1,0xbe,0x27,0x0f, - 0x01,0x04,0x55,0xd1,0xf1,0xbc,0x27,0x0f, + 0x01,0x04,0x55,0xd1,0xf1,0xb9,0x27,0x0f, + 0x01,0x04,0x55,0xd1,0xf1,0x56,0x27,0x0f, 0x01,0x04,0x55,0xd1,0xf1,0x47,0x27,0x0f, 0x01,0x04,0x55,0xd1,0xf1,0x23,0x27,0x0f, + 0x01,0x04,0x54,0xf2,0xb3,0xcc,0x27,0x0f, + 0x01,0x04,0x54,0x09,0x32,0x11,0x27,0x0f, + 0x01,0x04,0x53,0xef,0x63,0x28,0x27,0x0f, 0x01,0x04,0x52,0xd3,0x19,0xc1,0x27,0x0f, 0x01,0x04,0x52,0xd3,0x19,0x69,0x27,0x0f, 0x01,0x04,0x52,0xd3,0x15,0xb3,0x27,0x0f, 0x01,0x04,0x52,0xd3,0x15,0x17,0x27,0x0f, 0x01,0x04,0x52,0xca,0xe6,0x53,0x27,0x0f, 0x01,0x04,0x51,0xe3,0xfa,0x33,0x27,0x0f, + 0x01,0x04,0x50,0xf9,0x93,0x08,0x27,0x0f, + 0x01,0x04,0x50,0xf0,0x84,0xe7,0x27,0x0f, 0x01,0x04,0x50,0xd1,0xea,0xaa,0x27,0x0f, 0x01,0x04,0x4e,0x53,0x13,0x00,0x27,0x0f, - 0x01,0x04,0x4d,0xe8,0x84,0x59,0x27,0x0f, - 0x01,0x04,0x4d,0xe8,0x84,0x04,0x27,0x0f, 0x01,0x04,0x4d,0xdf,0x63,0x04,0x27,0x0f, + 0x01,0x04,0x4d,0xdd,0x94,0xcc,0x27,0x0f, + 0x01,0x04,0x4a,0x32,0x5a,0x71,0x27,0x0f, + 0x01,0x04,0x45,0x3d,0x6b,0xd7,0x27,0x0f, + 0x01,0x04,0x42,0xf5,0xc4,0x34,0x27,0x0f, 0x01,0x04,0x42,0xf4,0xf3,0x46,0x27,0x0f, 0x01,0x04,0x42,0xf4,0xf3,0x45,0x27,0x0f, - 0x01,0x04,0x3a,0x6e,0xe0,0xa6,0x27,0x0f, - 0x01,0x04,0x36,0x25,0xea,0x79,0x27,0x0f, + 0x01,0x04,0x34,0x24,0x66,0x5b,0x27,0x0f, 0x01,0x04,0x34,0x21,0x09,0xac,0x27,0x0f, - 0x01,0x04,0x33,0x9e,0xf3,0xfa,0x27,0x0f, - 0x01,0x04,0x33,0x9e,0xa9,0xed,0x27,0x0f, - 0x01,0x04,0x33,0x4f,0xa0,0xc5,0x27,0x0f, - 0x01,0x04,0x33,0x44,0x9b,0x40,0x27,0x0f, - 0x01,0x04,0x33,0x0f,0x75,0x2a,0x27,0x0f, - 0x01,0x04,0x33,0x0f,0x60,0xce,0x27,0x0f, - 0x01,0x04,0x2f,0x6d,0x6d,0xa6,0x27,0x0f, - 0x01,0x04,0x2e,0xfe,0xf1,0x15,0x27,0x0f, + 0x01,0x04,0x33,0x26,0x8e,0x42,0x27,0x0f, + 0x01,0x04,0x33,0x26,0x8e,0x3e,0x27,0x0f, + 0x01,0x04,0x33,0x26,0x8e,0x3d,0x27,0x0f, + 0x01,0x04,0x2f,0x6e,0xb8,0xaa,0x27,0x0f, + 0x01,0x04,0x2e,0xfe,0xf1,0x09,0x27,0x0f, + 0x01,0x04,0x2e,0xfe,0xf1,0x08,0x27,0x0f, + 0x01,0x04,0x2e,0xfe,0xf1,0x07,0x27,0x0f, 0x01,0x04,0x2e,0xfe,0xf1,0x04,0x27,0x0f, 0x01,0x04,0x2e,0x24,0x28,0xf2,0x27,0x0f, + 0x01,0x04,0x2e,0x1e,0xbd,0xfb,0x27,0x0f, 0x01,0x04,0x2e,0x1e,0xbd,0xd6,0x27,0x0f, + 0x01,0x04,0x2e,0x1e,0xbd,0xd5,0x27,0x0f, 0x01,0x04,0x2e,0x1e,0xbd,0x74,0x27,0x0f, - 0x01,0x04,0x2e,0x04,0xa2,0x7f,0x27,0x0f, + 0x01,0x04,0x2d,0x99,0xba,0x64,0x27,0x0f, 0x01,0x04,0x2d,0x8c,0x13,0xc9,0x27,0x0f, - 0x01,0x04,0x2d,0x5d,0x8b,0x75,0x27,0x0f, + 0x01,0x04,0x2d,0x87,0xb4,0x4f,0x27,0x0f, 0x01,0x04,0x2d,0x5b,0x5e,0xd9,0x27,0x0f, - 0x01,0x04,0x2d,0x55,0x75,0xa9,0x27,0x0f, - 0x01,0x04,0x2d,0x55,0x75,0x28,0x27,0x0f, 0x01,0x04,0x2d,0x53,0x7a,0x7a,0x27,0x0f, - 0x01,0x04,0x2d,0x4f,0x12,0x6a,0x27,0x0f, 0x01,0x04,0x2d,0x4c,0x53,0x5b,0x27,0x0f, 0x01,0x04,0x2d,0x47,0x9f,0x68,0x27,0x0f, 0x01,0x04,0x2d,0x47,0x9e,0x6c,0x27,0x0f, 0x01,0x04,0x2d,0x47,0x9e,0x3a,0x27,0x0f, - 0x01,0x04,0x2d,0x3f,0x6b,0x5a,0x27,0x0f, - 0x01,0x04,0x2d,0x3a,0x38,0xdd,0x27,0x0f, + 0x01,0x04,0x2d,0x3d,0xba,0x79,0x27,0x0f, + 0x01,0x04,0x2d,0x3a,0x38,0x4f,0x27,0x0f, 0x01,0x04,0x2d,0x20,0x9f,0x30,0x27,0x0f, 0x01,0x04,0x2d,0x0b,0xb6,0x40,0x27,0x0f, - 0x01,0x04,0x2d,0x08,0xfa,0x9a,0x27,0x0f, 0x01,0x04,0x2c,0xf0,0x63,0xd6,0x27,0x0f, - 0x01,0x04,0x25,0x4d,0x68,0xa6,0x27,0x0f, + 0x01,0x04,0x2b,0xe5,0x4d,0x2e,0x27,0x0f, + 0x01,0x04,0x2b,0xa7,0xf4,0x6d,0x27,0x0f, + 0x01,0x04,0x2b,0xa7,0xf0,0x5a,0x27,0x0f, + 0x01,0x04,0x2b,0xa3,0xfb,0x33,0x27,0x0f, + 0x01,0x04,0x2b,0x80,0x48,0x72,0x27,0x0f, + 0x01,0x04,0x26,0x63,0x52,0xe6,0x27,0x0f, + 0x01,0x04,0x26,0x63,0x52,0x15,0x27,0x0f, + 0x01,0x04,0x26,0x5b,0x65,0x5c,0x27,0x0f, + 0x01,0x04,0x26,0x5b,0x64,0xca,0x27,0x0f, + 0x01,0x04,0x26,0x58,0x7d,0x33,0x27,0x0f, + 0x01,0x04,0x26,0x58,0x7d,0x32,0x27,0x0f, + 0x01,0x04,0x25,0x61,0xe3,0x15,0x27,0x0f, + 0x01,0x04,0x23,0xae,0xd9,0x62,0x27,0x0f, + 0x01,0x04,0x22,0xf6,0xb0,0x19,0x27,0x0f, 0x01,0x04,0x1f,0x94,0x63,0x68,0x27,0x0f, + 0x01,0x04,0x1f,0x39,0xbe,0xbc,0x27,0x0f, + 0x01,0x04,0x1f,0x39,0xbe,0x1f,0x27,0x0f, 0x01,0x04,0x1f,0x0a,0x61,0x24,0x27,0x0f, - 0x01,0x04,0x17,0xa3,0x00,0xcb,0x27,0x0f, - 0x01,0x04,0x17,0xa3,0x00,0xaf,0x27,0x0f, - 0x01,0x04,0x0d,0xfb,0x0b,0x37,0x27,0x0f, - 0x01,0x04,0x05,0xfc,0x15,0x18,0x27,0x0f, - 0x01,0x04,0x05,0xbd,0xfd,0xfc,0x27,0x0f, - 0x01,0x04,0x05,0xbd,0xef,0x34,0x27,0x0f, - 0x01,0x04,0x05,0xbd,0x91,0x50,0x27,0x0f, - 0x01,0x04,0x05,0xb5,0xca,0x0f,0x27,0x0f, + 0x01,0x04,0x05,0xff,0x6a,0xc0,0x27,0x0f, 0x01,0x04,0x05,0xa1,0x6e,0x4f,0x27,0x0f, - 0x01,0x04,0x05,0x4f,0x6d,0xf3,0x27,0x0f, - 0x01,0x04,0x05,0x4e,0x4a,0x76,0x27,0x0f, - 0x01,0x04,0x05,0x23,0x67,0x6f,0x27,0x0f, - 0x01,0x04,0x05,0x23,0x67,0x4a,0x27,0x0f, - 0x01,0x04,0x05,0x23,0x67,0x40,0x27,0x0f, - 0x01,0x04,0x05,0x23,0x67,0x3a,0x27,0x0f, - 0x01,0x04,0x05,0x09,0xed,0x22,0x27,0x0f, + 0x01,0x04,0x05,0x23,0x67,0x1a,0x27,0x0f, + 0x01,0x04,0x05,0x23,0x67,0x19,0x27,0x0f, + 0x01,0x04,0x05,0x23,0x67,0x13,0x27,0x0f, 0x01,0x04,0x05,0x02,0x49,0x3a,0x27,0x0f, - 0x01,0x04,0x03,0x23,0xe0,0x41,0x27,0x0f, - 0x01,0x04,0x02,0x38,0xd5,0xdd,0x27,0x0f, + 0x01,0x04,0x02,0xe9,0x78,0x23,0x27,0x0f, }; static const uint8_t chainparams_seed_test[] = { From db5b53a9a7d0c9b3e08a19269ecb839a40c785c9 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Mon, 2 Dec 2024 20:46:18 -0600 Subject: [PATCH 11/24] Merge #6434: fix: early EHF and buried EHF are indistinguish 4629bb9ba5c2d5f4e4d24ddef90d8d657116d501 fix: add missing cs_main annotation for ForceSignalDBUpdate (Konstantin Akimov) 05041a4572bf125325764dc11f04ce8efcc1388f fix: force ehf signal db update (UdjinM6) 94d80323d48c466784ca8feb7c28a70866df36c4 fix: typo name of key (Konstantin Akimov) 9ceba88cdbfaace00b6f850ea72b48232f4fba00 style: clang suggestion (Konstantin Akimov) c6bb9a56857c69fcf1358ebf2d9e710dfece3a84 perf: re-use evo data about signals between v20 and mn_rr as non-corrupted (Konstantin Akimov) 7a7c9f12a413016e2f459715465bb95249583ba4 fix: early EHF and buried EHF are indistinguish (Konstantin Akimov) Pull request description: ## Issue being fixed or feature implemented It seems as EHF signal will be mined before node is updated, this signal is lost and node can't activate hard-fork anymore. ## What was done? EHF signals doesn't expire anymore. To avoid full re-index key in database is changed. Client with enabled "pruned mode" will be required to do re-index. Alternate solution - revert this commit 4b046bb60808927349cf5556fdb73f04f818057e and introduce time-out for expiring EHF signals. ## How Has This Been Tested? Test on my local instance with testnet and mainnet. Testing on miner-1 on testnet is done. First start of miner took 50 seconds, 29 of them the node was re-scanning blockchain and looking for EHF transaction ## Breaking Changes It requires re-index for nodes with enabled pruning of blocks. ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK [4629bb9](https://github.com/dashpay/dash/pull/6434/commits/4629bb9ba5c2d5f4e4d24ddef90d8d657116d501) UdjinM6: utACK 4629bb9ba5c2d5f4e4d24ddef90d8d657116d501 Tree-SHA512: 189533da5726edbcf2d9cf0e9a3957a10ebc223c25fd88aec3aa9095ae2e7d955ea1f7a1384bc2c97a0cc06110c9e38845a8cafdbd56ff9637bb907ddc639850 --- src/evo/mnhftx.cpp | 66 +++++++++++++++++++++++++++++++++------------- src/evo/mnhftx.h | 2 ++ src/init.cpp | 4 +++ 3 files changed, 54 insertions(+), 18 deletions(-) diff --git a/src/evo/mnhftx.cpp b/src/evo/mnhftx.cpp index 05e24db112d7b..618a5a640a8f1 100644 --- a/src/evo/mnhftx.cpp +++ b/src/evo/mnhftx.cpp @@ -24,6 +24,7 @@ static const std::string MNEHF_REQUESTID_PREFIX = "mnhf"; static const std::string DB_SIGNALS = "mnhf_s"; +static const std::string DB_SIGNALS_v2 = "mnhf_s2"; uint256 MNHFTxPayload::GetRequestId() const { @@ -57,34 +58,33 @@ CMNHFManager::Signals CMNHFManager::GetSignalsStage(const CBlockIndex* const pin { if (!DeploymentActiveAfter(pindexPrev, Params().GetConsensus(), Consensus::DEPLOYMENT_V20)) return {}; - Signals signals = GetForBlock(pindexPrev); + Signals signals_tmp = GetForBlock(pindexPrev); + if (pindexPrev == nullptr) return {}; const int height = pindexPrev->nHeight + 1; - for (auto it = signals.begin(); it != signals.end(); ) { - bool found{false}; - const auto signal_pindex = pindexPrev->GetAncestor(it->second); + + Signals signals_ret; + + for (auto signal : signals_tmp) { + bool expired{false}; + const auto signal_pindex = pindexPrev->GetAncestor(signal.second); assert(signal_pindex != nullptr); const int64_t signal_time = signal_pindex->GetMedianTimePast(); for (int index = 0; index < Consensus::MAX_VERSION_BITS_DEPLOYMENTS; ++index) { const auto& deployment = Params().GetConsensus().vDeployments[index]; - if (deployment.bit != it->first) continue; + if (deployment.bit != signal.first) continue; if (signal_time < deployment.nStartTime) { // new deployment is using the same bit as the old one - LogPrintf("CMNHFManager::GetSignalsStage: mnhf signal bit=%d height:%d is expired at height=%d\n", it->first, it->second, height); - it = signals.erase(it); - } else { - ++it; + LogPrintf("CMNHFManager::GetSignalsStage: mnhf signal bit=%d height:%d is expired at height=%d\n", + signal.first, signal.second, height); + expired = true; } - found = true; - break; } - if (!found) { - // no deployment means we buried it and aren't using the same bit (yet) - LogPrintf("CMNHFManager::GetSignalsStage: mnhf signal bit=%d height:%d is not known at height=%d\n", it->first, it->second, height); - it = signals.erase(it); + if (!expired) { + signals_ret.insert(signal); } } - return signals; + return signals_ret; } bool MNHFTx::Verify(const llmq::CQuorumManager& qman, const uint256& quorumHash, const uint256& requestId, const uint256& msgHash, TxValidationState& state) const @@ -287,6 +287,9 @@ CMNHFManager::Signals CMNHFManager::GetForBlock(const CBlockIndex* pindex) const Consensus::Params& consensusParams{Params().GetConsensus()}; while (!to_calculate.empty()) { const CBlockIndex* pindex_top{to_calculate.top()}; + if (pindex_top->nHeight % 1000 == 0) { + LogPrintf("re-index EHF signals at block %d\n", pindex_top->nHeight); + } CBlock block; if (!ReadBlockFromDisk(block, pindex_top, consensusParams)) { throw std::runtime_error("failed-getehfforblock-read"); @@ -328,11 +331,19 @@ std::optional<CMNHFManager::Signals> CMNHFManager::GetFromCache(const CBlockInde return signals; } } - if (m_evoDb.Read(std::make_pair(DB_SIGNALS, blockHash), signals)) { + if (m_evoDb.Read(std::make_pair(DB_SIGNALS_v2, blockHash), signals)) { LOCK(cs_cache); mnhfCache.insert(blockHash, signals); return signals; } + if (!DeploymentActiveAt(*pindex, Params().GetConsensus(), Consensus::DEPLOYMENT_MN_RR)) { + // before mn_rr activation we are safe + if (m_evoDb.Read(std::make_pair(DB_SIGNALS, blockHash), signals)) { + LOCK(cs_cache); + mnhfCache.insert(blockHash, signals); + return signals; + } + } return std::nullopt; } @@ -346,7 +357,7 @@ void CMNHFManager::AddToCache(const Signals& signals, const CBlockIndex* const p } if (!DeploymentActiveAt(*pindex, Params().GetConsensus(), Consensus::DEPLOYMENT_V20)) return; - m_evoDb.Write(std::make_pair(DB_SIGNALS, blockHash), signals); + m_evoDb.Write(std::make_pair(DB_SIGNALS_v2, blockHash), signals); } void CMNHFManager::AddSignal(const CBlockIndex* const pindex, int bit) @@ -364,6 +375,25 @@ void CMNHFManager::ConnectManagers(gsl::not_null<ChainstateManager*> chainman, g m_qman = qman; } +bool CMNHFManager::ForceSignalDBUpdate() +{ + // force ehf signals db update + auto dbTx = m_evoDb.BeginTransaction(); + + const bool last_legacy = bls::bls_legacy_scheme.load(); + bls::bls_legacy_scheme.store(false); + GetSignalsStage(m_chainman->ActiveChainstate().m_chain.Tip()); + bls::bls_legacy_scheme.store(last_legacy); + + dbTx->Commit(); + // flush it to disk + if (!m_evoDb.CommitRootTransaction()) { + LogPrintf("CMNHFManager::%s -- failed to commit to evoDB\n", __func__); + return false; + } + return true; +} + std::string MNHFTx::ToString() const { return strprintf("MNHFTx(versionBit=%d, quorumHash=%s, sig=%s)", diff --git a/src/evo/mnhftx.h b/src/evo/mnhftx.h index eb92f1db82f75..1d6b577f3c1f6 100644 --- a/src/evo/mnhftx.h +++ b/src/evo/mnhftx.h @@ -155,6 +155,8 @@ class CMNHFManager : public AbstractEHFManager */ void DisconnectManagers() { m_chainman = nullptr; m_qman = nullptr; }; + bool ForceSignalDBUpdate() EXCLUSIVE_LOCKS_REQUIRED(cs_main); + private: void AddToCache(const Signals& signals, const CBlockIndex* const pindex); diff --git a/src/init.cpp b/src/init.cpp index efb29eae5dd0d..459851533a404 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -2064,6 +2064,10 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info) strLoadError = _("Error upgrading evo database"); break; } + if (!node.mnhf_manager->ForceSignalDBUpdate()) { + strLoadError = _("Error upgrading evo database for EHF"); + break; + } for (CChainState* chainstate : chainman.GetAll()) { if (!is_coinsview_empty(chainstate)) { From cb041141437e1cd1fdf843001d8bd5809992ef4a Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 3 Dec 2024 08:34:30 -0600 Subject: [PATCH 12/24] Merge #6442: fix: coin selection with `include_unsafe` option should respect `nCoinType` e5114da32536f977e69f6a0d531c3ca45dafdf07 fix: coin selection with `include_unsafe` option should respect `nCoinType` (UdjinM6) Pull request description: ## Issue being fixed or feature implemented The issue was introduced in #6074 via https://github.com/dashpay/dash/commit/69c5aa89479af20c2bdb0c02191617140efdae5e ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK e5114da32536f977e69f6a0d531c3ca45dafdf07 kwvg: utACK e5114da32536f977e69f6a0d531c3ca45dafdf07 Tree-SHA512: 5d4e22f9d2cecf2239185e0f4c9d8b29b995b25b4f53a74d6c9b7929aac6ec918ebfb4029a83b72a003fe42fe82619f7ab4892d620bf5846cadf99f1f0cb0969 --- src/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 3449332970180..0bc08a4c3ea3f 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3041,7 +3041,7 @@ bool CWallet::SelectCoins(const std::vector<COutput>& vAvailableCoins, const CAm if (coin_control.m_include_unsafe_inputs && SelectCoinsMinConf(value_to_select, CoinEligibilityFilter(0 /* conf_mine */, 0 /* conf_theirs */, max_ancestors-1, max_descendants-1, true /* include_partial_groups */), - vCoins, setCoinsRet, nValueRet, coin_selection_params, bnb_used)) { + vCoins, setCoinsRet, nValueRet, coin_selection_params, bnb_used, nCoinType)) { return true; } // Try with unlimited ancestors/descendants. The transaction will still need to meet From c074e0965b0ab95d07d0045a724a68be9778c0e0 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 3 Dec 2024 07:40:55 -0600 Subject: [PATCH 13/24] Merge #6444: fix: add platform transfer to "most common" filter 36893e4ba461a55b75a066b6a26e59a37bdfd588 fix: add platform transfer to "most common" filter on transactions tab (Konstantin Akimov) d033a3ae06f79809dd9b49dc6f6879f3c210cb08 refactor: change mask from Dec presentation to Hex for transaction filter (Konstantin Akimov) Pull request description: ## Issue being fixed or feature implemented Follow-up https://github.com/dashpay/dash/pull/6131 - missing 'Platform Transfer' in the list of most common. Reported by splawik. ## What was done? Updated filter, added comment to prevent similar mistakes in future, present filter in hex for better readability. ## How Has This Been Tested? Transaction with platform transfer appeared in filter "Most Common" ![image](https://github.com/user-attachments/assets/ccc17553-d71a-45f8-be2f-8ce5fb699c1a) Also they are added to Overview page (compare screenshots by 'address' field) ![image](https://github.com/user-attachments/assets/ea657672-46c8-4a66-a972-15768feb4d57) ## Breaking Changes N/A ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone ACKs for top commit: UdjinM6: utACK 36893e4ba461a55b75a066b6a26e59a37bdfd588 PastaPastaPasta: utACK 36893e4ba461a55b75a066b6a26e59a37bdfd588 Tree-SHA512: e072b78e257b2c262a912a3cc0daebde93aca655edfee9bbf4869f2528f10377d7d234c73c4fd7ab6006e87607d5a7c4eddd7634d55b16d1b3885d0bc48f225a --- src/qt/transactionfilterproxy.h | 2 +- src/qt/transactionrecord.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qt/transactionfilterproxy.h b/src/qt/transactionfilterproxy.h index 38695e21b049f..9f07d290ad630 100644 --- a/src/qt/transactionfilterproxy.h +++ b/src/qt/transactionfilterproxy.h @@ -23,7 +23,7 @@ class TransactionFilterProxy : public QSortFilterProxyModel /** Type filter bit field (all types) */ static const quint32 ALL_TYPES = 0xFFFFFFFF; /** Type filter bit field (all types but Darksend-SPAM) */ - static const quint32 COMMON_TYPES = 4223; + static const quint32 COMMON_TYPES = 0x307f; static quint32 TYPE(int type) { return 1<<type; } diff --git a/src/qt/transactionrecord.h b/src/qt/transactionrecord.h index abd50f206dd04..fe2064907ea15 100644 --- a/src/qt/transactionrecord.h +++ b/src/qt/transactionrecord.h @@ -82,6 +82,7 @@ class TransactionStatus class TransactionRecord { public: + // Update COMMON_TYPES in TransactionFilterProxyWhen when adding a new type enum Type { Other, From c7b0d809398884c272a19192eb3683dd370bb8ab Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 3 Dec 2024 08:35:56 -0600 Subject: [PATCH 14/24] Merge #6441: fix: hold wallet shared pointer in CJ Manager/Sessions to prevent concurrent unload 2d7c7f81b8a4e2b31986129bcc76fc012a324a26 fix: do not transfer wallet ownership to CTransactionBuilder{Output} (UdjinM6) 0aeeb8583a0fbfd218c21d18433d78e4469382ab fix: add missing `AddWallet` call in `TestLoadWallet` (UdjinM6) e800d9d09c8837f2b5a4e89904accc2c5165e766 fix: hold wallet shared pointer in CJ Manager/Sessions to prevent concurrent unload (UdjinM6) Pull request description: ## Issue being fixed or feature implemented https://github.com/dashpay/dash/pull/6440#discussion_r1865042366 ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK 2d7c7f81b8a4e2b31986129bcc76fc012a324a26 Tree-SHA512: 308e3bed077baa2167b7f9d81b87e5a61a113e4d465706548f303dfc499bc072d4e823e85772e591a879986b0fb0413d5afe0e3995e1f939fa772b29adc0300d --- src/coinjoin/client.cpp | 132 ++++++++++++++----------------- src/coinjoin/client.h | 32 +++++--- src/coinjoin/interfaces.cpp | 5 +- src/coinjoin/util.cpp | 41 +++++----- src/coinjoin/util.h | 6 +- src/interfaces/coinjoin.h | 2 +- src/wallet/test/wallet_tests.cpp | 4 + src/wallet/wallet.cpp | 24 +++--- src/wallet/wallet.h | 2 +- 9 files changed, 121 insertions(+), 127 deletions(-) diff --git a/src/coinjoin/client.cpp b/src/coinjoin/client.cpp index 9804b1be5bee9..9ee0fa0d911f3 100644 --- a/src/coinjoin/client.cpp +++ b/src/coinjoin/client.cpp @@ -160,7 +160,7 @@ void CCoinJoinClientManager::ProcessMessage(CNode& peer, CChainState& active_cha } } -CCoinJoinClientSession::CCoinJoinClientSession(CWallet& wallet, CoinJoinWalletManager& walletman, +CCoinJoinClientSession::CCoinJoinClientSession(const std::shared_ptr<CWallet>& wallet, CoinJoinWalletManager& walletman, CCoinJoinClientManager& clientman, CDeterministicMNManager& dmnman, CMasternodeMetaMan& mn_metaman, const CMasternodeSync& mn_sync, const std::unique_ptr<CCoinJoinClientQueueManager>& queueman, @@ -258,7 +258,7 @@ void CCoinJoinClientSession::ResetPool() { txMyCollateral = CMutableTransaction(); UnlockCoins(); - WITH_LOCK(m_wallet.cs_wallet, keyHolderStorage.ReturnAll()); + WITH_LOCK(m_wallet->cs_wallet, keyHolderStorage.ReturnAll()); WITH_LOCK(cs_coinjoin, SetNull()); } @@ -292,13 +292,13 @@ void CCoinJoinClientSession::UnlockCoins() if (!CCoinJoinClientOptions::IsEnabled()) return; while (true) { - TRY_LOCK(m_wallet.cs_wallet, lockWallet); + TRY_LOCK(m_wallet->cs_wallet, lockWallet); if (!lockWallet) { UninterruptibleSleep(std::chrono::milliseconds{50}); continue; } for (const auto& outpoint : vecOutPointLocked) - m_wallet.UnlockCoin(outpoint); + m_wallet->UnlockCoin(outpoint); break; } @@ -419,7 +419,7 @@ bool CCoinJoinClientSession::CheckTimeout() SetState(POOL_STATE_ERROR); UnlockCoins(); - WITH_LOCK(m_wallet.cs_wallet, keyHolderStorage.ReturnAll()); + WITH_LOCK(m_wallet->cs_wallet, keyHolderStorage.ReturnAll()); nTimeLastSuccessfulStep = GetTime(); strLastMessage = CoinJoin::GetMessageByID(ERR_SESSION); @@ -530,7 +530,7 @@ void CCoinJoinClientSession::ProcessPoolStateUpdate(CCoinJoinStatusUpdate psssup WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::%s -- rejected by Masternode: %s\n", __func__, strMessageTmp.translated); SetState(POOL_STATE_ERROR); UnlockCoins(); - WITH_LOCK(m_wallet.cs_wallet, keyHolderStorage.ReturnAll()); + WITH_LOCK(m_wallet->cs_wallet, keyHolderStorage.ReturnAll()); nTimeLastSuccessfulStep = GetTime(); strLastMessage = strMessageTmp; break; @@ -564,7 +564,7 @@ bool CCoinJoinClientSession::SignFinalTransaction(CNode& peer, CChainState& acti if (m_is_masternode) return false; if (!mixingMasternode) return false; - LOCK(m_wallet.cs_wallet); + LOCK(m_wallet->cs_wallet); LOCK(cs_coinjoin); finalMutableTransaction = CMutableTransaction{finalTransactionNew}; @@ -646,9 +646,9 @@ bool CCoinJoinClientSession::SignFinalTransaction(CNode& peer, CChainState& acti } // fill values for found outpoints - m_wallet.chain().findCoins(coins); + m_wallet->chain().findCoins(coins); std::map<int, bilingual_str> signing_errors; - m_wallet.SignTransaction(finalMutableTransaction, coins, SIGHASH_ALL | SIGHASH_ANYONECANPAY, signing_errors); + m_wallet->SignTransaction(finalMutableTransaction, coins, SIGHASH_ALL | SIGHASH_ANYONECANPAY, signing_errors); for (const auto& [input_index, error_string] : signing_errors) { // NOTE: this is a partial signing so it's expected for SignTransaction to return @@ -697,7 +697,7 @@ void CCoinJoinClientSession::CompletedTransaction(PoolMessage nMessageID) keyHolderStorage.KeepAll(); WalletCJLogPrint(m_wallet, "CompletedTransaction -- success\n"); } else { - WITH_LOCK(m_wallet.cs_wallet, keyHolderStorage.ReturnAll()); + WITH_LOCK(m_wallet->cs_wallet, keyHolderStorage.ReturnAll()); WalletCJLogPrint(m_wallet, "CompletedTransaction -- error\n"); } UnlockCoins(); @@ -725,14 +725,14 @@ bool CCoinJoinClientManager::CheckAutomaticBackup() if (!CCoinJoinClientOptions::IsEnabled() || !IsMixing()) return false; // We don't need auto-backups for descriptor wallets - if (!m_wallet.IsLegacy()) return true; + if (!m_wallet->IsLegacy()) return true; switch (nWalletBackups) { case 0: strAutoDenomResult = _("Automatic backups disabled") + Untranslated(", ") + _("no mixing available."); WalletCJLogPrint(m_wallet, "CCoinJoinClientManager::CheckAutomaticBackup -- %s\n", strAutoDenomResult.original); StopMixing(); - m_wallet.nKeysLeftSinceAutoBackup = 0; // no backup, no "keys since last backup" + m_wallet->nKeysLeftSinceAutoBackup = 0; // no backup, no "keys since last backup" return false; case -1: // Automatic backup failed, nothing else we can do until user fixes the issue manually. @@ -750,16 +750,18 @@ bool CCoinJoinClientManager::CheckAutomaticBackup() return false; } - if (m_wallet.nKeysLeftSinceAutoBackup < COINJOIN_KEYS_THRESHOLD_STOP) { + if (m_wallet->nKeysLeftSinceAutoBackup < COINJOIN_KEYS_THRESHOLD_STOP) { // We should never get here via mixing itself but probably something else is still actively using keypool - strAutoDenomResult = strprintf(_("Very low number of keys left: %d") + Untranslated(", ") + _("no mixing available."), m_wallet.nKeysLeftSinceAutoBackup); + strAutoDenomResult = strprintf(_("Very low number of keys left: %d") + Untranslated(", ") + + _("no mixing available."), + m_wallet->nKeysLeftSinceAutoBackup); WalletCJLogPrint(m_wallet, "CCoinJoinClientManager::CheckAutomaticBackup -- %s\n", strAutoDenomResult.original); // It's getting really dangerous, stop mixing StopMixing(); return false; - } else if (m_wallet.nKeysLeftSinceAutoBackup < COINJOIN_KEYS_THRESHOLD_WARNING) { + } else if (m_wallet->nKeysLeftSinceAutoBackup < COINJOIN_KEYS_THRESHOLD_WARNING) { // Low number of keys left, but it's still more or less safe to continue - strAutoDenomResult = strprintf(_("Very low number of keys left: %d"), m_wallet.nKeysLeftSinceAutoBackup); + strAutoDenomResult = strprintf(_("Very low number of keys left: %d"), m_wallet->nKeysLeftSinceAutoBackup); WalletCJLogPrint(m_wallet, "CCoinJoinClientManager::CheckAutomaticBackup -- %s\n", strAutoDenomResult.original); if (fCreateAutoBackups) { @@ -767,7 +769,7 @@ bool CCoinJoinClientManager::CheckAutomaticBackup() bilingual_str errorString; std::vector<bilingual_str> warnings; - if (!m_wallet.AutoBackupWallet("", errorString, warnings)) { + if (!m_wallet->AutoBackupWallet("", errorString, warnings)) { if (!warnings.empty()) { // There were some issues saving backup but yet more or less safe to continue WalletCJLogPrint(m_wallet, "CCoinJoinClientManager::CheckAutomaticBackup -- WARNING! Something went wrong on automatic backup: %s\n", Join(warnings, Untranslated("\n")).translated); @@ -785,7 +787,8 @@ bool CCoinJoinClientManager::CheckAutomaticBackup() } } - WalletCJLogPrint(m_wallet, "CCoinJoinClientManager::CheckAutomaticBackup -- Keys left since latest backup: %d\n", m_wallet.nKeysLeftSinceAutoBackup); + WalletCJLogPrint(m_wallet, "CCoinJoinClientManager::CheckAutomaticBackup -- Keys left since latest backup: %d\n", + m_wallet->nKeysLeftSinceAutoBackup); return true; } @@ -809,9 +812,9 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(ChainstateManager& chainman CAmount nBalanceNeedsAnonymized; { - LOCK(m_wallet.cs_wallet); + LOCK(m_wallet->cs_wallet); - if (!fDryRun && m_wallet.IsLocked(true)) { + if (!fDryRun && m_wallet->IsLocked(true)) { strAutoDenomResult = _("Wallet is locked."); return false; } @@ -834,7 +837,7 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(ChainstateManager& chainman return false; } - const auto bal = m_wallet.GetBalance(); + const auto bal = m_wallet->GetBalance(); // check if there is anything left to do CAmount nBalanceAnonymized = bal.m_anonymized; @@ -849,13 +852,13 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(ChainstateManager& chainman CAmount nValueMin = CoinJoin::GetSmallestDenomination(); // if there are no confirmed DS collateral inputs yet - if (!m_wallet.HasCollateralInputs()) { + if (!m_wallet->HasCollateralInputs()) { // should have some additional amount for them nValueMin += CoinJoin::GetMaxCollateralAmount(); } // including denoms but applying some restrictions - CAmount nBalanceAnonymizable = m_wallet.GetAnonymizableBalance(); + CAmount nBalanceAnonymizable = m_wallet->GetAnonymizableBalance(); // mixable balance is way too small if (nBalanceAnonymizable < nValueMin) { @@ -865,7 +868,7 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(ChainstateManager& chainman } // excluding denoms - CAmount nBalanceAnonimizableNonDenom = m_wallet.GetAnonymizableBalance(true); + CAmount nBalanceAnonimizableNonDenom = m_wallet->GetAnonymizableBalance(true); // denoms CAmount nBalanceDenominatedConf = bal.m_denominated_trusted; CAmount nBalanceDenominatedUnconf = bal.m_denominated_untrusted_pending; @@ -917,8 +920,8 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(ChainstateManager& chainman } //check if we have the collateral sized inputs - if (!m_wallet.HasCollateralInputs()) { - return !m_wallet.HasCollateralInputs(false) && MakeCollateralAmounts(); + if (!m_wallet->HasCollateralInputs()) { + return !m_wallet->HasCollateralInputs(false) && MakeCollateralAmounts(); } if (nSessionID) { @@ -957,10 +960,10 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(ChainstateManager& chainman } // lock the funds we're going to use for our collateral for (const auto& txin : txMyCollateral.vin) { - m_wallet.LockCoin(txin.prevout); + m_wallet->LockCoin(txin.prevout); vecOutPointLocked.push_back(txin.prevout); } - } // LOCK(m_wallet.cs_wallet); + } // LOCK(m_wallet->cs_wallet); // Always attempt to join an existing queue if (JoinExistingQueue(nBalanceNeedsAnonymized, connman)) { @@ -985,7 +988,7 @@ bool CCoinJoinClientManager::DoAutomaticDenominating(ChainstateManager& chainman return false; } - if (!fDryRun && m_wallet.IsLocked(true)) { + if (!fDryRun && m_wallet->IsLocked(true)) { strAutoDenomResult = _("Wallet is locked."); return false; } @@ -1107,7 +1110,7 @@ bool CCoinJoinClientSession::JoinExistingQueue(CAmount nBalanceNeedsAnonymized, std::vector<CTxDSIn> vecTxDSInTmp; // Try to match their denominations if possible, select exact number of denominations - if (!m_wallet.SelectTxDSInsByDenomination(dsq.nDenom, nBalanceNeedsAnonymized, vecTxDSInTmp)) { + if (!m_wallet->SelectTxDSInsByDenomination(dsq.nDenom, nBalanceNeedsAnonymized, vecTxDSInTmp)) { WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::JoinExistingQueue -- Couldn't match denomination %d (%s)\n", dsq.nDenom, CoinJoin::DenominationToString(dsq.nDenom)); continue; } @@ -1153,7 +1156,7 @@ bool CCoinJoinClientSession::StartNewQueue(CAmount nBalanceNeedsAnonymized, CCon // find available denominated amounts std::set<CAmount> setAmounts; - if (!m_wallet.SelectDenominatedAmounts(nBalanceNeedsAnonymized, setAmounts)) { + if (!m_wallet->SelectDenominatedAmounts(nBalanceNeedsAnonymized, setAmounts)) { // this should never happen strAutoDenomResult = _("Can't mix: no compatible inputs found!"); WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::StartNewQueue -- %s\n", strAutoDenomResult.original); @@ -1288,7 +1291,7 @@ bool CCoinJoinClientManager::MarkAlreadyJoinedQueueAsTried(CCoinJoinQueue& dsq) bool CCoinJoinClientSession::SubmitDenominate(CConnman& connman) { - LOCK(m_wallet.cs_wallet); + LOCK(m_wallet->cs_wallet); std::string strError; std::vector<CTxDSIn> vecTxDSIn; @@ -1342,7 +1345,7 @@ bool CCoinJoinClientSession::SelectDenominate(std::string& strErrorRet, std::vec { if (!CCoinJoinClientOptions::IsEnabled()) return false; - if (m_wallet.IsLocked(true)) { + if (m_wallet->IsLocked(true)) { strErrorRet = "Wallet locked, unable to create transaction!"; return false; } @@ -1354,7 +1357,7 @@ bool CCoinJoinClientSession::SelectDenominate(std::string& strErrorRet, std::vec vecTxDSInRet.clear(); - bool fSelected = m_wallet.SelectTxDSInsByDenomination(nSessionDenom, CoinJoin::GetMaxPoolAmount(), vecTxDSInRet); + bool fSelected = m_wallet->SelectTxDSInsByDenomination(nSessionDenom, CoinJoin::GetMaxPoolAmount(), vecTxDSInRet); if (!fSelected) { strErrorRet = "Can't select current denominated inputs"; return false; @@ -1365,7 +1368,7 @@ bool CCoinJoinClientSession::SelectDenominate(std::string& strErrorRet, std::vec bool CCoinJoinClientSession::PrepareDenominate(int nMinRounds, int nMaxRounds, std::string& strErrorRet, const std::vector<CTxDSIn>& vecTxDSIn, std::vector<std::pair<CTxDSIn, CTxOut> >& vecPSInOutPairsRet, bool fDryRun) { - AssertLockHeld(m_wallet.cs_wallet); + AssertLockHeld(m_wallet->cs_wallet); if (!CoinJoin::IsValidDenomination(nSessionDenom)) { strErrorRet = "Incorrect session denom"; @@ -1395,12 +1398,7 @@ bool CCoinJoinClientSession::PrepareDenominate(int nMinRounds, int nMaxRounds, s ++nSteps; continue; } - const auto pwallet = GetWallet(m_wallet.GetName()); - if (!pwallet) { - strErrorRet ="Couldn't get wallet pointer"; - return false; - } - scriptDenom = keyHolderStorage.AddKey(pwallet.get()); + scriptDenom = keyHolderStorage.AddKey(m_wallet.get()); } vecPSInOutPairsRet.emplace_back(entry, CTxOut(nDenomAmount, scriptDenom)); // step is complete @@ -1418,7 +1416,7 @@ bool CCoinJoinClientSession::PrepareDenominate(int nMinRounds, int nMaxRounds, s } for (const auto& [txDsIn, txDsOut] : vecPSInOutPairsRet) { - m_wallet.LockCoin(txDsIn.prevout); + m_wallet->LockCoin(txDsIn.prevout); vecOutPointLocked.push_back(txDsIn.prevout); } @@ -1430,13 +1428,13 @@ bool CCoinJoinClientSession::MakeCollateralAmounts() { if (!CCoinJoinClientOptions::IsEnabled()) return false; - LOCK(m_wallet.cs_wallet); + LOCK(m_wallet->cs_wallet); // NOTE: We do not allow txes larger than 100 kB, so we have to limit number of inputs here. // We still want to consume a lot of inputs to avoid creating only smaller denoms though. // Knowing that each CTxIn is at least 148 B big, 400 inputs should take 400 x ~148 B = ~60 kB. // This still leaves more than enough room for another data of typical MakeCollateralAmounts tx. - std::vector<CompactTallyItem> vecTally = m_wallet.SelectCoinsGroupedByAddresses(false, false, true, 400); + std::vector<CompactTallyItem> vecTally = m_wallet->SelectCoinsGroupedByAddresses(false, false, true, 400); if (vecTally.empty()) { WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::MakeCollateralAmounts -- SelectCoinsGroupedByAddresses can't find any inputs!\n"); return false; @@ -1448,14 +1446,14 @@ bool CCoinJoinClientSession::MakeCollateralAmounts() }); // First try to use only non-denominated funds - if (ranges::any_of(vecTally, [&](const auto& item) EXCLUSIVE_LOCKS_REQUIRED(m_wallet.cs_wallet) { + if (ranges::any_of(vecTally, [&](const auto& item) EXCLUSIVE_LOCKS_REQUIRED(m_wallet->cs_wallet) { return MakeCollateralAmounts(item, false); })) { return true; } // There should be at least some denominated funds we should be able to break in pieces to continue mixing - if (ranges::any_of(vecTally, [&](const auto& item) EXCLUSIVE_LOCKS_REQUIRED(m_wallet.cs_wallet) { + if (ranges::any_of(vecTally, [&](const auto& item) EXCLUSIVE_LOCKS_REQUIRED(m_wallet->cs_wallet) { return MakeCollateralAmounts(item, true); })) { return true; @@ -1470,7 +1468,7 @@ bool CCoinJoinClientSession::MakeCollateralAmounts() bool CCoinJoinClientSession::MakeCollateralAmounts(const CompactTallyItem& tallyItem, bool fTryDenominated) { // TODO: consider refactoring to remove duplicated code with CCoinJoinClientSession::CreateDenominated - AssertLockHeld(m_wallet.cs_wallet); + AssertLockHeld(m_wallet->cs_wallet); if (!CCoinJoinClientOptions::IsEnabled()) return false; @@ -1484,14 +1482,7 @@ bool CCoinJoinClientSession::MakeCollateralAmounts(const CompactTallyItem& tally return false; } - const auto pwallet = GetWallet(m_wallet.GetName()); - - if (!pwallet) { - WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::%s -- Couldn't get wallet pointer\n", __func__); - return false; - } - - CTransactionBuilder txBuilder(pwallet, tallyItem); + CTransactionBuilder txBuilder(m_wallet, tallyItem); WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::%s -- Start %s\n", __func__, txBuilder.ToString()); @@ -1562,13 +1553,13 @@ bool CCoinJoinClientSession::MakeCollateralAmounts(const CompactTallyItem& tally bool CCoinJoinClientSession::CreateCollateralTransaction(CMutableTransaction& txCollateral, std::string& strReason) { - AssertLockHeld(m_wallet.cs_wallet); + AssertLockHeld(m_wallet->cs_wallet); std::vector<COutput> vCoins; CCoinControl coin_control; coin_control.nCoinType = CoinType::ONLY_COINJOIN_COLLATERAL; - m_wallet.AvailableCoins(vCoins, &coin_control); + m_wallet->AvailableCoins(vCoins, &coin_control); if (vCoins.empty()) { strReason = strprintf("%s requires a collateral transaction and could not locate an acceptable input!", gCoinJoinName); @@ -1589,7 +1580,7 @@ bool CCoinJoinClientSession::CreateCollateralTransaction(CMutableTransaction& tx // make our change address CScript scriptChange; CTxDestination dest; - ReserveDestination reserveDest(&m_wallet); + ReserveDestination reserveDest(m_wallet.get()); bool success = reserveDest.GetReservedDestination(dest, true); assert(success); // should never fail, as we just unlocked scriptChange = GetScriptForDestination(dest); @@ -1601,7 +1592,7 @@ bool CCoinJoinClientSession::CreateCollateralTransaction(CMutableTransaction& tx txCollateral.vout.emplace_back(0, CScript() << OP_RETURN); } - if (!m_wallet.SignTransaction(txCollateral)) { + if (!m_wallet->SignTransaction(txCollateral)) { strReason = "Unable to sign collateral transaction!"; return false; } @@ -1614,13 +1605,13 @@ bool CCoinJoinClientSession::CreateDenominated(CAmount nBalanceToDenominate) { if (!CCoinJoinClientOptions::IsEnabled()) return false; - LOCK(m_wallet.cs_wallet); + LOCK(m_wallet->cs_wallet); // NOTE: We do not allow txes larger than 100 kB, so we have to limit number of inputs here. // We still want to consume a lot of inputs to avoid creating only smaller denoms though. // Knowing that each CTxIn is at least 148 B big, 400 inputs should take 400 x ~148 B = ~60 kB. // This still leaves more than enough room for another data of typical CreateDenominated tx. - std::vector<CompactTallyItem> vecTally = m_wallet.SelectCoinsGroupedByAddresses(true, true, true, 400); + std::vector<CompactTallyItem> vecTally = m_wallet->SelectCoinsGroupedByAddresses(true, true, true, 400); if (vecTally.empty()) { WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::CreateDenominated -- SelectCoinsGroupedByAddresses can't find any inputs!\n"); return false; @@ -1631,7 +1622,7 @@ bool CCoinJoinClientSession::CreateDenominated(CAmount nBalanceToDenominate) return a.nAmount > b.nAmount; }); - bool fCreateMixingCollaterals = !m_wallet.HasCollateralInputs(); + bool fCreateMixingCollaterals = !m_wallet->HasCollateralInputs(); for (const auto& item : vecTally) { if (!CreateDenominated(nBalanceToDenominate, item, fCreateMixingCollaterals)) continue; @@ -1645,7 +1636,7 @@ bool CCoinJoinClientSession::CreateDenominated(CAmount nBalanceToDenominate) // Create denominations bool CCoinJoinClientSession::CreateDenominated(CAmount nBalanceToDenominate, const CompactTallyItem& tallyItem, bool fCreateMixingCollaterals) { - AssertLockHeld(m_wallet.cs_wallet); + AssertLockHeld(m_wallet->cs_wallet); if (!CCoinJoinClientOptions::IsEnabled()) return false; @@ -1654,14 +1645,7 @@ bool CCoinJoinClientSession::CreateDenominated(CAmount nBalanceToDenominate, con return false; } - const auto pwallet = GetWallet(m_wallet.GetName()); - - if (!pwallet) { - WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::%s -- Couldn't get wallet pointer\n", __func__); - return false; - } - - CTransactionBuilder txBuilder(pwallet, tallyItem); + CTransactionBuilder txBuilder(m_wallet, tallyItem); WalletCJLogPrint(m_wallet, "CCoinJoinClientSession::%s -- Start %s\n", __func__, txBuilder.ToString()); @@ -1679,7 +1663,7 @@ bool CCoinJoinClientSession::CreateDenominated(CAmount nBalanceToDenominate, con std::map<CAmount, int> mapDenomCount; for (auto nDenomValue : denoms) { - mapDenomCount.insert(std::pair<CAmount, int>(nDenomValue, m_wallet.CountInputsWithAmount(nDenomValue))); + mapDenomCount.insert(std::pair<CAmount, int>(nDenomValue, m_wallet->CountInputsWithAmount(nDenomValue))); } // Will generate outputs for the createdenoms up to coinjoinmaxdenoms per denom @@ -1922,11 +1906,11 @@ void CCoinJoinClientManager::GetJsonInfo(UniValue& obj) const obj.pushKV("sessions", arrSessions); } -void CoinJoinWalletManager::Add(CWallet& wallet) +void CoinJoinWalletManager::Add(const std::shared_ptr<CWallet>& wallet) { { LOCK(cs_wallet_manager_map); - m_wallet_manager_map.try_emplace(wallet.GetName(), + m_wallet_manager_map.try_emplace(wallet->GetName(), std::make_unique<CCoinJoinClientManager>(wallet, *this, m_dmnman, m_mn_metaman, m_mn_sync, m_queueman, m_is_masternode)); } diff --git a/src/coinjoin/client.h b/src/coinjoin/client.h index 17239b9a71b7d..0dd1cccb906b7 100644 --- a/src/coinjoin/client.h +++ b/src/coinjoin/client.h @@ -96,7 +96,7 @@ class CoinJoinWalletManager { } } - void Add(CWallet& wallet); + void Add(const std::shared_ptr<CWallet>& wallet); void DoMaintenance(); void Remove(const std::string& name); @@ -138,7 +138,7 @@ class CoinJoinWalletManager { class CCoinJoinClientSession : public CCoinJoinBaseSession { private: - CWallet& m_wallet; + const std::shared_ptr<CWallet> m_wallet; CoinJoinWalletManager& m_walletman; CCoinJoinClientManager& m_clientman; CDeterministicMNManager& m_dmnman; @@ -163,15 +163,15 @@ class CCoinJoinClientSession : public CCoinJoinBaseSession /// Create denominations bool CreateDenominated(CAmount nBalanceToDenominate); bool CreateDenominated(CAmount nBalanceToDenominate, const CompactTallyItem& tallyItem, bool fCreateMixingCollaterals) - EXCLUSIVE_LOCKS_REQUIRED(m_wallet.cs_wallet); + EXCLUSIVE_LOCKS_REQUIRED(m_wallet->cs_wallet); /// Split up large inputs or make fee sized inputs bool MakeCollateralAmounts(); bool MakeCollateralAmounts(const CompactTallyItem& tallyItem, bool fTryDenominated) - EXCLUSIVE_LOCKS_REQUIRED(m_wallet.cs_wallet); + EXCLUSIVE_LOCKS_REQUIRED(m_wallet->cs_wallet); bool CreateCollateralTransaction(CMutableTransaction& txCollateral, std::string& strReason) - EXCLUSIVE_LOCKS_REQUIRED(m_wallet.cs_wallet); + EXCLUSIVE_LOCKS_REQUIRED(m_wallet->cs_wallet); bool JoinExistingQueue(CAmount nBalanceNeedsAnonymized, CConnman& connman); bool StartNewQueue(CAmount nBalanceNeedsAnonymized, CConnman& connman); @@ -181,7 +181,7 @@ class CCoinJoinClientSession : public CCoinJoinBaseSession /// step 1: prepare denominated inputs and outputs bool PrepareDenominate(int nMinRounds, int nMaxRounds, std::string& strErrorRet, const std::vector<CTxDSIn>& vecTxDSIn, std::vector<std::pair<CTxDSIn, CTxOut>>& vecPSInOutPairsRet, bool fDryRun = false) - EXCLUSIVE_LOCKS_REQUIRED(m_wallet.cs_wallet); + EXCLUSIVE_LOCKS_REQUIRED(m_wallet->cs_wallet); /// step 2: send denominated inputs and outputs prepared in step 1 bool SendDenominate(const std::vector<std::pair<CTxDSIn, CTxOut> >& vecPSInOutPairsIn, CConnman& connman) EXCLUSIVE_LOCKS_REQUIRED(!cs_coinjoin); @@ -200,7 +200,7 @@ class CCoinJoinClientSession : public CCoinJoinBaseSession void SetNull() override EXCLUSIVE_LOCKS_REQUIRED(cs_coinjoin); public: - explicit CCoinJoinClientSession(CWallet& wallet, CoinJoinWalletManager& walletman, + explicit CCoinJoinClientSession(const std::shared_ptr<CWallet>& wallet, CoinJoinWalletManager& walletman, CCoinJoinClientManager& clientman, CDeterministicMNManager& dmnman, CMasternodeMetaMan& mn_metaman, const CMasternodeSync& mn_sync, const std::unique_ptr<CCoinJoinClientQueueManager>& queueman, bool is_masternode); @@ -267,7 +267,7 @@ class CCoinJoinClientQueueManager : public CCoinJoinBaseManager class CCoinJoinClientManager { private: - CWallet& m_wallet; + const std::shared_ptr<CWallet> m_wallet; CoinJoinWalletManager& m_walletman; CDeterministicMNManager& m_dmnman; CMasternodeMetaMan& m_mn_metaman; @@ -306,11 +306,19 @@ class CCoinJoinClientManager CCoinJoinClientManager(CCoinJoinClientManager const&) = delete; CCoinJoinClientManager& operator=(CCoinJoinClientManager const&) = delete; - explicit CCoinJoinClientManager(CWallet& wallet, CoinJoinWalletManager& walletman, CDeterministicMNManager& dmnman, - CMasternodeMetaMan& mn_metaman, const CMasternodeSync& mn_sync, + explicit CCoinJoinClientManager(const std::shared_ptr<CWallet>& wallet, CoinJoinWalletManager& walletman, + CDeterministicMNManager& dmnman, CMasternodeMetaMan& mn_metaman, + const CMasternodeSync& mn_sync, const std::unique_ptr<CCoinJoinClientQueueManager>& queueman, bool is_masternode) : - m_wallet(wallet), m_walletman(walletman), m_dmnman(dmnman), m_mn_metaman(mn_metaman), m_mn_sync(mn_sync), m_queueman(queueman), - m_is_masternode{is_masternode} {} + m_wallet(wallet), + m_walletman(walletman), + m_dmnman(dmnman), + m_mn_metaman(mn_metaman), + m_mn_sync(mn_sync), + m_queueman(queueman), + m_is_masternode{is_masternode} + { + } void ProcessMessage(CNode& peer, CChainState& active_chainstate, CConnman& connman, const CTxMemPool& mempool, std::string_view msg_type, CDataStream& vRecv) EXCLUSIVE_LOCKS_REQUIRED(!cs_deqsessions); diff --git a/src/coinjoin/interfaces.cpp b/src/coinjoin/interfaces.cpp index 78a97194319ba..6c40a3b6d3e07 100644 --- a/src/coinjoin/interfaces.cpp +++ b/src/coinjoin/interfaces.cpp @@ -67,10 +67,7 @@ class CoinJoinLoaderImpl : public interfaces::CoinJoin::Loader explicit CoinJoinLoaderImpl(CoinJoinWalletManager& walletman) : m_walletman(walletman) {} - void AddWallet(CWallet& wallet) override - { - m_walletman.Add(wallet); - } + void AddWallet(const std::shared_ptr<CWallet>& wallet) override { m_walletman.Add(wallet); } void RemoveWallet(const std::string& name) override { m_walletman.Remove(name); diff --git a/src/coinjoin/util.cpp b/src/coinjoin/util.cpp index d936baf354661..e188972b68980 100644 --- a/src/coinjoin/util.cpp +++ b/src/coinjoin/util.cpp @@ -87,14 +87,15 @@ void CKeyHolderStorage::ReturnAll() } } -CTransactionBuilderOutput::CTransactionBuilderOutput(CTransactionBuilder* pTxBuilderIn, std::shared_ptr<CWallet> pwalletIn, CAmount nAmountIn) : +CTransactionBuilderOutput::CTransactionBuilderOutput(CTransactionBuilder* pTxBuilderIn, + const std::shared_ptr<CWallet>& wallet, CAmount nAmountIn) : pTxBuilder(pTxBuilderIn), - dest(pwalletIn.get()), + dest(wallet.get()), nAmount(nAmountIn) { assert(pTxBuilder); CTxDestination txdest; - LOCK(pwalletIn->cs_wallet); + LOCK(wallet->cs_wallet); dest.GetReservedDestination(txdest, false); script = ::GetScriptForDestination(txdest); } @@ -108,15 +109,15 @@ bool CTransactionBuilderOutput::UpdateAmount(const CAmount nNewAmount) return true; } -CTransactionBuilder::CTransactionBuilder(std::shared_ptr<CWallet> pwalletIn, const CompactTallyItem& tallyItemIn) : - pwallet(pwalletIn), - dummyReserveDestination(pwalletIn.get()), +CTransactionBuilder::CTransactionBuilder(const std::shared_ptr<CWallet>& wallet, const CompactTallyItem& tallyItemIn) : + m_wallet(wallet), + dummyReserveDestination(wallet.get()), tallyItem(tallyItemIn) { // Generate a feerate which will be used to consider if the remainder is dust and will go into fees or not - coinControl.m_discard_feerate = ::GetDiscardRate(*pwallet); + coinControl.m_discard_feerate = ::GetDiscardRate(*m_wallet); // Generate a feerate which will be used by calculations of this class and also by CWallet::CreateTransaction - coinControl.m_feerate = std::max(GetRequiredFeeRate(*pwallet), pwallet->m_pay_tx_fee); + coinControl.m_feerate = std::max(GetRequiredFeeRate(*m_wallet), m_wallet->m_pay_tx_fee); // Change always goes back to origin coinControl.destChange = tallyItemIn.txdest; // Only allow tallyItems inputs for tx creation @@ -131,16 +132,16 @@ CTransactionBuilder::CTransactionBuilder(std::shared_ptr<CWallet> pwalletIn, con // Get a comparable dummy scriptPubKey, avoid writing/flushing to the actual wallet db CScript dummyScript; { - LOCK(pwallet->cs_wallet); - WalletBatch dummyBatch(pwallet->GetDatabase(), false); + LOCK(m_wallet->cs_wallet); + WalletBatch dummyBatch(m_wallet->GetDatabase(), false); dummyBatch.TxnBegin(); CKey secret; - secret.MakeNewKey(pwallet->CanSupportFeature(FEATURE_COMPRPUBKEY)); + secret.MakeNewKey(m_wallet->CanSupportFeature(FEATURE_COMPRPUBKEY)); CPubKey dummyPubkey = secret.GetPubKey(); dummyBatch.TxnAbort(); dummyScript = ::GetScriptForDestination(PKHash(dummyPubkey)); // Calculate required bytes for the dummy signed tx with tallyItem's inputs only - nBytesBase = CalculateMaximumSignedTxSize(CTransaction(dummyTx), pwallet.get(), false); + nBytesBase = CalculateMaximumSignedTxSize(CTransaction(dummyTx), m_wallet.get(), false); } // Calculate the output size nBytesOutput = ::GetSerializeSize(CTxOut(0, dummyScript), PROTOCOL_VERSION); @@ -204,7 +205,7 @@ CTransactionBuilderOutput* CTransactionBuilder::AddOutput(CAmount nAmountOutput) { if (CouldAddOutput(nAmountOutput)) { LOCK(cs_outputs); - vecOutputs.push_back(std::make_unique<CTransactionBuilderOutput>(this, pwallet, nAmountOutput)); + vecOutputs.push_back(std::make_unique<CTransactionBuilderOutput>(this, m_wallet, nAmountOutput)); return vecOutputs.back().get(); } return nullptr; @@ -233,12 +234,12 @@ CAmount CTransactionBuilder::GetAmountUsed() const CAmount CTransactionBuilder::GetFee(unsigned int nBytes) const { CAmount nFeeCalc = coinControl.m_feerate->GetFee(nBytes); - CAmount nRequiredFee = GetRequiredFee(*pwallet, nBytes); + CAmount nRequiredFee = GetRequiredFee(*m_wallet, nBytes); if (nRequiredFee > nFeeCalc) { nFeeCalc = nRequiredFee; } - if (nFeeCalc > pwallet->m_default_max_tx_fee) { - nFeeCalc = pwallet->m_default_max_tx_fee; + if (nFeeCalc > m_wallet->m_default_max_tx_fee) { + nFeeCalc = m_wallet->m_default_max_tx_fee; } return nFeeCalc; } @@ -273,9 +274,9 @@ bool CTransactionBuilder::Commit(bilingual_str& strResult) CTransactionRef tx; { - LOCK2(pwallet->cs_wallet, cs_main); + LOCK2(m_wallet->cs_wallet, cs_main); FeeCalculation fee_calc_out; - if (!pwallet->CreateTransaction(vecSend, tx, nFeeRet, nChangePosRet, strResult, coinControl, fee_calc_out)) { + if (!m_wallet->CreateTransaction(vecSend, tx, nFeeRet, nChangePosRet, strResult, coinControl, fee_calc_out)) { return false; } } @@ -312,8 +313,8 @@ bool CTransactionBuilder::Commit(bilingual_str& strResult) } { - LOCK2(pwallet->cs_wallet, cs_main); - pwallet->CommitTransaction(tx, {}, {}); + LOCK2(m_wallet->cs_wallet, cs_main); + m_wallet->CommitTransaction(tx, {}, {}); } fKeepKeys = true; diff --git a/src/coinjoin/util.h b/src/coinjoin/util.h index 672d27432a1b2..f4e75aabc0a15 100644 --- a/src/coinjoin/util.h +++ b/src/coinjoin/util.h @@ -54,7 +54,7 @@ class CTransactionBuilderOutput CScript script; public: - CTransactionBuilderOutput(CTransactionBuilder* pTxBuilderIn, std::shared_ptr<CWallet> pwalletIn, CAmount nAmountIn); + CTransactionBuilderOutput(CTransactionBuilder* pTxBuilderIn, const std::shared_ptr<CWallet>& wallet, CAmount nAmountIn); CTransactionBuilderOutput(CTransactionBuilderOutput&&) = delete; CTransactionBuilderOutput& operator=(CTransactionBuilderOutput&&) = delete; /// Get the scriptPubKey of this output @@ -77,7 +77,7 @@ class CTransactionBuilderOutput class CTransactionBuilder { /// Wallet the transaction will be build for - std::shared_ptr<CWallet> pwallet; + const std::shared_ptr<CWallet>& m_wallet; /// See CTransactionBuilder() for initialization CCoinControl coinControl; /// Dummy since we anyway use tallyItem's destination as change destination in coincontrol. @@ -100,7 +100,7 @@ class CTransactionBuilder friend class CTransactionBuilderOutput; public: - CTransactionBuilder(std::shared_ptr<CWallet> pwalletIn, const CompactTallyItem& tallyItemIn); + CTransactionBuilder(const std::shared_ptr<CWallet>& wallet, const CompactTallyItem& tallyItemIn); ~CTransactionBuilder(); /// Check it would be possible to add a single output with the amount nAmount. Returns true if its possible and false if not. bool CouldAddOutput(CAmount nAmountOutput) const EXCLUSIVE_LOCKS_REQUIRED(!cs_outputs); diff --git a/src/interfaces/coinjoin.h b/src/interfaces/coinjoin.h index 345780cde0daf..7f881bf07f5c3 100644 --- a/src/interfaces/coinjoin.h +++ b/src/interfaces/coinjoin.h @@ -33,7 +33,7 @@ class Loader public: virtual ~Loader() {} //! Add new wallet to CoinJoin client manager - virtual void AddWallet(CWallet&) = 0; + virtual void AddWallet(const std::shared_ptr<CWallet>&) = 0; //! Remove wallet from CoinJoin client manager virtual void RemoveWallet(const std::string&) = 0; virtual void FlushWallet(const std::string&) = 0; diff --git a/src/wallet/test/wallet_tests.cpp b/src/wallet/test/wallet_tests.cpp index e7aa85c6d49fd..edbebf46bcb05 100644 --- a/src/wallet/test/wallet_tests.cpp +++ b/src/wallet/test/wallet_tests.cpp @@ -59,6 +59,10 @@ static std::shared_ptr<CWallet> TestLoadWallet(interfaces::Chain* chain, interfa std::vector<bilingual_str> warnings; auto database = MakeWalletDatabase("", options, status, error); auto wallet = CWallet::Create(chain, coinjoin_loader, "", std::move(database), options.create_flags, error, warnings); + if (coinjoin_loader) { + // TODO: see CreateWalletWithoutChain + AddWallet(wallet); + } if (chain) { wallet->postInitProcess(); } diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 0bc08a4c3ea3f..8de2fcde8ed26 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -125,7 +125,7 @@ bool AddWallet(const std::shared_ptr<CWallet>& wallet) } wallet->ConnectScriptPubKeyManNotifiers(); wallet->AutoLockMasternodeCollaterals(); - wallet->coinjoin_loader().AddWallet(*wallet); + wallet->coinjoin_loader().AddWallet(wallet); wallet->NotifyCanGetAddressesChanged(); return true; } @@ -1432,7 +1432,7 @@ int CWallet::GetRealOutpointCoinJoinRounds(const COutPoint& outpoint, int nRound if (wtx == nullptr || wtx->tx == nullptr) { // no such tx in this wallet *nRoundsRef = -1; - WalletCJLogPrint((*this), "%s FAILED %-70s %3d\n", __func__, outpoint.ToStringShort(), -1); + WalletCJLogPrint(this, "%s FAILED %-70s %3d\n", __func__, outpoint.ToStringShort(), -1); return *nRoundsRef; } @@ -1440,7 +1440,7 @@ int CWallet::GetRealOutpointCoinJoinRounds(const COutPoint& outpoint, int nRound if (outpoint.n >= wtx->tx->vout.size()) { // should never actually hit this *nRoundsRef = -4; - WalletCJLogPrint((*this), "%s FAILED %-70s %3d\n", __func__, outpoint.ToStringShort(), -4); + WalletCJLogPrint(this, "%s FAILED %-70s %3d\n", __func__, outpoint.ToStringShort(), -4); return *nRoundsRef; } @@ -1448,14 +1448,14 @@ int CWallet::GetRealOutpointCoinJoinRounds(const COutPoint& outpoint, int nRound if (CoinJoin::IsCollateralAmount(txOutRef->nValue)) { *nRoundsRef = -3; - WalletCJLogPrint((*this), "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); + WalletCJLogPrint(this, "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); return *nRoundsRef; } // make sure the final output is non-denominate if (!CoinJoin::IsDenominatedAmount(txOutRef->nValue)) { //NOT DENOM *nRoundsRef = -2; - WalletCJLogPrint((*this), "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); + WalletCJLogPrint(this, "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); return *nRoundsRef; } @@ -1463,7 +1463,7 @@ int CWallet::GetRealOutpointCoinJoinRounds(const COutPoint& outpoint, int nRound if (!CoinJoin::IsDenominatedAmount(out.nValue)) { // this one is denominated but there is another non-denominated output found in the same tx *nRoundsRef = 0; - WalletCJLogPrint((*this), "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); + WalletCJLogPrint(this, "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); return *nRoundsRef; } } @@ -1471,7 +1471,7 @@ int CWallet::GetRealOutpointCoinJoinRounds(const COutPoint& outpoint, int nRound // make sure we spent all of it with 0 fee, reset to 0 rounds otherwise if (wtx->GetDebit(ISMINE_SPENDABLE) != wtx->GetCredit(ISMINE_SPENDABLE)) { *nRoundsRef = 0; - WalletCJLogPrint((*this), "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); + WalletCJLogPrint(this, "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); return *nRoundsRef; } @@ -1491,7 +1491,7 @@ int CWallet::GetRealOutpointCoinJoinRounds(const COutPoint& outpoint, int nRound *nRoundsRef = fDenomFound ? (nShortest >= nRoundsMax - 1 ? nRoundsMax : nShortest + 1) // good, we a +1 to the shortest one but only nRoundsMax rounds max allowed : 0; // too bad, we are the fist one in that chain - WalletCJLogPrint((*this), "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); + WalletCJLogPrint(this, "%s UPDATED %-70s %3d\n", __func__, outpoint.ToStringShort(), *nRoundsRef); return *nRoundsRef; } @@ -3253,7 +3253,7 @@ bool CWallet::SelectTxDSInsByDenomination(int nDenom, CAmount nValueMax, std::ve CCoinControl coin_control; coin_control.nCoinType = CoinType::ONLY_READY_TO_MIX; AvailableCoins(vCoins, &coin_control); - WalletCJLogPrint((*this), "CWallet::%s -- vCoins.size(): %d\n", __func__, vCoins.size()); + WalletCJLogPrint(this, "CWallet::%s -- vCoins.size(): %d\n", __func__, vCoins.size()); Shuffle(vCoins.rbegin(), vCoins.rend(), FastRandomContext()); @@ -3271,11 +3271,11 @@ bool CWallet::SelectTxDSInsByDenomination(int nDenom, CAmount nValueMax, std::ve nValueTotal += nValue; vecTxDSInRet.emplace_back(CTxDSIn(txin, scriptPubKey, nRounds)); setRecentTxIds.emplace(txHash); - WalletCJLogPrint((*this), "CWallet::%s -- hash: %s, nValue: %d.%08d\n", + WalletCJLogPrint(this, "CWallet::%s -- hash: %s, nValue: %d.%08d\n", __func__, txHash.ToString(), nValue / COIN, nValue % COIN); } - WalletCJLogPrint((*this), "CWallet::%s -- setRecentTxIds.size(): %d\n", __func__, setRecentTxIds.size()); + WalletCJLogPrint(this, "CWallet::%s -- setRecentTxIds.size(): %d\n", __func__, setRecentTxIds.size()); return nValueTotal > 0; } @@ -4980,7 +4980,7 @@ std::shared_ptr<CWallet> CWallet::Create(interfaces::Chain* chain, interfaces::C } if (coinjoin_loader) { - coinjoin_loader->AddWallet(*walletInstance); + coinjoin_loader->AddWallet(walletInstance); } { diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index dd0238595b064..9c27b456937d9 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -153,7 +153,7 @@ extern const std::map<uint64_t,std::string> WALLET_FLAG_CAVEATS; #define WalletCJLogPrint(wallet, ...) \ do { \ if (LogAcceptCategory(BCLog::COINJOIN)) { \ - wallet.WalletLogPrintf(__VA_ARGS__); \ + wallet->WalletLogPrintf(__VA_ARGS__); \ } \ } while (0) From 395447bf30673cf4bd9cfe90c4834871ab44b2f3 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Wed, 4 Dec 2024 11:06:06 -0600 Subject: [PATCH 15/24] Merge #6451: depends: update 'src/dashbls' to dashpay/bls-signatures@7e747e8a as 62fa6652 f25a93647b10d838a0722de4dc74304ce5dbe646 build: stop tracking cmake dependency relic_conf.h.in (Kittywhiskers Van Gogh) 62fa66524c5ec4a5a005285a05b7a3314a523a16 Squashed 'src/dashbls/' changes from 4e070243ae..7e747e8a07 (Kittywhiskers Van Gogh) b1b3840ac540ae5980cbb4258a4b44d75ee27d75 revert: stop tracking cmake dependency relic_conf.h.in (Kittywhiskers Van Gogh) Pull request description: ## Additional Information * Closes https://github.com/dashpay/dash/issues/6343 * Includes [bls-signatures#102](https://github.com/dashpay/bls-signatures/pull/102) and [bls-signatures#104](https://github.com/dashpay/bls-signatures/pull/104) ## Breaking Changes None expected. ## Checklist: - [x] I have performed a self-review of my own code **(note: N/A)** - [x] I have commented my code, particularly in hard-to-understand areas **(note: N/A)** - [x] I have added or updated relevant unit/integration/functional/e2e tests **(note: N/A)** - [x] I have made corresponding changes to the documentation **(note: N/A)** - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK f25a93647b10d838a0722de4dc74304ce5dbe646 UdjinM6: utACK f25a93647b10d838a0722de4dc74304ce5dbe646 Tree-SHA512: 394a02a50f57538e9d12f836fd1ea1598d8a20e2d0079fcb44bb317a42a64a638a1ef906222f2d3bab06d2c0b8cfac43c6e0055d87fbdb86abe680c53ecd6b7a --- src/dashbls/.github/workflows/build-binds.yml | 4 +- src/dashbls/configure.ac | 135 +++++++++++------- 2 files changed, 85 insertions(+), 54 deletions(-) diff --git a/src/dashbls/.github/workflows/build-binds.yml b/src/dashbls/.github/workflows/build-binds.yml index f57acbd7e20f8..6fc729109d74c 100644 --- a/src/dashbls/.github/workflows/build-binds.yml +++ b/src/dashbls/.github/workflows/build-binds.yml @@ -23,8 +23,8 @@ jobs: fail-fast: false matrix: os: [macos-latest, ubuntu-latest] - golang: [ '1.17' ] - python: ['3.7', '3.8', '3.9', '3.10', '3.11'] + golang: [ '1.22' ] + python: ['3.9', '3.10', '3.11', '3.12'] steps: - name: Checkout code diff --git a/src/dashbls/configure.ac b/src/dashbls/configure.ac index e60fca8fc1991..df411ced0c98c 100644 --- a/src/dashbls/configure.ac +++ b/src/dashbls/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.60]) -AC_INIT([libdashbls],[1.3.3]) +AC_INIT([libdashbls],[1.3.4]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([build-aux/m4]) @@ -100,7 +100,7 @@ dnl warning about something unrelated, for example about some path issue. If tha dnl -Werror cannot be used because all of those warnings would be turned into errors. AX_CHECK_COMPILE_FLAG([-Werror], [FLAG_WERROR="-Werror"], [FLAG_WERROR=""]) -if [[[ "$use_debug" == "yes" || "$use_optimizations" == "no" ]]]; then +if test x"$use_debug" = x"yes" -o x"$use_optimizations" = x"no"; then dnl Clear default -g -O2 flags if test x"$CFLAGS_overridden" = x"no"; then CFLAGS="" @@ -112,7 +112,7 @@ if [[[ "$use_debug" == "yes" || "$use_optimizations" == "no" ]]]; then dnl Disable optimizations AX_CHECK_COMPILE_FLAG([-O0], [[DEBUG_FLAGS="$DEBUG_FLAGS -O0"]], [], [[$FLAG_WERROR]]) - if [[[ "$use_debug" == "yes" ]]]; then + if test x"$use_debug" = x"yes"; then dnl Prefer -g3, fall back to -g if that is unavailable. AX_CHECK_COMPILE_FLAG( [-g3], @@ -220,7 +220,11 @@ case $host in GMP_LDFLAGS="-L$gmp_prefix/lib" fi fi - ;; + ;; + *freebsd*) + GMP_CPPFLAGS="-I/usr/local/include" + GMP_LDFLAGS="-L/usr/local/lib" + ;; esac if test x"$want_backend" = x"auto"; then @@ -432,44 +436,74 @@ fi use_pkgconfig=yes -if [[[ "$host_cpu" == x86_64 && "$use_optimizations" == "yes" ]]]; then - dnl Support for AMD64 (also known as x86_64 on some platforms) processors - CPU_ARCH="x64" - AC_DEFINE([ARCH], [X64], [Architecture.]) - AC_DEFINE([WSIZE], [64], [Size of word in this architecture.]) -elif [[[ "$host_cpu" == aarch* && "$use_optimizations" == "yes" ]]]; then - dnl Support for 64-bit ARM processors - dnl Relic doesn't support aarch64 yet, set CPU_ARCH to none and ARCH to RELIC_NONE. - CPU_ARCH="none" - AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) - AC_DEFINE([WSIZE], [64], [Size of word in this architecture.]) -elif [[[ "$host_cpu" == i?86 && "$use_optimizations" == "yes" ]]]; then - dnl Support for Intel x86 processors - CPU_ARCH="x86" - AC_DEFINE([ARCH], [X86], [Architecture.]) - AC_DEFINE([WSIZE], [32], [Size of word in this architecture.]) -elif [[[ "$host_cpu" == arm* && "$use_optimizations" == "yes" ]]]; then - dnl Support for 32-bit native ARM processors - CPU_ARCH="arm" - AC_DEFINE([ARCH], [ARM], [Architecture.]) - AC_DEFINE([WSIZE], [32], [Size of word in this architecture.]) -elif [[[ "$host_cpu" == *64* ]]]; then - dnl Support for an undefined 64-bit architecture - CPU_ARCH="none" - AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) - AC_DEFINE([WSIZE], [64], [Size of word in this architecture.]) -elif [[[ "$host_cpu" == *32* || "$host_cpu" == arm* || "$host_cpu" == i?86 ]]]; then - dnl Support for an undefined 32-bit architecture - CPU_ARCH="none" - AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) - AC_DEFINE([WSIZE], [32], [Size of word in this architecture.]) +if test x"$use_optimizations" = x"yes"; then + case $host_cpu in + amd64 | x86_64) + dnl Support for AMD64 (also known as x86_64 on some platforms) processors + CPU_ARCH="x64" + AC_DEFINE([ARCH], [X64], [Architecture.]) + AC_DEFINE([WSIZE], [64], [Size of word in this architecture.]) + ;; + aarch*) + dnl Support for 64-bit ARM processors + dnl Relic does not support aarch64 yet, set CPU_ARCH to none and ARCH to RELIC_NONE. + CPU_ARCH="none" + AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) + AC_DEFINE([WSIZE], [64], [Size of word in this architecture.]) + ;; + i?86) + dnl Support for Intel x86 processors + CPU_ARCH="x86" + AC_DEFINE([ARCH], [X86], [Architecture.]) + AC_DEFINE([WSIZE], [32], [Size of word in this architecture.]) + ;; + arm*) + dnl Support for 32-bit native ARM processors + CPU_ARCH="arm" + AC_DEFINE([ARCH], [ARM], [Architecture.]) + AC_DEFINE([WSIZE], [32], [Size of word in this architecture.]) + ;; + *64*) + dnl Support for an undefined 64-bit architecture + CPU_ARCH="none" + AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) + AC_DEFINE([WSIZE], [64], [Size of word in this architecture.]) + ;; + *32*) + dnl Support for an undefined 32-bit architecture + CPU_ARCH="none" + AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) + AC_DEFINE([WSIZE], [32], [Size of word in this architecture.]) + ;; + *) + AC_MSG_ERROR([Unable to determine host architecture, may not be supported!]) + ;; + esac else - AC_MSG_ERROR([Unable to determine host architecture, may not be supported!]) + case $host_cpu in + *64*) + dnl Support for an undefined 64-bit architecture + CPU_ARCH="none" + AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) + AC_DEFINE([WSIZE], [64], [Size of word in this architecture.]) + ;; + *32* | arm* | i?86) + dnl Support for an undefined 32-bit architecture + CPU_ARCH="none" + AC_DEFINE([ARCH], [RELIC_NONE], [Architecture.]) + AC_DEFINE([WSIZE], [32], [Size of word in this architecture.]) + ;; + *) + AC_MSG_ERROR([Unable to determine host architecture, may not be supported!]) + ;; + esac fi case $host in *darwin*) AC_DEFINE([OPSYS], [MACOSX], [Detected operation system.]) + TARGET_OS=darwin + AC_PATH_PROG([BREW],brew,) if test x$BREW = x; then AC_PATH_PROG([PORT],port,) @@ -482,8 +516,10 @@ case $host in fi ;; *mingw*) - use_pkgconfig=no AC_DEFINE([OPSYS], [WINDOWS], [Detected operation system.]) + TARGET_OS=windows + + use_pkgconfig=no LIBTOOL_APP_LDFLAGS="$LIBTOOL_APP_LDFLAGS -all-static" dnl libtool insists upon adding -nostdlib and a list of objects/libs to link against. @@ -496,16 +532,21 @@ case $host in ;; *linux*) AC_DEFINE([OPSYS], [LINUX], [Detected operation system.]) + TARGET_OS=linux + RELIC_CPPFLAGS="-D_GNU_SOURCE" ;; *android*) AC_DEFINE([OPSYS], [DROID], [Detected operation system.]) + TARGET_OS=android ;; *freebsd*) AC_DEFINE([OPSYS], [FREEBSD], [Detected operation system.]) + TARGET_OS=freebsd ;; *netbsd*) AC_DEFINE([OPSYS], [NETBSD], [Detected operation system.]) + TARGET_OS=netbsd ;; *) AC_DEFINE([OPSYS], [RELIC_NONE], [Detected operation system.]) @@ -555,7 +596,7 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[char foo;]])], CFLAGS="$saved_CFLAGS" ]) -if [[[ "$CFLAGS_overridden" == "no" && "$CXXFLAGS_overridden" == "no" ]]]; then +if test x"$CFLAGS_overridden" = x"no" -a x"$CXXFLAGS_overridden" = x"no"; then dnl Enable warnings AX_CHECK_COMPILE_FLAG([-Wall],[WARN_FLAGS="$WARN_FLAGS -Wall"], [], [[$FLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wcast-align],[WARN_FLAGS="$WARN_FLAGS -Wcast-align"], [], [[$FLAG_WERROR]]) @@ -743,7 +784,6 @@ CORE_CPPFLAGS="$CORE_CPPFLAGS -DHAVE_BUILD_INFO" case $host in *mingw*) - TARGET_OS=windows AC_CHECK_LIB([user32], [main], [], [AC_MSG_ERROR([libuser32 missing])]) AC_CHECK_LIB([shell32], [SHGetSpecialFolderPathW], [], [AC_MSG_ERROR([libshell32 missing])]) AC_CHECK_LIB([advapi32], [CryptAcquireContextW], [], [AC_MSG_ERROR([libadvapi32 missing])]) @@ -771,15 +811,10 @@ case $host in AX_CHECK_LINK_FLAG([-Wl,--major-subsystem-version -Wl,6 -Wl,--minor-subsystem-version -Wl,1], [CORE_LDFLAGS="$CORE_LDFLAGS -Wl,--major-subsystem-version -Wl,6 -Wl,--minor-subsystem-version -Wl,1"], [], []) ;; *darwin*) - TARGET_OS=darwin - AX_CHECK_LINK_FLAG([-Wl,-headerpad_max_install_names], [CORE_LDFLAGS="$CORE_LDFLAGS -Wl,-headerpad_max_install_names"], [], []) CORE_CPPFLAGS="$CORE_CPPFLAGS -DMAC_OSX -DOBJC_OLD_DISPATCH_PROTOTYPES=0" OBJCXXFLAGS="$CXXFLAGS" ;; - *linux*) - TARGET_OS=linux - ;; esac dnl These flags are specific to ld64, and may cause issues with other linkers. @@ -799,19 +834,15 @@ AC_LANG_POP([C]) AC_MSG_CHECKING([whether to build runtest]) if test x$use_tests = xyes; then AC_MSG_RESULT([yes]) - BUILD_TEST="yes" else AC_MSG_RESULT([no]) - BUILD_TEST="" fi AC_MSG_CHECKING([whether to build runbench]) if test x$use_bench = xyes; then AC_MSG_RESULT([yes]) - BUILD_BENCH="yes" else AC_MSG_RESULT([no]) - BUILD_BENCH="" fi AM_CONDITIONAL([TARGET_DARWIN], [test "$TARGET_OS" = "darwin"]) @@ -836,8 +867,8 @@ AM_CONDITIONAL(WITH_MPC, test 1 -eq 1) AM_CONDITIONAL(WITH_DV, test 1 -eq 1) AM_CONDITIONAL(WITH_FBX, test 1 -eq 1) -AM_CONDITIONAL([USE_TESTS], [test x$BUILD_TEST = xyes]) -AM_CONDITIONAL([USE_BENCH], [test x$BUILD_BENCH = xyes]) +AM_CONDITIONAL([USE_TESTS], [test x"$use_tests" = x"yes"]) +AM_CONDITIONAL([USE_BENCH], [test x"$use_bench" = x"yes"]) AM_CONDITIONAL([HARDEN], [test "$use_hardening" = "yes"]) AM_CONDITIONAL([OPTIMIZE], [test "$use_optimizations" = "yes"]) @@ -874,8 +905,8 @@ echo echo "Options used to compile and link:" echo " target os = $TARGET_OS" echo " backend = $want_backend" -echo " build bench = $BUILD_BENCH" -echo " build test = $BUILD_TEST" +echo " build bench = $use_tests" +echo " build test = $use_bench" echo " use debug = $use_debug" echo " use hardening = $use_hardening" echo " use optimizations = $use_optimizations" From 758cd646a1fee7d9a4d0d08b7651f068eae83be9 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Thu, 5 Dec 2024 19:40:07 -0600 Subject: [PATCH 16/24] Merge #6452: fix: store ready queues on the mixing masternode 24dcce979be16b4482b65e43faaf3f040064e8de fix: store ready queues on the mixing masternode (UdjinM6) Pull request description: ## Issue being fixed or feature implemented We normally do not re-relay/store "ready" `dsq`-s because these are ment to be relayed between mixing clients and the mixing masternode only. I works ok when you simply send `dsq` messages because no extra steps are required. However since 70235 we send `dsq` _`inv`-s_ first and we send actual `dsq`-s only if they are requested via `getdata`. The problem here is that `ProcessGetData()` queries `vecCoinJoinQueue` via `GetQueueFromHash()` to get the data to send back but there is none because we never saved it. ## What was done? ## How Has This Been Tested? To test this patch you need a MN but you can test 2 cases _without this patch_ to indirectly test the idea: 1. try mixing on develop: almost no mixing txes, maybe 10 or so in an hour if you are lucky to mix on an old MN that often 2. ignore old MNs (`MIN_PEER_PROTO_VERSION = 70235`): 0 mixing txes, no matter how long you wait 3. pretend being an old client to receive no-inv `dsq` only (`PROTOCOL_VERSION = 70233`): no issues, mixing on these nodes is as fast as usual, several txes per block (need a couple of nodes like that on the network so that a mixing session could be completed, I'm running one node for now so that anyone could join and test it) I'm running a testnet MN with this fix and applied "ignore old mn" patch on my local machine. Local wallet got mixing tx when it finally hit the patched mn. Also confirmed this via MN`debug.log` (`Create`/`Relay`/`CommitFinalTransaction` in logs). ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK 24dcce979be16b4482b65e43faaf3f040064e8de Tree-SHA512: 69cee5401d26eec3f66166a754b8020e7f550dac4a0fdea8ec48ea1082f1286e647ac0a26a189c4d39e1a9da4e7ac36f71913684b13ea0fb4b3cfe831174970e --- src/coinjoin/server.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/coinjoin/server.cpp b/src/coinjoin/server.cpp index bb65990dd9006..6e0ee38474b7f 100644 --- a/src/coinjoin/server.cpp +++ b/src/coinjoin/server.cpp @@ -520,6 +520,7 @@ void CCoinJoinServer::CheckForCompleteQueue() "with %d participants\n", dsq.ToString(), vecSessionCollaterals.size()); dsq.Sign(*m_mn_activeman); m_peerman->RelayDSQ(dsq); + WITH_LOCK(cs_vecqueue, vecCoinJoinQueue.push_back(dsq)); } } From fa29ed5b5eef69dcf7735734309f378852c61173 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Fri, 6 Dec 2024 16:51:57 -0600 Subject: [PATCH 17/24] Merge #6456: fix(qt): allow refreshing wallet data without crashing d296005194c7bd8c65006ddf1b25052b2655c923 fix(qt): allow refreshing wallet data without crashing (UdjinM6) Pull request description: ## Issue being fixed or feature implemented We re-use `refreshWallet` method to optimise loading for huge wallets https://github.com/dashpay/dash/pull/5453. However gui121 backport (via 25f87b9434b98a524d38a97d9fe580acc0fa47ce) added a condition that prevents this logic. Fix it by allowing explicit wallet refresh (force=true). ## What was done? ## How Has This Been Tested? Open a wallet with 10k+ txes, do `rescanblockchain` via rpc console ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK d296005194c7bd8c65006ddf1b25052b2655c923; Tree-SHA512: d308b3fe9c4fbbfbf2e2339aa14c825aa6f69c72d1f04dab7a14dc1c8721138beca47c7b3801db9782d6cecf2c54023a19a6d22e04b84615f9bddb0b8ec1696c --- src/qt/transactiontablemodel.cpp | 16 +++++++++------- src/qt/transactiontablemodel.h | 2 +- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 01de92c61d289..3d2052d445c19 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -106,10 +106,11 @@ class TransactionTablePriv /* Query entire wallet anew from core. */ - void refreshWallet(interfaces::Wallet& wallet) + void refreshWallet(interfaces::Wallet& wallet, bool force = false) { parent->beginResetModel(); - assert(!m_loaded); + assert(!m_loaded || force); + cachedWallet.clear(); try { for (const auto& wtx : wallet.getWalletTxs()) { if (TransactionRecord::showTransaction()) { @@ -284,9 +285,9 @@ TransactionTableModel::~TransactionTableModel() delete priv; } -void TransactionTableModel::refreshWallet() +void TransactionTableModel::refreshWallet(bool force) { - priv->refreshWallet(walletModel->wallet()); + priv->refreshWallet(walletModel->wallet(), force); } /** Updates the column title to "Amount (DisplayUnit)" and emits headerDataChanged() signal for table headers to react. */ @@ -846,12 +847,13 @@ void TransactionTablePriv::DispatchNotifications() vQueueNotifications[i].invoke(parent); } + vQueueNotifications.clear(); } else { - // it's much faster to just refresh the whole thing instead - bool invoked = QMetaObject::invokeMethod(parent, "refreshWallet", Qt::QueuedConnection); + // it's much faster to just drop all the queued notifications and refresh the whole thing instead + vQueueNotifications.clear(); + bool invoked = QMetaObject::invokeMethod(parent, "refreshWallet", Qt::QueuedConnection, Q_ARG(bool, true)); assert(invoked); } - vQueueNotifications.clear(); } void TransactionTableModel::subscribeToCoreSignals() diff --git a/src/qt/transactiontablemodel.h b/src/qt/transactiontablemodel.h index b1f933e25523e..630fec039f731 100644 --- a/src/qt/transactiontablemodel.h +++ b/src/qt/transactiontablemodel.h @@ -114,7 +114,7 @@ class TransactionTableModel : public QAbstractTableModel public Q_SLOTS: /* Refresh the whole wallet, helpful for huge notification queues */ - void refreshWallet(); + void refreshWallet(bool foce = false); /* New transaction, or transaction changed status */ void updateTransaction(const QString &hash, int status, bool showTransaction); void updateAddressBook(const QString &address, const QString &label, From 2f71f4d7d06174d6968d88e5131713c0d09bc10e Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Sat, 7 Dec 2024 12:14:43 -0600 Subject: [PATCH 18/24] Merge #6458: chore: bump MIN_MASTERNODE_PROTO_VERSION to latest proto 1ecfb891bcdcfd62db7827c55370be9bc3587f2e chore: bump MIN_MASTERNODE_PROTO_VERSION to latest proto (pasta) Pull request description: ## Issue being fixed or feature implemented Bump minimum master node protocol version to latest protocol. ## What was done? ## How Has This Been Tested? ## Breaking Changes Masternodes that don't upgrade will end up getting a PoSe ban ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: UdjinM6: utACK 1ecfb891bcdcfd62db7827c55370be9bc3587f2e kwvg: utACK 1ecfb891bcdcfd62db7827c55370be9bc3587f2e Tree-SHA512: 18e0620370924c4f9b0c72b9f384a7b627b9d395b4a4a942d1eaabd8f4294869fb5831c8d237b825053a0ca5aa143cfbb4726312877670088333faa04ab10ef2 --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 88367edae5905..6be9c32090ad2 100644 --- a/src/version.h +++ b/src/version.h @@ -20,7 +20,7 @@ static const int INIT_PROTO_VERSION = 209; static const int MIN_PEER_PROTO_VERSION = 70216; //! minimum proto version of masternode to accept in DKGs -static const int MIN_MASTERNODE_PROTO_VERSION = 70233; +static const int MIN_MASTERNODE_PROTO_VERSION = 70235; //! protocol version is included in MNAUTH starting with this version static const int MNAUTH_NODE_VER_VERSION = 70218; From 9a8b68515d3a60ce5884b2396f2b558fbde9aa45 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 10 Dec 2024 09:29:57 -0600 Subject: [PATCH 19/24] Merge #6460: chore: Translations 2024-12 1d36a4026c45e4424cd78f702c43dd06c899ad8f 80%+: it, pl, th, zh_CN (UdjinM6) adfdb5998c59e312682f32e1ecccbadef8192d03 90%+: fr (UdjinM6) bfff3c9c761608e55a048e3aa1ccaadffe9ea3cb 100%: ru (UdjinM6) ed5f02db9fd878ef56a4ba4188f6e419ed6e8cc3 en (UdjinM6) d373f85f6be90d8accd5aa53874b6412b61aba4c dashstrings.cpp (UdjinM6) Pull request description: ## Issue being fixed or feature implemented ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: knst: utACK 1d36a4026c45e4424cd78f702c43dd06c899ad8f Tree-SHA512: 5d860d2d78e354eeae2157e5d40e8ff659963a258b9eb216d15ec72c1c589e254c2f246173be9e3d1892f9c18acae6cfecc1f18956460be5ff13c5c84d6d0ba6 --- src/qt/dashstrings.cpp | 46 +- src/qt/locale/dash_en.ts | 984 ++++--- src/qt/locale/dash_en.xlf | 5477 ++++++++++++++++++----------------- src/qt/locale/dash_fr.ts | 1063 ++++++- src/qt/locale/dash_it.ts | 199 +- src/qt/locale/dash_pl.ts | 154 +- src/qt/locale/dash_ru.ts | 789 ++++- src/qt/locale/dash_th.ts | 154 +- src/qt/locale/dash_zh_CN.ts | 154 +- 9 files changed, 5164 insertions(+), 3856 deletions(-) diff --git a/src/qt/dashstrings.cpp b/src/qt/dashstrings.cpp index f749fc06399e7..7bf3e3feab186 100644 --- a/src/qt/dashstrings.cpp +++ b/src/qt/dashstrings.cpp @@ -23,6 +23,18 @@ QT_TRANSLATE_NOOP("dash-core", "" "-maxtxfee is set very high! Fees this large could be paid on a single " "transaction."), QT_TRANSLATE_NOOP("dash-core", "" +"-reindex-chainstate option is not compatible with -blockfilterindex. Please " +"temporarily disable blockfilterindex while using -reindex-chainstate, or " +"replace -reindex-chainstate with -reindex to fully rebuild all indexes."), +QT_TRANSLATE_NOOP("dash-core", "" +"-reindex-chainstate option is not compatible with -coinstatsindex. Please " +"temporarily disable coinstatsindex while using -reindex-chainstate, or " +"replace -reindex-chainstate with -reindex to fully rebuild all indexes."), +QT_TRANSLATE_NOOP("dash-core", "" +"-reindex-chainstate option is not compatible with -txindex. Please " +"temporarily disable txindex while using -reindex-chainstate, or replace -" +"reindex-chainstate with -reindex to fully rebuild all indexes."), +QT_TRANSLATE_NOOP("dash-core", "" "Cannot downgrade wallet from version %i to version %i. Wallet version " "unchanged."), QT_TRANSLATE_NOOP("dash-core", "" @@ -39,6 +51,11 @@ QT_TRANSLATE_NOOP("dash-core", "" QT_TRANSLATE_NOOP("dash-core", "" "Error loading %s: You can't enable HD on an already existing non-HD wallet"), QT_TRANSLATE_NOOP("dash-core", "" +"Error loading wallet. Wallet requires blocks to be downloaded, and software " +"does not currently support loading wallets while blocks are being downloaded " +"out of order when using assumeutxo snapshots. Wallet should be able to load " +"successfully after node sync reaches height %s"), +QT_TRANSLATE_NOOP("dash-core", "" "Error reading %s! All keys read correctly, but transaction data or address " "book entries might be missing or incorrect."), QT_TRANSLATE_NOOP("dash-core", "" @@ -55,6 +72,9 @@ QT_TRANSLATE_NOOP("dash-core", "" "restarted wallet in less than 60 seconds. You can continue if you are ok " "with this."), QT_TRANSLATE_NOOP("dash-core", "" +"Failed to rename invalid peers.dat file. Please move or delete it and try " +"again."), +QT_TRANSLATE_NOOP("dash-core", "" "Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -" "fallbackfee."), QT_TRANSLATE_NOOP("dash-core", "" @@ -64,6 +84,9 @@ QT_TRANSLATE_NOOP("dash-core", "" "Found unconfirmed denominated outputs, will wait till they confirm to " "continue."), QT_TRANSLATE_NOOP("dash-core", "" +"Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet " +"forbids connections to IPv4/IPv6"), +QT_TRANSLATE_NOOP("dash-core", "" "Incorrect or no devnet genesis block found. Wrong datadir for devnet " "specified?"), QT_TRANSLATE_NOOP("dash-core", "" @@ -105,17 +128,27 @@ QT_TRANSLATE_NOOP("dash-core", "" QT_TRANSLATE_NOOP("dash-core", "" "Prune configured below the minimum of %d MiB. Please use a higher number."), QT_TRANSLATE_NOOP("dash-core", "" +"Prune mode is incompatible with -reindex-chainstate. Use full -reindex " +"instead."), +QT_TRANSLATE_NOOP("dash-core", "" "Prune: last wallet synchronisation goes beyond pruned data. You need to -" "reindex (download the whole blockchain again in case of pruned node)"), QT_TRANSLATE_NOOP("dash-core", "" "SQLiteDatabase: Unknown sqlite wallet schema version %d. Only version %d is " "supported"), QT_TRANSLATE_NOOP("dash-core", "" +"The -txindex upgrade started by a previous version can not be completed. " +"Restart with the previous version or run a full -reindex."), +QT_TRANSLATE_NOOP("dash-core", "" "The block database contains a block which appears to be from the future. " "This may be due to your computer's date and time being set incorrectly. Only " "rebuild the block database if you are sure that your computer's date and " "time are correct"), QT_TRANSLATE_NOOP("dash-core", "" +"The block index db contains a legacy 'txindex'. To clear the occupied disk " +"space, run a full -reindex, otherwise ignore this error. This error message " +"will not be displayed again."), +QT_TRANSLATE_NOOP("dash-core", "" "The transaction amount is too small to send after the fee has been deducted"), QT_TRANSLATE_NOOP("dash-core", "" "This error could occur if this wallet was not shutdown cleanly and was last " @@ -162,7 +195,7 @@ QT_TRANSLATE_NOOP("dash-core", "" "Warning: We do not appear to fully agree with our peers! You may need to " "upgrade, or other nodes may need to upgrade."), QT_TRANSLATE_NOOP("dash-core", "" -"You need to rebuild the database using -reindex to change -timestampindex"), +"You need to rebuild the database using -reindex to enable -timestampindex"), QT_TRANSLATE_NOOP("dash-core", "" "You need to rebuild the database using -reindex to go back to unpruned " "mode. This will redownload the entire blockchain"), @@ -221,6 +254,7 @@ QT_TRANSLATE_NOOP("dash-core", "Error: Got key that was not hex: %s"), QT_TRANSLATE_NOOP("dash-core", "Error: Got value that was not hex: %s"), QT_TRANSLATE_NOOP("dash-core", "Error: Keypool ran out, please call keypoolrefill first"), QT_TRANSLATE_NOOP("dash-core", "Error: Missing checksum"), +QT_TRANSLATE_NOOP("dash-core", "Error: No addresses available."), QT_TRANSLATE_NOOP("dash-core", "Error: Unable to parse version %u as a uint32_t"), QT_TRANSLATE_NOOP("dash-core", "Error: Unable to write record to new wallet"), QT_TRANSLATE_NOOP("dash-core", "Exceeded max tries."), @@ -240,6 +274,7 @@ QT_TRANSLATE_NOOP("dash-core", "Failed to load sporks cache from %s"), QT_TRANSLATE_NOOP("dash-core", "Failed to rescan the wallet during initialization"), QT_TRANSLATE_NOOP("dash-core", "Failed to start a new mixing queue"), QT_TRANSLATE_NOOP("dash-core", "Failed to verify database"), +QT_TRANSLATE_NOOP("dash-core", "Fee rate (%s) is lower than the minimum fee rate setting (%s)"), QT_TRANSLATE_NOOP("dash-core", "Found enough users, signing ( waiting %s )"), QT_TRANSLATE_NOOP("dash-core", "Found enough users, signing…"), QT_TRANSLATE_NOOP("dash-core", "Ignoring duplicate -wallet %s."), @@ -250,6 +285,7 @@ QT_TRANSLATE_NOOP("dash-core", "Incorrect -rescan mode, falling back to default QT_TRANSLATE_NOOP("dash-core", "Incorrect or no genesis block found. Wrong datadir for network?"), QT_TRANSLATE_NOOP("dash-core", "Initialization sanity check failed. %s is shutting down."), QT_TRANSLATE_NOOP("dash-core", "Input is not valid."), +QT_TRANSLATE_NOOP("dash-core", "Input not found or already spent"), QT_TRANSLATE_NOOP("dash-core", "Inputs vs outputs size mismatch."), QT_TRANSLATE_NOOP("dash-core", "Insufficient funds."), QT_TRANSLATE_NOOP("dash-core", "Invalid '%s'. Allowed values: 128, 160, 192, 224, 256."), @@ -279,6 +315,7 @@ QT_TRANSLATE_NOOP("dash-core", "Missing input transaction information."), QT_TRANSLATE_NOOP("dash-core", "Mixing in progress…"), QT_TRANSLATE_NOOP("dash-core", "Need to specify a port with -whitebind: '%s'"), QT_TRANSLATE_NOOP("dash-core", "No Masternodes detected."), +QT_TRANSLATE_NOOP("dash-core", "No addresses available"), QT_TRANSLATE_NOOP("dash-core", "No compatible Masternode found."), QT_TRANSLATE_NOOP("dash-core", "No errors detected."), QT_TRANSLATE_NOOP("dash-core", "No matching denominations found for mixing."), @@ -288,7 +325,6 @@ QT_TRANSLATE_NOOP("dash-core", "Not enough file descriptors available."), QT_TRANSLATE_NOOP("dash-core", "Not enough funds to mix."), QT_TRANSLATE_NOOP("dash-core", "Not in the Masternode list."), QT_TRANSLATE_NOOP("dash-core", "Prune cannot be configured with a negative value."), -QT_TRANSLATE_NOOP("dash-core", "Prune mode is incompatible with -coinstatsindex."), QT_TRANSLATE_NOOP("dash-core", "Prune mode is incompatible with -disablegovernance=false."), QT_TRANSLATE_NOOP("dash-core", "Prune mode is incompatible with -txindex."), QT_TRANSLATE_NOOP("dash-core", "Pruning blockstore…"), @@ -337,6 +373,7 @@ QT_TRANSLATE_NOOP("dash-core", "Unable to generate initial keys"), QT_TRANSLATE_NOOP("dash-core", "Unable to locate enough mixed funds for this transaction."), QT_TRANSLATE_NOOP("dash-core", "Unable to locate enough non-denominated funds for this transaction."), QT_TRANSLATE_NOOP("dash-core", "Unable to open %s for writing"), +QT_TRANSLATE_NOOP("dash-core", "Unable to parse -maxuploadtarget: '%s' (possible integer overflow?)"), QT_TRANSLATE_NOOP("dash-core", "Unable to sign spork message, wrong key?"), QT_TRANSLATE_NOOP("dash-core", "Unable to start HTTP server. See debug log for details."), QT_TRANSLATE_NOOP("dash-core", "Unknown -blockfilterindex value %s."), @@ -346,7 +383,6 @@ QT_TRANSLATE_NOOP("dash-core", "Unknown response."), QT_TRANSLATE_NOOP("dash-core", "Unknown state: id = %u"), QT_TRANSLATE_NOOP("dash-core", "Unsupported logging category %s=%s."), QT_TRANSLATE_NOOP("dash-core", "Upgrading UTXO database"), -QT_TRANSLATE_NOOP("dash-core", "Upgrading txindex database"), QT_TRANSLATE_NOOP("dash-core", "User Agent comment (%s) contains unsafe characters."), QT_TRANSLATE_NOOP("dash-core", "Verifying blocks…"), QT_TRANSLATE_NOOP("dash-core", "Verifying wallet(s)…"), @@ -361,8 +397,8 @@ QT_TRANSLATE_NOOP("dash-core", "Wiping wallet transactions…"), QT_TRANSLATE_NOOP("dash-core", "You are starting with governance validation disabled."), QT_TRANSLATE_NOOP("dash-core", "You can not disable governance validation on a masternode."), QT_TRANSLATE_NOOP("dash-core", "You can not start a masternode with wallet enabled."), -QT_TRANSLATE_NOOP("dash-core", "You need to rebuild the database using -reindex to change -addressindex"), -QT_TRANSLATE_NOOP("dash-core", "You need to rebuild the database using -reindex to change -spentindex"), +QT_TRANSLATE_NOOP("dash-core", "You need to rebuild the database using -reindex to enable -addressindex"), +QT_TRANSLATE_NOOP("dash-core", "You need to rebuild the database using -reindex to enable -spentindex"), QT_TRANSLATE_NOOP("dash-core", "Your entries added successfully."), QT_TRANSLATE_NOOP("dash-core", "no mixing available."), QT_TRANSLATE_NOOP("dash-core", "see debug.log for details."), diff --git a/src/qt/locale/dash_en.ts b/src/qt/locale/dash_en.ts index e09bd41051708..21696b586b507 100644 --- a/src/qt/locale/dash_en.ts +++ b/src/qt/locale/dash_en.ts @@ -50,6 +50,7 @@ </message> <message> <location line="+3"/> + <location filename="../addressbookpage.cpp" line="+121"/> <source>&Delete</source> <translation>&Delete</translation> </message> @@ -69,7 +70,7 @@ <translation>C&lose</translation> </message> <message> - <location filename="../addressbookpage.cpp" line="+79"/> + <location filename="../addressbookpage.cpp" line="-42"/> <source>Choose the address to send coins to</source> <translation>Choose the address to send coins to</translation> </message> @@ -104,7 +105,7 @@ <translation>These are your Dash addresses for receiving payments. Use the 'Create new receiving address' button in the receive tab to create new addresses.</translation> </message> <message> - <location line="+7"/> + <location line="+8"/> <source>&Copy Address</source> <translation>&Copy Address</translation> </message> @@ -120,23 +121,23 @@ </message> <message> <location line="+1"/> - <source>&Show address QR code</source> - <translation>&Show address QR code</translation> + <source>Show address &QR code</source> + <translation>Show address &QR code</translation> </message> <message> - <location line="+137"/> + <location line="+124"/> <source>QR code</source> <translation>QR code</translation> </message> <message> - <location line="+70"/> + <location line="+68"/> <source>Export Address List</source> <translation>Export Address List</translation> </message> <message> <location line="+3"/> <source>Comma separated file</source> - <extracomment>Expanded name of the CSV file format. See https://en.wikipedia.org/wiki/Comma-separated_values</extracomment> + <extracomment>Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</extracomment> <translation>Comma separated file</translation> </message> <message> @@ -402,7 +403,7 @@ <context> <name>BitcoinApplication</name> <message> - <location filename="../bitcoin.cpp" line="+498"/> + <location filename="../bitcoin.cpp" line="+419"/> <source>Runaway exception</source> <translation>Runaway exception</translation> </message> @@ -425,7 +426,7 @@ <context> <name>BitcoinGUI</name> <message> - <location filename="../bitcoingui.cpp" line="+681"/> + <location filename="../bitcoingui.cpp" line="+683"/> <source>&Overview</source> <translation>&Overview</translation> </message> @@ -435,7 +436,7 @@ <translation>Show general overview of wallet</translation> </message> <message> - <location line="-329"/> + <location line="-328"/> <source>&Send</source> <translation>&Send</translation> </message> @@ -535,7 +536,7 @@ <translation>Close wallet</translation> </message> <message> - <location line="+89"/> + <location line="+88"/> <source>No wallets available</source> <translation>No wallets available</translation> </message> @@ -580,7 +581,7 @@ <translation>Browse masternodes</translation> </message> <message> - <location line="-332"/> + <location line="-331"/> <source>E&xit</source> <translation>E&xit</translation> </message> @@ -750,12 +751,12 @@ <translation>default wallet</translation> </message> <message> - <location line="+492"/> + <location line="+508"/> <source>%1 client</source> <translation>%1 client</translation> </message> <message> - <location line="+748"/> + <location line="+773"/> <source>Wallet: %1 </source> <translation>Wallet: %1 @@ -767,12 +768,12 @@ <translation>Wallet is <b>unencrypted</b></translation> </message> <message> - <location line="-1261"/> + <location line="-1303"/> <source>&File</source> <translation>&File</translation> </message> <message> - <location line="-191"/> + <location line="-190"/> <source>Show information about %1</source> <translation>Show information about %1</translation> </message> @@ -827,7 +828,7 @@ <translation></translation> </message> <message> - <location line="+126"/> + <location line="+125"/> <source>&Settings</source> <translation>&Settings</translation> </message> @@ -852,8 +853,9 @@ <translation>View Governance Proposals</translation> </message> <message numerus="yes"> - <location line="+554"/> + <location line="+573"/> <source>%n active connection(s) to Dash network</source> + <extracomment>A substring of the tooltip.</extracomment> <translation> <numerusform>%n active connection to Dash network</numerusform> <numerusform>%n active connections to Dash network</numerusform> @@ -865,7 +867,7 @@ <translation>Network activity disabled</translation> </message> <message numerus="yes"> - <location line="+177"/> + <location line="+198"/> <source>Processed %n block(s) of transaction history.</source> <translation> <numerusform>Processed %n block of transaction history.</numerusform> @@ -878,7 +880,7 @@ <translation>%1 behind</translation> </message> <message> - <location line="-1020"/> + <location line="-1059"/> <source>Close Wallet…</source> <translation>Close Wallet…</translation> </message> @@ -898,12 +900,36 @@ <translation>Ctrl+Shift+D</translation> </message> <message> - <location line="+143"/> + <location line="+142"/> <source>Ctrl+M</source> <translation>Ctrl+M</translation> </message> <message> - <location line="+692"/> + <location line="+689"/> + <source>Click for more actions.</source> + <extracomment>A substring of the tooltip. "More actions" are available via the context menu.</extracomment> + <translation>Click for more actions.</translation> + </message> + <message> + <location line="+23"/> + <source>Show Peers tab</source> + <extracomment>A context menu item. The "Peers tab" is an element of the "Node window".</extracomment> + <translation>Show Peers tab</translation> + </message> + <message> + <location line="+8"/> + <source>Disable network activity</source> + <extracomment>A context menu item.</extracomment> + <translation>Disable network activity</translation> + </message> + <message> + <location line="+2"/> + <source>Enable network activity</source> + <extracomment>A context menu item. The network activity was disabled previously.</extracomment> + <translation>Enable network activity</translation> + </message> + <message> + <location line="+10"/> <source>Syncing Headers (%1%)…</source> <translation>Syncing Headers (%1%)…</translation> </message> @@ -983,7 +1009,7 @@ <translation>Information</translation> </message> <message> - <location line="+155"/> + <location line="+157"/> <source>Received and sent multiple transactions</source> <translation>Received and sent multiple transactions</translation> </message> @@ -1077,7 +1103,7 @@ <translation>Wallet is <b>encrypted</b> and currently <b>locked</b></translation> </message> <message> - <location line="+33"/> + <location line="+32"/> <source>Proxy is <b>enabled</b>: %1</source> <translation>Proxy is <b>enabled</b>: %1</translation> </message> @@ -1190,38 +1216,42 @@ <translation>Confirmed</translation> </message> <message> - <location filename="../coincontroldialog.cpp" line="+66"/> - <source>Copy address</source> - <translation>Copy address</translation> + <location filename="../coincontroldialog.cpp" line="+78"/> + <source>Copy amount</source> + <translation>Copy amount</translation> </message> <message> - <location line="+1"/> - <source>Copy label</source> - <translation>Copy label</translation> + <location line="-11"/> + <source>&Copy address</source> + <translation>&Copy address</translation> </message> <message> <location line="+1"/> - <location line="+26"/> - <source>Copy amount</source> - <translation>Copy amount</translation> + <source>Copy &label</source> + <translation>Copy &label</translation> </message> <message> - <location line="-25"/> - <source>Copy transaction ID</source> - <translation>Copy transaction ID</translation> + <location line="+1"/> + <source>Copy &amount</source> + <translation>Copy &amount</translation> </message> <message> <location line="+1"/> - <source>Lock unspent</source> - <translation>Lock unspent</translation> + <source>Copy transaction &ID and output index</source> + <translation>Copy transaction &ID and output index</translation> + </message> + <message> + <location line="+2"/> + <source>L&ock unspent</source> + <translation>L&ock unspent</translation> </message> <message> <location line="+1"/> - <source>Unlock unspent</source> - <translation>Unlock unspent</translation> + <source>&Unlock unspent</source> + <translation>&Unlock unspent</translation> </message> <message> - <location line="+22"/> + <location line="+4"/> <source>Copy quantity</source> <translation>Copy quantity</translation> </message> @@ -1256,7 +1286,7 @@ <translation>Please switch to "List mode" to use this function.</translation> </message> <message> - <location line="+207"/> + <location line="+211"/> <source>(%1 locked)</source> <translation>(%1 locked)</translation> </message> @@ -1330,8 +1360,15 @@ <context> <name>CreateWalletActivity</name> <message> - <location filename="../walletcontroller.cpp" line="+254"/> + <location filename="../walletcontroller.cpp" line="+257"/> + <source>Create Wallet</source> + <extracomment>Title of window indicating the progress of creation of a new wallet.</extracomment> + <translation>Create Wallet</translation> + </message> + <message> + <location line="+3"/> <source>Creating Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</extracomment> <translation>Creating Wallet <b>%1</b>…</translation> </message> <message> @@ -1542,7 +1579,7 @@ <translation>Filter by Title</translation> </message> <message> - <location filename="../governancelist.cpp" line="+409"/> + <location filename="../governancelist.cpp" line="+410"/> <source>Proposal Info: %1</source> <translation>Proposal Info: %1</translation> </message> @@ -1780,7 +1817,7 @@ <translation>Voting Address</translation> </message> <message> - <location filename="../masternodelist.cpp" line="+84"/> + <location filename="../masternodelist.cpp" line="+85"/> <source>Copy ProTx Hash</source> <translation>Copy ProTx Hash</translation> </message> @@ -1790,18 +1827,18 @@ <translation>Copy Collateral Outpoint</translation> </message> <message> - <location line="+61"/> - <location line="+180"/> + <location line="+57"/> + <location line="+181"/> <source>Please wait…</source> <translation>Please wait…</translation> </message> <message> - <location line="-131"/> + <location line="-132"/> <source>Updating…</source> <translation>Updating…</translation> </message> <message> - <location line="+37"/> + <location line="+38"/> <source>ENABLED</source> <translation>ENABLED</translation> </message> @@ -1872,7 +1909,7 @@ <message> <location line="+7"/> <location line="+20"/> - <location filename="../modaloverlay.cpp" line="+166"/> + <location filename="../modaloverlay.cpp" line="+172"/> <source>Unknown…</source> <translation>Unknown…</translation> </message> @@ -1908,12 +1945,12 @@ <translation>Hide</translation> </message> <message> - <location filename="../modaloverlay.cpp" line="-118"/> + <location filename="../modaloverlay.cpp" line="-123"/> <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>%1 is currently syncing. It will download headers and blocks from peers and validate them until reaching the tip of the block chain.</translation> </message> <message> - <location line="+124"/> + <location line="+129"/> <source>Unknown. Syncing Headers (%1, %2%)…</source> <translation>Unknown. Syncing Headers (%1, %2%)…</translation> </message> @@ -1949,8 +1986,15 @@ <translation>default wallet</translation> </message> <message> - <location line="+2"/> + <location line="+4"/> + <source>Open Wallet</source> + <extracomment>Title of window indicating the progress of opening of a wallet.</extracomment> + <translation>Open Wallet</translation> + </message> + <message> + <location line="+3"/> <source>Opening Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</extracomment> <translation>Opening Wallet <b>%1</b>…</translation> </message> </context> @@ -2034,7 +2078,31 @@ <translation>Set the number of script verification threads. Negative values correspond to the number of cores you want to leave free to the system.</translation> </message> <message> - <location line="+67"/> + <location line="+38"/> + <source>This allows you or a third party tool to communicate with the node through command-line and JSON-RPC commands.</source> + <extracomment>Tooltip text for Options window setting that enables the RPC server.</extracomment> + <translation>This allows you or a third party tool to communicate with the node through command-line and JSON-RPC commands.</translation> + </message> + <message> + <location line="+3"/> + <source>Enable R&PC server</source> + <extracomment>An Options window setting to enable the RPC server.</extracomment> + <translation>Enable R&PC server</translation> + </message> + <message> + <location line="+24"/> + <source>Whether to set subtract fee from amount as default or not.</source> + <extracomment>Tooltip text for Options window setting that sets subtracting the fee from a sending amount as default.</extracomment> + <translation>Whether to set subtract fee from amount as default or not.</translation> + </message> + <message> + <location line="+3"/> + <source>Subtract &fee from amount by default</source> + <extracomment>An Options window setting to set subtracting the fee from a sending amount as default.</extracomment> + <translation>Subtract &fee from amount by default</translation> + </message> + <message> + <location line="+19"/> <source>Whether to keep the specified custom change address or not.</source> <translation>Whether to keep the specified custom change address or not.</translation> </message> @@ -2218,12 +2286,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Options set in this dialog are overridden by the command line or in the configuration file:</translation> </message> <message> - <location line="-925"/> + <location line="-945"/> <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> <translation>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.</translation> </message> <message> - <location line="+858"/> + <location line="+878"/> <location line="+13"/> <source>Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items.<br/>%s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</source> <translation>Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items.<br/>%s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</translation> @@ -2239,7 +2307,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Whether to show coin control features or not.</translation> </message> <message> - <location line="-211"/> + <location line="-231"/> <source>Automatically start %1 after logging in to the system.</source> <translation>Automatically start %1 after logging in to the system.</translation> </message> @@ -2249,7 +2317,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>&Start %1 on system login</translation> </message> <message> - <location line="+211"/> + <location line="+231"/> <source>Enable coin &control features</source> <translation>Enable coin &control features</translation> </message> @@ -2264,7 +2332,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>This setting determines the amount of individual masternodes that an input will be mixed through.<br/>More rounds of mixing gives a higher degree of privacy, but also costs more in fees.</translation> </message> <message> - <location line="-400"/> + <location line="-420"/> <source>&Network</source> <translation>&Network</translation> </message> @@ -2274,7 +2342,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Enabling pruning significantly reduces the disk space required to store transactions. All blocks are still fully validated. Reverting this setting requires re-downloading the entire blockchain.</translation> </message> <message> - <location line="+454"/> + <location line="+474"/> <source>Map port using &UPnP</source> <translation>Map port using &UPnP</translation> </message> @@ -2328,7 +2396,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Tor</translation> </message> <message> - <location line="-638"/> + <location line="-658"/> <source>Show only a tray icon after minimizing the window.</source> <translation>Show only a tray icon after minimizing the window.</translation> </message> @@ -2348,7 +2416,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>&Display</translation> </message> <message> - <location line="+731"/> + <location line="+751"/> <source>Connect to the Dash network through a separate SOCKS5 proxy for Tor onion services.</source> <translation>Connect to the Dash network through a separate SOCKS5 proxy for Tor onion services.</translation> </message> @@ -2413,7 +2481,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>default</translation> </message> <message> - <location line="+241"/> + <location line="+244"/> <source>Confirm options reset</source> <translation>Confirm options reset</translation> </message> @@ -2447,14 +2515,14 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Form</translation> </message> <message> - <location line="+44"/> + <location line="+60"/> <location line="+298"/> - <location line="+224"/> + <location line="+237"/> <source>The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet.</source> <translation>The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet.</translation> </message> <message> - <location line="-312"/> + <location line="-325"/> <source>Available:</source> <translation>Available:</translation> </message> @@ -2564,12 +2632,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>n/a</translation> </message> <message> - <location line="+106"/> + <location line="+119"/> <source>Recent transactions</source> <translation>Recent transactions</translation> </message> <message> - <location line="-68"/> + <location line="-81"/> <source>Start/Stop Mixing</source> <translation>Start/Stop Mixing</translation> </message> @@ -2579,14 +2647,14 @@ https://explore.transifex.com/dash/dash/</translation> <translation>The denominations you submitted to the Masternode.<br>To mix, other users must submit the exact same denominations.</translation> </message> <message> - <location filename="../overviewpage.cpp" line="+157"/> + <location filename="../overviewpage.cpp" line="+181"/> <location line="+1"/> <location line="+1"/> <source>out of sync</source> <translation>out of sync</translation> </message> <message> - <location line="+321"/> + <location line="+316"/> <source>Automatic backups are disabled, no mixing available!</source> <translation>Automatic backups are disabled, no mixing available!</translation> </message> @@ -2597,12 +2665,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>No inputs detected</translation> </message> <message> - <location line="-209"/> + <location line="-204"/> <source>%1 Balance</source> <translation>%1 Balance</translation> </message> <message> - <location line="+33"/> + <location line="+28"/> <source>Discreet mode activated for the Overview tab. To unmask the values, uncheck Settings->Discreet mode.</source> <translation>Discreet mode activated for the Overview tab. To unmask the values, uncheck Settings->Discreet mode.</translation> </message> @@ -2774,12 +2842,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Close</translation> </message> <message> - <location filename="../psbtoperationsdialog.cpp" line="+55"/> + <location filename="../psbtoperationsdialog.cpp" line="+58"/> <source>Failed to load transaction: %1</source> <translation>Failed to load transaction: %1</translation> </message> <message> - <location line="+18"/> + <location line="+22"/> <source>Failed to sign transaction: %1</source> <translation>Failed to sign transaction: %1</translation> </message> @@ -2840,7 +2908,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation> * Sends %1 to %2</translation> </message> <message> - <location line="+10"/> + <location line="+4"/> + <source>own address</source> + <translation>own address</translation> + </message> + <message> + <location line="+8"/> <source>Unable to calculate transaction fee or total transaction amount.</source> <translation>Unable to calculate transaction fee or total transaction amount.</translation> </message> @@ -2865,7 +2938,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Transaction has %1 unsigned inputs.</translation> </message> <message> - <location line="+42"/> + <location line="+46"/> <source>Transaction is missing some information about inputs.</source> <translation>Transaction is missing some information about inputs.</translation> </message> @@ -2874,6 +2947,11 @@ https://explore.transifex.com/dash/dash/</translation> <source>Transaction still needs signature(s).</source> <translation>Transaction still needs signature(s).</translation> </message> + <message> + <location line="+3"/> + <source>(But no wallet is loaded.)</source> + <translation>(But no wallet is loaded.)</translation> + </message> <message> <location line="+3"/> <source>(But this wallet cannot sign transactions.)</source> @@ -2898,7 +2976,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>PaymentServer</name> <message> - <location filename="../paymentserver.cpp" line="+174"/> + <location filename="../paymentserver.cpp" line="+153"/> <source>Payment request error</source> <translation>Payment request error</translation> </message> @@ -2923,17 +3001,13 @@ https://explore.transifex.com/dash/dash/</translation> <message> <location line="+17"/> <location line="+23"/> - <source>Cannot process payment request as BIP70 is no longer supported.</source> - <translation>Cannot process payment request as BIP70 is no longer supported.</translation> + <source>Cannot process payment request as BIP70 is no longer supported. +Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> + <translation>Cannot process payment request as BIP70 is no longer supported. +Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</translation> </message> <message> - <location line="-22"/> - <location line="+23"/> - <source>Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> - <translation>Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</translation> - </message> - <message> - <location line="-11"/> + <location line="-10"/> <source>URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</source> <translation>URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</translation> </message> @@ -2946,7 +3020,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>PeerTableModel</name> <message> - <location filename="../peertablemodel.h" line="+115"/> + <location filename="../peertablemodel.h" line="+112"/> <source>User Agent</source> <extracomment>Title of Peers Table column which contains the peer's User Agent string.</extracomment> <translation>User Agent</translation> @@ -2958,13 +3032,25 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Ping</translation> </message> <message> - <location line="-12"/> + <location line="-18"/> <source>Peer</source> <extracomment>Title of Peers Table column which contains a unique number used to identify a connection.</extracomment> <translation>Peer</translation> </message> + <message> + <location line="+3"/> + <source>Age</source> + <extracomment>Title of Peers Table column which indicates the duration (length of time) since the peer connection started.</extracomment> + <translation>Age</translation> + </message> <message> <location line="+6"/> + <source>Direction</source> + <extracomment>Title of Peers Table column which indicates the direction the peer connection was initiated from.</extracomment> + <translation>Direction</translation> + </message> + <message> + <location line="+3"/> <source>Type</source> <extracomment>Title of Peers Table column which describes the type of peer connection. The "type" describes why the connection exists.</extracomment> <translation>Type</translation> @@ -2982,22 +3068,34 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Received</translation> </message> <message> - <location line="-15"/> + <location line="-18"/> <source>Address</source> <extracomment>Title of Peers Table column which contains the IP/Onion/I2P address of the connected peer.</extracomment> <translation>Address</translation> </message> <message> - <location line="+6"/> + <location line="+9"/> <source>Network</source> <extracomment>Title of Peers Table column which states the network the peer connected through.</extracomment> <translation>Network</translation> </message> + <message> + <location filename="../peertablemodel.cpp" line="+81"/> + <source>Inbound</source> + <extracomment>An Inbound Connection from a Peer.</extracomment> + <translation>Inbound</translation> + </message> + <message> + <location line="+2"/> + <source>Outbound</source> + <extracomment>An Outbound Connection to a Peer.</extracomment> + <translation>Outbound</translation> + </message> </context> <context> <name>Proposal</name> <message> - <location filename="../governancelist.cpp" line="-324"/> + <location filename="../governancelist.cpp" line="-325"/> <source>Passing +%1</source> <translation>Passing +%1</translation> </message> @@ -3058,19 +3156,19 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>QObject</name> <message> - <location filename="../bitcoin.cpp" line="-339"/> + <location filename="../bitcoin.cpp" line="-265"/> <source>Do you want to reset settings to default values, or to abort without making changes?</source> <extracomment>Explanatory text shown on startup when the settings file cannot be read. Prompts user to make a choice between resetting or aborting.</extracomment> <translation>Do you want to reset settings to default values, or to abort without making changes?</translation> </message> <message> - <location line="+23"/> - <source>A fatal error occured. Check that settings file is writable, or try running with -nosettings.</source> + <location line="+24"/> + <source>A fatal error occurred. Check that settings file is writable, or try running with -nosettings.</source> <extracomment>Explanatory text shown on startup when the settings file could not be written. Prompts user to check that we have the ability to write to the file. Explains that the user has the option of running without a settings file.</extracomment> - <translation>A fatal error occured. Check that settings file is writable, or try running with -nosettings.</translation> + <translation>A fatal error occurred. Check that settings file is writable, or try running with -nosettings.</translation> </message> <message> - <location line="+341"/> + <location line="+266"/> <source>Choose data directory on startup (default: %u)</source> <translation>Choose data directory on startup (default: %u)</translation> </message> @@ -3115,7 +3213,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Show splash screen on startup (default: %u)</translation> </message> <message> - <location line="+95"/> + <location line="+96"/> <source>Error: Specified data directory "%1" does not exist.</source> <translation>Error: Specified data directory "%1" does not exist.</translation> </message> @@ -3170,12 +3268,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>%1 didn't yet exit safely…</translation> </message> <message> - <location filename="../bitcoinunits.cpp" line="+256"/> + <location filename="../bitcoinunits.cpp" line="+258"/> <source>Amount</source> <translation>Amount</translation> </message> <message> - <location filename="../guiutil.cpp" line="+295"/> + <location filename="../guiutil.cpp" line="+301"/> <source>Enter a Dash address (e.g. %1)</source> <translation>Enter a Dash address (e.g. %1)</translation> </message> @@ -3195,7 +3293,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>This can also be adjusted later in the "Appearance" tab of the preferences.</translation> </message> <message> - <location line="+319"/> + <location line="+324"/> <source>Ctrl+W</source> <translation>Ctrl+W</translation> </message> @@ -3253,22 +3351,26 @@ https://explore.transifex.com/dash/dash/</translation> </message> <message> <location line="+13"/> + <location line="+12"/> <source>%1 d</source> <translation>%1 d</translation> </message> <message> - <location line="+1"/> + <location line="-11"/> + <location line="+12"/> <source>%1 h</source> <translation>%1 h</translation> </message> <message> - <location line="+1"/> + <location line="-11"/> + <location line="+12"/> <source>%1 m</source> <translation>%1 m</translation> </message> <message> - <location line="+2"/> - <location line="+27"/> + <location line="-10"/> + <location line="+11"/> + <location line="+26"/> <source>%1 s</source> <translation>%1 s</translation> </message> @@ -3348,8 +3450,8 @@ https://explore.transifex.com/dash/dash/</translation> </message> <message> <location line="+2"/> - <source>%1 KB</source> - <translation>%1 KB</translation> + <source>%1 kB</source> + <translation>%1 kB</translation> </message> <message> <location line="+2"/> @@ -3393,12 +3495,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>&Save Image…</translation> </message> <message> - <location line="+3"/> + <location line="+1"/> <source>&Copy Image</source> <translation>&Copy Image</translation> </message> <message> - <location line="+13"/> + <location line="+11"/> <source>Resulting URI too long, try to reduce the text for label / message.</source> <translation>Resulting URI too long, try to reduce the text for label / message.</translation> </message> @@ -3420,7 +3522,7 @@ https://explore.transifex.com/dash/dash/</translation> <message> <location line="+3"/> <source>PNG Image</source> - <extracomment>Expanded name of the PNG file format. See https://en.wikipedia.org/wiki/Portable_Network_Graphics</extracomment> + <extracomment>Expanded name of the PNG file format. See: https://en.wikipedia.org/wiki/Portable_Network_Graphics.</extracomment> <translation>PNG Image</translation> </message> </context> @@ -3467,6 +3569,8 @@ https://explore.transifex.com/dash/dash/</translation> <location line="+379"/> <location line="+23"/> <location line="+26"/> + <location line="+26"/> + <location line="+26"/> <location line="+23"/> <location line="+26"/> <location line="+23"/> @@ -3492,14 +3596,12 @@ https://explore.transifex.com/dash/dash/</translation> <location line="+26"/> <location line="+26"/> <location line="+26"/> - <location filename="../rpcconsole.cpp" line="+1324"/> - <location line="+8"/> - <location line="+4"/> + <location filename="../rpcconsole.h" line="+156"/> <source>N/A</source> <translation>N/A</translation> </message> <message> - <location line="-1324"/> + <location line="-1376"/> <source>Number of connections</source> <translation>Number of connections</translation> </message> @@ -3515,12 +3617,12 @@ https://explore.transifex.com/dash/dash/</translation> </message> <message> <location line="+23"/> - <location line="+736"/> + <location line="+788"/> <source>Network</source> <translation>Network</translation> </message> <message> - <location line="-613"/> + <location line="-665"/> <source>Last block time</source> <translation>Last block time</translation> </message> @@ -3570,7 +3672,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>&Network Traffic</translation> </message> <message> - <location line="+1330"/> + <location line="+1382"/> <source>Received</source> <translation>Received</translation> </message> @@ -3580,7 +3682,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Sent</translation> </message> <message> - <location line="-1297"/> + <location line="-1349"/> <source>&Peers</source> <translation>&Peers</translation> </message> @@ -3596,12 +3698,12 @@ https://explore.transifex.com/dash/dash/</translation> </message> <message> <location line="+63"/> - <location filename="../rpcconsole.cpp" line="-44"/> + <location filename="../rpcconsole.cpp" line="+1275"/> <source>Select a peer to view detailed information.</source> <translation>Select a peer to view detailed information.</translation> </message> <message> - <location line="+152"/> + <location line="+204"/> <source>Version</source> <translation>Version</translation> </message> @@ -3674,34 +3776,25 @@ https://explore.transifex.com/dash/dash/</translation> <message> <location line="+23"/> <source>Whether we relay addresses to this peer.</source> - <extracomment>Tooltip text for the Address Relay field in the peer details area.</extracomment> + <extracomment>Tooltip text for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</extracomment> <translation>Whether we relay addresses to this peer.</translation> </message> <message> <location line="+3"/> <source>Address Relay</source> + <extracomment>Text title for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</extracomment> <translation>Address Relay</translation> </message> <message> - <location line="+23"/> - <source>Total number of addresses processed, excluding those dropped due to rate-limiting.</source> - <extracomment>Tooltip text for the Addresses Processed field in the peer details area.</extracomment> - <translation>Total number of addresses processed, excluding those dropped due to rate-limiting.</translation> - </message> - <message> - <location line="+3"/> + <location line="+26"/> <source>Addresses Processed</source> + <extracomment>Text title for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</extracomment> <translation>Addresses Processed</translation> </message> <message> - <location line="+23"/> - <source>Total number of addresses dropped due to rate-limiting.</source> - <extracomment>Tooltip text for the Addresses Rate-Limited field in the peer details area.</extracomment> - <translation>Total number of addresses dropped due to rate-limiting.</translation> - </message> - <message> - <location line="+3"/> + <location line="+26"/> <source>Addresses Rate-Limited</source> + <extracomment>Text title for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</extracomment> <translation>Addresses Rate-Limited</translation> </message> <message> @@ -3730,13 +3823,13 @@ https://explore.transifex.com/dash/dash/</translation> <translation>-rescan=2: Rescan the block chain for missing wallet transactions starting from genesis block.</translation> </message> <message> - <location line="-1562"/> - <location line="+938"/> + <location line="-1614"/> + <location line="+990"/> <source>User Agent</source> <translation>User Agent</translation> </message> <message> - <location line="-912"/> + <location line="-964"/> <source>Datadir</source> <translation>Datadir</translation> </message> @@ -3825,6 +3918,26 @@ https://explore.transifex.com/dash/dash/</translation> <source>PoSe Score</source> <translation>PoSe Score</translation> </message> + <message> + <location line="+23"/> + <source>The transport layer version: %1</source> + <translation>The transport layer version: %1</translation> + </message> + <message> + <location line="+3"/> + <source>Transport</source> + <translation>Transport</translation> + </message> + <message> + <location line="+23"/> + <source>The BIP324 session ID string in hex.</source> + <translation>The BIP324 session ID string in hex.</translation> + </message> + <message> + <location line="+3"/> + <source>Session ID</source> + <translation>Session ID</translation> + </message> <message> <location line="+23"/> <source>The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS.</source> @@ -3891,12 +4004,24 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Time Offset</translation> </message> <message> - <location line="-1405"/> + <location line="-1457"/> <source>&Wallet Repair</source> <translation>&Wallet Repair</translation> </message> <message> - <location line="+1560"/> + <location line="+1532"/> + <source>The total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</source> + <extracomment>Tooltip text for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</extracomment> + <translation>The total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</translation> + </message> + <message> + <location line="+26"/> + <source>The total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</source> + <extracomment>Tooltip text for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</extracomment> + <translation>The total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</translation> + </message> + <message> + <location line="+54"/> <source>Wallet repair options.</source> <translation>Wallet repair options.</translation> </message> @@ -3911,7 +4036,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>-reindex: Rebuild block chain index from current blk000??.dat files.</translation> </message> <message> - <location filename="../rpcconsole.cpp" line="-783"/> + <location filename="../rpcconsole.cpp" line="-759"/> <source>Inbound: initiated by peer</source> <extracomment>Explanatory text for an inbound peer connection.</extracomment> <translation>Inbound: initiated by peer</translation> @@ -3947,60 +4072,52 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Outbound Address Fetch: short-lived, for soliciting addresses</translation> </message> <message> - <location line="+4"/> + <location filename="../rpcconsole.h" line="-1"/> <source>To</source> <translation>To</translation> </message> <message> - <location line="+0"/> + <location filename="../rpcconsole.cpp" line="+13"/> <source>we selected the peer for high bandwidth relay</source> <translation>we selected the peer for high bandwidth relay</translation> </message> <message> - <location line="+1"/> + <location filename="../rpcconsole.h" line="+0"/> <source>From</source> <translation>From</translation> </message> <message> - <location line="+0"/> + <location filename="../rpcconsole.cpp" line="+1"/> <source>the peer selected us for high bandwidth relay</source> <translation>the peer selected us for high bandwidth relay</translation> </message> <message> - <location line="+1"/> + <location filename="../rpcconsole.h" line="+0"/> <source>No</source> <translation>No</translation> </message> <message> - <location line="+0"/> + <location filename="../rpcconsole.cpp" line="+1"/> <source>no high bandwidth relay selected</source> <translation>no high bandwidth relay selected</translation> </message> <message> - <location line="+173"/> + <location line="+186"/> <source>&Disconnect</source> <translation>&Disconnect</translation> </message> <message> - <location line="+1"/> - <location line="+1"/> - <location line="+1"/> - <location line="+1"/> + <location filename="../rpcconsole.h" line="+1"/> <source>Ban for</source> <translation>Ban for</translation> </message> <message> - <location line="-3"/> + <location filename="../rpcconsole.cpp" line="+1"/> <source>1 &hour</source> <translation>1 &hour</translation> </message> <message> - <location line="+1"/> - <source>1 &day</source> - <translation>1 &day</translation> - </message> - <message> - <location line="+1"/> + <location line="+2"/> <source>1 &week</source> <translation>1 &week</translation> </message> @@ -4010,37 +4127,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>1 &year</translation> </message> <message> - <location line="+37"/> + <location line="+30"/> <source>&Unban</source> <translation>&Unban</translation> </message> <message> - <location line="+222"/> - <source>Welcome to the %1 RPC console.</source> - <translation>Welcome to the %1 RPC console.</translation> - </message> - <message> - <location line="+1"/> - <source>Use up and down arrows to navigate history, and %1 to clear screen.</source> - <translation>Use up and down arrows to navigate history, and %1 to clear screen.</translation> - </message> - <message> - <location line="+1"/> - <source>Type %1 for an overview of available commands.</source> - <translation>Type %1 for an overview of available commands.</translation> - </message> - <message> - <location line="+1"/> - <source>For more information on using this console type %1.</source> - <translation>For more information on using this console type %1.</translation> - </message> - <message> - <location line="+2"/> - <source>WARNING: 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.</source> - <translation>WARNING: 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.</translation> - </message> - <message> - <location line="+31"/> + <location line="+260"/> <source>In:</source> <translation>In:</translation> </message> @@ -4061,12 +4153,36 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Total: %1 (Enabled: %2)</translation> </message> <message> - <location line="+68"/> + <location line="+79"/> <source>Executing command without any wallet</source> <translation>Executing command without any wallet</translation> </message> <message> - <location line="+394"/> + <location line="+208"/> + <source>Ctrl++</source> + <extracomment>Main shortcut to increase the RPC console font size.</extracomment> + <translation>Ctrl++</translation> + </message> + <message> + <location line="+2"/> + <source>Ctrl+=</source> + <extracomment>Secondary shortcut to increase the RPC console font size.</extracomment> + <translation>Ctrl+=</translation> + </message> + <message> + <location line="+4"/> + <source>Ctrl+-</source> + <extracomment>Main shortcut to decrease the RPC console font size.</extracomment> + <translation>Ctrl+-</translation> + </message> + <message> + <location line="+2"/> + <source>Ctrl+_</source> + <extracomment>Secondary shortcut to decrease the RPC console font size.</extracomment> + <translation>Ctrl+_</translation> + </message> + <message> + <location line="+150"/> <source>Ctrl+Shift+I</source> <translation>Ctrl+Shift+I</translation> </message> @@ -4091,12 +4207,71 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Ctrl+Shift+R</translation> </message> <message> - <location line="-400"/> + <location line="-372"/> <source>Executing command using "%1" wallet</source> <translation>Executing command using "%1" wallet</translation> </message> <message> - <location line="+172"/> + <location line="-619"/> + <source>detecting: peer could be v1 or v2</source> + <extracomment>Explanatory text for "detecting" transport type.</extracomment> + <translation>detecting: peer could be v1 or v2</translation> + </message> + <message> + <location line="+2"/> + <source>v1: unencrypted, plaintext transport protocol</source> + <extracomment>Explanatory text for v1 transport type.</extracomment> + <translation>v1: unencrypted, plaintext transport protocol</translation> + </message> + <message> + <location line="+2"/> + <source>v2: BIP324 encrypted transport protocol</source> + <extracomment>Explanatory text for v2 transport type.</extracomment> + <translation>v2: BIP324 encrypted transport protocol</translation> + </message> + <message> + <location line="+188"/> + <source>&Copy address</source> + <extracomment>Context menu action to copy the address of a peer</extracomment> + <translation>&Copy address</translation> + </message> + <message> + <location line="+6"/> + <source>1 d&ay</source> + <translation>1 d&ay</translation> + </message> + <message> + <location line="+28"/> + <source>&Copy IP/Netmask</source> + <extracomment>Context menu action to copy the IP/Netmask of a banned peer. IP/Netmask is the combination of a peer's IP address and its Netmask. For IP address see: https://en.wikipedia.org/wiki/IP_address</extracomment> + <translation>&Copy IP/Netmask</translation> + </message> + <message> + <location line="+217"/> + <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>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</translation> + </message> + <message> + <location line="+186"/> + <source>Executing…</source> + <extracomment>A console message indicating an entered command is currently being executed.</extracomment> + <translation>Executing…</translation> + </message> + <message> + <location line="+110"/> <source>(peer: %1)</source> <translation>(peer: %1)</translation> </message> @@ -4106,7 +4281,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>via %1</translation> </message> <message> - <location line="+35"/> + <location line="+43"/> <source>Regular</source> <translation>Regular</translation> </message> @@ -4121,13 +4296,17 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Verified Masternode</translation> </message> <message> - <location line="+12"/> - <location line="+6"/> + <location filename="../rpcconsole.h" line="-1"/> + <source>Yes</source> + <translation>Yes</translation> + </message> + <message> + <location line="+1"/> <source>Unknown</source> <translation>Unknown</translation> </message> <message> - <location filename="../rpcconsole.h" line="+198"/> + <location line="+47"/> <source>Never</source> <translation>Never</translation> </message> @@ -4231,32 +4410,32 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Enter a message to attach to the payment request</translation> </message> <message> - <location filename="../receivecoinsdialog.cpp" line="+35"/> - <source>Copy URI</source> - <translation>Copy URI</translation> + <location filename="../receivecoinsdialog.cpp" line="+36"/> + <source>Copy &URI</source> + <translation>Copy &URI</translation> </message> <message> <location line="+1"/> - <source>Copy address</source> - <translation>Copy address</translation> + <source>&Copy address</source> + <translation>&Copy address</translation> </message> <message> <location line="+1"/> - <source>Copy label</source> - <translation>Copy label</translation> + <source>Copy &label</source> + <translation>Copy &label</translation> </message> <message> <location line="+1"/> - <source>Copy message</source> - <translation>Copy message</translation> + <source>Copy &message</source> + <translation>Copy &message</translation> </message> <message> <location line="+1"/> - <source>Copy amount</source> - <translation>Copy amount</translation> + <source>Copy &amount</source> + <translation>Copy &amount</translation> </message> <message> - <location line="+120"/> + <location line="+105"/> <source>Could not unlock wallet.</source> <translation>Could not unlock wallet.</translation> </message> @@ -4327,7 +4506,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>RecentRequestsTableModel</name> <message> - <location filename="../recentrequeststablemodel.cpp" line="+29"/> + <location filename="../recentrequeststablemodel.cpp" line="+32"/> <source>Date</source> <translation>Date</translation> </message> @@ -4357,7 +4536,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>(no amount requested)</translation> </message> <message> - <location line="+42"/> + <location line="+43"/> <source>Requested</source> <translation>Requested</translation> </message> @@ -4366,7 +4545,7 @@ https://explore.transifex.com/dash/dash/</translation> <name>SendCoinsDialog</name> <message> <location filename="../forms/sendcoinsdialog.ui" line="+14"/> - <location filename="../sendcoinsdialog.cpp" line="+762"/> + <location filename="../sendcoinsdialog.cpp" line="+765"/> <source>Send Coins</source> <translation>Send Coins</translation> </message> @@ -5151,12 +5330,25 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Message verified.</translation> </message> </context> +<context> + <name>SplashScreen</name> + <message> + <location filename="../splashscreen.cpp" line="+192"/> + <source>(press q to shutdown and continue later)</source> + <translation>(press q to shutdown and continue later)</translation> + </message> + <message> + <location line="+1"/> + <source>press q to shutdown</source> + <translation>press q to shutdown</translation> + </message> +</context> <context> <name>TrafficGraphWidget</name> <message> <location filename="../trafficgraphwidget.cpp" line="+101"/> - <source>KB/s</source> - <translation>KB/s</translation> + <source>kB/s</source> + <translation>kB/s</translation> </message> <message> <location line="+65"/> @@ -5177,7 +5369,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>TransactionDesc</name> <message numerus="yes"> - <location filename="../transactiondesc.cpp" line="+34"/> + <location filename="../transactiondesc.cpp" line="+36"/> <source>Open for %n more block(s)</source> <translation> <numerusform>Open for %n more block</numerusform> @@ -5195,7 +5387,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>conflicted</translation> </message> <message> - <location line="+6"/> + <location line="+7"/> <source>0/unconfirmed, %1</source> <translation>0/unconfirmed, %1</translation> </message> @@ -5210,12 +5402,12 @@ https://explore.transifex.com/dash/dash/</translation> <translation>not in memory pool</translation> </message> <message> - <location line="+0"/> + <location line="-1"/> <source>abandoned</source> <translation>abandoned</translation> </message> <message> - <location line="+2"/> + <location line="+3"/> <source>%1/unconfirmed</source> <translation>%1/unconfirmed</translation> </message> @@ -5246,14 +5438,20 @@ https://explore.transifex.com/dash/dash/</translation> </message> <message> <location line="+7"/> + <location line="+4"/> <source>Source</source> <translation>Source</translation> </message> <message> - <location line="+0"/> + <location line="-4"/> <source>Generated</source> <translation>Generated</translation> </message> + <message> + <location line="+4"/> + <source>Platform Transfer</source> + <translation>Platform Transfer</translation> + </message> <message> <location line="+5"/> <location line="+14"/> @@ -5418,7 +5616,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>TransactionTableModel</name> <message> - <location filename="../transactiontablemodel.cpp" line="+270"/> + <location filename="../transactiontablemodel.cpp" line="+275"/> <source>Date</source> <translation>Date</translation> </message> @@ -5433,7 +5631,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Address / Label</translation> </message> <message numerus="yes"> - <location line="+83"/> + <location line="+81"/> <source>Open for %n more block(s)</source> <translation> <numerusform>Open for %n more block</numerusform> @@ -5520,6 +5718,11 @@ https://explore.transifex.com/dash/dash/</translation> <source>Mined</source> <translation>Mined</translation> </message> + <message> + <location line="+2"/> + <source>Platform Transfer</source> + <translation>Platform Transfer</translation> + </message> <message> <location line="+3"/> <source>%1 Mixing</source> @@ -5546,17 +5749,17 @@ https://explore.transifex.com/dash/dash/</translation> <translation>%1 Send</translation> </message> <message> - <location line="+20"/> + <location line="+21"/> <source>watch-only</source> <translation>watch-only</translation> </message> <message> - <location line="+18"/> + <location line="+25"/> <source>(n/a)</source> <translation>(n/a)</translation> </message> <message> - <location line="+233"/> + <location line="+236"/> <source>(no label)</source> <translation>(no label)</translation> </message> @@ -5594,7 +5797,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>TransactionView</name> <message> - <location filename="../transactionview.cpp" line="+67"/> + <location filename="../transactionview.cpp" line="+69"/> <location line="+13"/> <source>All</source> <translation>All</translation> @@ -5679,6 +5882,11 @@ https://explore.transifex.com/dash/dash/</translation> <source>Mined</source> <translation>Mined</translation> </message> + <message> + <location line="+1"/> + <source>Platform Transfer</source> + <translation>Platform Transfer</translation> + </message> <message> <location line="+1"/> <source>Other</source> @@ -5696,68 +5904,68 @@ https://explore.transifex.com/dash/dash/</translation> </message> <message> <location line="+46"/> - <source>Abandon transaction</source> - <translation>Abandon transaction</translation> + <source>&Copy address</source> + <translation>&Copy address</translation> </message> <message> <location line="+1"/> - <source>Resend transaction</source> - <translation>Resend transaction</translation> + <source>Copy &label</source> + <translation>Copy &label</translation> </message> <message> <location line="+1"/> - <source>Copy address</source> - <translation>Copy address</translation> + <source>Copy &amount</source> + <translation>Copy &amount</translation> </message> <message> <location line="+1"/> - <source>Copy label</source> - <translation>Copy label</translation> + <source>Copy transaction &ID</source> + <translation>Copy transaction &ID</translation> </message> <message> <location line="+1"/> - <source>Copy amount</source> - <translation>Copy amount</translation> + <source>Copy &raw transaction</source> + <translation>Copy &raw transaction</translation> </message> <message> <location line="+1"/> - <source>Copy transaction ID</source> - <translation>Copy transaction ID</translation> + <source>Copy full transaction &details</source> + <translation>Copy full transaction &details</translation> </message> <message> <location line="+1"/> - <source>Copy raw transaction</source> - <translation>Copy raw transaction</translation> + <source>&Show transaction details</source> + <translation>&Show transaction details</translation> </message> <message> - <location line="+1"/> - <source>Copy full transaction details</source> - <translation>Copy full transaction details</translation> + <location line="+2"/> + <source>A&bandon transaction</source> + <translation>A&bandon transaction</translation> </message> <message> <location line="+1"/> - <source>Edit address label</source> - <translation>Edit address label</translation> + <source>Rese&nd transaction</source> + <translation>Rese&nd transaction</translation> </message> <message> <location line="+1"/> - <source>Show transaction details</source> - <translation>Show transaction details</translation> + <source>&Edit address label</source> + <translation>&Edit address label</translation> </message> <message> <location line="+1"/> - <source>Show address QR code</source> - <translation>Show address QR code</translation> + <source>Show address &QR code</source> + <translation>Show address &QR code</translation> </message> <message> - <location line="+229"/> + <location line="+203"/> <source>Export Transaction History</source> <translation>Export Transaction History</translation> </message> <message> <location line="+3"/> <source>Comma separated file</source> - <extracomment>Expanded name of the CSV file format. See https://en.wikipedia.org/wiki/Comma-separated_values</extracomment> + <extracomment>Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</extracomment> <translation>Comma separated file</translation> </message> <message> @@ -5842,7 +6050,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>WalletController</name> <message> - <location filename="../walletcontroller.cpp" line="-250"/> + <location filename="../walletcontroller.cpp" line="-261"/> <source>Close wallet</source> <translation>Close wallet</translation> </message> @@ -5870,7 +6078,7 @@ https://explore.transifex.com/dash/dash/</translation> <context> <name>WalletFrame</name> <message> - <location filename="../walletframe.cpp" line="+41"/> + <location filename="../walletframe.cpp" line="+46"/> <source>No wallet has been loaded. Go to File > Open Wallet to load a wallet. - OR -</source> @@ -5883,6 +6091,38 @@ Go to File > Open Wallet to load a wallet. <source>Create a new wallet</source> <translation>Create a new wallet</translation> </message> + <message> + <location line="+208"/> + <location line="+9"/> + <location line="+10"/> + <source>Error</source> + <translation>Error</translation> + </message> + <message> + <location line="-19"/> + <source>Unable to decode PSBT from clipboard (invalid base64)</source> + <translation>Unable to decode PSBT from clipboard (invalid base64)</translation> + </message> + <message> + <location line="+5"/> + <source>Load Transaction Data</source> + <translation>Load Transaction Data</translation> + </message> + <message> + <location line="+1"/> + <source>Partially Signed Transaction (*.psbt)</source> + <translation>Partially Signed Transaction (*.psbt)</translation> + </message> + <message> + <location line="+3"/> + <source>PSBT file must be smaller than 100 MiB</source> + <translation>PSBT file must be smaller than 100 MiB</translation> + </message> + <message> + <location line="+10"/> + <source>Unable to decode PSBT</source> + <translation>Unable to decode PSBT</translation> + </message> </context> <context> <name>WalletModel</name> @@ -5900,7 +6140,7 @@ Go to File > Open Wallet to load a wallet. <context> <name>WalletView</name> <message> - <location filename="../walletview.cpp" line="+55"/> + <location filename="../walletview.cpp" line="+51"/> <source>&Export</source> <translation>&Export</translation> </message> @@ -5915,45 +6155,13 @@ Go to File > Open Wallet to load a wallet. <translation>Selected amount:</translation> </message> <message> - <location line="+248"/> - <source>Unable to decode PSBT from clipboard (invalid base64)</source> - <translation>Unable to decode PSBT from clipboard (invalid base64)</translation> - </message> - <message> - <location line="+5"/> - <source>Load Transaction Data</source> - <translation>Load Transaction Data</translation> - </message> - <message> - <location line="+1"/> - <source>Partially Signed Transaction (*.psbt)</source> - <translation>Partially Signed Transaction (*.psbt)</translation> - </message> - <message> - <location line="+13"/> - <source>Unable to decode PSBT</source> - <translation>Unable to decode PSBT</translation> - </message> - <message> - <location line="+41"/> + <location line="+261"/> <source>Wallet Data</source> <extracomment>Name of the wallet data file format.</extracomment> <translation>Wallet Data</translation> </message> <message> - <location line="-60"/> - <location line="+9"/> - <location line="+10"/> - <source>Error</source> - <translation>Error</translation> - </message> - <message> - <location line="-10"/> - <source>PSBT file must be smaller than 100 MiB</source> - <translation>PSBT file must be smaller than 100 MiB</translation> - </message> - <message> - <location line="+49"/> + <location line="-2"/> <source>Backup Wallet</source> <translation>Backup Wallet</translation> </message> @@ -5986,17 +6194,17 @@ Go to File > Open Wallet to load a wallet. <context> <name>dash-core</name> <message> - <location filename="../dashstrings.cpp" line="+51"/> + <location filename="../dashstrings.cpp" line="+68"/> <source>Error: Listening for incoming connections failed (listen returned error %s)</source> <translation>Error: Listening for incoming connections failed (listen returned error %s)</translation> </message> <message> - <location line="+6"/> + <location line="+9"/> <source>Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee.</source> <translation>Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee.</translation> </message> <message> - <location line="+63"/> + <location line="+76"/> <source>This error could occur if this wallet was not shutdown cleanly and was last loaded using a build with a newer version of Berkeley DB. If so, please use the software that last loaded this wallet</source> <translation>This error could occur if this wallet was not shutdown cleanly and was last loaded using a build with a newer version of Berkeley DB. If so, please use the software that last loaded this wallet</translation> </message> @@ -6071,7 +6279,7 @@ Go to File > Open Wallet to load a wallet. <translation>Error: Missing checksum</translation> </message> <message> - <location line="+1"/> + <location line="+2"/> <source>Error: Unable to parse version %u as a uint32_t</source> <translation>Error: Unable to parse version %u as a uint32_t</translation> </message> @@ -6086,22 +6294,22 @@ Go to File > Open Wallet to load a wallet. <translation>Failed to listen on any port. Use -listen=0 if you want this.</translation> </message> <message> - <location line="-213"/> + <location line="-247"/> <source>-maxtxfee is set very high! Fees this large could be paid on a single transaction.</source> <translation>-maxtxfee is set very high! Fees this large could be paid on a single transaction.</translation> </message> <message> - <location line="+8"/> + <location line="+20"/> <source>Cannot provide specific connections and have addrman find outgoing connections at the same.</source> <translation>Cannot provide specific connections and have addrman find outgoing connections at the same.</translation> </message> <message> - <location line="+33"/> + <location line="+41"/> <source>Found unconfirmed denominated outputs, will wait till they confirm to continue.</source> <translation>Found unconfirmed denominated outputs, will wait till they confirm to continue.</translation> </message> <message> - <location line="+6"/> + <location line="+9"/> <source>Invalid -socketevents ('%s') specified. Only these modes are supported: %s</source> <translation>Invalid -socketevents ('%s') specified. Only these modes are supported: %s</translation> </message> @@ -6111,12 +6319,12 @@ Go to File > Open Wallet to load a wallet. <translation>Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)</translation> </message> <message> - <location line="+39"/> + <location line="+42"/> <source>SQLiteDatabase: Unknown sqlite wallet schema version %d. Only version %d is supported</source> <translation>SQLiteDatabase: Unknown sqlite wallet schema version %d. Only version %d is supported</translation> </message> <message> - <location line="+28"/> + <location line="+35"/> <source>Transaction index can't be disabled with governance validation enabled. Either start with -disablegovernance command line switch or enable transaction index.</source> <translation>Transaction index can't be disabled with governance validation enabled. Either start with -disablegovernance command line switch or enable transaction index.</translation> </message> @@ -6131,7 +6339,7 @@ Go to File > Open Wallet to load a wallet. <translation>Entry exceeds maximum size.</translation> </message> <message> - <location line="+41"/> + <location line="+43"/> <source>Found enough users, signing ( waiting %s )</source> <translation>Found enough users, signing ( waiting %s )</translation> </message> @@ -6156,7 +6364,7 @@ Go to File > Open Wallet to load a wallet. <translation>Input is not valid.</translation> </message> <message> - <location line="+2"/> + <location line="+3"/> <source>Insufficient funds.</source> <translation>Insufficient funds.</translation> </message> @@ -6191,7 +6399,7 @@ Go to File > Open Wallet to load a wallet. <translation>No Masternodes detected.</translation> </message> <message> - <location line="+1"/> + <location line="+2"/> <source>No compatible Masternode found.</source> <translation>No compatible Masternode found.</translation> </message> @@ -6206,7 +6414,7 @@ Go to File > Open Wallet to load a wallet. <translation>Not in the Masternode list.</translation> </message> <message> - <location line="+5"/> + <location line="+4"/> <source>Pruning blockstore…</source> <translation>Pruning blockstore…</translation> </message> @@ -6246,7 +6454,7 @@ Go to File > Open Wallet to load a wallet. <translation>Synchronizing governance objects…</translation> </message> <message> - <location line="+27"/> + <location line="+28"/> <source>Unable to start HTTP server. See debug log for details.</source> <translation>Unable to start HTTP server. See debug log for details.</translation> </message> @@ -6256,12 +6464,12 @@ Go to File > Open Wallet to load a wallet. <translation>Unknown response.</translation> </message> <message> - <location line="+5"/> + <location line="+4"/> <source>User Agent comment (%s) contains unsafe characters.</source> <translation>User Agent comment (%s) contains unsafe characters.</translation> </message> <message> - <location line="-167"/> + <location line="-170"/> <source>Can't find random Masternode.</source> <translation>Can't find random Masternode.</translation> </message> @@ -6281,7 +6489,7 @@ Go to File > Open Wallet to load a wallet. <translation>Can't mix while sync in progress.</translation> </message> <message> - <location line="+82"/> + <location line="+85"/> <source>Invalid netmask specified in -whitelist: '%s'</source> <translation>Invalid netmask specified in -whitelist: '%s'</translation> </message> @@ -6291,17 +6499,17 @@ Go to File > Open Wallet to load a wallet. <translation>Invalid script detected.</translation> </message> <message> - <location line="-251"/> + <location line="-287"/> <source>%s file contains all private keys from this wallet. Do not share it with anyone!</source> <translation>%s file contains all private keys from this wallet. Do not share it with anyone!</translation> </message> <message> - <location line="+37"/> + <location line="+54"/> <source>Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this.</source> <translation>Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this.</translation> </message> <message> - <location line="+25"/> + <location line="+31"/> <source>Make sure to encrypt your wallet and delete all non-encrypted backups after you have verified that the wallet works!</source> <translation>Make sure to encrypt your wallet and delete all non-encrypted backups after you have verified that the wallet works!</translation> </message> @@ -6316,17 +6524,17 @@ Go to File > Open Wallet to load a wallet. <translation>Prune configured below the minimum of %d MiB. Please use a higher number.</translation> </message> <message> - <location line="+2"/> + <location line="+5"/> <source>Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node)</source> <translation>Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node)</translation> </message> <message> - <location line="+6"/> + <location line="+9"/> <source>The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct</source> <translation>The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct</translation> </message> <message> - <location line="+5"/> + <location line="+9"/> <source>The transaction amount is too small to send after the fee has been deducted</source> <translation>The transaction amount is too small to send after the fee has been deducted</translation> </message> @@ -6351,12 +6559,7 @@ Go to File > Open Wallet to load a wallet. <translation>Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</translation> </message> <message> - <location line="+11"/> - <source>You need to rebuild the database using -reindex to change -timestampindex</source> - <translation>You need to rebuild the database using -reindex to change -timestampindex</translation> - </message> - <message> - <location line="+2"/> + <location line="+13"/> <source>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <translation>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</translation> </message> @@ -6441,7 +6644,12 @@ Go to File > Open Wallet to load a wallet. <translation>Error: Keypool ran out, please call keypoolrefill first</translation> </message> <message> - <location line="+4"/> + <location line="+2"/> + <source>Error: No addresses available.</source> + <translation>Error: No addresses available.</translation> + </message> + <message> + <location line="+3"/> <source>Exceeded max tries.</source> <translation>Exceeded max tries.</translation> </message> @@ -6475,6 +6683,11 @@ Go to File > Open Wallet to load a wallet. <source>Failed to verify database</source> <translation>Failed to verify database</translation> </message> + <message> + <location line="+1"/> + <source>Fee rate (%s) is lower than the minimum fee rate setting (%s)</source> + <translation>Fee rate (%s) is lower than the minimum fee rate setting (%s)</translation> + </message> <message> <location line="+2"/> <source>Found enough users, signing…</source> @@ -6486,7 +6699,12 @@ Go to File > Open Wallet to load a wallet. <translation>Ignoring duplicate -wallet %s.</translation> </message> <message> - <location line="+14"/> + <location line="+8"/> + <source>Input not found or already spent</source> + <translation>Input not found or already spent</translation> + </message> + <message> + <location line="+7"/> <source>Invalid P2P permission: '%s'</source> <translation>Invalid P2P permission: '%s'</translation> </message> @@ -6521,7 +6739,12 @@ Go to File > Open Wallet to load a wallet. <translation>Mixing in progress…</translation> </message> <message> - <location line="+4"/> + <location line="+3"/> + <source>No addresses available</source> + <translation>No addresses available</translation> + </message> + <message> + <location line="+2"/> <source>No errors detected.</source> <translation>No errors detected.</translation> </message> @@ -6551,7 +6774,7 @@ Go to File > Open Wallet to load a wallet. <translation>Prune cannot be configured with a negative value.</translation> </message> <message> - <location line="+2"/> + <location line="+1"/> <source>Prune mode is incompatible with -disablegovernance=false.</source> <translation>Prune mode is incompatible with -disablegovernance=false.</translation> </message> @@ -6665,6 +6888,11 @@ Go to File > Open Wallet to load a wallet. <source>Unable to open %s for writing</source> <translation>Unable to open %s for writing</translation> </message> + <message> + <location line="+1"/> + <source>Unable to parse -maxuploadtarget: '%s' (possible integer overflow?)</source> + <translation>Unable to parse -maxuploadtarget: '%s' (possible integer overflow?)</translation> + </message> <message> <location line="+3"/> <source>Unknown -blockfilterindex value %s.</source> @@ -6681,7 +6909,7 @@ Go to File > Open Wallet to load a wallet. <translation>Upgrading UTXO database</translation> </message> <message> - <location line="+3"/> + <location line="+2"/> <source>Verifying blocks…</source> <translation>Verifying blocks…</translation> </message> @@ -6711,17 +6939,7 @@ Go to File > Open Wallet to load a wallet. <translation>You can not start a masternode with wallet enabled.</translation> </message> <message> - <location line="+1"/> - <source>You need to rebuild the database using -reindex to change -addressindex</source> - <translation>You need to rebuild the database using -reindex to change -addressindex</translation> - </message> - <message> - <location line="+1"/> - <source>You need to rebuild the database using -reindex to change -spentindex</source> - <translation>You need to rebuild the database using -reindex to change -spentindex</translation> - </message> - <message> - <location line="+2"/> + <location line="+4"/> <source>no mixing available.</source> <translation>no mixing available.</translation> </message> @@ -6731,7 +6949,7 @@ Go to File > Open Wallet to load a wallet. <translation>see debug.log for details.</translation> </message> <message> - <location line="-356"/> + <location line="-392"/> <source>The %s developers</source> <translation>The %s developers</translation> </message> @@ -6742,6 +6960,21 @@ Go to File > Open Wallet to load a wallet. </message> <message> <location line="+6"/> + <source>-reindex-chainstate option is not compatible with -blockfilterindex. Please temporarily disable blockfilterindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <translation>-reindex-chainstate option is not compatible with -blockfilterindex. Please temporarily disable blockfilterindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</translation> + </message> + <message> + <location line="+4"/> + <source>-reindex-chainstate option is not compatible with -coinstatsindex. Please temporarily disable coinstatsindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <translation>-reindex-chainstate option is not compatible with -coinstatsindex. Please temporarily disable coinstatsindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</translation> + </message> + <message> + <location line="+4"/> + <source>-reindex-chainstate option is not compatible with -txindex. Please temporarily disable txindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <translation>-reindex-chainstate option is not compatible with -txindex. Please temporarily disable txindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</translation> + </message> + <message> + <location line="+4"/> <source>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source> <translation>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</translation> </message> @@ -6767,6 +7000,11 @@ Go to File > Open Wallet to load a wallet. </message> <message> <location line="+2"/> + <source>Error loading wallet. Wallet requires blocks to be downloaded, and software does not currently support loading wallets while blocks are being downloaded out of order when using assumeutxo snapshots. Wallet should be able to load successfully after node sync reaches height %s</source> + <translation>Error loading wallet. Wallet requires blocks to be downloaded, and software does not currently support loading wallets while blocks are being downloaded out of order when using assumeutxo snapshots. Wallet should be able to load successfully after node sync reaches height %s</translation> + </message> + <message> + <location line="+5"/> <source>Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</source> <translation>Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</translation> </message> @@ -6786,12 +7024,22 @@ Go to File > Open Wallet to load a wallet. <translation>Error: Dumpfile version is not supported. This version of bitcoin-wallet only supports version 1 dumpfiles. Got dumpfile with version %s</translation> </message> <message> - <location line="+12"/> + <location line="+9"/> + <source>Failed to rename invalid peers.dat file. Please move or delete it and try again.</source> + <translation>Failed to rename invalid peers.dat file. Please move or delete it and try again.</translation> + </message> + <message> + <location line="+6"/> <source>File %s already exists. If you are sure this is what you want, move it out of the way first.</source> <translation>File %s already exists. If you are sure this is what you want, move it out of the way first.</translation> </message> <message> <location line="+6"/> + <source>Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet forbids connections to IPv4/IPv6</source> + <translation>Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet forbids connections to IPv4/IPv6</translation> + </message> + <message> + <location line="+3"/> <source>Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?</source> <translation>Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?</translation> </message> @@ -6836,7 +7084,22 @@ Go to File > Open Wallet to load a wallet. <translation>Please contribute if you find %s useful. Visit %s for further information about the software.</translation> </message> <message> - <location line="+25"/> + <location line="+5"/> + <source>Prune mode is incompatible with -reindex-chainstate. Use full -reindex instead.</source> + <translation>Prune mode is incompatible with -reindex-chainstate. Use full -reindex instead.</translation> + </message> + <message> + <location line="+9"/> + <source>The -txindex upgrade started by a previous version can not be completed. Restart with the previous version or run a full -reindex.</source> + <translation>The -txindex upgrade started by a previous version can not be completed. Restart with the previous version or run a full -reindex.</translation> + </message> + <message> + <location line="+8"/> + <source>The block index db contains a legacy 'txindex'. To clear the occupied disk space, run a full -reindex, otherwise ignore this error. This error message will not be displayed again.</source> + <translation>The block index db contains a legacy 'txindex'. To clear the occupied disk space, run a full -reindex, otherwise ignore this error. This error message will not be displayed again.</translation> + </message> + <message> + <location line="+13"/> <source>This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection.</source> <translation>This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection.</translation> </message> @@ -6871,7 +7134,12 @@ Go to File > Open Wallet to load a wallet. <translation>Warning: Private keys detected in wallet {%s} with disabled private keys</translation> </message> <message> - <location line="+10"/> + <location line="+5"/> + <source>You need to rebuild the database using -reindex to enable -timestampindex</source> + <translation>You need to rebuild the database using -reindex to enable -timestampindex</translation> + </message> + <message> + <location line="+5"/> <source>%s -- Incorrect seed, it should be a hex string</source> <translation>%s -- Incorrect seed, it should be a hex string</translation> </message> @@ -6976,7 +7244,7 @@ Go to File > Open Wallet to load a wallet. <translation>Error upgrading chainstate database</translation> </message> <message> - <location line="+56"/> + <location line="+59"/> <source>Loading P2P addresses…</source> <translation>Loading P2P addresses…</translation> </message> @@ -6996,7 +7264,7 @@ Go to File > Open Wallet to load a wallet. <translation>Loading wallet…</translation> </message> <message> - <location line="-47"/> + <location line="-49"/> <source>Failed to clear fulfilled requests cache at %s</source> <translation>Failed to clear fulfilled requests cache at %s</translation> </message> @@ -7041,7 +7309,7 @@ Go to File > Open Wallet to load a wallet. <translation>Failed to start a new mixing queue</translation> </message> <message> - <location line="+5"/> + <location line="+6"/> <source>Importing…</source> <translation>Importing…</translation> </message> @@ -7056,7 +7324,7 @@ Go to File > Open Wallet to load a wallet. <translation>Initialization sanity check failed. %s is shutting down.</translation> </message> <message> - <location line="+2"/> + <location line="+3"/> <source>Inputs vs outputs size mismatch.</source> <translation>Inputs vs outputs size mismatch.</translation> </message> @@ -7091,12 +7359,7 @@ Go to File > Open Wallet to load a wallet. <translation>Invalid spork address specified with -sporkaddr</translation> </message> <message> - <location line="+23"/> - <source>Prune mode is incompatible with -coinstatsindex.</source> - <translation>Prune mode is incompatible with -coinstatsindex.</translation> - </message> - <message> - <location line="+4"/> + <location line="+27"/> <source>Reducing -maxconnections from %d to %d, because of system limitations.</source> <translation>Reducing -maxconnections from %d to %d, because of system limitations.</translation> </message> @@ -7126,12 +7389,12 @@ Go to File > Open Wallet to load a wallet. <translation>Last queue was created too recently.</translation> </message> <message> - <location line="-256"/> + <location line="-292"/> <source>%s corrupt. Try using the wallet tool dash-wallet to salvage or restoring a backup.</source> <translation>%s corrupt. Try using the wallet tool dash-wallet to salvage or restoring a backup.</translation> </message> <message> - <location line="+257"/> + <location line="+293"/> <source>Last successful action was too recent.</source> <translation>Last successful action was too recent.</translation> </message> @@ -7196,7 +7459,7 @@ Go to File > Open Wallet to load a wallet. <translation>Unable to locate enough non-denominated funds for this transaction.</translation> </message> <message> - <location line="+2"/> + <location line="+3"/> <source>Unable to sign spork message, wrong key?</source> <translation>Unable to sign spork message, wrong key?</translation> </message> @@ -7216,12 +7479,7 @@ Go to File > Open Wallet to load a wallet. <translation>Unsupported logging category %s=%s.</translation> </message> <message> - <location line="+2"/> - <source>Upgrading txindex database</source> - <translation>Upgrading txindex database</translation> - </message> - <message> - <location line="+4"/> + <location line="+5"/> <source>Very low number of keys left: %d</source> <translation>Very low number of keys left: %d</translation> </message> @@ -7256,9 +7514,29 @@ Go to File > Open Wallet to load a wallet. <translation>You can not disable governance validation on a masternode.</translation> </message> <message> - <location line="+4"/> + <location line="+2"/> + <source>You need to rebuild the database using -reindex to enable -addressindex</source> + <translation>You need to rebuild the database using -reindex to enable -addressindex</translation> + </message> + <message> + <location line="+1"/> + <source>You need to rebuild the database using -reindex to enable -spentindex</source> + <translation>You need to rebuild the database using -reindex to enable -spentindex</translation> + </message> + <message> + <location line="+1"/> <source>Your entries added successfully.</source> <translation>Your entries added successfully.</translation> </message> + <message> + <location filename="../bitcoin.cpp" line="-584"/> + <source>Settings file could not be read</source> + <translation>Settings file could not be read</translation> + </message> + <message> + <location line="+23"/> + <source>Settings file could not be written</source> + <translation>Settings file could not be written</translation> + </message> </context> </TS> diff --git a/src/qt/locale/dash_en.xlf b/src/qt/locale/dash_en.xlf index def238ffca9f0..4b115b8c42bb6 100644 --- a/src/qt/locale/dash_en.xlf +++ b/src/qt/locale/dash_en.xlf @@ -51,6 +51,7 @@ <source xml:space="preserve">&Delete</source> <target xml:space="preserve">&Delete</target> <context-group purpose="location"><context context-type="linenumber">106</context></context-group> + <context-group purpose="location"><context context-type="sourcefile">../addressbookpage.cpp</context><context context-type="linenumber">121</context></context-group> </trans-unit> <trans-unit id="_msg11" approved="yes"> <source xml:space="preserve">Export the data in the current tab to a file</source> @@ -109,49 +110,49 @@ <trans-unit id="_msg21" approved="yes"> <source xml:space="preserve">&Copy Address</source> <target xml:space="preserve">&Copy Address</target> - <context-group purpose="location"><context context-type="linenumber">111</context></context-group> + <context-group purpose="location"><context context-type="linenumber">112</context></context-group> </trans-unit> <trans-unit id="_msg22" approved="yes"> <source xml:space="preserve">Copy &Label</source> <target xml:space="preserve">Copy &Label</target> - <context-group purpose="location"><context context-type="linenumber">112</context></context-group> + <context-group purpose="location"><context context-type="linenumber">113</context></context-group> </trans-unit> <trans-unit id="_msg23" approved="yes"> <source xml:space="preserve">&Edit</source> <target xml:space="preserve">&Edit</target> - <context-group purpose="location"><context context-type="linenumber">113</context></context-group> - </trans-unit> - <trans-unit id="_msg24" approved="yes"> - <source xml:space="preserve">&Show address QR code</source> - <target xml:space="preserve">&Show address QR code</target> <context-group purpose="location"><context context-type="linenumber">114</context></context-group> </trans-unit> + <trans-unit id="_msg24"> + <source xml:space="preserve">Show address &QR code</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">115</context></context-group> + </trans-unit> <trans-unit id="_msg25" approved="yes"> <source xml:space="preserve">QR code</source> <target xml:space="preserve">QR code</target> - <context-group purpose="location"><context context-type="linenumber">251</context></context-group> + <context-group purpose="location"><context context-type="linenumber">239</context></context-group> </trans-unit> <trans-unit id="_msg26" approved="yes"> <source xml:space="preserve">Export Address List</source> <target xml:space="preserve">Export Address List</target> - <context-group purpose="location"><context context-type="linenumber">321</context></context-group> + <context-group purpose="location"><context context-type="linenumber">307</context></context-group> </trans-unit> <trans-unit id="_msg27" approved="yes"> <source xml:space="preserve">Comma separated file</source> <target xml:space="preserve">Comma separated file</target> - <context-group purpose="location"><context context-type="linenumber">324</context></context-group> - <note annotates="source" from="developer">Expanded name of the CSV file format. See https://en.wikipedia.org/wiki/Comma-separated_values</note> + <context-group purpose="location"><context context-type="linenumber">310</context></context-group> + <note annotates="source" from="developer">Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</note> </trans-unit> <trans-unit id="_msg28" approved="yes"> <source xml:space="preserve">There was an error trying to save the address list to %1. Please try again.</source> <target xml:space="preserve">There was an error trying to save the address list to %1. Please try again.</target> - <context-group purpose="location"><context context-type="linenumber">340</context></context-group> + <context-group purpose="location"><context context-type="linenumber">326</context></context-group> <note annotates="source" from="developer">An error message. %1 is a stand-in argument for the name of the file we attempted to save to.</note> </trans-unit> <trans-unit id="_msg29" approved="yes"> <source xml:space="preserve">Exporting Failed</source> <target xml:space="preserve">Exporting Failed</target> - <context-group purpose="location"><context context-type="linenumber">337</context></context-group> + <context-group purpose="location"><context context-type="linenumber">323</context></context-group> </trans-unit> </group> </body></file> @@ -414,919 +415,956 @@ </body></file> <file original="../bitcoin.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="BitcoinApplication"> - <trans-unit id="_msg74"> + <trans-unit id="_msg74" approved="yes"> <source xml:space="preserve">Runaway exception</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">498</context></context-group> + <target xml:space="preserve">Runaway exception</target> + <context-group purpose="location"><context context-type="linenumber">419</context></context-group> </trans-unit> - <trans-unit id="_msg75"> + <trans-unit id="_msg75" approved="yes"> <source xml:space="preserve">A fatal error occurred. %1 can no longer continue safely and will quit.</source> - <target xml:space="preserve" state="needs-review-translation">A fatal error occurred. %1 can no longer continue safely and will quit.</target> - <context-group purpose="location"><context context-type="linenumber">499</context></context-group> + <target xml:space="preserve">A fatal error occurred. %1 can no longer continue safely and will quit.</target> + <context-group purpose="location"><context context-type="linenumber">420</context></context-group> </trans-unit> - <trans-unit id="_msg76"> + <trans-unit id="_msg76" approved="yes"> <source xml:space="preserve">Internal error</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">508</context></context-group> + <target xml:space="preserve">Internal error</target> + <context-group purpose="location"><context context-type="linenumber">429</context></context-group> </trans-unit> - <trans-unit id="_msg77"> + <trans-unit id="_msg77" approved="yes"> <source xml:space="preserve">An internal error occurred. %1 will attempt to continue safely. This is an unexpected bug which can be reported as described below.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">509</context></context-group> + <target xml:space="preserve">An internal error occurred. %1 will attempt to continue safely. This is an unexpected bug which can be reported as described below.</target> + <context-group purpose="location"><context context-type="linenumber">430</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="QObject"> <trans-unit id="_msg78" approved="yes"> <source xml:space="preserve">Do you want to reset settings to default values, or to abort without making changes?</source> <target xml:space="preserve">Do you want to reset settings to default values, or to abort without making changes?</target> - <context-group purpose="location"><context context-type="linenumber">170</context></context-group> + <context-group purpose="location"><context context-type="linenumber">165</context></context-group> <note annotates="source" from="developer">Explanatory text shown on startup when the settings file cannot be read. Prompts user to make a choice between resetting or aborting.</note> </trans-unit> - <trans-unit id="_msg79" approved="yes"> - <source xml:space="preserve">A fatal error occured. Check that settings file is writable, or try running with -nosettings.</source> - <target xml:space="preserve">A fatal error occured. Check that settings file is writable, or try running with -nosettings.</target> - <context-group purpose="location"><context context-type="linenumber">193</context></context-group> + <trans-unit id="_msg79"> + <source xml:space="preserve">A fatal error occurred. Check that settings file is writable, or try running with -nosettings.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">189</context></context-group> <note annotates="source" from="developer">Explanatory text shown on startup when the settings file could not be written. Prompts user to check that we have the ability to write to the file. Explains that the user has the option of running without a settings file.</note> </trans-unit> <trans-unit id="_msg80" approved="yes"> <source xml:space="preserve">Choose data directory on startup (default: %u)</source> <target xml:space="preserve">Choose data directory on startup (default: %u)</target> - <context-group purpose="location"><context context-type="linenumber">534</context></context-group> + <context-group purpose="location"><context context-type="linenumber">455</context></context-group> </trans-unit> <trans-unit id="_msg81" approved="yes"> <source xml:space="preserve">Set the font family. Possible values: %1. (default: %2)</source> <target xml:space="preserve">Set the font family. Possible values: %1. (default: %2)</target> - <context-group purpose="location"><context context-type="linenumber">536</context></context-group> + <context-group purpose="location"><context context-type="linenumber">457</context></context-group> </trans-unit> <trans-unit id="_msg82" approved="yes"> <source xml:space="preserve">Set a scale factor which gets applied to the base font size. Possible range %1 (smallest fonts) to %2 (largest fonts). (default: %3)</source> <target xml:space="preserve">Set a scale factor which gets applied to the base font size. Possible range %1 (smallest fonts) to %2 (largest fonts). (default: %3)</target> - <context-group purpose="location"><context context-type="linenumber">537</context></context-group> + <context-group purpose="location"><context context-type="linenumber">458</context></context-group> </trans-unit> <trans-unit id="_msg83" approved="yes"> <source xml:space="preserve">Set the font weight for bold texts. Possible range %1 to %2 (default: %3)</source> <target xml:space="preserve">Set the font weight for bold texts. Possible range %1 to %2 (default: %3)</target> - <context-group purpose="location"><context context-type="linenumber">538</context></context-group> + <context-group purpose="location"><context context-type="linenumber">459</context></context-group> </trans-unit> <trans-unit id="_msg84" approved="yes"> <source xml:space="preserve">Set the font weight for normal texts. Possible range %1 to %2 (default: %3)</source> <target xml:space="preserve">Set the font weight for normal texts. Possible range %1 to %2 (default: %3)</target> - <context-group purpose="location"><context context-type="linenumber">539</context></context-group> + <context-group purpose="location"><context context-type="linenumber">460</context></context-group> </trans-unit> <trans-unit id="_msg85" approved="yes"> <source xml:space="preserve">Set language, for example "de_DE" (default: system locale)</source> <target xml:space="preserve">Set language, for example "de_DE" (default: system locale)</target> - <context-group purpose="location"><context context-type="linenumber">540</context></context-group> + <context-group purpose="location"><context context-type="linenumber">461</context></context-group> </trans-unit> <trans-unit id="_msg86" approved="yes"> <source xml:space="preserve">Start minimized</source> <target xml:space="preserve">Start minimized</target> - <context-group purpose="location"><context context-type="linenumber">541</context></context-group> + <context-group purpose="location"><context context-type="linenumber">462</context></context-group> </trans-unit> <trans-unit id="_msg87" approved="yes"> <source xml:space="preserve">Reset all settings changed in the GUI</source> <target xml:space="preserve">Reset all settings changed in the GUI</target> - <context-group purpose="location"><context context-type="linenumber">542</context></context-group> + <context-group purpose="location"><context context-type="linenumber">463</context></context-group> </trans-unit> <trans-unit id="_msg88" approved="yes"> <source xml:space="preserve">Show splash screen on startup (default: %u)</source> <target xml:space="preserve">Show splash screen on startup (default: %u)</target> - <context-group purpose="location"><context context-type="linenumber">543</context></context-group> + <context-group purpose="location"><context context-type="linenumber">464</context></context-group> </trans-unit> <trans-unit id="_msg89" approved="yes"> <source xml:space="preserve">Error: Specified data directory "%1" does not exist.</source> <target xml:space="preserve">Error: Specified data directory "%1" does not exist.</target> - <context-group purpose="location"><context context-type="linenumber">638</context></context-group> + <context-group purpose="location"><context context-type="linenumber">560</context></context-group> </trans-unit> <trans-unit id="_msg90" approved="yes"> <source xml:space="preserve">Error: Cannot parse configuration file: %1.</source> <target xml:space="preserve">Error: Cannot parse configuration file: %1.</target> - <context-group purpose="location"><context context-type="linenumber">644</context></context-group> + <context-group purpose="location"><context context-type="linenumber">566</context></context-group> </trans-unit> <trans-unit id="_msg91" approved="yes"> <source xml:space="preserve">Error: %1</source> <target xml:space="preserve">Error: %1</target> - <context-group purpose="location"><context context-type="linenumber">659</context></context-group> + <context-group purpose="location"><context context-type="linenumber">581</context></context-group> </trans-unit> <trans-unit id="_msg92" approved="yes"> <source xml:space="preserve">Error: Failed to load application fonts.</source> <target xml:space="preserve">Error: Failed to load application fonts.</target> - <context-group purpose="location"><context context-type="linenumber">710</context></context-group> + <context-group purpose="location"><context context-type="linenumber">632</context></context-group> </trans-unit> <trans-unit id="_msg93" approved="yes"> <source xml:space="preserve">Error: Specified font-family invalid. Valid values: %1.</source> <target xml:space="preserve">Error: Specified font-family invalid. Valid values: %1.</target> - <context-group purpose="location"><context context-type="linenumber">723</context></context-group> + <context-group purpose="location"><context context-type="linenumber">645</context></context-group> </trans-unit> <trans-unit id="_msg94" approved="yes"> <source xml:space="preserve">Error: Specified font-weight-normal invalid. Valid range %1 to %2.</source> <target xml:space="preserve">Error: Specified font-weight-normal invalid. Valid range %1 to %2.</target> - <context-group purpose="location"><context context-type="linenumber">733</context></context-group> + <context-group purpose="location"><context context-type="linenumber">655</context></context-group> </trans-unit> <trans-unit id="_msg95" approved="yes"> <source xml:space="preserve">Error: Specified font-weight-bold invalid. Valid range %1 to %2.</source> <target xml:space="preserve">Error: Specified font-weight-bold invalid. Valid range %1 to %2.</target> - <context-group purpose="location"><context context-type="linenumber">743</context></context-group> + <context-group purpose="location"><context context-type="linenumber">665</context></context-group> </trans-unit> <trans-unit id="_msg96" approved="yes"> <source xml:space="preserve">Error: Specified font-scale invalid. Valid range %1 to %2.</source> <target xml:space="preserve">Error: Specified font-scale invalid. Valid range %1 to %2.</target> - <context-group purpose="location"><context context-type="linenumber">754</context></context-group> + <context-group purpose="location"><context context-type="linenumber">676</context></context-group> </trans-unit> <trans-unit id="_msg97" approved="yes"> <source xml:space="preserve">Error: Invalid -custom-css-dir path.</source> <target xml:space="preserve">Error: Invalid -custom-css-dir path.</target> - <context-group purpose="location"><context context-type="linenumber">768</context></context-group> + <context-group purpose="location"><context context-type="linenumber">690</context></context-group> </trans-unit> <trans-unit id="_msg98" approved="yes"> <source xml:space="preserve">Error: %1 CSS file(s) missing in -custom-css-dir path.</source> <target xml:space="preserve">Error: %1 CSS file(s) missing in -custom-css-dir path.</target> - <context-group purpose="location"><context context-type="linenumber">788</context></context-group> + <context-group purpose="location"><context context-type="linenumber">710</context></context-group> </trans-unit> - <trans-unit id="_msg99"> + <trans-unit id="_msg99" approved="yes"> <source xml:space="preserve">%1 didn't yet exit safely…</source> + <target xml:space="preserve">%1 didn't yet exit safely…</target> + <context-group purpose="location"><context context-type="linenumber">742</context></context-group> + </trans-unit> + </group> + <group restype="x-trolltech-linguist-context" resname="dash-core"> + <trans-unit id="_msg100"> + <source xml:space="preserve">Settings file could not be read</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">158</context></context-group> + </trans-unit> + <trans-unit id="_msg101"> + <source xml:space="preserve">Settings file could not be written</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">820</context></context-group> + <context-group purpose="location"><context context-type="linenumber">181</context></context-group> </trans-unit> </group> </body></file> <file original="../bitcoingui.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="BitcoinGUI"> - <trans-unit id="_msg100" approved="yes"> + <trans-unit id="_msg102" approved="yes"> <source xml:space="preserve">&Overview</source> <target xml:space="preserve">&Overview</target> - <context-group purpose="location"><context context-type="linenumber">681</context></context-group> + <context-group purpose="location"><context context-type="linenumber">683</context></context-group> </trans-unit> - <trans-unit id="_msg101" approved="yes"> + <trans-unit id="_msg103" approved="yes"> <source xml:space="preserve">Show general overview of wallet</source> <target xml:space="preserve">Show general overview of wallet</target> - <context-group purpose="location"><context context-type="linenumber">682</context></context-group> + <context-group purpose="location"><context context-type="linenumber">684</context></context-group> </trans-unit> - <trans-unit id="_msg102" approved="yes"> + <trans-unit id="_msg104" approved="yes"> <source xml:space="preserve">&Send</source> <target xml:space="preserve">&Send</target> - <context-group purpose="location"><context context-type="linenumber">353</context></context-group> + <context-group purpose="location"><context context-type="linenumber">356</context></context-group> </trans-unit> - <trans-unit id="_msg103" approved="yes"> + <trans-unit id="_msg105" approved="yes"> <source xml:space="preserve">Send coins to a Dash address</source> <target xml:space="preserve">Send coins to a Dash address</target> - <context-group purpose="location"><context context-type="linenumber">354</context></context-group> + <context-group purpose="location"><context context-type="linenumber">357</context></context-group> </trans-unit> - <trans-unit id="_msg104" approved="yes"> + <trans-unit id="_msg106" approved="yes"> <source xml:space="preserve">&Receive</source> <target xml:space="preserve">&Receive</target> - <context-group purpose="location"><context context-type="linenumber">362</context></context-group> + <context-group purpose="location"><context context-type="linenumber">365</context></context-group> </trans-unit> - <trans-unit id="_msg105" approved="yes"> + <trans-unit id="_msg107" approved="yes"> <source xml:space="preserve">Request payments (generates QR codes and dash: URIs)</source> <target xml:space="preserve">Request payments (generates QR codes and dash: URIs)</target> - <context-group purpose="location"><context context-type="linenumber">363</context></context-group> + <context-group purpose="location"><context context-type="linenumber">366</context></context-group> </trans-unit> - <trans-unit id="_msg106"> + <trans-unit id="_msg108" approved="yes"> <source xml:space="preserve">Ctrl+Q</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">379</context></context-group> + <target xml:space="preserve">Ctrl+Q</target> + <context-group purpose="location"><context context-type="linenumber">382</context></context-group> </trans-unit> - <trans-unit id="_msg107"> + <trans-unit id="_msg109" approved="yes"> <source xml:space="preserve">&Options…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">388</context></context-group> + <target xml:space="preserve">&Options…</target> + <context-group purpose="location"><context context-type="linenumber">391</context></context-group> </trans-unit> - <trans-unit id="_msg108"> + <trans-unit id="_msg110" approved="yes"> <source xml:space="preserve">&Encrypt Wallet…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">395</context></context-group> + <target xml:space="preserve">&Encrypt Wallet…</target> + <context-group purpose="location"><context context-type="linenumber">398</context></context-group> </trans-unit> - <trans-unit id="_msg109"> + <trans-unit id="_msg111" approved="yes"> <source xml:space="preserve">&Backup Wallet…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">397</context></context-group> + <target xml:space="preserve">&Backup Wallet…</target> + <context-group purpose="location"><context context-type="linenumber">400</context></context-group> </trans-unit> - <trans-unit id="_msg110"> + <trans-unit id="_msg112" approved="yes"> <source xml:space="preserve">&Change Passphrase…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">399</context></context-group> + <target xml:space="preserve">&Change Passphrase…</target> + <context-group purpose="location"><context context-type="linenumber">402</context></context-group> </trans-unit> - <trans-unit id="_msg111"> + <trans-unit id="_msg113" approved="yes"> <source xml:space="preserve">&Unlock Wallet…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">401</context></context-group> + <target xml:space="preserve">&Unlock Wallet…</target> + <context-group purpose="location"><context context-type="linenumber">404</context></context-group> </trans-unit> - <trans-unit id="_msg112"> + <trans-unit id="_msg114" approved="yes"> <source xml:space="preserve">Sign &message…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">404</context></context-group> + <target xml:space="preserve">Sign &message…</target> + <context-group purpose="location"><context context-type="linenumber">407</context></context-group> </trans-unit> - <trans-unit id="_msg113"> + <trans-unit id="_msg115" approved="yes"> <source xml:space="preserve">&Verify message…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">406</context></context-group> + <target xml:space="preserve">&Verify message…</target> + <context-group purpose="location"><context context-type="linenumber">409</context></context-group> </trans-unit> - <trans-unit id="_msg114"> + <trans-unit id="_msg116" approved="yes"> <source xml:space="preserve">&Load PSBT from file…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">408</context></context-group> + <target xml:space="preserve">&Load PSBT from file…</target> + <context-group purpose="location"><context context-type="linenumber">411</context></context-group> </trans-unit> - <trans-unit id="_msg115"> + <trans-unit id="_msg117" approved="yes"> <source xml:space="preserve">Load PSBT from clipboard…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">410</context></context-group> + <target xml:space="preserve">Load PSBT from clipboard…</target> + <context-group purpose="location"><context context-type="linenumber">413</context></context-group> </trans-unit> - <trans-unit id="_msg116" approved="yes"> + <trans-unit id="_msg118" approved="yes"> <source xml:space="preserve">&Sending addresses</source> <target xml:space="preserve">&Sending addresses</target> - <context-group purpose="location"><context context-type="linenumber">437</context></context-group> + <context-group purpose="location"><context context-type="linenumber">440</context></context-group> </trans-unit> - <trans-unit id="_msg117" approved="yes"> + <trans-unit id="_msg119" approved="yes"> <source xml:space="preserve">&Receiving addresses</source> <target xml:space="preserve">&Receiving addresses</target> - <context-group purpose="location"><context context-type="linenumber">439</context></context-group> + <context-group purpose="location"><context context-type="linenumber">442</context></context-group> </trans-unit> - <trans-unit id="_msg118"> + <trans-unit id="_msg120" approved="yes"> <source xml:space="preserve">Open &URI…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">442</context></context-group> + <target xml:space="preserve">Open &URI…</target> + <context-group purpose="location"><context context-type="linenumber">445</context></context-group> </trans-unit> - <trans-unit id="_msg119" approved="yes"> + <trans-unit id="_msg121" approved="yes"> <source xml:space="preserve">Open Wallet</source> <target xml:space="preserve">Open Wallet</target> - <context-group purpose="location"><context context-type="linenumber">445</context></context-group> + <context-group purpose="location"><context context-type="linenumber">448</context></context-group> </trans-unit> - <trans-unit id="_msg120" approved="yes"> + <trans-unit id="_msg122" approved="yes"> <source xml:space="preserve">Open a wallet</source> <target xml:space="preserve">Open a wallet</target> - <context-group purpose="location"><context context-type="linenumber">447</context></context-group> + <context-group purpose="location"><context context-type="linenumber">450</context></context-group> </trans-unit> - <trans-unit id="_msg121" approved="yes"> + <trans-unit id="_msg123" approved="yes"> <source xml:space="preserve">Close wallet</source> <target xml:space="preserve">Close wallet</target> - <context-group purpose="location"><context context-type="linenumber">451</context></context-group> + <context-group purpose="location"><context context-type="linenumber">454</context></context-group> </trans-unit> - <trans-unit id="_msg122" approved="yes"> + <trans-unit id="_msg124" approved="yes"> <source xml:space="preserve">No wallets available</source> <target xml:space="preserve">No wallets available</target> - <context-group purpose="location"><context context-type="linenumber">540</context></context-group> + <context-group purpose="location"><context context-type="linenumber">542</context></context-group> </trans-unit> - <trans-unit id="_msg123" approved="yes"> + <trans-unit id="_msg125" approved="yes"> <source xml:space="preserve">&Window</source> <target xml:space="preserve">&Window</target> - <context-group purpose="location"><context context-type="linenumber">609</context></context-group> + <context-group purpose="location"><context context-type="linenumber">611</context></context-group> </trans-unit> - <trans-unit id="_msg124" approved="yes"> + <trans-unit id="_msg126" approved="yes"> <source xml:space="preserve">Minimize</source> <target xml:space="preserve">Minimize</target> - <context-group purpose="location"><context context-type="linenumber">611</context></context-group> + <context-group purpose="location"><context context-type="linenumber">613</context></context-group> </trans-unit> - <trans-unit id="_msg125" approved="yes"> + <trans-unit id="_msg127" approved="yes"> <source xml:space="preserve">Zoom</source> <target xml:space="preserve">Zoom</target> - <context-group purpose="location"><context context-type="linenumber">621</context></context-group> + <context-group purpose="location"><context context-type="linenumber">623</context></context-group> </trans-unit> - <trans-unit id="_msg126" approved="yes"> + <trans-unit id="_msg128" approved="yes"> <source xml:space="preserve">Main Window</source> <target xml:space="preserve">Main Window</target> - <context-group purpose="location"><context context-type="linenumber">639</context></context-group> + <context-group purpose="location"><context context-type="linenumber">641</context></context-group> </trans-unit> - <trans-unit id="_msg127" approved="yes"> + <trans-unit id="_msg129" approved="yes"> <source xml:space="preserve">&Transactions</source> <target xml:space="preserve">&Transactions</target> - <context-group purpose="location"><context context-type="linenumber">696</context></context-group> + <context-group purpose="location"><context context-type="linenumber">698</context></context-group> </trans-unit> - <trans-unit id="_msg128" approved="yes"> + <trans-unit id="_msg130" approved="yes"> <source xml:space="preserve">Browse transaction history</source> <target xml:space="preserve">Browse transaction history</target> - <context-group purpose="location"><context context-type="linenumber">697</context></context-group> + <context-group purpose="location"><context context-type="linenumber">699</context></context-group> </trans-unit> - <trans-unit id="_msg129" approved="yes"> + <trans-unit id="_msg131" approved="yes"> <source xml:space="preserve">&Masternodes</source> <target xml:space="preserve">&Masternodes</target> - <context-group purpose="location"><context context-type="linenumber">708</context></context-group> + <context-group purpose="location"><context context-type="linenumber">710</context></context-group> </trans-unit> - <trans-unit id="_msg130" approved="yes"> + <trans-unit id="_msg132" approved="yes"> <source xml:space="preserve">Browse masternodes</source> <target xml:space="preserve">Browse masternodes</target> - <context-group purpose="location"><context context-type="linenumber">709</context></context-group> + <context-group purpose="location"><context context-type="linenumber">711</context></context-group> </trans-unit> - <trans-unit id="_msg131" approved="yes"> + <trans-unit id="_msg133" approved="yes"> <source xml:space="preserve">E&xit</source> <target xml:space="preserve">E&xit</target> - <context-group purpose="location"><context context-type="linenumber">377</context></context-group> + <context-group purpose="location"><context context-type="linenumber">380</context></context-group> </trans-unit> - <trans-unit id="_msg132" approved="yes"> + <trans-unit id="_msg134" approved="yes"> <source xml:space="preserve">Quit application</source> <target xml:space="preserve">Quit application</target> - <context-group purpose="location"><context context-type="linenumber">378</context></context-group> + <context-group purpose="location"><context context-type="linenumber">381</context></context-group> </trans-unit> - <trans-unit id="_msg133" approved="yes"> + <trans-unit id="_msg135" approved="yes"> <source xml:space="preserve">About &Qt</source> <target xml:space="preserve">About &Qt</target> - <context-group purpose="location"><context context-type="linenumber">385</context></context-group> + <context-group purpose="location"><context context-type="linenumber">388</context></context-group> </trans-unit> - <trans-unit id="_msg134" approved="yes"> + <trans-unit id="_msg136" approved="yes"> <source xml:space="preserve">Show information about Qt</source> <target xml:space="preserve">Show information about Qt</target> - <context-group purpose="location"><context context-type="linenumber">386</context></context-group> + <context-group purpose="location"><context context-type="linenumber">389</context></context-group> </trans-unit> - <trans-unit id="_msg135" approved="yes"> + <trans-unit id="_msg137" approved="yes"> <source xml:space="preserve">&About %1</source> <target xml:space="preserve">&About %1</target> - <context-group purpose="location"><context context-type="linenumber">381</context></context-group> + <context-group purpose="location"><context context-type="linenumber">384</context></context-group> </trans-unit> - <trans-unit id="_msg136" approved="yes"> + <trans-unit id="_msg138" approved="yes"> <source xml:space="preserve">Send %1 funds to a Dash address</source> <target xml:space="preserve">Send %1 funds to a Dash address</target> - <context-group purpose="location"><context context-type="linenumber">359</context></context-group> + <context-group purpose="location"><context context-type="linenumber">362</context></context-group> </trans-unit> - <trans-unit id="_msg137" approved="yes"> + <trans-unit id="_msg139" approved="yes"> <source xml:space="preserve">Modify configuration options for %1</source> <target xml:space="preserve">Modify configuration options for %1</target> - <context-group purpose="location"><context context-type="linenumber">389</context></context-group> + <context-group purpose="location"><context context-type="linenumber">392</context></context-group> </trans-unit> - <trans-unit id="_msg138" approved="yes"> + <trans-unit id="_msg140" approved="yes"> <source xml:space="preserve">&Show / Hide</source> <target xml:space="preserve">&Show / Hide</target> - <context-group purpose="location"><context context-type="linenumber">392</context></context-group> + <context-group purpose="location"><context context-type="linenumber">395</context></context-group> </trans-unit> - <trans-unit id="_msg139" approved="yes"> + <trans-unit id="_msg141" approved="yes"> <source xml:space="preserve">Show or hide the main Window</source> <target xml:space="preserve">Show or hide the main Window</target> - <context-group purpose="location"><context context-type="linenumber">393</context></context-group> + <context-group purpose="location"><context context-type="linenumber">396</context></context-group> </trans-unit> - <trans-unit id="_msg140" approved="yes"> + <trans-unit id="_msg142" approved="yes"> <source xml:space="preserve">Encrypt the private keys that belong to your wallet</source> <target xml:space="preserve">Encrypt the private keys that belong to your wallet</target> - <context-group purpose="location"><context context-type="linenumber">396</context></context-group> + <context-group purpose="location"><context context-type="linenumber">399</context></context-group> </trans-unit> - <trans-unit id="_msg141" approved="yes"> + <trans-unit id="_msg143" approved="yes"> <source xml:space="preserve">Backup wallet to another location</source> <target xml:space="preserve">Backup wallet to another location</target> - <context-group purpose="location"><context context-type="linenumber">398</context></context-group> + <context-group purpose="location"><context context-type="linenumber">401</context></context-group> </trans-unit> - <trans-unit id="_msg142" approved="yes"> + <trans-unit id="_msg144" approved="yes"> <source xml:space="preserve">Change the passphrase used for wallet encryption</source> <target xml:space="preserve">Change the passphrase used for wallet encryption</target> - <context-group purpose="location"><context context-type="linenumber">400</context></context-group> + <context-group purpose="location"><context context-type="linenumber">403</context></context-group> </trans-unit> - <trans-unit id="_msg143" approved="yes"> + <trans-unit id="_msg145" approved="yes"> <source xml:space="preserve">Unlock wallet</source> <target xml:space="preserve">Unlock wallet</target> - <context-group purpose="location"><context context-type="linenumber">402</context></context-group> + <context-group purpose="location"><context context-type="linenumber">405</context></context-group> </trans-unit> - <trans-unit id="_msg144" approved="yes"> + <trans-unit id="_msg146" approved="yes"> <source xml:space="preserve">&Lock Wallet</source> <target xml:space="preserve">&Lock Wallet</target> - <context-group purpose="location"><context context-type="linenumber">403</context></context-group> + <context-group purpose="location"><context context-type="linenumber">406</context></context-group> </trans-unit> - <trans-unit id="_msg145" approved="yes"> + <trans-unit id="_msg147" approved="yes"> <source xml:space="preserve">Sign messages with your Dash addresses to prove you own them</source> <target xml:space="preserve">Sign messages with your Dash addresses to prove you own them</target> - <context-group purpose="location"><context context-type="linenumber">405</context></context-group> + <context-group purpose="location"><context context-type="linenumber">408</context></context-group> </trans-unit> - <trans-unit id="_msg146" approved="yes"> + <trans-unit id="_msg148" approved="yes"> <source xml:space="preserve">Verify messages to ensure they were signed with specified Dash addresses</source> <target xml:space="preserve">Verify messages to ensure they were signed with specified Dash addresses</target> - <context-group purpose="location"><context context-type="linenumber">407</context></context-group> + <context-group purpose="location"><context context-type="linenumber">410</context></context-group> </trans-unit> - <trans-unit id="_msg147" approved="yes"> + <trans-unit id="_msg149" approved="yes"> <source xml:space="preserve">&Information</source> <target xml:space="preserve">&Information</target> - <context-group purpose="location"><context context-type="linenumber">413</context></context-group> + <context-group purpose="location"><context context-type="linenumber">416</context></context-group> </trans-unit> - <trans-unit id="_msg148" approved="yes"> + <trans-unit id="_msg150" approved="yes"> <source xml:space="preserve">Show diagnostic information</source> <target xml:space="preserve">Show diagnostic information</target> - <context-group purpose="location"><context context-type="linenumber">414</context></context-group> + <context-group purpose="location"><context context-type="linenumber">417</context></context-group> </trans-unit> - <trans-unit id="_msg149" approved="yes"> + <trans-unit id="_msg151" approved="yes"> <source xml:space="preserve">&Debug console</source> <target xml:space="preserve">&Debug console</target> - <context-group purpose="location"><context context-type="linenumber">415</context></context-group> + <context-group purpose="location"><context context-type="linenumber">418</context></context-group> </trans-unit> - <trans-unit id="_msg150" approved="yes"> + <trans-unit id="_msg152" approved="yes"> <source xml:space="preserve">&Network Monitor</source> <target xml:space="preserve">&Network Monitor</target> - <context-group purpose="location"><context context-type="linenumber">417</context></context-group> + <context-group purpose="location"><context context-type="linenumber">420</context></context-group> </trans-unit> - <trans-unit id="_msg151" approved="yes"> + <trans-unit id="_msg153" approved="yes"> <source xml:space="preserve">Show network monitor</source> <target xml:space="preserve">Show network monitor</target> - <context-group purpose="location"><context context-type="linenumber">418</context></context-group> + <context-group purpose="location"><context context-type="linenumber">421</context></context-group> </trans-unit> - <trans-unit id="_msg152" approved="yes"> + <trans-unit id="_msg154" approved="yes"> <source xml:space="preserve">&Peers list</source> <target xml:space="preserve">&Peers list</target> - <context-group purpose="location"><context context-type="linenumber">419</context></context-group> + <context-group purpose="location"><context context-type="linenumber">422</context></context-group> </trans-unit> - <trans-unit id="_msg153" approved="yes"> + <trans-unit id="_msg155" approved="yes"> <source xml:space="preserve">Show peers info</source> <target xml:space="preserve">Show peers info</target> - <context-group purpose="location"><context context-type="linenumber">420</context></context-group> + <context-group purpose="location"><context context-type="linenumber">423</context></context-group> </trans-unit> - <trans-unit id="_msg154" approved="yes"> + <trans-unit id="_msg156" approved="yes"> <source xml:space="preserve">Wallet &Repair</source> <target xml:space="preserve">Wallet &Repair</target> - <context-group purpose="location"><context context-type="linenumber">421</context></context-group> + <context-group purpose="location"><context context-type="linenumber">424</context></context-group> </trans-unit> - <trans-unit id="_msg155" approved="yes"> + <trans-unit id="_msg157" approved="yes"> <source xml:space="preserve">Show wallet repair options</source> <target xml:space="preserve">Show wallet repair options</target> - <context-group purpose="location"><context context-type="linenumber">422</context></context-group> + <context-group purpose="location"><context context-type="linenumber">425</context></context-group> </trans-unit> - <trans-unit id="_msg156" approved="yes"> + <trans-unit id="_msg158" approved="yes"> <source xml:space="preserve">Open Wallet &Configuration File</source> <target xml:space="preserve">Open Wallet &Configuration File</target> - <context-group purpose="location"><context context-type="linenumber">423</context></context-group> + <context-group purpose="location"><context context-type="linenumber">426</context></context-group> </trans-unit> - <trans-unit id="_msg157" approved="yes"> + <trans-unit id="_msg159" approved="yes"> <source xml:space="preserve">Open configuration file</source> <target xml:space="preserve">Open configuration file</target> - <context-group purpose="location"><context context-type="linenumber">424</context></context-group> + <context-group purpose="location"><context context-type="linenumber">427</context></context-group> </trans-unit> - <trans-unit id="_msg158" approved="yes"> + <trans-unit id="_msg160" approved="yes"> <source xml:space="preserve">Show Automatic &Backups</source> <target xml:space="preserve">Show Automatic &Backups</target> - <context-group purpose="location"><context context-type="linenumber">427</context></context-group> + <context-group purpose="location"><context context-type="linenumber">430</context></context-group> </trans-unit> - <trans-unit id="_msg159" approved="yes"> + <trans-unit id="_msg161" approved="yes"> <source xml:space="preserve">Show automatically created wallet backups</source> <target xml:space="preserve">Show automatically created wallet backups</target> - <context-group purpose="location"><context context-type="linenumber">428</context></context-group> + <context-group purpose="location"><context context-type="linenumber">431</context></context-group> </trans-unit> - <trans-unit id="_msg160" approved="yes"> + <trans-unit id="_msg162" approved="yes"> <source xml:space="preserve">Show the list of used sending addresses and labels</source> <target xml:space="preserve">Show the list of used sending addresses and labels</target> - <context-group purpose="location"><context context-type="linenumber">438</context></context-group> + <context-group purpose="location"><context context-type="linenumber">441</context></context-group> </trans-unit> - <trans-unit id="_msg161" approved="yes"> + <trans-unit id="_msg163" approved="yes"> <source xml:space="preserve">Show the list of used receiving addresses and labels</source> <target xml:space="preserve">Show the list of used receiving addresses and labels</target> - <context-group purpose="location"><context context-type="linenumber">440</context></context-group> + <context-group purpose="location"><context context-type="linenumber">443</context></context-group> </trans-unit> - <trans-unit id="_msg162" approved="yes"> + <trans-unit id="_msg164" approved="yes"> <source xml:space="preserve">&Command-line options</source> <target xml:space="preserve">&Command-line options</target> - <context-group purpose="location"><context context-type="linenumber">460</context></context-group> + <context-group purpose="location"><context context-type="linenumber">463</context></context-group> </trans-unit> - <trans-unit id="_msg163" approved="yes"> + <trans-unit id="_msg165" approved="yes"> <source xml:space="preserve">Show the %1 help message to get a list with possible Dash command-line options</source> <target xml:space="preserve">Show the %1 help message to get a list with possible Dash command-line options</target> - <context-group purpose="location"><context context-type="linenumber">462</context></context-group> + <context-group purpose="location"><context context-type="linenumber">465</context></context-group> </trans-unit> - <trans-unit id="_msg164" approved="yes"> + <trans-unit id="_msg166" approved="yes"> <source xml:space="preserve">default wallet</source> <target xml:space="preserve">default wallet</target> - <context-group purpose="location"><context context-type="linenumber">519</context></context-group> + <context-group purpose="location"><context context-type="linenumber">522</context></context-group> </trans-unit> - <trans-unit id="_msg165" approved="yes"> + <trans-unit id="_msg167" approved="yes"> <source xml:space="preserve">%1 client</source> <target xml:space="preserve">%1 client</target> - <context-group purpose="location"><context context-type="linenumber">1011</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1030</context></context-group> </trans-unit> - <trans-unit id="_msg166" approved="yes"> + <trans-unit id="_msg168" approved="yes"> <source xml:space="preserve">Wallet: %1 </source> <target xml:space="preserve">Wallet: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1759</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1803</context></context-group> </trans-unit> - <trans-unit id="_msg167" approved="yes"> + <trans-unit id="_msg169" approved="yes"> <source xml:space="preserve">Wallet is <b>unencrypted</b></source> <target xml:space="preserve">Wallet is <b>unencrypted</b></target> - <context-group purpose="location"><context context-type="linenumber">1834</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1878</context></context-group> </trans-unit> - <trans-unit id="_msg168" approved="yes"> + <trans-unit id="_msg170" approved="yes"> <source xml:space="preserve">&File</source> <target xml:space="preserve">&File</target> - <context-group purpose="location"><context context-type="linenumber">573</context></context-group> + <context-group purpose="location"><context context-type="linenumber">575</context></context-group> </trans-unit> - <trans-unit id="_msg169" approved="yes"> + <trans-unit id="_msg171" approved="yes"> <source xml:space="preserve">Show information about %1</source> <target xml:space="preserve">Show information about %1</target> - <context-group purpose="location"><context context-type="linenumber">382</context></context-group> + <context-group purpose="location"><context context-type="linenumber">385</context></context-group> </trans-unit> - <trans-unit id="_msg170" approved="yes"> + <trans-unit id="_msg172" approved="yes"> <source xml:space="preserve">Load Partially Signed Dash Transaction</source> <target xml:space="preserve">Load Partially Signed Dash Transaction</target> - <context-group purpose="location"><context context-type="linenumber">409</context></context-group> + <context-group purpose="location"><context context-type="linenumber">412</context></context-group> </trans-unit> - <trans-unit id="_msg171" approved="yes"> + <trans-unit id="_msg173" approved="yes"> <source xml:space="preserve">Load Partially Signed Bitcoin Transaction from clipboard</source> <target xml:space="preserve">Load Partially Signed Bitcoin Transaction from clipboard</target> - <context-group purpose="location"><context context-type="linenumber">411</context></context-group> + <context-group purpose="location"><context context-type="linenumber">414</context></context-group> </trans-unit> - <trans-unit id="_msg172" approved="yes"> + <trans-unit id="_msg174" approved="yes"> <source xml:space="preserve">Open debugging and diagnostic console</source> <target xml:space="preserve">Open debugging and diagnostic console</target> - <context-group purpose="location"><context context-type="linenumber">416</context></context-group> + <context-group purpose="location"><context context-type="linenumber">419</context></context-group> </trans-unit> - <trans-unit id="_msg173" approved="yes"> + <trans-unit id="_msg175" approved="yes"> <source xml:space="preserve">Open a dash: URI</source> <target xml:space="preserve">Open a dash: URI</target> - <context-group purpose="location"><context context-type="linenumber">443</context></context-group> + <context-group purpose="location"><context context-type="linenumber">446</context></context-group> </trans-unit> - <trans-unit id="_msg174" approved="yes"> + <trans-unit id="_msg176" approved="yes"> <source xml:space="preserve">Create a new wallet</source> <target xml:space="preserve">Create a new wallet</target> - <context-group purpose="location"><context context-type="linenumber">455</context></context-group> + <context-group purpose="location"><context context-type="linenumber">458</context></context-group> </trans-unit> - <trans-unit id="_msg175" approved="yes"> + <trans-unit id="_msg177" approved="yes"> <source xml:space="preserve">Close all wallets</source> <target xml:space="preserve">Close all wallets</target> - <context-group purpose="location"><context context-type="linenumber">458</context></context-group> + <context-group purpose="location"><context context-type="linenumber">461</context></context-group> </trans-unit> - <trans-unit id="_msg176" approved="yes"> + <trans-unit id="_msg178" approved="yes"> <source xml:space="preserve">%1 &information</source> <target xml:space="preserve">%1 &information</target> - <context-group purpose="location"><context context-type="linenumber">464</context></context-group> + <context-group purpose="location"><context context-type="linenumber">467</context></context-group> </trans-unit> - <trans-unit id="_msg177" approved="yes"> + <trans-unit id="_msg179" approved="yes"> <source xml:space="preserve">Show the %1 basic information</source> <target xml:space="preserve">Show the %1 basic information</target> - <context-group purpose="location"><context context-type="linenumber">466</context></context-group> + <context-group purpose="location"><context context-type="linenumber">469</context></context-group> </trans-unit> - <trans-unit id="_msg178" approved="yes"> + <trans-unit id="_msg180" approved="yes"> <source xml:space="preserve">&Discreet mode</source> <target xml:space="preserve">&Discreet mode</target> - <context-group purpose="location"><context context-type="linenumber">468</context></context-group> + <context-group purpose="location"><context context-type="linenumber">471</context></context-group> </trans-unit> - <trans-unit id="_msg179" approved="yes"> + <trans-unit id="_msg181" approved="yes"> <source xml:space="preserve">Mask the values in the Overview tab</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">470</context></context-group> + <context-group purpose="location"><context context-type="linenumber">473</context></context-group> </trans-unit> - <trans-unit id="_msg180" approved="yes"> + <trans-unit id="_msg182" approved="yes"> <source xml:space="preserve">&Settings</source> <target xml:space="preserve">&Settings</target> - <context-group purpose="location"><context context-type="linenumber">596</context></context-group> + <context-group purpose="location"><context context-type="linenumber">598</context></context-group> </trans-unit> - <trans-unit id="_msg181" approved="yes"> + <trans-unit id="_msg183" approved="yes"> <source xml:space="preserve">&Help</source> <target xml:space="preserve">&Help</target> - <context-group purpose="location"><context context-type="linenumber">659</context></context-group> + <context-group purpose="location"><context context-type="linenumber">661</context></context-group> </trans-unit> - <trans-unit id="_msg182" approved="yes"> + <trans-unit id="_msg184" approved="yes"> <source xml:space="preserve">Tabs toolbar</source> <target xml:space="preserve">Tabs toolbar</target> - <context-group purpose="location"><context context-type="linenumber">672</context></context-group> + <context-group purpose="location"><context context-type="linenumber">674</context></context-group> </trans-unit> - <trans-unit id="_msg183" approved="yes"> + <trans-unit id="_msg185" approved="yes"> <source xml:space="preserve">&Governance</source> <target xml:space="preserve">&Governance</target> - <context-group purpose="location"><context context-type="linenumber">717</context></context-group> + <context-group purpose="location"><context context-type="linenumber">719</context></context-group> </trans-unit> - <trans-unit id="_msg184" approved="yes"> + <trans-unit id="_msg186" approved="yes"> <source xml:space="preserve">View Governance Proposals</source> <target xml:space="preserve">View Governance Proposals</target> - <context-group purpose="location"><context context-type="linenumber">718</context></context-group> + <context-group purpose="location"><context context-type="linenumber">720</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1272</context></context-group> - <trans-unit id="_msg185[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1293</context></context-group> + <note annotates="source" from="developer">A substring of the tooltip.</note> + <trans-unit id="_msg187[0]" approved="yes"> <source xml:space="preserve">%n active connection(s) to Dash network</source> <target xml:space="preserve">%n active connection to Dash network</target> </trans-unit> - <trans-unit id="_msg185[1]" approved="yes"> + <trans-unit id="_msg187[1]" approved="yes"> <source xml:space="preserve">%n active connection(s) to Dash network</source> <target xml:space="preserve">%n active connections to Dash network</target> </trans-unit> </group> - <trans-unit id="_msg186" approved="yes"> + <trans-unit id="_msg188" approved="yes"> <source xml:space="preserve">Network activity disabled</source> <target xml:space="preserve">Network activity disabled</target> - <context-group purpose="location"><context context-type="linenumber">1274</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1295</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1451</context></context-group> - <trans-unit id="_msg187[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1493</context></context-group> + <trans-unit id="_msg189[0]" approved="yes"> <source xml:space="preserve">Processed %n block(s) of transaction history.</source> <target xml:space="preserve">Processed %n block of transaction history.</target> </trans-unit> - <trans-unit id="_msg187[1]" approved="yes"> + <trans-unit id="_msg189[1]" approved="yes"> <source xml:space="preserve">Processed %n block(s) of transaction history.</source> <target xml:space="preserve">Processed %n blocks of transaction history.</target> </trans-unit> </group> - <trans-unit id="_msg188" approved="yes"> + <trans-unit id="_msg190" approved="yes"> <source xml:space="preserve">%1 behind</source> <target xml:space="preserve">%1 behind</target> - <context-group purpose="location"><context context-type="linenumber">1470</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1512</context></context-group> </trans-unit> - <trans-unit id="_msg189"> + <trans-unit id="_msg191" approved="yes"> <source xml:space="preserve">Close Wallet…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">450</context></context-group> + <target xml:space="preserve">Close Wallet…</target> + <context-group purpose="location"><context context-type="linenumber">453</context></context-group> </trans-unit> - <trans-unit id="_msg190"> + <trans-unit id="_msg192" approved="yes"> <source xml:space="preserve">Create Wallet…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">453</context></context-group> + <target xml:space="preserve">Create Wallet…</target> + <context-group purpose="location"><context context-type="linenumber">456</context></context-group> </trans-unit> - <trans-unit id="_msg191"> + <trans-unit id="_msg193" approved="yes"> <source xml:space="preserve">Close All Wallets…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">457</context></context-group> + <target xml:space="preserve">Close All Wallets…</target> + <context-group purpose="location"><context context-type="linenumber">460</context></context-group> </trans-unit> - <trans-unit id="_msg192"> + <trans-unit id="_msg194" approved="yes"> <source xml:space="preserve">Ctrl+Shift+D</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">469</context></context-group> + <target xml:space="preserve">Ctrl+Shift+D</target> + <context-group purpose="location"><context context-type="linenumber">472</context></context-group> </trans-unit> - <trans-unit id="_msg193"> + <trans-unit id="_msg195" approved="yes"> <source xml:space="preserve">Ctrl+M</source> + <target xml:space="preserve">Ctrl+M</target> + <context-group purpose="location"><context context-type="linenumber">614</context></context-group> + </trans-unit> + <trans-unit id="_msg196"> + <source xml:space="preserve">Click for more actions.</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">612</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1303</context></context-group> + <note annotates="source" from="developer">A substring of the tooltip. "More actions" are available via the context menu.</note> </trans-unit> - <trans-unit id="_msg194"> - <source xml:space="preserve">Syncing Headers (%1%)…</source> + <trans-unit id="_msg197"> + <source xml:space="preserve">Show Peers tab</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1304</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1326</context></context-group> + <note annotates="source" from="developer">A context menu item. The "Peers tab" is an element of the "Node window".</note> </trans-unit> - <trans-unit id="_msg195"> - <source xml:space="preserve">Synchronizing with network…</source> + <trans-unit id="_msg198"> + <source xml:space="preserve">Disable network activity</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1425</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1334</context></context-group> + <note annotates="source" from="developer">A context menu item.</note> </trans-unit> - <trans-unit id="_msg196"> - <source xml:space="preserve">Indexing blocks on disk…</source> + <trans-unit id="_msg199"> + <source xml:space="preserve">Enable network activity</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1430</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1336</context></context-group> + <note annotates="source" from="developer">A context menu item. The network activity was disabled previously.</note> </trans-unit> - <trans-unit id="_msg197"> + <trans-unit id="_msg200" approved="yes"> + <source xml:space="preserve">Syncing Headers (%1%)…</source> + <target xml:space="preserve">Syncing Headers (%1%)…</target> + <context-group purpose="location"><context context-type="linenumber">1346</context></context-group> + </trans-unit> + <trans-unit id="_msg201" approved="yes"> + <source xml:space="preserve">Synchronizing with network…</source> + <target xml:space="preserve">Synchronizing with network…</target> + <context-group purpose="location"><context context-type="linenumber">1467</context></context-group> + </trans-unit> + <trans-unit id="_msg202" approved="yes"> + <source xml:space="preserve">Indexing blocks on disk…</source> + <target xml:space="preserve">Indexing blocks on disk…</target> + <context-group purpose="location"><context context-type="linenumber">1472</context></context-group> + </trans-unit> + <trans-unit id="_msg203" approved="yes"> <source xml:space="preserve">Processing blocks on disk…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1432</context></context-group> + <target xml:space="preserve">Processing blocks on disk…</target> + <context-group purpose="location"><context context-type="linenumber">1474</context></context-group> </trans-unit> - <trans-unit id="_msg198"> + <trans-unit id="_msg204" approved="yes"> <source xml:space="preserve">Reindexing blocks on disk…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1436</context></context-group> + <target xml:space="preserve">Reindexing blocks on disk…</target> + <context-group purpose="location"><context context-type="linenumber">1478</context></context-group> </trans-unit> - <trans-unit id="_msg199"> + <trans-unit id="_msg205" approved="yes"> <source xml:space="preserve">Connecting to peers…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1442</context></context-group> + <target xml:space="preserve">Connecting to peers…</target> + <context-group purpose="location"><context context-type="linenumber">1484</context></context-group> </trans-unit> - <trans-unit id="_msg200"> + <trans-unit id="_msg206" approved="yes"> <source xml:space="preserve">Catching up…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1474</context></context-group> + <target xml:space="preserve">Catching up…</target> + <context-group purpose="location"><context context-type="linenumber">1516</context></context-group> </trans-unit> - <trans-unit id="_msg201" approved="yes"> + <trans-unit id="_msg207" approved="yes"> <source xml:space="preserve">Last received block was generated %1 ago.</source> <target xml:space="preserve">Last received block was generated %1 ago.</target> - <context-group purpose="location"><context context-type="linenumber">1484</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1526</context></context-group> </trans-unit> - <trans-unit id="_msg202" approved="yes"> + <trans-unit id="_msg208" approved="yes"> <source xml:space="preserve">Transactions after this will not yet be visible.</source> <target xml:space="preserve">Transactions after this will not yet be visible.</target> - <context-group purpose="location"><context context-type="linenumber">1486</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1528</context></context-group> </trans-unit> - <trans-unit id="_msg203" approved="yes"> + <trans-unit id="_msg209" approved="yes"> <source xml:space="preserve">Up to date</source> <target xml:space="preserve">Up to date</target> - <context-group purpose="location"><context context-type="linenumber">1525</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1567</context></context-group> </trans-unit> - <trans-unit id="_msg204" approved="yes"> + <trans-unit id="_msg210" approved="yes"> <source xml:space="preserve">Synchronizing additional data: %p%</source> <target xml:space="preserve">Synchronizing additional data: %p%</target> - <context-group purpose="location"><context context-type="linenumber">1538</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1580</context></context-group> </trans-unit> - <trans-unit id="_msg205" approved="yes"> + <trans-unit id="_msg211" approved="yes"> <source xml:space="preserve">Error</source> <target xml:space="preserve">Error</target> - <context-group purpose="location"><context context-type="linenumber">1569</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1611</context></context-group> </trans-unit> - <trans-unit id="_msg206" approved="yes"> + <trans-unit id="_msg212" approved="yes"> <source xml:space="preserve">Error: %1</source> <target xml:space="preserve">Error: %1</target> - <context-group purpose="location"><context context-type="linenumber">1570</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1612</context></context-group> </trans-unit> - <trans-unit id="_msg207" approved="yes"> + <trans-unit id="_msg213" approved="yes"> <source xml:space="preserve">Warning</source> <target xml:space="preserve">Warning</target> - <context-group purpose="location"><context context-type="linenumber">1573</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1615</context></context-group> </trans-unit> - <trans-unit id="_msg208" approved="yes"> + <trans-unit id="_msg214" approved="yes"> <source xml:space="preserve">Warning: %1</source> <target xml:space="preserve">Warning: %1</target> - <context-group purpose="location"><context context-type="linenumber">1574</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1616</context></context-group> </trans-unit> - <trans-unit id="_msg209" approved="yes"> + <trans-unit id="_msg215" approved="yes"> <source xml:space="preserve">Information</source> <target xml:space="preserve">Information</target> - <context-group purpose="location"><context context-type="linenumber">1577</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1619</context></context-group> </trans-unit> - <trans-unit id="_msg210" approved="yes"> + <trans-unit id="_msg216" approved="yes"> <source xml:space="preserve">Received and sent multiple transactions</source> <target xml:space="preserve">Received and sent multiple transactions</target> - <context-group purpose="location"><context context-type="linenumber">1732</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1776</context></context-group> </trans-unit> - <trans-unit id="_msg211" approved="yes"> + <trans-unit id="_msg217" approved="yes"> <source xml:space="preserve">Sent multiple transactions</source> <target xml:space="preserve">Sent multiple transactions</target> - <context-group purpose="location"><context context-type="linenumber">1734</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1778</context></context-group> </trans-unit> - <trans-unit id="_msg212" approved="yes"> + <trans-unit id="_msg218" approved="yes"> <source xml:space="preserve">Received multiple transactions</source> <target xml:space="preserve">Received multiple transactions</target> - <context-group purpose="location"><context context-type="linenumber">1736</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1780</context></context-group> </trans-unit> - <trans-unit id="_msg213" approved="yes"> + <trans-unit id="_msg219" approved="yes"> <source xml:space="preserve">Sent Amount: %1 </source> <target xml:space="preserve">Sent Amount: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1746</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1790</context></context-group> </trans-unit> - <trans-unit id="_msg214" approved="yes"> + <trans-unit id="_msg220" approved="yes"> <source xml:space="preserve">Received Amount: %1 </source> <target xml:space="preserve">Received Amount: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1749</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1793</context></context-group> </trans-unit> - <trans-unit id="_msg215" approved="yes"> + <trans-unit id="_msg221" approved="yes"> <source xml:space="preserve">Date: %1 </source> <target xml:space="preserve">Date: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1756</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1800</context></context-group> </trans-unit> - <trans-unit id="_msg216" approved="yes"> + <trans-unit id="_msg222" approved="yes"> <source xml:space="preserve">Amount: %1 </source> <target xml:space="preserve">Amount: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1757</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1801</context></context-group> </trans-unit> - <trans-unit id="_msg217" approved="yes"> + <trans-unit id="_msg223" approved="yes"> <source xml:space="preserve">Type: %1 </source> <target xml:space="preserve">Type: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1761</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1805</context></context-group> </trans-unit> - <trans-unit id="_msg218" approved="yes"> + <trans-unit id="_msg224" approved="yes"> <source xml:space="preserve">Label: %1 </source> <target xml:space="preserve">Label: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1763</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1807</context></context-group> </trans-unit> - <trans-unit id="_msg219" approved="yes"> + <trans-unit id="_msg225" approved="yes"> <source xml:space="preserve">Address: %1 </source> <target xml:space="preserve">Address: %1 </target> - <context-group purpose="location"><context context-type="linenumber">1765</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1809</context></context-group> </trans-unit> - <trans-unit id="_msg220" approved="yes"> + <trans-unit id="_msg226" approved="yes"> <source xml:space="preserve">Sent transaction</source> <target xml:space="preserve">Sent transaction</target> - <context-group purpose="location"><context context-type="linenumber">1766</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1810</context></context-group> </trans-unit> - <trans-unit id="_msg221" approved="yes"> + <trans-unit id="_msg227" approved="yes"> <source xml:space="preserve">Incoming transaction</source> <target xml:space="preserve">Incoming transaction</target> - <context-group purpose="location"><context context-type="linenumber">1766</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1810</context></context-group> </trans-unit> - <trans-unit id="_msg222" approved="yes"> + <trans-unit id="_msg228" approved="yes"> <source xml:space="preserve">HD key generation is <b>enabled</b></source> <target xml:space="preserve">HD key generation is <b>enabled</b></target> - <context-group purpose="location"><context context-type="linenumber">1821</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1865</context></context-group> </trans-unit> - <trans-unit id="_msg223" approved="yes"> + <trans-unit id="_msg229" approved="yes"> <source xml:space="preserve">Wallet is <b>encrypted</b> and currently <b>unlocked</b></source> <target xml:space="preserve">Wallet is <b>encrypted</b> and currently <b>unlocked</b></target> - <context-group purpose="location"><context context-type="linenumber">1843</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1887</context></context-group> </trans-unit> - <trans-unit id="_msg224" approved="yes"> + <trans-unit id="_msg230" approved="yes"> <source xml:space="preserve">Wallet is <b>encrypted</b> and currently <b>unlocked</b> for mixing only</source> <target xml:space="preserve">Wallet is <b>encrypted</b> and currently <b>unlocked</b> for mixing only</target> - <context-group purpose="location"><context context-type="linenumber">1852</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1896</context></context-group> </trans-unit> - <trans-unit id="_msg225" approved="yes"> + <trans-unit id="_msg231" approved="yes"> <source xml:space="preserve">Wallet is <b>encrypted</b> and currently <b>locked</b></source> <target xml:space="preserve">Wallet is <b>encrypted</b> and currently <b>locked</b></target> - <context-group purpose="location"><context context-type="linenumber">1861</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1905</context></context-group> </trans-unit> - <trans-unit id="_msg226" approved="yes"> + <trans-unit id="_msg232" approved="yes"> <source xml:space="preserve">Proxy is <b>enabled</b>: %1</source> <target xml:space="preserve">Proxy is <b>enabled</b>: %1</target> - <context-group purpose="location"><context context-type="linenumber">1894</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1937</context></context-group> </trans-unit> - <trans-unit id="_msg227" approved="yes"> + <trans-unit id="_msg233" approved="yes"> <source xml:space="preserve">Original message:</source> <target xml:space="preserve">Original message:</target> - <context-group purpose="location"><context context-type="linenumber">1986</context></context-group> + <context-group purpose="location"><context context-type="linenumber">2029</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="UnitDisplayStatusBarControl"> - <trans-unit id="_msg228" approved="yes"> + <trans-unit id="_msg234" approved="yes"> <source xml:space="preserve">Unit to show amounts in. Click to select another unit.</source> <target xml:space="preserve">Unit to show amounts in. Click to select another unit.</target> - <context-group purpose="location"><context context-type="linenumber">2033</context></context-group> + <context-group purpose="location"><context context-type="linenumber">2076</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/coincontroldialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="CoinControlDialog"> - <trans-unit id="_msg229" approved="yes"> + <trans-unit id="_msg235" approved="yes"> <source xml:space="preserve">Quantity:</source> <target xml:space="preserve">Quantity:</target> <context-group purpose="location"><context context-type="linenumber">42</context></context-group> </trans-unit> - <trans-unit id="_msg230" approved="yes"> + <trans-unit id="_msg236" approved="yes"> <source xml:space="preserve">Bytes:</source> <target xml:space="preserve">Bytes:</target> <context-group purpose="location"><context context-type="linenumber">65</context></context-group> </trans-unit> - <trans-unit id="_msg231" approved="yes"> + <trans-unit id="_msg237" approved="yes"> <source xml:space="preserve">Amount:</source> <target xml:space="preserve">Amount:</target> <context-group purpose="location"><context context-type="linenumber">104</context></context-group> </trans-unit> - <trans-unit id="_msg232" approved="yes"> + <trans-unit id="_msg238" approved="yes"> <source xml:space="preserve">Fee:</source> <target xml:space="preserve">Fee:</target> <context-group purpose="location"><context context-type="linenumber">172</context></context-group> </trans-unit> - <trans-unit id="_msg233" approved="yes"> + <trans-unit id="_msg239" approved="yes"> <source xml:space="preserve">Coin Selection</source> <target xml:space="preserve">Coin Selection</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg234" approved="yes"> + <trans-unit id="_msg240" approved="yes"> <source xml:space="preserve">Dust:</source> <target xml:space="preserve">Dust:</target> <context-group purpose="location"><context context-type="linenumber">130</context></context-group> </trans-unit> - <trans-unit id="_msg235" approved="yes"> + <trans-unit id="_msg241" approved="yes"> <source xml:space="preserve">After Fee:</source> <target xml:space="preserve">After Fee:</target> <context-group purpose="location"><context context-type="linenumber">211</context></context-group> </trans-unit> - <trans-unit id="_msg236" approved="yes"> + <trans-unit id="_msg242" approved="yes"> <source xml:space="preserve">Change:</source> <target xml:space="preserve">Change:</target> <context-group purpose="location"><context context-type="linenumber">237</context></context-group> </trans-unit> - <trans-unit id="_msg237" approved="yes"> + <trans-unit id="_msg243" approved="yes"> <source xml:space="preserve">(un)select all</source> <target xml:space="preserve">(un)select all</target> <context-group purpose="location"><context context-type="linenumber">293</context></context-group> </trans-unit> - <trans-unit id="_msg238" approved="yes"> + <trans-unit id="_msg244" approved="yes"> <source xml:space="preserve">toggle lock state</source> <target xml:space="preserve">toggle lock state</target> <context-group purpose="location"><context context-type="linenumber">309</context></context-group> </trans-unit> - <trans-unit id="_msg239" approved="yes"> + <trans-unit id="_msg245" approved="yes"> <source xml:space="preserve">Tree mode</source> <target xml:space="preserve">Tree mode</target> <context-group purpose="location"><context context-type="linenumber">341</context></context-group> </trans-unit> - <trans-unit id="_msg240" approved="yes"> + <trans-unit id="_msg246" approved="yes"> <source xml:space="preserve">List mode</source> <target xml:space="preserve">List mode</target> <context-group purpose="location"><context context-type="linenumber">354</context></context-group> </trans-unit> - <trans-unit id="_msg241" approved="yes"> + <trans-unit id="_msg247" approved="yes"> <source xml:space="preserve">(1 locked)</source> <target xml:space="preserve">(1 locked)</target> <context-group purpose="location"><context context-type="linenumber">364</context></context-group> </trans-unit> - <trans-unit id="_msg242" approved="yes"> + <trans-unit id="_msg248" approved="yes"> <source xml:space="preserve">Amount</source> <target xml:space="preserve">Amount</target> <context-group purpose="location"><context context-type="linenumber">410</context></context-group> </trans-unit> - <trans-unit id="_msg243" approved="yes"> + <trans-unit id="_msg249" approved="yes"> <source xml:space="preserve">Received with label</source> <target xml:space="preserve">Received with label</target> <context-group purpose="location"><context context-type="linenumber">415</context></context-group> </trans-unit> - <trans-unit id="_msg244" approved="yes"> + <trans-unit id="_msg250" approved="yes"> <source xml:space="preserve">Received with address</source> <target xml:space="preserve">Received with address</target> <context-group purpose="location"><context context-type="linenumber">420</context></context-group> </trans-unit> - <trans-unit id="_msg245" approved="yes"> + <trans-unit id="_msg251" approved="yes"> <source xml:space="preserve">Mixing Rounds</source> <target xml:space="preserve">Mixing Rounds</target> <context-group purpose="location"><context context-type="linenumber">425</context></context-group> </trans-unit> - <trans-unit id="_msg246" approved="yes"> + <trans-unit id="_msg252" approved="yes"> <source xml:space="preserve">Date</source> <target xml:space="preserve">Date</target> <context-group purpose="location"><context context-type="linenumber">430</context></context-group> </trans-unit> - <trans-unit id="_msg247" approved="yes"> + <trans-unit id="_msg253" approved="yes"> <source xml:space="preserve">Confirmations</source> <target xml:space="preserve">Confirmations</target> <context-group purpose="location"><context context-type="linenumber">435</context></context-group> </trans-unit> - <trans-unit id="_msg248" approved="yes"> + <trans-unit id="_msg254" approved="yes"> <source xml:space="preserve">Confirmed</source> <target xml:space="preserve">Confirmed</target> <context-group purpose="location"><context context-type="linenumber">438</context></context-group> @@ -1335,207 +1373,225 @@ </body></file> <file original="../coincontroldialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="CoinControlDialog"> - <trans-unit id="_msg249" approved="yes"> - <source xml:space="preserve">Copy address</source> - <target xml:space="preserve">Copy address</target> - <context-group purpose="location"><context context-type="linenumber">66</context></context-group> - </trans-unit> - <trans-unit id="_msg250" approved="yes"> - <source xml:space="preserve">Copy label</source> - <target xml:space="preserve">Copy label</target> - <context-group purpose="location"><context context-type="linenumber">67</context></context-group> - </trans-unit> - <trans-unit id="_msg251" approved="yes"> + <trans-unit id="_msg255" approved="yes"> <source xml:space="preserve">Copy amount</source> <target xml:space="preserve">Copy amount</target> + <context-group purpose="location"><context context-type="linenumber">78</context></context-group> + </trans-unit> + <trans-unit id="_msg256"> + <source xml:space="preserve">&Copy address</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">67</context></context-group> + </trans-unit> + <trans-unit id="_msg257"> + <source xml:space="preserve">Copy &label</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">68</context></context-group> - <context-group purpose="location"><context context-type="linenumber">94</context></context-group> </trans-unit> - <trans-unit id="_msg252" approved="yes"> - <source xml:space="preserve">Copy transaction ID</source> - <target xml:space="preserve">Copy transaction ID</target> + <trans-unit id="_msg258"> + <source xml:space="preserve">Copy &amount</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">69</context></context-group> </trans-unit> - <trans-unit id="_msg253" approved="yes"> - <source xml:space="preserve">Lock unspent</source> - <target xml:space="preserve">Lock unspent</target> + <trans-unit id="_msg259"> + <source xml:space="preserve">Copy transaction &ID and output index</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">70</context></context-group> </trans-unit> - <trans-unit id="_msg254" approved="yes"> - <source xml:space="preserve">Unlock unspent</source> - <target xml:space="preserve">Unlock unspent</target> - <context-group purpose="location"><context context-type="linenumber">71</context></context-group> + <trans-unit id="_msg260"> + <source xml:space="preserve">L&ock unspent</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">72</context></context-group> </trans-unit> - <trans-unit id="_msg255" approved="yes"> + <trans-unit id="_msg261"> + <source xml:space="preserve">&Unlock unspent</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">73</context></context-group> + </trans-unit> + <trans-unit id="_msg262" approved="yes"> <source xml:space="preserve">Copy quantity</source> <target xml:space="preserve">Copy quantity</target> - <context-group purpose="location"><context context-type="linenumber">93</context></context-group> + <context-group purpose="location"><context context-type="linenumber">77</context></context-group> </trans-unit> - <trans-unit id="_msg256" approved="yes"> + <trans-unit id="_msg263" approved="yes"> <source xml:space="preserve">Copy fee</source> <target xml:space="preserve">Copy fee</target> - <context-group purpose="location"><context context-type="linenumber">95</context></context-group> + <context-group purpose="location"><context context-type="linenumber">79</context></context-group> </trans-unit> - <trans-unit id="_msg257" approved="yes"> + <trans-unit id="_msg264" approved="yes"> <source xml:space="preserve">Copy after fee</source> <target xml:space="preserve">Copy after fee</target> - <context-group purpose="location"><context context-type="linenumber">96</context></context-group> + <context-group purpose="location"><context context-type="linenumber">80</context></context-group> </trans-unit> - <trans-unit id="_msg258" approved="yes"> + <trans-unit id="_msg265" approved="yes"> <source xml:space="preserve">Copy bytes</source> <target xml:space="preserve">Copy bytes</target> - <context-group purpose="location"><context context-type="linenumber">97</context></context-group> + <context-group purpose="location"><context context-type="linenumber">81</context></context-group> </trans-unit> - <trans-unit id="_msg259" approved="yes"> + <trans-unit id="_msg266" approved="yes"> <source xml:space="preserve">Copy dust</source> <target xml:space="preserve">Copy dust</target> - <context-group purpose="location"><context context-type="linenumber">98</context></context-group> + <context-group purpose="location"><context context-type="linenumber">82</context></context-group> </trans-unit> - <trans-unit id="_msg260" approved="yes"> + <trans-unit id="_msg267" approved="yes"> <source xml:space="preserve">Copy change</source> <target xml:space="preserve">Copy change</target> - <context-group purpose="location"><context context-type="linenumber">99</context></context-group> + <context-group purpose="location"><context context-type="linenumber">83</context></context-group> </trans-unit> - <trans-unit id="_msg261" approved="yes"> + <trans-unit id="_msg268" approved="yes"> <source xml:space="preserve">Please switch to "List mode" to use this function.</source> <target xml:space="preserve">Please switch to "List mode" to use this function.</target> - <context-group purpose="location"><context context-type="linenumber">238</context></context-group> + <context-group purpose="location"><context context-type="linenumber">222</context></context-group> </trans-unit> - <trans-unit id="_msg262" approved="yes"> + <trans-unit id="_msg269" approved="yes"> <source xml:space="preserve">(%1 locked)</source> <target xml:space="preserve">(%1 locked)</target> - <context-group purpose="location"><context context-type="linenumber">445</context></context-group> + <context-group purpose="location"><context context-type="linenumber">433</context></context-group> </trans-unit> - <trans-unit id="_msg263" approved="yes"> + <trans-unit id="_msg270" approved="yes"> <source xml:space="preserve">yes</source> <target xml:space="preserve">yes</target> - <context-group purpose="location"><context context-type="linenumber">602</context></context-group> + <context-group purpose="location"><context context-type="linenumber">590</context></context-group> </trans-unit> - <trans-unit id="_msg264" approved="yes"> + <trans-unit id="_msg271" approved="yes"> <source xml:space="preserve">no</source> <target xml:space="preserve">no</target> - <context-group purpose="location"><context context-type="linenumber">602</context></context-group> + <context-group purpose="location"><context context-type="linenumber">590</context></context-group> </trans-unit> - <trans-unit id="_msg265" approved="yes"> + <trans-unit id="_msg272" approved="yes"> <source xml:space="preserve">This label turns red if any recipient receives an amount smaller than the current dust threshold.</source> <target xml:space="preserve">This label turns red if any recipient receives an amount smaller than the current dust threshold.</target> - <context-group purpose="location"><context context-type="linenumber">616</context></context-group> + <context-group purpose="location"><context context-type="linenumber">604</context></context-group> </trans-unit> - <trans-unit id="_msg266" approved="yes"> + <trans-unit id="_msg273" approved="yes"> <source xml:space="preserve">Can vary +/- %1 duff(s) per input.</source> <target xml:space="preserve">Can vary +/- %1 duff(s) per input.</target> - <context-group purpose="location"><context context-type="linenumber">621</context></context-group> + <context-group purpose="location"><context context-type="linenumber">609</context></context-group> </trans-unit> - <trans-unit id="_msg267" approved="yes"> + <trans-unit id="_msg274" approved="yes"> <source xml:space="preserve">Some coins were unselected because they were spent.</source> <target xml:space="preserve">Some coins were unselected because they were spent.</target> - <context-group purpose="location"><context context-type="linenumber">641</context></context-group> + <context-group purpose="location"><context context-type="linenumber">629</context></context-group> </trans-unit> - <trans-unit id="_msg268" approved="yes"> + <trans-unit id="_msg275" approved="yes"> <source xml:space="preserve">Show all coins</source> <target xml:space="preserve">Show all coins</target> - <context-group purpose="location"><context context-type="linenumber">665</context></context-group> + <context-group purpose="location"><context context-type="linenumber">653</context></context-group> </trans-unit> - <trans-unit id="_msg269" approved="yes"> + <trans-unit id="_msg276" approved="yes"> <source xml:space="preserve">Hide %1 coins</source> <target xml:space="preserve">Hide %1 coins</target> - <context-group purpose="location"><context context-type="linenumber">667</context></context-group> + <context-group purpose="location"><context context-type="linenumber">655</context></context-group> </trans-unit> - <trans-unit id="_msg270" approved="yes"> + <trans-unit id="_msg277" approved="yes"> <source xml:space="preserve">Show all %1 coins</source> <target xml:space="preserve">Show all %1 coins</target> - <context-group purpose="location"><context context-type="linenumber">671</context></context-group> + <context-group purpose="location"><context context-type="linenumber">659</context></context-group> </trans-unit> - <trans-unit id="_msg271" approved="yes"> + <trans-unit id="_msg278" approved="yes"> <source xml:space="preserve">Show spendable coins only</source> <target xml:space="preserve">Show spendable coins only</target> - <context-group purpose="location"><context context-type="linenumber">673</context></context-group> + <context-group purpose="location"><context context-type="linenumber">661</context></context-group> </trans-unit> - <trans-unit id="_msg272" approved="yes"> + <trans-unit id="_msg279" approved="yes"> <source xml:space="preserve">(no label)</source> <target xml:space="preserve">(no label)</target> - <context-group purpose="location"><context context-type="linenumber">693</context></context-group> - <context-group purpose="location"><context context-type="linenumber">768</context></context-group> + <context-group purpose="location"><context context-type="linenumber">681</context></context-group> + <context-group purpose="location"><context context-type="linenumber">756</context></context-group> </trans-unit> - <trans-unit id="_msg273" approved="yes"> + <trans-unit id="_msg280" approved="yes"> <source xml:space="preserve">change from %1 (%2)</source> <target xml:space="preserve">change from %1 (%2)</target> - <context-group purpose="location"><context context-type="linenumber">763</context></context-group> + <context-group purpose="location"><context context-type="linenumber">751</context></context-group> </trans-unit> - <trans-unit id="_msg274" approved="yes"> + <trans-unit id="_msg281" approved="yes"> <source xml:space="preserve">(change)</source> <target xml:space="preserve">(change)</target> - <context-group purpose="location"><context context-type="linenumber">764</context></context-group> + <context-group purpose="location"><context context-type="linenumber">752</context></context-group> </trans-unit> - <trans-unit id="_msg275" approved="yes"> + <trans-unit id="_msg282" approved="yes"> <source xml:space="preserve">n/a</source> <target xml:space="preserve">n/a</target> - <context-group purpose="location"><context context-type="linenumber">788</context></context-group> + <context-group purpose="location"><context context-type="linenumber">776</context></context-group> </trans-unit> </group> </body></file> <file original="../walletcontroller.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="CreateWalletActivity"> - <trans-unit id="_msg276"> + <trans-unit id="_msg283"> + <source xml:space="preserve">Create Wallet</source> + <target xml:space="preserve" state="needs-review-translation">Create Wallet</target> + <context-group purpose="location"><context context-type="linenumber">257</context></context-group> + <note annotates="source" from="developer">Title of window indicating the progress of creation of a new wallet.</note> + </trans-unit> + <trans-unit id="_msg284" approved="yes"> <source xml:space="preserve">Creating Wallet <b>%1</b>…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">254</context></context-group> + <target xml:space="preserve">Creating Wallet <b>%1</b>…</target> + <context-group purpose="location"><context context-type="linenumber">260</context></context-group> + <note annotates="source" from="developer">Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</note> </trans-unit> - <trans-unit id="_msg277" approved="yes"> + <trans-unit id="_msg285" approved="yes"> <source xml:space="preserve">Create wallet failed</source> <target xml:space="preserve">Create wallet failed</target> - <context-group purpose="location"><context context-type="linenumber">282</context></context-group> + <context-group purpose="location"><context context-type="linenumber">288</context></context-group> </trans-unit> - <trans-unit id="_msg278" approved="yes"> + <trans-unit id="_msg286" approved="yes"> <source xml:space="preserve">Create wallet warning</source> <target xml:space="preserve">Create wallet warning</target> - <context-group purpose="location"><context context-type="linenumber">284</context></context-group> + <context-group purpose="location"><context context-type="linenumber">290</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="OpenWalletActivity"> - <trans-unit id="_msg279" approved="yes"> + <trans-unit id="_msg287" approved="yes"> <source xml:space="preserve">Open wallet failed</source> <target xml:space="preserve">Open wallet failed</target> - <context-group purpose="location"><context context-type="linenumber">323</context></context-group> + <context-group purpose="location"><context context-type="linenumber">329</context></context-group> </trans-unit> - <trans-unit id="_msg280" approved="yes"> + <trans-unit id="_msg288" approved="yes"> <source xml:space="preserve">Open wallet warning</source> <target xml:space="preserve">Open wallet warning</target> - <context-group purpose="location"><context context-type="linenumber">325</context></context-group> + <context-group purpose="location"><context context-type="linenumber">331</context></context-group> </trans-unit> - <trans-unit id="_msg281" approved="yes"> + <trans-unit id="_msg289" approved="yes"> <source xml:space="preserve">default wallet</source> <target xml:space="preserve">default wallet</target> - <context-group purpose="location"><context context-type="linenumber">335</context></context-group> + <context-group purpose="location"><context context-type="linenumber">341</context></context-group> + </trans-unit> + <trans-unit id="_msg290"> + <source xml:space="preserve">Open Wallet</source> + <target xml:space="preserve" state="needs-review-translation">Open Wallet</target> + <context-group purpose="location"><context context-type="linenumber">345</context></context-group> + <note annotates="source" from="developer">Title of window indicating the progress of opening of a wallet.</note> </trans-unit> - <trans-unit id="_msg282"> + <trans-unit id="_msg291" approved="yes"> <source xml:space="preserve">Opening Wallet <b>%1</b>…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">337</context></context-group> + <target xml:space="preserve">Opening Wallet <b>%1</b>…</target> + <context-group purpose="location"><context context-type="linenumber">348</context></context-group> + <note annotates="source" from="developer">Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</note> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="WalletController"> - <trans-unit id="_msg283" approved="yes"> + <trans-unit id="_msg292" approved="yes"> <source xml:space="preserve">Close wallet</source> <target xml:space="preserve">Close wallet</target> <context-group purpose="location"><context context-type="linenumber">87</context></context-group> </trans-unit> - <trans-unit id="_msg284" approved="yes"> + <trans-unit id="_msg293" approved="yes"> <source xml:space="preserve">Are you sure you wish to close the wallet <i>%1</i>?</source> <target xml:space="preserve">Are you sure you wish to close the wallet <i>%1</i>?</target> <context-group purpose="location"><context context-type="linenumber">88</context></context-group> </trans-unit> - <trans-unit id="_msg285" approved="yes"> + <trans-unit id="_msg294" approved="yes"> <source xml:space="preserve">Closing the wallet for too long can result in having to resync the entire chain if pruning is enabled.</source> <target xml:space="preserve">Closing the wallet for too long can result in having to resync the entire chain if pruning is enabled.</target> <context-group purpose="location"><context context-type="linenumber">89</context></context-group> </trans-unit> - <trans-unit id="_msg286" approved="yes"> + <trans-unit id="_msg295" approved="yes"> <source xml:space="preserve">Close all wallets</source> <target xml:space="preserve">Close all wallets</target> <context-group purpose="location"><context context-type="linenumber">102</context></context-group> </trans-unit> - <trans-unit id="_msg287" approved="yes"> + <trans-unit id="_msg296" approved="yes"> <source xml:space="preserve">Are you sure you wish to close all wallets?</source> <target xml:space="preserve">Are you sure you wish to close all wallets?</target> <context-group purpose="location"><context context-type="linenumber">103</context></context-group> @@ -1544,105 +1600,105 @@ </body></file> <file original="../forms/createwalletdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="CreateWalletDialog"> - <trans-unit id="_msg288" approved="yes"> + <trans-unit id="_msg297" approved="yes"> <source xml:space="preserve">Create Wallet</source> <target xml:space="preserve">Create Wallet</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg289" approved="yes"> + <trans-unit id="_msg298" approved="yes"> <source xml:space="preserve">Wallet Name</source> <target xml:space="preserve">Wallet Name</target> <context-group purpose="location"><context context-type="linenumber">25</context></context-group> </trans-unit> - <trans-unit id="_msg290" approved="yes"> + <trans-unit id="_msg299" approved="yes"> <source xml:space="preserve">Wallet</source> <target xml:space="preserve">Wallet</target> <context-group purpose="location"><context context-type="linenumber">38</context></context-group> </trans-unit> - <trans-unit id="_msg291" approved="yes"> + <trans-unit id="_msg300" approved="yes"> <source xml:space="preserve">Encrypt the wallet. The wallet will be encrypted with a passphrase of your choice.</source> <target xml:space="preserve">Encrypt the wallet. The wallet will be encrypted with a passphrase of your choice.</target> <context-group purpose="location"><context context-type="linenumber">47</context></context-group> </trans-unit> - <trans-unit id="_msg292" approved="yes"> + <trans-unit id="_msg301" approved="yes"> <source xml:space="preserve">Encrypt Wallet</source> <target xml:space="preserve">Encrypt Wallet</target> <context-group purpose="location"><context context-type="linenumber">50</context></context-group> </trans-unit> - <trans-unit id="_msg293" approved="yes"> + <trans-unit id="_msg302" approved="yes"> <source xml:space="preserve">Advanced Options</source> <target xml:space="preserve">Advanced Options</target> <context-group purpose="location"><context context-type="linenumber">76</context></context-group> </trans-unit> - <trans-unit id="_msg294" approved="yes"> + <trans-unit id="_msg303" approved="yes"> <source xml:space="preserve">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> <target xml:space="preserve">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.</target> <context-group purpose="location"><context context-type="linenumber">85</context></context-group> </trans-unit> - <trans-unit id="_msg295" approved="yes"> + <trans-unit id="_msg304" approved="yes"> <source xml:space="preserve">Disable Private Keys</source> <target xml:space="preserve">Disable Private Keys</target> <context-group purpose="location"><context context-type="linenumber">88</context></context-group> </trans-unit> - <trans-unit id="_msg296" approved="yes"> + <trans-unit id="_msg305" approved="yes"> <source xml:space="preserve">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> <target xml:space="preserve">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.</target> <context-group purpose="location"><context context-type="linenumber">95</context></context-group> </trans-unit> - <trans-unit id="_msg297" approved="yes"> + <trans-unit id="_msg306" approved="yes"> <source xml:space="preserve">Make Blank Wallet</source> <target xml:space="preserve">Make Blank Wallet</target> <context-group purpose="location"><context context-type="linenumber">98</context></context-group> </trans-unit> - <trans-unit id="_msg298"> + <trans-unit id="_msg307" approved="yes"> <source xml:space="preserve">Use descriptors for scriptPubKey management. This feature is well-tested but still considered experimental and not recommended for use yet.</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Use descriptors for scriptPubKey management. This feature is well-tested but still considered experimental and not recommended for use yet.</target> <context-group purpose="location"><context context-type="linenumber">105</context></context-group> </trans-unit> - <trans-unit id="_msg299"> + <trans-unit id="_msg308" approved="yes"> <source xml:space="preserve">Descriptor Wallet (EXPERIMENTAL)</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Descriptor Wallet (EXPERIMENTAL)</target> <context-group purpose="location"><context context-type="linenumber">108</context></context-group> </trans-unit> </group> </body></file> <file original="../createwalletdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="CreateWalletDialog"> - <trans-unit id="_msg300" approved="yes"> + <trans-unit id="_msg309" approved="yes"> <source xml:space="preserve">Create</source> <target xml:space="preserve">Create</target> <context-group purpose="location"><context context-type="linenumber">21</context></context-group> </trans-unit> - <trans-unit id="_msg301"> + <trans-unit id="_msg310" approved="yes"> <source xml:space="preserve">Compiled without sqlite support (required for descriptor wallets)</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Compiled without sqlite support (required for descriptor wallets)</target> <context-group purpose="location"><context context-type="linenumber">62</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/editaddressdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="EditAddressDialog"> - <trans-unit id="_msg302" approved="yes"> + <trans-unit id="_msg311" approved="yes"> <source xml:space="preserve">Edit Address</source> <target xml:space="preserve">Edit Address</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg303" approved="yes"> + <trans-unit id="_msg312" approved="yes"> <source xml:space="preserve">&Label</source> <target xml:space="preserve">&Label</target> <context-group purpose="location"><context context-type="linenumber">25</context></context-group> </trans-unit> - <trans-unit id="_msg304" approved="yes"> + <trans-unit id="_msg313" approved="yes"> <source xml:space="preserve">The label associated with this address list entry</source> <target xml:space="preserve">The label associated with this address list entry</target> <context-group purpose="location"><context context-type="linenumber">35</context></context-group> </trans-unit> - <trans-unit id="_msg305" approved="yes"> + <trans-unit id="_msg314" approved="yes"> <source xml:space="preserve">&Address</source> <target xml:space="preserve">&Address</target> <context-group purpose="location"><context context-type="linenumber">42</context></context-group> </trans-unit> - <trans-unit id="_msg306" approved="yes"> + <trans-unit id="_msg315" approved="yes"> <source xml:space="preserve">The address associated with this address list entry. This can only be modified for sending addresses.</source> <target xml:space="preserve">The address associated with this address list entry. This can only be modified for sending addresses.</target> <context-group purpose="location"><context context-type="linenumber">52</context></context-group> @@ -1651,42 +1707,42 @@ </body></file> <file original="../editaddressdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="EditAddressDialog"> - <trans-unit id="_msg307" approved="yes"> + <trans-unit id="_msg316" approved="yes"> <source xml:space="preserve">New sending address</source> <target xml:space="preserve">New sending address</target> <context-group purpose="location"><context context-type="linenumber">31</context></context-group> </trans-unit> - <trans-unit id="_msg308" approved="yes"> + <trans-unit id="_msg317" approved="yes"> <source xml:space="preserve">Edit receiving address</source> <target xml:space="preserve">Edit receiving address</target> <context-group purpose="location"><context context-type="linenumber">34</context></context-group> </trans-unit> - <trans-unit id="_msg309" approved="yes"> + <trans-unit id="_msg318" approved="yes"> <source xml:space="preserve">Edit sending address</source> <target xml:space="preserve">Edit sending address</target> <context-group purpose="location"><context context-type="linenumber">38</context></context-group> </trans-unit> - <trans-unit id="_msg310" approved="yes"> + <trans-unit id="_msg319" approved="yes"> <source xml:space="preserve">The entered address "%1" is not a valid Dash address.</source> <target xml:space="preserve">The entered address "%1" is not a valid Dash address.</target> <context-group purpose="location"><context context-type="linenumber">114</context></context-group> </trans-unit> - <trans-unit id="_msg311" approved="yes"> + <trans-unit id="_msg320" approved="yes"> <source xml:space="preserve">Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.</source> <target xml:space="preserve">Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.</target> <context-group purpose="location"><context context-type="linenumber">147</context></context-group> </trans-unit> - <trans-unit id="_msg312" approved="yes"> + <trans-unit id="_msg321" approved="yes"> <source xml:space="preserve">The entered address "%1" is already in the address book with label "%2".</source> <target xml:space="preserve">The entered address "%1" is already in the address book with label "%2".</target> <context-group purpose="location"><context context-type="linenumber">152</context></context-group> </trans-unit> - <trans-unit id="_msg313" approved="yes"> + <trans-unit id="_msg322" approved="yes"> <source xml:space="preserve">Could not unlock wallet.</source> <target xml:space="preserve">Could not unlock wallet.</target> <context-group purpose="location"><context context-type="linenumber">124</context></context-group> </trans-unit> - <trans-unit id="_msg314" approved="yes"> + <trans-unit id="_msg323" approved="yes"> <source xml:space="preserve">New key generation failed.</source> <target xml:space="preserve">New key generation failed.</target> <context-group purpose="location"><context context-type="linenumber">129</context></context-group> @@ -1695,54 +1751,54 @@ </body></file> <file original="../intro.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="FreespaceChecker"> - <trans-unit id="_msg315" approved="yes"> + <trans-unit id="_msg324" approved="yes"> <source xml:space="preserve">A new data directory will be created.</source> <target xml:space="preserve">A new data directory will be created.</target> <context-group purpose="location"><context context-type="linenumber">74</context></context-group> </trans-unit> - <trans-unit id="_msg316" approved="yes"> + <trans-unit id="_msg325" approved="yes"> <source xml:space="preserve">name</source> <target xml:space="preserve">name</target> <context-group purpose="location"><context context-type="linenumber">96</context></context-group> </trans-unit> - <trans-unit id="_msg317" approved="yes"> + <trans-unit id="_msg326" approved="yes"> <source xml:space="preserve">Directory already exists. Add %1 if you intend to create a new directory here.</source> <target xml:space="preserve">Directory already exists. Add %1 if you intend to create a new directory here.</target> <context-group purpose="location"><context context-type="linenumber">98</context></context-group> </trans-unit> - <trans-unit id="_msg318" approved="yes"> + <trans-unit id="_msg327" approved="yes"> <source xml:space="preserve">Path already exists, and is not a directory.</source> <target xml:space="preserve">Path already exists, and is not a directory.</target> <context-group purpose="location"><context context-type="linenumber">101</context></context-group> </trans-unit> - <trans-unit id="_msg319" approved="yes"> + <trans-unit id="_msg328" approved="yes"> <source xml:space="preserve">Cannot create data directory here.</source> <target xml:space="preserve">Cannot create data directory here.</target> <context-group purpose="location"><context context-type="linenumber">108</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="Intro"> - <trans-unit id="_msg320"> + <trans-unit id="_msg329" approved="yes"> <source xml:space="preserve">%1 GB of free space available</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">%1 GB of free space available</target> <context-group purpose="location"><context context-type="linenumber">307</context></context-group> </trans-unit> - <trans-unit id="_msg321"> + <trans-unit id="_msg330" approved="yes"> <source xml:space="preserve">(of %1 GB needed)</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">(of %1 GB needed)</target> <context-group purpose="location"><context context-type="linenumber">309</context></context-group> </trans-unit> - <trans-unit id="_msg322"> + <trans-unit id="_msg331" approved="yes"> <source xml:space="preserve">(%1 GB needed for full chain)</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">(%1 GB needed for full chain)</target> <context-group purpose="location"><context context-type="linenumber">312</context></context-group> </trans-unit> - <trans-unit id="_msg323" approved="yes"> + <trans-unit id="_msg332" approved="yes"> <source xml:space="preserve">At least %1 GB of data will be stored in this directory, and it will grow over time.</source> <target xml:space="preserve">At least %1 GB of data will be stored in this directory, and it will grow over time.</target> <context-group purpose="location"><context context-type="linenumber">384</context></context-group> </trans-unit> - <trans-unit id="_msg324" approved="yes"> + <trans-unit id="_msg333" approved="yes"> <source xml:space="preserve">Approximately %1 GB of data will be stored in this directory.</source> <target xml:space="preserve">Approximately %1 GB of data will be stored in this directory.</target> <context-group purpose="location"><context context-type="linenumber">387</context></context-group> @@ -1750,31 +1806,31 @@ <group restype="x-gettext-plurals"> <context-group purpose="location"><context context-type="linenumber">396</context></context-group> <note annotates="source" from="developer">Explanatory text on the capability of the current prune target.</note> - <trans-unit id="_msg325[0]" approved="yes"> + <trans-unit id="_msg334[0]" approved="yes"> <source xml:space="preserve">(sufficient to restore backups %n day(s) old)</source> <target xml:space="preserve">(sufficient to restore backups %n day old)</target> </trans-unit> - <trans-unit id="_msg325[1]" approved="yes"> + <trans-unit id="_msg334[1]" approved="yes"> <source xml:space="preserve">(sufficient to restore backups %n day(s) old)</source> <target xml:space="preserve">(sufficient to restore backups %n days old)</target> </trans-unit> </group> - <trans-unit id="_msg326" approved="yes"> + <trans-unit id="_msg335" approved="yes"> <source xml:space="preserve">%1 will download and store a copy of the Dash block chain.</source> <target xml:space="preserve">%1 will download and store a copy of the Dash block chain.</target> <context-group purpose="location"><context context-type="linenumber">398</context></context-group> </trans-unit> - <trans-unit id="_msg327" approved="yes"> + <trans-unit id="_msg336" approved="yes"> <source xml:space="preserve">The wallet will also be stored in this directory.</source> <target xml:space="preserve">The wallet will also be stored in this directory.</target> <context-group purpose="location"><context context-type="linenumber">400</context></context-group> </trans-unit> - <trans-unit id="_msg328" approved="yes"> + <trans-unit id="_msg337" approved="yes"> <source xml:space="preserve">Error: Specified data directory "%1" cannot be created.</source> <target xml:space="preserve">Error: Specified data directory "%1" cannot be created.</target> <context-group purpose="location"><context context-type="linenumber">255</context></context-group> </trans-unit> - <trans-unit id="_msg329" approved="yes"> + <trans-unit id="_msg338" approved="yes"> <source xml:space="preserve">Error</source> <target xml:space="preserve">Error</target> <context-group purpose="location"><context context-type="linenumber">286</context></context-group> @@ -1783,27 +1839,27 @@ </body></file> <file original="../forms/governancelist.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="GovernanceList"> - <trans-unit id="_msg330" approved="yes"> + <trans-unit id="_msg339" approved="yes"> <source xml:space="preserve">Form</source> <target xml:space="preserve">Form</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg331" approved="yes"> + <trans-unit id="_msg340" approved="yes"> <source xml:space="preserve">Filter List:</source> <target xml:space="preserve">Filter List:</target> <context-group purpose="location"><context context-type="linenumber">57</context></context-group> </trans-unit> - <trans-unit id="_msg332" approved="yes"> + <trans-unit id="_msg341" approved="yes"> <source xml:space="preserve">Filter proposal list</source> <target xml:space="preserve">Filter proposal list</target> <context-group purpose="location"><context context-type="linenumber">64</context></context-group> </trans-unit> - <trans-unit id="_msg333" approved="yes"> + <trans-unit id="_msg342" approved="yes"> <source xml:space="preserve">Proposal Count:</source> <target xml:space="preserve">Proposal Count:</target> <context-group purpose="location"><context context-type="linenumber">87</context></context-group> </trans-unit> - <trans-unit id="_msg334" approved="yes"> + <trans-unit id="_msg343" approved="yes"> <source xml:space="preserve">Filter by Title</source> <target xml:space="preserve">Filter by Title</target> <context-group purpose="location"><context context-type="linenumber">67</context></context-group> @@ -1812,66 +1868,66 @@ </body></file> <file original="../governancelist.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="GovernanceList"> - <trans-unit id="_msg335" approved="yes"> + <trans-unit id="_msg344" approved="yes"> <source xml:space="preserve">Proposal Info: %1</source> <target xml:space="preserve">Proposal Info: %1</target> - <context-group purpose="location"><context context-type="linenumber">409</context></context-group> + <context-group purpose="location"><context context-type="linenumber">410</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="Proposal"> - <trans-unit id="_msg336" approved="yes"> + <trans-unit id="_msg345" approved="yes"> <source xml:space="preserve">Passing +%1</source> <target xml:space="preserve">Passing +%1</target> <context-group purpose="location"><context context-type="linenumber">85</context></context-group> </trans-unit> - <trans-unit id="_msg337" approved="yes"> + <trans-unit id="_msg346" approved="yes"> <source xml:space="preserve">Needs additional %1 votes</source> <target xml:space="preserve">Needs additional %1 votes</target> <context-group purpose="location"><context context-type="linenumber">87</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="ProposalModel"> - <trans-unit id="_msg338" approved="yes"> + <trans-unit id="_msg347" approved="yes"> <source xml:space="preserve">Yes</source> <target xml:space="preserve">Yes</target> <context-group purpose="location"><context context-type="linenumber">141</context></context-group> </trans-unit> - <trans-unit id="_msg339" approved="yes"> + <trans-unit id="_msg348" approved="yes"> <source xml:space="preserve">No</source> <target xml:space="preserve">No</target> <context-group purpose="location"><context context-type="linenumber">141</context></context-group> </trans-unit> - <trans-unit id="_msg340" approved="yes"> + <trans-unit id="_msg349" approved="yes"> <source xml:space="preserve">Hash</source> <target xml:space="preserve">Hash</target> <context-group purpose="location"><context context-type="linenumber">181</context></context-group> </trans-unit> - <trans-unit id="_msg341" approved="yes"> + <trans-unit id="_msg350" approved="yes"> <source xml:space="preserve">Title</source> <target xml:space="preserve">Title</target> <context-group purpose="location"><context context-type="linenumber">183</context></context-group> </trans-unit> - <trans-unit id="_msg342" approved="yes"> + <trans-unit id="_msg351" approved="yes"> <source xml:space="preserve">Start</source> <target xml:space="preserve">Start</target> <context-group purpose="location"><context context-type="linenumber">185</context></context-group> </trans-unit> - <trans-unit id="_msg343" approved="yes"> + <trans-unit id="_msg352" approved="yes"> <source xml:space="preserve">End</source> <target xml:space="preserve">End</target> <context-group purpose="location"><context context-type="linenumber">187</context></context-group> </trans-unit> - <trans-unit id="_msg344" approved="yes"> + <trans-unit id="_msg353" approved="yes"> <source xml:space="preserve">Amount</source> <target xml:space="preserve">Amount</target> <context-group purpose="location"><context context-type="linenumber">189</context></context-group> </trans-unit> - <trans-unit id="_msg345" approved="yes"> + <trans-unit id="_msg354" approved="yes"> <source xml:space="preserve">Active</source> <target xml:space="preserve">Active</target> <context-group purpose="location"><context context-type="linenumber">191</context></context-group> </trans-unit> - <trans-unit id="_msg346" approved="yes"> + <trans-unit id="_msg355" approved="yes"> <source xml:space="preserve">Status</source> <target xml:space="preserve">Status</target> <context-group purpose="location"><context context-type="linenumber">193</context></context-group> @@ -1880,39 +1936,39 @@ </body></file> <file original="../utilitydialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="HelpMessageDialog"> - <trans-unit id="_msg347" approved="yes"> + <trans-unit id="_msg356" approved="yes"> <source xml:space="preserve">version</source> <target xml:space="preserve">version</target> <context-group purpose="location"><context context-type="linenumber">40</context></context-group> </trans-unit> - <trans-unit id="_msg348" approved="yes"> + <trans-unit id="_msg357" approved="yes"> <source xml:space="preserve">About %1</source> <target xml:space="preserve">About %1</target> <context-group purpose="location"><context context-type="linenumber">44</context></context-group> </trans-unit> - <trans-unit id="_msg349" approved="yes"> + <trans-unit id="_msg358" approved="yes"> <source xml:space="preserve">Command-line options</source> <target xml:space="preserve">Command-line options</target> <context-group purpose="location"><context context-type="linenumber">64</context></context-group> </trans-unit> - <trans-unit id="_msg350" approved="yes"> + <trans-unit id="_msg359" approved="yes"> <source xml:space="preserve">%1 information</source> <target xml:space="preserve">%1 information</target> <context-group purpose="location"><context context-type="linenumber">111</context></context-group> </trans-unit> - <trans-unit id="_msg351" approved="yes"> + <trans-unit id="_msg360" approved="yes"> <source xml:space="preserve"><h3>%1 Basics</h3> %1 gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> %1 uses an innovative process to mix your inputs with the inputs of two or more other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The %1 process works like this:</b><ol type="1"> <li>%1 begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two or more other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of %1 makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be mixed. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have %1 disabled. <hr>For more information, see the <a style="%2" href="%3">%1 documentation</a>.</source> <target xml:space="preserve"><h3>%1 Basics</h3> %1 gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> %1 uses an innovative process to mix your inputs with the inputs of two or more other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The %1 process works like this:</b><ol type="1"> <li>%1 begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two or more other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of %1 makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be mixed. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have %1 disabled. <hr>For more information, see the <a style="%2" href="%3">%1 documentation</a>.</target> <context-group purpose="location"><context context-type="linenumber">115</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="ShutdownWindow"> - <trans-unit id="_msg352"> + <trans-unit id="_msg361" approved="yes"> <source xml:space="preserve">%1 is shutting down…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">%1 is shutting down…</target> <context-group purpose="location"><context context-type="linenumber">189</context></context-group> </trans-unit> - <trans-unit id="_msg353" approved="yes"> + <trans-unit id="_msg362" approved="yes"> <source xml:space="preserve">Do not shut down the computer until this window disappears.</source> <target xml:space="preserve">Do not shut down the computer until this window disappears.</target> <context-group purpose="location"><context context-type="linenumber">190</context></context-group> @@ -1921,57 +1977,57 @@ </body></file> <file original="../forms/intro.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="Intro"> - <trans-unit id="_msg354" approved="yes"> + <trans-unit id="_msg363" approved="yes"> <source xml:space="preserve">Welcome</source> <target xml:space="preserve">Welcome</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg355" approved="yes"> + <trans-unit id="_msg364" approved="yes"> <source xml:space="preserve">Welcome to %1.</source> <target xml:space="preserve">Welcome to %1.</target> <context-group purpose="location"><context context-type="linenumber">23</context></context-group> </trans-unit> - <trans-unit id="_msg356" approved="yes"> + <trans-unit id="_msg365" approved="yes"> <source xml:space="preserve">As this is the first time the program is launched, you can choose where %1 will store its data.</source> <target xml:space="preserve">As this is the first time the program is launched, you can choose where %1 will store its data.</target> <context-group purpose="location"><context context-type="linenumber">49</context></context-group> </trans-unit> - <trans-unit id="_msg357" approved="yes"> + <trans-unit id="_msg366" approved="yes"> <source xml:space="preserve">Limit block chain storage to</source> <target xml:space="preserve">Limit block chain storage to</target> <context-group purpose="location"><context context-type="linenumber">238</context></context-group> </trans-unit> - <trans-unit id="_msg358" approved="yes"> + <trans-unit id="_msg367" approved="yes"> <source xml:space="preserve">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> <target xml:space="preserve">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.</target> <context-group purpose="location"><context context-type="linenumber">241</context></context-group> </trans-unit> - <trans-unit id="_msg359" approved="yes"> + <trans-unit id="_msg368" approved="yes"> <source xml:space="preserve"> GB</source> <target xml:space="preserve"> GB</target> <context-group purpose="location"><context context-type="linenumber">248</context></context-group> </trans-unit> - <trans-unit id="_msg360" approved="yes"> + <trans-unit id="_msg369" approved="yes"> <source xml:space="preserve">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> <target xml:space="preserve">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.</target> <context-group purpose="location"><context context-type="linenumber">216</context></context-group> </trans-unit> - <trans-unit id="_msg361"> + <trans-unit id="_msg370" approved="yes"> <source xml:space="preserve">When you click OK, %1 will begin to download and process the full %4 block chain (%2 GB) starting with the earliest transactions in %3 when %4 initially launched.</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">When you click OK, %1 will begin to download and process the full %4 block chain (%2 GB) starting with the earliest transactions in %3 when %4 initially launched.</target> <context-group purpose="location"><context context-type="linenumber">206</context></context-group> </trans-unit> - <trans-unit id="_msg362" approved="yes"> + <trans-unit id="_msg371" approved="yes"> <source xml:space="preserve">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> <target xml:space="preserve">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.</target> <context-group purpose="location"><context context-type="linenumber">226</context></context-group> </trans-unit> - <trans-unit id="_msg363" approved="yes"> + <trans-unit id="_msg372" approved="yes"> <source xml:space="preserve">Use the default data directory</source> <target xml:space="preserve">Use the default data directory</target> <context-group purpose="location"><context context-type="linenumber">66</context></context-group> </trans-unit> - <trans-unit id="_msg364" approved="yes"> + <trans-unit id="_msg373" approved="yes"> <source xml:space="preserve">Use a custom data directory:</source> <target xml:space="preserve">Use a custom data directory:</target> <context-group purpose="location"><context context-type="linenumber">73</context></context-group> @@ -1980,97 +2036,97 @@ </body></file> <file original="../forms/masternodelist.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="MasternodeList"> - <trans-unit id="_msg365" approved="yes"> + <trans-unit id="_msg374" approved="yes"> <source xml:space="preserve">Form</source> <target xml:space="preserve">Form</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg366" approved="yes"> + <trans-unit id="_msg375" approved="yes"> <source xml:space="preserve">Status</source> <target xml:space="preserve">Status</target> <context-group purpose="location"><context context-type="linenumber">142</context></context-group> </trans-unit> - <trans-unit id="_msg367" approved="yes"> + <trans-unit id="_msg376" approved="yes"> <source xml:space="preserve">Filter List:</source> <target xml:space="preserve">Filter List:</target> <context-group purpose="location"><context context-type="linenumber">57</context></context-group> </trans-unit> - <trans-unit id="_msg368" approved="yes"> + <trans-unit id="_msg377" approved="yes"> <source xml:space="preserve">Filter masternode list</source> <target xml:space="preserve">Filter masternode list</target> <context-group purpose="location"><context context-type="linenumber">64</context></context-group> </trans-unit> - <trans-unit id="_msg369" approved="yes"> + <trans-unit id="_msg378" approved="yes"> <source xml:space="preserve">Node Count:</source> <target xml:space="preserve">Node Count:</target> <context-group purpose="location"><context context-type="linenumber">97</context></context-group> </trans-unit> - <trans-unit id="_msg370" approved="yes"> + <trans-unit id="_msg379" approved="yes"> <source xml:space="preserve">Show only masternodes this wallet has keys for.</source> <target xml:space="preserve">Show only masternodes this wallet has keys for.</target> <context-group purpose="location"><context context-type="linenumber">74</context></context-group> </trans-unit> - <trans-unit id="_msg371" approved="yes"> + <trans-unit id="_msg380" approved="yes"> <source xml:space="preserve">My masternodes only</source> <target xml:space="preserve">My masternodes only</target> <context-group purpose="location"><context context-type="linenumber">77</context></context-group> </trans-unit> - <trans-unit id="_msg372" approved="yes"> + <trans-unit id="_msg381" approved="yes"> <source xml:space="preserve">Service</source> <target xml:space="preserve">Service</target> <context-group purpose="location"><context context-type="linenumber">132</context></context-group> </trans-unit> - <trans-unit id="_msg373" approved="yes"> + <trans-unit id="_msg382" approved="yes"> <source xml:space="preserve">Type</source> <target xml:space="preserve">Type</target> <context-group purpose="location"><context context-type="linenumber">137</context></context-group> </trans-unit> - <trans-unit id="_msg374" approved="yes"> + <trans-unit id="_msg383" approved="yes"> <source xml:space="preserve">PoSe Score</source> <target xml:space="preserve">PoSe Score</target> <context-group purpose="location"><context context-type="linenumber">147</context></context-group> </trans-unit> - <trans-unit id="_msg375" approved="yes"> + <trans-unit id="_msg384" approved="yes"> <source xml:space="preserve">Registered</source> <target xml:space="preserve">Registered</target> <context-group purpose="location"><context context-type="linenumber">152</context></context-group> </trans-unit> - <trans-unit id="_msg376" approved="yes"> + <trans-unit id="_msg385" approved="yes"> <source xml:space="preserve">Last Paid</source> <target xml:space="preserve">Last Paid</target> <context-group purpose="location"><context context-type="linenumber">157</context></context-group> </trans-unit> - <trans-unit id="_msg377" approved="yes"> + <trans-unit id="_msg386" approved="yes"> <source xml:space="preserve">Next Payment</source> <target xml:space="preserve">Next Payment</target> <context-group purpose="location"><context context-type="linenumber">162</context></context-group> </trans-unit> - <trans-unit id="_msg378" approved="yes"> + <trans-unit id="_msg387" approved="yes"> <source xml:space="preserve">Payout Address</source> <target xml:space="preserve">Payout Address</target> <context-group purpose="location"><context context-type="linenumber">167</context></context-group> </trans-unit> - <trans-unit id="_msg379" approved="yes"> + <trans-unit id="_msg388" approved="yes"> <source xml:space="preserve">Operator Reward</source> <target xml:space="preserve">Operator Reward</target> <context-group purpose="location"><context context-type="linenumber">172</context></context-group> </trans-unit> - <trans-unit id="_msg380" approved="yes"> + <trans-unit id="_msg389" approved="yes"> <source xml:space="preserve">Collateral Address</source> <target xml:space="preserve">Collateral Address</target> <context-group purpose="location"><context context-type="linenumber">177</context></context-group> </trans-unit> - <trans-unit id="_msg381" approved="yes"> + <trans-unit id="_msg390" approved="yes"> <source xml:space="preserve">Owner Address</source> <target xml:space="preserve">Owner Address</target> <context-group purpose="location"><context context-type="linenumber">182</context></context-group> </trans-unit> - <trans-unit id="_msg382" approved="yes"> + <trans-unit id="_msg391" approved="yes"> <source xml:space="preserve">Voting Address</source> <target xml:space="preserve">Voting Address</target> <context-group purpose="location"><context context-type="linenumber">187</context></context-group> </trans-unit> - <trans-unit id="_msg383" approved="yes"> + <trans-unit id="_msg392" approved="yes"> <source xml:space="preserve">Filter by any property (e.g. address or protx hash)</source> <target xml:space="preserve">Filter by any property (e.g. address or protx hash)</target> <context-group purpose="location"><context context-type="linenumber">67</context></context-group> @@ -2079,126 +2135,126 @@ </body></file> <file original="../masternodelist.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="MasternodeList"> - <trans-unit id="_msg384" approved="yes"> + <trans-unit id="_msg393" approved="yes"> <source xml:space="preserve">Copy ProTx Hash</source> <target xml:space="preserve">Copy ProTx Hash</target> - <context-group purpose="location"><context context-type="linenumber">84</context></context-group> + <context-group purpose="location"><context context-type="linenumber">85</context></context-group> </trans-unit> - <trans-unit id="_msg385" approved="yes"> + <trans-unit id="_msg394" approved="yes"> <source xml:space="preserve">Copy Collateral Outpoint</source> <target xml:space="preserve">Copy Collateral Outpoint</target> - <context-group purpose="location"><context context-type="linenumber">85</context></context-group> + <context-group purpose="location"><context context-type="linenumber">86</context></context-group> </trans-unit> - <trans-unit id="_msg386"> + <trans-unit id="_msg395" approved="yes"> <source xml:space="preserve">Please wait…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">146</context></context-group> - <context-group purpose="location"><context context-type="linenumber">326</context></context-group> + <target xml:space="preserve">Please wait…</target> + <context-group purpose="location"><context context-type="linenumber">143</context></context-group> + <context-group purpose="location"><context context-type="linenumber">324</context></context-group> </trans-unit> - <trans-unit id="_msg387"> + <trans-unit id="_msg396" approved="yes"> <source xml:space="preserve">Updating…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">195</context></context-group> + <target xml:space="preserve">Updating…</target> + <context-group purpose="location"><context context-type="linenumber">192</context></context-group> </trans-unit> - <trans-unit id="_msg388" approved="yes"> + <trans-unit id="_msg397" approved="yes"> <source xml:space="preserve">ENABLED</source> <target xml:space="preserve">ENABLED</target> - <context-group purpose="location"><context context-type="linenumber">232</context></context-group> + <context-group purpose="location"><context context-type="linenumber">230</context></context-group> </trans-unit> - <trans-unit id="_msg389" approved="yes"> + <trans-unit id="_msg398" approved="yes"> <source xml:space="preserve">POSE_BANNED</source> <target xml:space="preserve">POSE_BANNED</target> - <context-group purpose="location"><context context-type="linenumber">232</context></context-group> + <context-group purpose="location"><context context-type="linenumber">230</context></context-group> </trans-unit> - <trans-unit id="_msg390" approved="yes"> + <trans-unit id="_msg399" approved="yes"> <source xml:space="preserve">UNKNOWN</source> <target xml:space="preserve">UNKNOWN</target> - <context-group purpose="location"><context context-type="linenumber">246</context></context-group> - <context-group purpose="location"><context context-type="linenumber">269</context></context-group> + <context-group purpose="location"><context context-type="linenumber">244</context></context-group> + <context-group purpose="location"><context context-type="linenumber">267</context></context-group> </trans-unit> - <trans-unit id="_msg391" approved="yes"> + <trans-unit id="_msg400" approved="yes"> <source xml:space="preserve">to %1</source> <target xml:space="preserve">to %1</target> - <context-group purpose="location"><context context-type="linenumber">259</context></context-group> + <context-group purpose="location"><context context-type="linenumber">257</context></context-group> </trans-unit> - <trans-unit id="_msg392" approved="yes"> + <trans-unit id="_msg401" approved="yes"> <source xml:space="preserve">to UNKNOWN</source> <target xml:space="preserve">to UNKNOWN</target> - <context-group purpose="location"><context context-type="linenumber">261</context></context-group> + <context-group purpose="location"><context context-type="linenumber">259</context></context-group> </trans-unit> - <trans-unit id="_msg393" approved="yes"> + <trans-unit id="_msg402" approved="yes"> <source xml:space="preserve">but not claimed</source> <target xml:space="preserve">but not claimed</target> - <context-group purpose="location"><context context-type="linenumber">264</context></context-group> + <context-group purpose="location"><context context-type="linenumber">262</context></context-group> </trans-unit> - <trans-unit id="_msg394" approved="yes"> + <trans-unit id="_msg403" approved="yes"> <source xml:space="preserve">NONE</source> <target xml:space="preserve">NONE</target> - <context-group purpose="location"><context context-type="linenumber">252</context></context-group> + <context-group purpose="location"><context context-type="linenumber">250</context></context-group> </trans-unit> - <trans-unit id="_msg395" approved="yes"> + <trans-unit id="_msg404" approved="yes"> <source xml:space="preserve">Additional information for DIP3 Masternode %1</source> <target xml:space="preserve">Additional information for DIP3 Masternode %1</target> - <context-group purpose="location"><context context-type="linenumber">372</context></context-group> + <context-group purpose="location"><context context-type="linenumber">370</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/modaloverlay.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="ModalOverlay"> - <trans-unit id="_msg396" approved="yes"> + <trans-unit id="_msg405" approved="yes"> <source xml:space="preserve">Form</source> <target xml:space="preserve">Form</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg397" approved="yes"> + <trans-unit id="_msg406" approved="yes"> <source xml:space="preserve">Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the Dash network, as detailed below.</source> <target xml:space="preserve">Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the Dash network, as detailed below.</target> <context-group purpose="location"><context context-type="linenumber">114</context></context-group> </trans-unit> - <trans-unit id="_msg398" approved="yes"> + <trans-unit id="_msg407" approved="yes"> <source xml:space="preserve">Attempting to spend Dash that are affected by not-yet-displayed transactions will not be accepted by the network.</source> <target xml:space="preserve">Attempting to spend Dash that are affected by not-yet-displayed transactions will not be accepted by the network.</target> <context-group purpose="location"><context context-type="linenumber">127</context></context-group> </trans-unit> - <trans-unit id="_msg399" approved="yes"> + <trans-unit id="_msg408" approved="yes"> <source xml:space="preserve">Number of blocks left</source> <target xml:space="preserve">Number of blocks left</target> <context-group purpose="location"><context context-type="linenumber">187</context></context-group> </trans-unit> - <trans-unit id="_msg400"> + <trans-unit id="_msg409" approved="yes"> <source xml:space="preserve">Unknown…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Unknown…</target> <context-group purpose="location"><context context-type="linenumber">194</context></context-group> <context-group purpose="location"><context context-type="linenumber">214</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../modaloverlay.cpp</context><context context-type="linenumber">166</context></context-group> + <context-group purpose="location"><context context-type="sourcefile">../modaloverlay.cpp</context><context context-type="linenumber">172</context></context-group> </trans-unit> - <trans-unit id="_msg401"> + <trans-unit id="_msg410" approved="yes"> <source xml:space="preserve">calculating…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">calculating…</target> <context-group purpose="location"><context context-type="linenumber">246</context></context-group> <context-group purpose="location"><context context-type="linenumber">260</context></context-group> </trans-unit> - <trans-unit id="_msg402" approved="yes"> + <trans-unit id="_msg411" approved="yes"> <source xml:space="preserve">Last block time</source> <target xml:space="preserve">Last block time</target> <context-group purpose="location"><context context-type="linenumber">201</context></context-group> </trans-unit> - <trans-unit id="_msg403" approved="yes"> + <trans-unit id="_msg412" approved="yes"> <source xml:space="preserve">Progress</source> <target xml:space="preserve">Progress</target> <context-group purpose="location"><context context-type="linenumber">221</context></context-group> </trans-unit> - <trans-unit id="_msg404" approved="yes"> + <trans-unit id="_msg413" approved="yes"> <source xml:space="preserve">Progress increase per hour</source> <target xml:space="preserve">Progress increase per hour</target> <context-group purpose="location"><context context-type="linenumber">239</context></context-group> </trans-unit> - <trans-unit id="_msg405" approved="yes"> + <trans-unit id="_msg414" approved="yes"> <source xml:space="preserve">Estimated time left until synced</source> <target xml:space="preserve">Estimated time left until synced</target> <context-group purpose="location"><context context-type="linenumber">253</context></context-group> </trans-unit> - <trans-unit id="_msg406" approved="yes"> + <trans-unit id="_msg415" approved="yes"> <source xml:space="preserve">Hide</source> <target xml:space="preserve">Hide</target> <context-group purpose="location"><context context-type="linenumber">290</context></context-group> @@ -2207,33 +2263,33 @@ </body></file> <file original="../modaloverlay.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="ModalOverlay"> - <trans-unit id="_msg407" approved="yes"> + <trans-unit id="_msg416" approved="yes"> <source xml:space="preserve">%1 is currently syncing. It will download headers and blocks from peers and validate them until reaching the tip of the block chain.</source> <target xml:space="preserve">%1 is currently syncing. It will download headers and blocks from peers and validate them until reaching the tip of the block chain.</target> - <context-group purpose="location"><context context-type="linenumber">48</context></context-group> + <context-group purpose="location"><context context-type="linenumber">49</context></context-group> </trans-unit> - <trans-unit id="_msg408"> + <trans-unit id="_msg417" approved="yes"> <source xml:space="preserve">Unknown. Syncing Headers (%1, %2%)…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">172</context></context-group> + <target xml:space="preserve">Unknown. Syncing Headers (%1, %2%)…</target> + <context-group purpose="location"><context context-type="linenumber">178</context></context-group> </trans-unit> </group> <group restype="x-trolltech-linguist-context" resname="QObject"> - <trans-unit id="_msg409" approved="yes"> + <trans-unit id="_msg418" approved="yes"> <source xml:space="preserve">unknown</source> <target xml:space="preserve">unknown</target> - <context-group purpose="location"><context context-type="linenumber">137</context></context-group> + <context-group purpose="location"><context context-type="linenumber">143</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/openuridialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="OpenURIDialog"> - <trans-unit id="_msg410" approved="yes"> + <trans-unit id="_msg419" approved="yes"> <source xml:space="preserve">Open URI</source> <target xml:space="preserve">Open URI</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg411" approved="yes"> + <trans-unit id="_msg420" approved="yes"> <source xml:space="preserve">URI:</source> <target xml:space="preserve">URI:</target> <context-group purpose="location"><context context-type="linenumber">22</context></context-group> @@ -2242,834 +2298,859 @@ </body></file> <file original="../forms/optionsdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="OptionsDialog"> - <trans-unit id="_msg412" approved="yes"> + <trans-unit id="_msg421" approved="yes"> <source xml:space="preserve">Options</source> <target xml:space="preserve">Options</target> <context-group purpose="location"><context context-type="linenumber">20</context></context-group> </trans-unit> - <trans-unit id="_msg413" approved="yes"> + <trans-unit id="_msg422" approved="yes"> <source xml:space="preserve">&Main</source> <target xml:space="preserve">&Main</target> <context-group purpose="location"><context context-type="linenumber">37</context></context-group> </trans-unit> - <trans-unit id="_msg414" approved="yes"> + <trans-unit id="_msg423" approved="yes"> <source xml:space="preserve">Size of &database cache</source> <target xml:space="preserve">Size of &database cache</target> <context-group purpose="location"><context context-type="linenumber">223</context></context-group> </trans-unit> - <trans-unit id="_msg415" approved="yes"> + <trans-unit id="_msg424" approved="yes"> <source xml:space="preserve">Number of script &verification threads</source> <target xml:space="preserve">Number of script &verification threads</target> <context-group purpose="location"><context context-type="linenumber">269</context></context-group> </trans-unit> - <trans-unit id="_msg416" approved="yes"> + <trans-unit id="_msg425" approved="yes"> <source xml:space="preserve">(0 = auto, <0 = leave that many cores free)</source> <target xml:space="preserve">(0 = auto, <0 = leave that many cores free)</target> <context-group purpose="location"><context context-type="linenumber">282</context></context-group> </trans-unit> - <trans-unit id="_msg417" approved="yes"> + <trans-unit id="_msg426" approved="yes"> <source xml:space="preserve">W&allet</source> <target xml:space="preserve">W&allet</target> <context-group purpose="location"><context context-type="linenumber">47</context></context-group> </trans-unit> - <trans-unit id="_msg418" approved="yes"> + <trans-unit id="_msg427" approved="yes"> <source xml:space="preserve">&Appearance</source> <target xml:space="preserve">&Appearance</target> <context-group purpose="location"><context context-type="linenumber">87</context></context-group> </trans-unit> - <trans-unit id="_msg419"> + <trans-unit id="_msg428" approved="yes"> <source xml:space="preserve">Show the icon in the system tray.</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Show the icon in the system tray.</target> <context-group purpose="location"><context context-type="linenumber">135</context></context-group> </trans-unit> - <trans-unit id="_msg420"> + <trans-unit id="_msg429" approved="yes"> <source xml:space="preserve">&Show tray icon</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">&Show tray icon</target> <context-group purpose="location"><context context-type="linenumber">138</context></context-group> </trans-unit> - <trans-unit id="_msg421" approved="yes"> + <trans-unit id="_msg430" approved="yes"> <source xml:space="preserve">Prune &block storage to</source> <target xml:space="preserve">Prune &block storage to</target> <context-group purpose="location"><context context-type="linenumber">173</context></context-group> </trans-unit> - <trans-unit id="_msg422" approved="yes"> + <trans-unit id="_msg431" approved="yes"> <source xml:space="preserve">GB</source> <target xml:space="preserve">GB</target> <context-group purpose="location"><context context-type="linenumber">183</context></context-group> </trans-unit> - <trans-unit id="_msg423" approved="yes"> + <trans-unit id="_msg432" approved="yes"> <source xml:space="preserve">Reverting this setting requires re-downloading the entire blockchain.</source> <target xml:space="preserve">Reverting this setting requires re-downloading the entire blockchain.</target> <context-group purpose="location"><context context-type="linenumber">208</context></context-group> </trans-unit> - <trans-unit id="_msg424" approved="yes"> + <trans-unit id="_msg433" approved="yes"> <source xml:space="preserve">Maximum database cache size. A larger cache can contribute to faster sync, after which the benefit is less pronounced for most use cases. Lowering the cache size will reduce memory usage. Unused mempool memory is shared for this cache.</source> <target xml:space="preserve">Maximum database cache size. A larger cache can contribute to faster sync, after which the benefit is less pronounced for most use cases. Lowering the cache size will reduce memory usage. Unused mempool memory is shared for this cache.</target> <context-group purpose="location"><context context-type="linenumber">220</context></context-group> <note annotates="source" from="developer">Tooltip text for Options window setting that sets the size of the database cache. Explains the corresponding effects of increasing/decreasing this value.</note> </trans-unit> - <trans-unit id="_msg425" approved="yes"> + <trans-unit id="_msg434" approved="yes"> <source xml:space="preserve">MiB</source> <target xml:space="preserve">MiB</target> <context-group purpose="location"><context context-type="linenumber">239</context></context-group> </trans-unit> - <trans-unit id="_msg426" approved="yes"> + <trans-unit id="_msg435" approved="yes"> <source xml:space="preserve">Set the number of script verification threads. Negative values correspond to the number of cores you want to leave free to the system.</source> <target xml:space="preserve">Set the number of script verification threads. Negative values correspond to the number of cores you want to leave free to the system.</target> <context-group purpose="location"><context context-type="linenumber">266</context></context-group> <note annotates="source" from="developer">Tooltip text for Options window setting that sets the number of script verification threads. Explains that negative values mean to leave these many cores free to the system.</note> </trans-unit> - <trans-unit id="_msg427" approved="yes"> + <trans-unit id="_msg436"> + <source xml:space="preserve">This allows you or a third party tool to communicate with the node through command-line and JSON-RPC commands.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">304</context></context-group> + <note annotates="source" from="developer">Tooltip text for Options window setting that enables the RPC server.</note> + </trans-unit> + <trans-unit id="_msg437"> + <source xml:space="preserve">Enable R&PC server</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">307</context></context-group> + <note annotates="source" from="developer">An Options window setting to enable the RPC server.</note> + </trans-unit> + <trans-unit id="_msg438"> + <source xml:space="preserve">Whether to set subtract fee from amount as default or not.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">331</context></context-group> + <note annotates="source" from="developer">Tooltip text for Options window setting that sets subtracting the fee from a sending amount as default.</note> + </trans-unit> + <trans-unit id="_msg439"> + <source xml:space="preserve">Subtract &fee from amount by default</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">334</context></context-group> + <note annotates="source" from="developer">An Options window setting to set subtracting the fee from a sending amount as default.</note> + </trans-unit> + <trans-unit id="_msg440" approved="yes"> <source xml:space="preserve">Whether to keep the specified custom change address or not.</source> <target xml:space="preserve">Whether to keep the specified custom change address or not.</target> - <context-group purpose="location"><context context-type="linenumber">333</context></context-group> + <context-group purpose="location"><context context-type="linenumber">353</context></context-group> </trans-unit> - <trans-unit id="_msg428" approved="yes"> + <trans-unit id="_msg441" approved="yes"> <source xml:space="preserve">Keep custom change &address</source> <target xml:space="preserve">Keep custom change &address</target> - <context-group purpose="location"><context context-type="linenumber">336</context></context-group> + <context-group purpose="location"><context context-type="linenumber">356</context></context-group> </trans-unit> - <trans-unit id="_msg429" approved="yes"> + <trans-unit id="_msg442" approved="yes"> <source xml:space="preserve">Show additional tab listing all your masternodes in first sub-tab<br/>and all masternodes on the network in second sub-tab.</source> <target xml:space="preserve">Show additional tab listing all your masternodes in first sub-tab<br/>and all masternodes on the network in second sub-tab.</target> - <context-group purpose="location"><context context-type="linenumber">343</context></context-group> + <context-group purpose="location"><context context-type="linenumber">363</context></context-group> </trans-unit> - <trans-unit id="_msg430" approved="yes"> + <trans-unit id="_msg443" approved="yes"> <source xml:space="preserve">Show Masternodes Tab</source> <target xml:space="preserve">Show Masternodes Tab</target> - <context-group purpose="location"><context context-type="linenumber">346</context></context-group> + <context-group purpose="location"><context context-type="linenumber">366</context></context-group> </trans-unit> - <trans-unit id="_msg431" approved="yes"> + <trans-unit id="_msg444" approved="yes"> <source xml:space="preserve">Show additional tab listing governance proposals.</source> <target xml:space="preserve">Show additional tab listing governance proposals.</target> - <context-group purpose="location"><context context-type="linenumber">353</context></context-group> + <context-group purpose="location"><context context-type="linenumber">373</context></context-group> </trans-unit> - <trans-unit id="_msg432" approved="yes"> + <trans-unit id="_msg445" approved="yes"> <source xml:space="preserve">Show Governance Tab</source> <target xml:space="preserve">Show Governance Tab</target> - <context-group purpose="location"><context context-type="linenumber">356</context></context-group> + <context-group purpose="location"><context context-type="linenumber">376</context></context-group> </trans-unit> - <trans-unit id="_msg433" approved="yes"> + <trans-unit id="_msg446" approved="yes"> <source xml:space="preserve">If you disable the spending of unconfirmed change, the change from a transaction<br/>cannot be used until that transaction has at least one confirmation.<br/>This also affects how your balance is computed.</source> <target xml:space="preserve">If you disable the spending of unconfirmed change, the change from a transaction<br/>cannot be used until that transaction has at least one confirmation.<br/>This also affects how your balance is computed.</target> - <context-group purpose="location"><context context-type="linenumber">363</context></context-group> + <context-group purpose="location"><context context-type="linenumber">383</context></context-group> </trans-unit> - <trans-unit id="_msg434" approved="yes"> + <trans-unit id="_msg447" approved="yes"> <source xml:space="preserve">Show mixing interface on Overview screen and reveal an additional screen which allows to spend fully mixed coins only.<br/>A new tab with more settings will also appear in this dialog, please make sure to check them before mixing your coins.</source> <target xml:space="preserve">Show mixing interface on Overview screen and reveal an additional screen which allows to spend fully mixed coins only.<br/>A new tab with more settings will also appear in this dialog, please make sure to check them before mixing your coins.</target> - <context-group purpose="location"><context context-type="linenumber">373</context></context-group> + <context-group purpose="location"><context context-type="linenumber">393</context></context-group> </trans-unit> - <trans-unit id="_msg435" approved="yes"> + <trans-unit id="_msg448" approved="yes"> <source xml:space="preserve">Show additional information and buttons on overview screen.</source> <target xml:space="preserve">Show additional information and buttons on overview screen.</target> - <context-group purpose="location"><context context-type="linenumber">402</context></context-group> + <context-group purpose="location"><context context-type="linenumber">422</context></context-group> </trans-unit> - <trans-unit id="_msg436" approved="yes"> + <trans-unit id="_msg449" approved="yes"> <source xml:space="preserve">Enable advanced interface</source> <target xml:space="preserve">Enable advanced interface</target> - <context-group purpose="location"><context context-type="linenumber">405</context></context-group> + <context-group purpose="location"><context context-type="linenumber">425</context></context-group> </trans-unit> - <trans-unit id="_msg437" approved="yes"> + <trans-unit id="_msg450" approved="yes"> <source xml:space="preserve">Show system popups for mixing transactions<br/>just like for all other transaction types.</source> <target xml:space="preserve">Show system popups for mixing transactions<br/>just like for all other transaction types.</target> - <context-group purpose="location"><context context-type="linenumber">412</context></context-group> + <context-group purpose="location"><context context-type="linenumber">432</context></context-group> </trans-unit> - <trans-unit id="_msg438" approved="yes"> + <trans-unit id="_msg451" approved="yes"> <source xml:space="preserve">Show popups for mixing transactions</source> <target xml:space="preserve">Show popups for mixing transactions</target> - <context-group purpose="location"><context context-type="linenumber">415</context></context-group> + <context-group purpose="location"><context context-type="linenumber">435</context></context-group> </trans-unit> - <trans-unit id="_msg439" approved="yes"> + <trans-unit id="_msg452" approved="yes"> <source xml:space="preserve">Show warning dialog when the wallet has very low number of keys left.</source> <target xml:space="preserve">Show warning dialog when the wallet has very low number of keys left.</target> - <context-group purpose="location"><context context-type="linenumber">422</context></context-group> + <context-group purpose="location"><context context-type="linenumber">442</context></context-group> </trans-unit> - <trans-unit id="_msg440" approved="yes"> + <trans-unit id="_msg453" approved="yes"> <source xml:space="preserve">Warn if the wallet is running out of keys</source> <target xml:space="preserve">Warn if the wallet is running out of keys</target> - <context-group purpose="location"><context context-type="linenumber">425</context></context-group> + <context-group purpose="location"><context context-type="linenumber">445</context></context-group> </trans-unit> - <trans-unit id="_msg441" approved="yes"> + <trans-unit id="_msg454" approved="yes"> <source xml:space="preserve">Whether to use experimental mode with multiple mixing sessions per block.<br/>Note: You must use this feature carefully.<br/>Make sure you always have recent wallet (auto)backup in a safe place!</source> <target xml:space="preserve">Whether to use experimental mode with multiple mixing sessions per block.<br/>Note: You must use this feature carefully.<br/>Make sure you always have recent wallet (auto)backup in a safe place!</target> - <context-group purpose="location"><context context-type="linenumber">432</context></context-group> + <context-group purpose="location"><context context-type="linenumber">452</context></context-group> </trans-unit> - <trans-unit id="_msg442" approved="yes"> + <trans-unit id="_msg455" approved="yes"> <source xml:space="preserve">Enable &multi-session</source> <target xml:space="preserve">Enable &multi-session</target> - <context-group purpose="location"><context context-type="linenumber">435</context></context-group> + <context-group purpose="location"><context context-type="linenumber">455</context></context-group> </trans-unit> - <trans-unit id="_msg443" approved="yes"> + <trans-unit id="_msg456" approved="yes"> <source xml:space="preserve">Use this many separate masternodes in parallel to mix funds.<br/>Note: You must use this feature carefully.<br/>Make sure you always have recent wallet (auto)backup in a safe place!</source> <target xml:space="preserve">Use this many separate masternodes in parallel to mix funds.<br/>Note: You must use this feature carefully.<br/>Make sure you always have recent wallet (auto)backup in a safe place!</target> - <context-group purpose="location"><context context-type="linenumber">444</context></context-group> + <context-group purpose="location"><context context-type="linenumber">464</context></context-group> </trans-unit> - <trans-unit id="_msg444" approved="yes"> + <trans-unit id="_msg457" approved="yes"> <source xml:space="preserve">Parallel sessions</source> <target xml:space="preserve">Parallel sessions</target> - <context-group purpose="location"><context context-type="linenumber">447</context></context-group> + <context-group purpose="location"><context context-type="linenumber">467</context></context-group> </trans-unit> - <trans-unit id="_msg445" approved="yes"> + <trans-unit id="_msg458" approved="yes"> <source xml:space="preserve">Mixing rounds</source> <target xml:space="preserve">Mixing rounds</target> - <context-group purpose="location"><context context-type="linenumber">470</context></context-group> + <context-group purpose="location"><context context-type="linenumber">490</context></context-group> </trans-unit> - <trans-unit id="_msg446" approved="yes"> + <trans-unit id="_msg459" approved="yes"> <source xml:space="preserve">This amount acts as a threshold to turn off mixing once it's reached.</source> <target xml:space="preserve">This amount acts as a threshold to turn off mixing once it's reached.</target> - <context-group purpose="location"><context context-type="linenumber">490</context></context-group> + <context-group purpose="location"><context context-type="linenumber">510</context></context-group> </trans-unit> - <trans-unit id="_msg447" approved="yes"> + <trans-unit id="_msg460" approved="yes"> <source xml:space="preserve">Target balance</source> <target xml:space="preserve">Target balance</target> - <context-group purpose="location"><context context-type="linenumber">505</context></context-group> + <context-group purpose="location"><context context-type="linenumber">525</context></context-group> </trans-unit> - <trans-unit id="_msg448" approved="yes"> + <trans-unit id="_msg461" approved="yes"> <source xml:space="preserve">How many inputs of each denominated amount are created.<br/>Lower these numbers if you want fewer smaller denominations.</source> <target xml:space="preserve">How many inputs of each denominated amount are created.<br/>Lower these numbers if you want fewer smaller denominations.</target> - <context-group purpose="location"><context context-type="linenumber">528</context></context-group> + <context-group purpose="location"><context context-type="linenumber">548</context></context-group> </trans-unit> - <trans-unit id="_msg449" approved="yes"> + <trans-unit id="_msg462" approved="yes"> <source xml:space="preserve">Inputs per denomination</source> <target xml:space="preserve">Inputs per denomination</target> - <context-group purpose="location"><context context-type="linenumber">531</context></context-group> + <context-group purpose="location"><context context-type="linenumber">551</context></context-group> </trans-unit> - <trans-unit id="_msg450" approved="yes"> + <trans-unit id="_msg463" approved="yes"> <source xml:space="preserve">Try to create at least this many inputs for each denominated amount.<br/>Lower this number if you want fewer smaller denominations.</source> <target xml:space="preserve">Try to create at least this many inputs for each denominated amount.<br/>Lower this number if you want fewer smaller denominations.</target> - <context-group purpose="location"><context context-type="linenumber">542</context></context-group> + <context-group purpose="location"><context context-type="linenumber">562</context></context-group> </trans-unit> - <trans-unit id="_msg451" approved="yes"> + <trans-unit id="_msg464" approved="yes"> <source xml:space="preserve">Target</source> <target xml:space="preserve">Target</target> - <context-group purpose="location"><context context-type="linenumber">545</context></context-group> + <context-group purpose="location"><context context-type="linenumber">565</context></context-group> </trans-unit> - <trans-unit id="_msg452" approved="yes"> + <trans-unit id="_msg465" approved="yes"> <source xml:space="preserve">Create up to this many inputs for each denominated amount.<br/>Lower this number if you want fewer smaller denominations.</source> <target xml:space="preserve">Create up to this many inputs for each denominated amount.<br/>Lower this number if you want fewer smaller denominations.</target> - <context-group purpose="location"><context context-type="linenumber">572</context></context-group> + <context-group purpose="location"><context context-type="linenumber">592</context></context-group> </trans-unit> - <trans-unit id="_msg453" approved="yes"> + <trans-unit id="_msg466" approved="yes"> <source xml:space="preserve">Maximum</source> <target xml:space="preserve">Maximum</target> - <context-group purpose="location"><context context-type="linenumber">575</context></context-group> + <context-group purpose="location"><context context-type="linenumber">595</context></context-group> </trans-unit> - <trans-unit id="_msg454" approved="yes"> + <trans-unit id="_msg467" approved="yes"> <source xml:space="preserve">Automatically open the Dash Core client port on the router. This only works when your router supports UPnP and it is enabled.</source> <target xml:space="preserve">Automatically open the Dash Core client port on the router. This only works when your router supports UPnP and it is enabled.</target> - <context-group purpose="location"><context context-type="linenumber">621</context></context-group> + <context-group purpose="location"><context context-type="linenumber">641</context></context-group> </trans-unit> - <trans-unit id="_msg455" approved="yes"> + <trans-unit id="_msg468" approved="yes"> <source xml:space="preserve">Map port using NA&T-PMP</source> <target xml:space="preserve">Map port using NA&T-PMP</target> - <context-group purpose="location"><context context-type="linenumber">634</context></context-group> + <context-group purpose="location"><context context-type="linenumber">654</context></context-group> </trans-unit> - <trans-unit id="_msg456" approved="yes"> + <trans-unit id="_msg469" approved="yes"> <source xml:space="preserve">Accept connections from outside.</source> <target xml:space="preserve">Accept connections from outside.</target> - <context-group purpose="location"><context context-type="linenumber">641</context></context-group> + <context-group purpose="location"><context context-type="linenumber">661</context></context-group> </trans-unit> - <trans-unit id="_msg457" approved="yes"> + <trans-unit id="_msg470" approved="yes"> <source xml:space="preserve">Allow incomin&g connections</source> <target xml:space="preserve">Allow incomin&g connections</target> - <context-group purpose="location"><context context-type="linenumber">644</context></context-group> + <context-group purpose="location"><context context-type="linenumber">664</context></context-group> </trans-unit> - <trans-unit id="_msg458" approved="yes"> + <trans-unit id="_msg471" approved="yes"> <source xml:space="preserve">Connect to the Dash network through a SOCKS5 proxy.</source> <target xml:space="preserve">Connect to the Dash network through a SOCKS5 proxy.</target> - <context-group purpose="location"><context context-type="linenumber">651</context></context-group> + <context-group purpose="location"><context context-type="linenumber">671</context></context-group> </trans-unit> - <trans-unit id="_msg459" approved="yes"> + <trans-unit id="_msg472" approved="yes"> <source xml:space="preserve">&Connect through SOCKS5 proxy (default proxy):</source> <target xml:space="preserve">&Connect through SOCKS5 proxy (default proxy):</target> - <context-group purpose="location"><context context-type="linenumber">654</context></context-group> + <context-group purpose="location"><context context-type="linenumber">674</context></context-group> </trans-unit> - <trans-unit id="_msg460" approved="yes"> + <trans-unit id="_msg473" approved="yes"> <source xml:space="preserve">Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type.</source> <target xml:space="preserve">Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type.</target> - <context-group purpose="location"><context context-type="linenumber">757</context></context-group> - <context-group purpose="location"><context context-type="linenumber">770</context></context-group> - <context-group purpose="location"><context context-type="linenumber">783</context></context-group> + <context-group purpose="location"><context context-type="linenumber">777</context></context-group> + <context-group purpose="location"><context context-type="linenumber">790</context></context-group> + <context-group purpose="location"><context context-type="linenumber">803</context></context-group> </trans-unit> - <trans-unit id="_msg461"> + <trans-unit id="_msg474" approved="yes"> <source xml:space="preserve">Language missing or translation incomplete? Help contributing translations here: https://explore.transifex.com/dash/dash/</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">952</context></context-group> + <target xml:space="preserve">Language missing or translation incomplete? Help contributing translations here: +https://explore.transifex.com/dash/dash/</target> + <context-group purpose="location"><context context-type="linenumber">972</context></context-group> </trans-unit> - <trans-unit id="_msg462" approved="yes"> + <trans-unit id="_msg475" approved="yes"> <source xml:space="preserve">Options set in this dialog are overridden by the command line or in the configuration file:</source> <target xml:space="preserve">Options set in this dialog are overridden by the command line or in the configuration file:</target> - <context-group purpose="location"><context context-type="linenumber">1083</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1103</context></context-group> </trans-unit> - <trans-unit id="_msg463" approved="yes"> + <trans-unit id="_msg476" approved="yes"> <source xml:space="preserve">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> <target xml:space="preserve">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.</target> <context-group purpose="location"><context context-type="linenumber">158</context></context-group> </trans-unit> - <trans-unit id="_msg464" approved="yes"> + <trans-unit id="_msg477" approved="yes"> <source xml:space="preserve">Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items.<br/>%s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</source> <target xml:space="preserve">Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items.<br/>%s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</target> - <context-group purpose="location"><context context-type="linenumber">1016</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1029</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1036</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1049</context></context-group> </trans-unit> - <trans-unit id="_msg465" approved="yes"> + <trans-unit id="_msg478" approved="yes"> <source xml:space="preserve">&Third party transaction URLs</source> <target xml:space="preserve">&Third party transaction URLs</target> - <context-group purpose="location"><context context-type="linenumber">1019</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1039</context></context-group> </trans-unit> - <trans-unit id="_msg466" approved="yes"> + <trans-unit id="_msg479" approved="yes"> <source xml:space="preserve">Whether to show coin control features or not.</source> <target xml:space="preserve">Whether to show coin control features or not.</target> - <context-group purpose="location"><context context-type="linenumber">323</context></context-group> + <context-group purpose="location"><context context-type="linenumber">343</context></context-group> </trans-unit> - <trans-unit id="_msg467" approved="yes"> + <trans-unit id="_msg480" approved="yes"> <source xml:space="preserve">Automatically start %1 after logging in to the system.</source> <target xml:space="preserve">Automatically start %1 after logging in to the system.</target> <context-group purpose="location"><context context-type="linenumber">112</context></context-group> </trans-unit> - <trans-unit id="_msg468" approved="yes"> + <trans-unit id="_msg481" approved="yes"> <source xml:space="preserve">&Start %1 on system login</source> <target xml:space="preserve">&Start %1 on system login</target> <context-group purpose="location"><context context-type="linenumber">115</context></context-group> </trans-unit> - <trans-unit id="_msg469" approved="yes"> + <trans-unit id="_msg482" approved="yes"> <source xml:space="preserve">Enable coin &control features</source> <target xml:space="preserve">Enable coin &control features</target> - <context-group purpose="location"><context context-type="linenumber">326</context></context-group> + <context-group purpose="location"><context context-type="linenumber">346</context></context-group> </trans-unit> - <trans-unit id="_msg470" approved="yes"> + <trans-unit id="_msg483" approved="yes"> <source xml:space="preserve">&Spend unconfirmed change</source> <target xml:space="preserve">&Spend unconfirmed change</target> - <context-group purpose="location"><context context-type="linenumber">366</context></context-group> + <context-group purpose="location"><context context-type="linenumber">386</context></context-group> </trans-unit> - <trans-unit id="_msg471" approved="yes"> + <trans-unit id="_msg484" approved="yes"> <source xml:space="preserve">This setting determines the amount of individual masternodes that an input will be mixed through.<br/>More rounds of mixing gives a higher degree of privacy, but also costs more in fees.</source> <target xml:space="preserve">This setting determines the amount of individual masternodes that an input will be mixed through.<br/>More rounds of mixing gives a higher degree of privacy, but also costs more in fees.</target> - <context-group purpose="location"><context context-type="linenumber">467</context></context-group> + <context-group purpose="location"><context context-type="linenumber">487</context></context-group> </trans-unit> - <trans-unit id="_msg472" approved="yes"> + <trans-unit id="_msg485" approved="yes"> <source xml:space="preserve">&Network</source> <target xml:space="preserve">&Network</target> <context-group purpose="location"><context context-type="linenumber">67</context></context-group> </trans-unit> - <trans-unit id="_msg473" approved="yes"> + <trans-unit id="_msg486" approved="yes"> <source xml:space="preserve">Enabling pruning significantly reduces the disk space required to store transactions. All blocks are still fully validated. Reverting this setting requires re-downloading the entire blockchain.</source> <target xml:space="preserve">Enabling pruning significantly reduces the disk space required to store transactions. All blocks are still fully validated. Reverting this setting requires re-downloading the entire blockchain.</target> <context-group purpose="location"><context context-type="linenumber">170</context></context-group> </trans-unit> - <trans-unit id="_msg474" approved="yes"> + <trans-unit id="_msg487" approved="yes"> <source xml:space="preserve">Map port using &UPnP</source> <target xml:space="preserve">Map port using &UPnP</target> - <context-group purpose="location"><context context-type="linenumber">624</context></context-group> + <context-group purpose="location"><context context-type="linenumber">644</context></context-group> </trans-unit> - <trans-unit id="_msg475" approved="yes"> + <trans-unit id="_msg488" approved="yes"> <source xml:space="preserve">Automatically open the Dash Core client port on the router. This only works when your router supports NAT-PMP and it is enabled. The external port could be random.</source> <target xml:space="preserve">Automatically open the Dash Core client port on the router. This only works when your router supports NAT-PMP and it is enabled. The external port could be random.</target> - <context-group purpose="location"><context context-type="linenumber">631</context></context-group> + <context-group purpose="location"><context context-type="linenumber">651</context></context-group> </trans-unit> - <trans-unit id="_msg476" approved="yes"> + <trans-unit id="_msg489" approved="yes"> <source xml:space="preserve">Proxy &IP:</source> <target xml:space="preserve">Proxy &IP:</target> - <context-group purpose="location"><context context-type="linenumber">663</context></context-group> - <context-group purpose="location"><context context-type="linenumber">820</context></context-group> + <context-group purpose="location"><context context-type="linenumber">683</context></context-group> + <context-group purpose="location"><context context-type="linenumber">840</context></context-group> </trans-unit> - <trans-unit id="_msg477" approved="yes"> + <trans-unit id="_msg490" approved="yes"> <source xml:space="preserve">IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1)</source> <target xml:space="preserve">IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1)</target> - <context-group purpose="location"><context context-type="linenumber">688</context></context-group> - <context-group purpose="location"><context context-type="linenumber">845</context></context-group> + <context-group purpose="location"><context context-type="linenumber">708</context></context-group> + <context-group purpose="location"><context context-type="linenumber">865</context></context-group> </trans-unit> - <trans-unit id="_msg478" approved="yes"> + <trans-unit id="_msg491" approved="yes"> <source xml:space="preserve">&Port:</source> <target xml:space="preserve">&Port:</target> - <context-group purpose="location"><context context-type="linenumber">695</context></context-group> - <context-group purpose="location"><context context-type="linenumber">852</context></context-group> + <context-group purpose="location"><context context-type="linenumber">715</context></context-group> + <context-group purpose="location"><context context-type="linenumber">872</context></context-group> </trans-unit> - <trans-unit id="_msg479" approved="yes"> + <trans-unit id="_msg492" approved="yes"> <source xml:space="preserve">Port of the proxy (e.g. 9050)</source> <target xml:space="preserve">Port of the proxy (e.g. 9050)</target> - <context-group purpose="location"><context context-type="linenumber">720</context></context-group> - <context-group purpose="location"><context context-type="linenumber">877</context></context-group> + <context-group purpose="location"><context context-type="linenumber">740</context></context-group> + <context-group purpose="location"><context context-type="linenumber">897</context></context-group> </trans-unit> - <trans-unit id="_msg480" approved="yes"> + <trans-unit id="_msg493" approved="yes"> <source xml:space="preserve">Used for reaching peers via:</source> <target xml:space="preserve">Used for reaching peers via:</target> - <context-group purpose="location"><context context-type="linenumber">744</context></context-group> + <context-group purpose="location"><context context-type="linenumber">764</context></context-group> </trans-unit> - <trans-unit id="_msg481" approved="yes"> + <trans-unit id="_msg494" approved="yes"> <source xml:space="preserve">IPv4</source> <target xml:space="preserve">IPv4</target> - <context-group purpose="location"><context context-type="linenumber">760</context></context-group> + <context-group purpose="location"><context context-type="linenumber">780</context></context-group> </trans-unit> - <trans-unit id="_msg482" approved="yes"> + <trans-unit id="_msg495" approved="yes"> <source xml:space="preserve">IPv6</source> <target xml:space="preserve">IPv6</target> - <context-group purpose="location"><context context-type="linenumber">773</context></context-group> + <context-group purpose="location"><context context-type="linenumber">793</context></context-group> </trans-unit> - <trans-unit id="_msg483" approved="yes"> + <trans-unit id="_msg496" approved="yes"> <source xml:space="preserve">Tor</source> <target xml:space="preserve">Tor</target> - <context-group purpose="location"><context context-type="linenumber">786</context></context-group> + <context-group purpose="location"><context context-type="linenumber">806</context></context-group> </trans-unit> - <trans-unit id="_msg484" approved="yes"> + <trans-unit id="_msg497" approved="yes"> <source xml:space="preserve">Show only a tray icon after minimizing the window.</source> <target xml:space="preserve">Show only a tray icon after minimizing the window.</target> <context-group purpose="location"><context context-type="linenumber">148</context></context-group> </trans-unit> - <trans-unit id="_msg485" approved="yes"> + <trans-unit id="_msg498" approved="yes"> <source xml:space="preserve">&Minimize to the tray instead of the taskbar</source> <target xml:space="preserve">&Minimize to the tray instead of the taskbar</target> <context-group purpose="location"><context context-type="linenumber">151</context></context-group> </trans-unit> - <trans-unit id="_msg486" approved="yes"> + <trans-unit id="_msg499" approved="yes"> <source xml:space="preserve">M&inimize on close</source> <target xml:space="preserve">M&inimize on close</target> <context-group purpose="location"><context context-type="linenumber">161</context></context-group> </trans-unit> - <trans-unit id="_msg487" approved="yes"> + <trans-unit id="_msg500" approved="yes"> <source xml:space="preserve">&Display</source> <target xml:space="preserve">&Display</target> <context-group purpose="location"><context context-type="linenumber">77</context></context-group> </trans-unit> - <trans-unit id="_msg488" approved="yes"> + <trans-unit id="_msg501" approved="yes"> <source xml:space="preserve">Connect to the Dash network through a separate SOCKS5 proxy for Tor onion services.</source> <target xml:space="preserve">Connect to the Dash network through a separate SOCKS5 proxy for Tor onion services.</target> - <context-group purpose="location"><context context-type="linenumber">808</context></context-group> + <context-group purpose="location"><context context-type="linenumber">828</context></context-group> </trans-unit> - <trans-unit id="_msg489" approved="yes"> + <trans-unit id="_msg502" approved="yes"> <source xml:space="preserve">Use separate SOCKS&5 proxy to reach peers via Tor onion services:</source> <target xml:space="preserve">Use separate SOCKS&5 proxy to reach peers via Tor onion services:</target> - <context-group purpose="location"><context context-type="linenumber">811</context></context-group> + <context-group purpose="location"><context context-type="linenumber">831</context></context-group> </trans-unit> - <trans-unit id="_msg490" approved="yes"> + <trans-unit id="_msg503" approved="yes"> <source xml:space="preserve">User Interface &language:</source> <target xml:space="preserve">User Interface &language:</target> - <context-group purpose="location"><context context-type="linenumber">918</context></context-group> + <context-group purpose="location"><context context-type="linenumber">938</context></context-group> </trans-unit> - <trans-unit id="_msg491" approved="yes"> + <trans-unit id="_msg504" approved="yes"> <source xml:space="preserve">The user interface language can be set here. This setting will take effect after restarting %1.</source> <target xml:space="preserve">The user interface language can be set here. This setting will take effect after restarting %1.</target> - <context-group purpose="location"><context context-type="linenumber">931</context></context-group> + <context-group purpose="location"><context context-type="linenumber">951</context></context-group> </trans-unit> - <trans-unit id="_msg492" approved="yes"> + <trans-unit id="_msg505" approved="yes"> <source xml:space="preserve">&Unit to show amounts in:</source> <target xml:space="preserve">&Unit to show amounts in:</target> - <context-group purpose="location"><context context-type="linenumber">978</context></context-group> + <context-group purpose="location"><context context-type="linenumber">998</context></context-group> </trans-unit> - <trans-unit id="_msg493" approved="yes"> + <trans-unit id="_msg506" approved="yes"> <source xml:space="preserve">Choose the default subdivision unit to show in the interface and when sending coins.</source> <target xml:space="preserve">Choose the default subdivision unit to show in the interface and when sending coins.</target> - <context-group purpose="location"><context context-type="linenumber">991</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1011</context></context-group> </trans-unit> - <trans-unit id="_msg494" approved="yes"> + <trans-unit id="_msg507" approved="yes"> <source xml:space="preserve">Decimal digits</source> <target xml:space="preserve">Decimal digits</target> - <context-group purpose="location"><context context-type="linenumber">1002</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1022</context></context-group> </trans-unit> - <trans-unit id="_msg495" approved="yes"> + <trans-unit id="_msg508" approved="yes"> <source xml:space="preserve">Reset all client options to default.</source> <target xml:space="preserve">Reset all client options to default.</target> - <context-group purpose="location"><context context-type="linenumber">1129</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1149</context></context-group> </trans-unit> - <trans-unit id="_msg496" approved="yes"> + <trans-unit id="_msg509" approved="yes"> <source xml:space="preserve">&Reset Options</source> <target xml:space="preserve">&Reset Options</target> - <context-group purpose="location"><context context-type="linenumber">1132</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1152</context></context-group> </trans-unit> - <trans-unit id="_msg497" approved="yes"> + <trans-unit id="_msg510" approved="yes"> <source xml:space="preserve">&OK</source> <target xml:space="preserve">&OK</target> - <context-group purpose="location"><context context-type="linenumber">1187</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1207</context></context-group> </trans-unit> - <trans-unit id="_msg498" approved="yes"> + <trans-unit id="_msg511" approved="yes"> <source xml:space="preserve">&Cancel</source> <target xml:space="preserve">&Cancel</target> - <context-group purpose="location"><context context-type="linenumber">1200</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1220</context></context-group> </trans-unit> </group> </body></file> <file original="../optionsdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="OptionsDialog"> - <trans-unit id="_msg499" approved="yes"> + <trans-unit id="_msg512" approved="yes"> <source xml:space="preserve">Enable %1 features</source> <target xml:space="preserve">Enable %1 features</target> <context-group purpose="location"><context context-type="linenumber">72</context></context-group> </trans-unit> - <trans-unit id="_msg500" approved="yes"> + <trans-unit id="_msg513" approved="yes"> <source xml:space="preserve">default</source> <target xml:space="preserve">default</target> <context-group purpose="location"><context context-type="linenumber">153</context></context-group> </trans-unit> - <trans-unit id="_msg501" approved="yes"> + <trans-unit id="_msg514" approved="yes"> <source xml:space="preserve">Confirm options reset</source> <target xml:space="preserve">Confirm options reset</target> - <context-group purpose="location"><context context-type="linenumber">394</context></context-group> + <context-group purpose="location"><context context-type="linenumber">397</context></context-group> </trans-unit> - <trans-unit id="_msg502" approved="yes"> + <trans-unit id="_msg515" approved="yes"> <source xml:space="preserve">Client restart required to activate changes.</source> <target xml:space="preserve">Client restart required to activate changes.</target> - <context-group purpose="location"><context context-type="linenumber">395</context></context-group> - <context-group purpose="location"><context context-type="linenumber">450</context></context-group> + <context-group purpose="location"><context context-type="linenumber">398</context></context-group> + <context-group purpose="location"><context context-type="linenumber">453</context></context-group> </trans-unit> - <trans-unit id="_msg503" approved="yes"> + <trans-unit id="_msg516" approved="yes"> <source xml:space="preserve">Client will be shut down. Do you want to proceed?</source> <target xml:space="preserve">Client will be shut down. Do you want to proceed?</target> - <context-group purpose="location"><context context-type="linenumber">395</context></context-group> + <context-group purpose="location"><context context-type="linenumber">398</context></context-group> </trans-unit> - <trans-unit id="_msg504" approved="yes"> + <trans-unit id="_msg517" approved="yes"> <source xml:space="preserve">This change would require a client restart.</source> <target xml:space="preserve">This change would require a client restart.</target> - <context-group purpose="location"><context context-type="linenumber">454</context></context-group> + <context-group purpose="location"><context context-type="linenumber">457</context></context-group> </trans-unit> - <trans-unit id="_msg505" approved="yes"> + <trans-unit id="_msg518" approved="yes"> <source xml:space="preserve">The supplied proxy address is invalid.</source> <target xml:space="preserve">The supplied proxy address is invalid.</target> - <context-group purpose="location"><context context-type="linenumber">482</context></context-group> + <context-group purpose="location"><context context-type="linenumber">485</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/overviewpage.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="OverviewPage"> - <trans-unit id="_msg506" approved="yes"> + <trans-unit id="_msg519" approved="yes"> <source xml:space="preserve">Form</source> <target xml:space="preserve">Form</target> <context-group purpose="location"><context context-type="linenumber">20</context></context-group> </trans-unit> - <trans-unit id="_msg507" approved="yes"> + <trans-unit id="_msg520" approved="yes"> <source xml:space="preserve">The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet.</source> <target xml:space="preserve">The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet.</target> - <context-group purpose="location"><context context-type="linenumber">64</context></context-group> - <context-group purpose="location"><context context-type="linenumber">362</context></context-group> - <context-group purpose="location"><context context-type="linenumber">586</context></context-group> + <context-group purpose="location"><context context-type="linenumber">80</context></context-group> + <context-group purpose="location"><context context-type="linenumber">378</context></context-group> + <context-group purpose="location"><context context-type="linenumber">615</context></context-group> </trans-unit> - <trans-unit id="_msg508" approved="yes"> + <trans-unit id="_msg521" approved="yes"> <source xml:space="preserve">Available:</source> <target xml:space="preserve">Available:</target> - <context-group purpose="location"><context context-type="linenumber">274</context></context-group> + <context-group purpose="location"><context context-type="linenumber">290</context></context-group> </trans-unit> - <trans-unit id="_msg509" approved="yes"> + <trans-unit id="_msg522" approved="yes"> <source xml:space="preserve">Your current spendable balance</source> <target xml:space="preserve">Your current spendable balance</target> - <context-group purpose="location"><context context-type="linenumber">284</context></context-group> + <context-group purpose="location"><context context-type="linenumber">300</context></context-group> </trans-unit> - <trans-unit id="_msg510" approved="yes"> + <trans-unit id="_msg523" approved="yes"> <source xml:space="preserve">Pending:</source> <target xml:space="preserve">Pending:</target> - <context-group purpose="location"><context context-type="linenumber">319</context></context-group> + <context-group purpose="location"><context context-type="linenumber">335</context></context-group> </trans-unit> - <trans-unit id="_msg511" approved="yes"> + <trans-unit id="_msg524" approved="yes"> <source xml:space="preserve">Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance</source> <target xml:space="preserve">Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance</target> - <context-group purpose="location"><context context-type="linenumber">119</context></context-group> + <context-group purpose="location"><context context-type="linenumber">135</context></context-group> </trans-unit> - <trans-unit id="_msg512" approved="yes"> + <trans-unit id="_msg525" approved="yes"> <source xml:space="preserve">Immature:</source> <target xml:space="preserve">Immature:</target> - <context-group purpose="location"><context context-type="linenumber">219</context></context-group> + <context-group purpose="location"><context context-type="linenumber">235</context></context-group> </trans-unit> - <trans-unit id="_msg513" approved="yes"> + <trans-unit id="_msg526" approved="yes"> <source xml:space="preserve">Mined balance that has not yet matured</source> <target xml:space="preserve">Mined balance that has not yet matured</target> - <context-group purpose="location"><context context-type="linenumber">190</context></context-group> + <context-group purpose="location"><context context-type="linenumber">206</context></context-group> </trans-unit> - <trans-unit id="_msg514" approved="yes"> + <trans-unit id="_msg527" approved="yes"> <source xml:space="preserve">Balances</source> <target xml:space="preserve">Balances</target> - <context-group purpose="location"><context context-type="linenumber">57</context></context-group> + <context-group purpose="location"><context context-type="linenumber">73</context></context-group> </trans-unit> - <trans-unit id="_msg515" approved="yes"> + <trans-unit id="_msg528" approved="yes"> <source xml:space="preserve">Unconfirmed transactions to watch-only addresses</source> <target xml:space="preserve">Unconfirmed transactions to watch-only addresses</target> - <context-group purpose="location"><context context-type="linenumber">100</context></context-group> + <context-group purpose="location"><context context-type="linenumber">116</context></context-group> </trans-unit> - <trans-unit id="_msg516" approved="yes"> + <trans-unit id="_msg529" approved="yes"> <source xml:space="preserve">Mined balance in watch-only addresses that has not yet matured</source> <target xml:space="preserve">Mined balance in watch-only addresses that has not yet matured</target> - <context-group purpose="location"><context context-type="linenumber">138</context></context-group> + <context-group purpose="location"><context context-type="linenumber">154</context></context-group> </trans-unit> - <trans-unit id="_msg517" approved="yes"> + <trans-unit id="_msg530" approved="yes"> <source xml:space="preserve">Total:</source> <target xml:space="preserve">Total:</target> - <context-group purpose="location"><context context-type="linenumber">180</context></context-group> + <context-group purpose="location"><context context-type="linenumber">196</context></context-group> </trans-unit> - <trans-unit id="_msg518" approved="yes"> + <trans-unit id="_msg531" approved="yes"> <source xml:space="preserve">Your current total balance</source> <target xml:space="preserve">Your current total balance</target> - <context-group purpose="location"><context context-type="linenumber">229</context></context-group> + <context-group purpose="location"><context context-type="linenumber">245</context></context-group> </trans-unit> - <trans-unit id="_msg519" approved="yes"> + <trans-unit id="_msg532" approved="yes"> <source xml:space="preserve">Current total balance in watch-only addresses</source> <target xml:space="preserve">Current total balance in watch-only addresses</target> - <context-group purpose="location"><context context-type="linenumber">248</context></context-group> + <context-group purpose="location"><context context-type="linenumber">264</context></context-group> </trans-unit> - <trans-unit id="_msg520" approved="yes"> + <trans-unit id="_msg533" approved="yes"> <source xml:space="preserve">Watch-only:</source> <target xml:space="preserve">Watch-only:</target> - <context-group purpose="location"><context context-type="linenumber">264</context></context-group> + <context-group purpose="location"><context context-type="linenumber">280</context></context-group> </trans-unit> - <trans-unit id="_msg521" approved="yes"> + <trans-unit id="_msg534" approved="yes"> <source xml:space="preserve">Your current balance in watch-only addresses</source> <target xml:space="preserve">Your current balance in watch-only addresses</target> - <context-group purpose="location"><context context-type="linenumber">303</context></context-group> + <context-group purpose="location"><context context-type="linenumber">319</context></context-group> </trans-unit> - <trans-unit id="_msg522" approved="yes"> + <trans-unit id="_msg535" approved="yes"> <source xml:space="preserve">Spendable:</source> <target xml:space="preserve">Spendable:</target> - <context-group purpose="location"><context context-type="linenumber">326</context></context-group> + <context-group purpose="location"><context context-type="linenumber">342</context></context-group> </trans-unit> - <trans-unit id="_msg523" approved="yes"> + <trans-unit id="_msg536" approved="yes"> <source xml:space="preserve">Status:</source> <target xml:space="preserve">Status:</target> - <context-group purpose="location"><context context-type="linenumber">401</context></context-group> + <context-group purpose="location"><context context-type="linenumber">417</context></context-group> </trans-unit> - <trans-unit id="_msg524" approved="yes"> + <trans-unit id="_msg537" approved="yes"> <source xml:space="preserve">Enabled/Disabled</source> <target xml:space="preserve">Enabled/Disabled</target> - <context-group purpose="location"><context context-type="linenumber">408</context></context-group> + <context-group purpose="location"><context context-type="linenumber">424</context></context-group> </trans-unit> - <trans-unit id="_msg525" approved="yes"> + <trans-unit id="_msg538" approved="yes"> <source xml:space="preserve">Completion:</source> <target xml:space="preserve">Completion:</target> - <context-group purpose="location"><context context-type="linenumber">415</context></context-group> + <context-group purpose="location"><context context-type="linenumber">431</context></context-group> </trans-unit> - <trans-unit id="_msg526" approved="yes"> + <trans-unit id="_msg539" approved="yes"> <source xml:space="preserve">Amount and Rounds:</source> <target xml:space="preserve">Amount and Rounds:</target> - <context-group purpose="location"><context context-type="linenumber">449</context></context-group> + <context-group purpose="location"><context context-type="linenumber">465</context></context-group> </trans-unit> - <trans-unit id="_msg527" approved="yes"> + <trans-unit id="_msg540" approved="yes"> <source xml:space="preserve">0 DASH / 0 Rounds</source> <target xml:space="preserve">0 DASH / 0 Rounds</target> - <context-group purpose="location"><context context-type="linenumber">456</context></context-group> + <context-group purpose="location"><context context-type="linenumber">472</context></context-group> </trans-unit> - <trans-unit id="_msg528" approved="yes"> + <trans-unit id="_msg541" approved="yes"> <source xml:space="preserve">Submitted Denom:</source> <target xml:space="preserve">Submitted Denom:</target> - <context-group purpose="location"><context context-type="linenumber">463</context></context-group> + <context-group purpose="location"><context context-type="linenumber">479</context></context-group> </trans-unit> - <trans-unit id="_msg529" approved="yes"> + <trans-unit id="_msg542" approved="yes"> <source xml:space="preserve">n/a</source> <target xml:space="preserve">n/a</target> - <context-group purpose="location"><context context-type="linenumber">473</context></context-group> + <context-group purpose="location"><context context-type="linenumber">489</context></context-group> </trans-unit> - <trans-unit id="_msg530" approved="yes"> + <trans-unit id="_msg543" approved="yes"> <source xml:space="preserve">Recent transactions</source> <target xml:space="preserve">Recent transactions</target> - <context-group purpose="location"><context context-type="linenumber">579</context></context-group> + <context-group purpose="location"><context context-type="linenumber">608</context></context-group> </trans-unit> - <trans-unit id="_msg531" approved="yes"> + <trans-unit id="_msg544" approved="yes"> <source xml:space="preserve">Start/Stop Mixing</source> <target xml:space="preserve">Start/Stop Mixing</target> - <context-group purpose="location"><context context-type="linenumber">511</context></context-group> + <context-group purpose="location"><context context-type="linenumber">527</context></context-group> </trans-unit> - <trans-unit id="_msg532" approved="yes"> + <trans-unit id="_msg545" approved="yes"> <source xml:space="preserve">The denominations you submitted to the Masternode.<br>To mix, other users must submit the exact same denominations.</source> <target xml:space="preserve">The denominations you submitted to the Masternode.<br>To mix, other users must submit the exact same denominations.</target> - <context-group purpose="location"><context context-type="linenumber">470</context></context-group> + <context-group purpose="location"><context context-type="linenumber">486</context></context-group> </trans-unit> </group> </body></file> <file original="../overviewpage.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="OverviewPage"> - <trans-unit id="_msg533" approved="yes"> + <trans-unit id="_msg546" approved="yes"> <source xml:space="preserve">out of sync</source> <target xml:space="preserve">out of sync</target> - <context-group purpose="location"><context context-type="linenumber">157</context></context-group> - <context-group purpose="location"><context context-type="linenumber">158</context></context-group> - <context-group purpose="location"><context context-type="linenumber">159</context></context-group> + <context-group purpose="location"><context context-type="linenumber">181</context></context-group> + <context-group purpose="location"><context context-type="linenumber">182</context></context-group> + <context-group purpose="location"><context context-type="linenumber">183</context></context-group> </trans-unit> - <trans-unit id="_msg534" approved="yes"> + <trans-unit id="_msg547" approved="yes"> <source xml:space="preserve">Automatic backups are disabled, no mixing available!</source> <target xml:space="preserve">Automatic backups are disabled, no mixing available!</target> - <context-group purpose="location"><context context-type="linenumber">480</context></context-group> + <context-group purpose="location"><context context-type="linenumber">499</context></context-group> </trans-unit> - <trans-unit id="_msg535" approved="yes"> + <trans-unit id="_msg548" approved="yes"> <source xml:space="preserve">No inputs detected</source> <target xml:space="preserve">No inputs detected</target> - <context-group purpose="location"><context context-type="linenumber">366</context></context-group> - <context-group purpose="location"><context context-type="linenumber">372</context></context-group> + <context-group purpose="location"><context context-type="linenumber">385</context></context-group> + <context-group purpose="location"><context context-type="linenumber">391</context></context-group> </trans-unit> - <trans-unit id="_msg536" approved="yes"> + <trans-unit id="_msg549" approved="yes"> <source xml:space="preserve">%1 Balance</source> <target xml:space="preserve">%1 Balance</target> - <context-group purpose="location"><context context-type="linenumber">163</context></context-group> + <context-group purpose="location"><context context-type="linenumber">187</context></context-group> </trans-unit> - <trans-unit id="_msg537" approved="yes"> + <trans-unit id="_msg550" approved="yes"> <source xml:space="preserve">Discreet mode activated for the Overview tab. To unmask the values, uncheck Settings->Discreet mode.</source> <target xml:space="preserve">Discreet mode activated for the Overview tab. To unmask the values, uncheck Settings->Discreet mode.</target> - <context-group purpose="location"><context context-type="linenumber">196</context></context-group> + <context-group purpose="location"><context context-type="linenumber">215</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">370</context></context-group> - <context-group purpose="location"><context context-type="linenumber">390</context></context-group> - <context-group purpose="location"><context context-type="linenumber">401</context></context-group> - <trans-unit id="_msg538[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">389</context></context-group> + <context-group purpose="location"><context context-type="linenumber">409</context></context-group> + <context-group purpose="location"><context context-type="linenumber">420</context></context-group> + <trans-unit id="_msg551[0]" approved="yes"> <source xml:space="preserve">%n Rounds</source> <target xml:space="preserve">%n Round</target> </trans-unit> - <trans-unit id="_msg538[1]" approved="yes"> + <trans-unit id="_msg551[1]" approved="yes"> <source xml:space="preserve">%n Rounds</source> <target xml:space="preserve">%n Rounds</target> </trans-unit> </group> - <trans-unit id="_msg539" approved="yes"> + <trans-unit id="_msg552" approved="yes"> <source xml:space="preserve">Found enough compatible inputs to mix %1</source> <target xml:space="preserve">Found enough compatible inputs to mix %1</target> - <context-group purpose="location"><context context-type="linenumber">387</context></context-group> + <context-group purpose="location"><context context-type="linenumber">406</context></context-group> </trans-unit> - <trans-unit id="_msg540" approved="yes"> + <trans-unit id="_msg553" approved="yes"> <source xml:space="preserve">Not enough compatible inputs to mix <span style='%1'>%2</span>,<br>will mix <span style='%1'>%3</span> instead</source> <target xml:space="preserve">Not enough compatible inputs to mix <span style='%1'>%2</span>,<br>will mix <span style='%1'>%3</span> instead</target> - <context-group purpose="location"><context context-type="linenumber">393</context></context-group> + <context-group purpose="location"><context context-type="linenumber">412</context></context-group> </trans-unit> - <trans-unit id="_msg541" approved="yes"> + <trans-unit id="_msg554" approved="yes"> <source xml:space="preserve">Overall progress</source> <target xml:space="preserve">Overall progress</target> - <context-group purpose="location"><context context-type="linenumber">452</context></context-group> + <context-group purpose="location"><context context-type="linenumber">471</context></context-group> </trans-unit> - <trans-unit id="_msg542" approved="yes"> + <trans-unit id="_msg555" approved="yes"> <source xml:space="preserve">Denominated</source> <target xml:space="preserve">Denominated</target> - <context-group purpose="location"><context context-type="linenumber">453</context></context-group> + <context-group purpose="location"><context context-type="linenumber">472</context></context-group> </trans-unit> - <trans-unit id="_msg543" approved="yes"> + <trans-unit id="_msg556" approved="yes"> <source xml:space="preserve">Partially mixed</source> <target xml:space="preserve">Partially mixed</target> - <context-group purpose="location"><context context-type="linenumber">454</context></context-group> + <context-group purpose="location"><context context-type="linenumber">473</context></context-group> </trans-unit> - <trans-unit id="_msg544" approved="yes"> + <trans-unit id="_msg557" approved="yes"> <source xml:space="preserve">Mixed</source> <target xml:space="preserve">Mixed</target> - <context-group purpose="location"><context context-type="linenumber">455</context></context-group> + <context-group purpose="location"><context context-type="linenumber">474</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">456</context></context-group> - <trans-unit id="_msg545[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">475</context></context-group> + <trans-unit id="_msg558[0]" approved="yes"> <source xml:space="preserve">Denominated inputs have %5 of %n rounds on average</source> <target xml:space="preserve">Denominated inputs have %5 of %n round on average</target> </trans-unit> - <trans-unit id="_msg545[1]" approved="yes"> + <trans-unit id="_msg558[1]" approved="yes"> <source xml:space="preserve">Denominated inputs have %5 of %n rounds on average</source> <target xml:space="preserve">Denominated inputs have %5 of %n rounds on average</target> </trans-unit> </group> - <trans-unit id="_msg546" approved="yes"> + <trans-unit id="_msg559" approved="yes"> <source xml:space="preserve">keys left: %1</source> <target xml:space="preserve">keys left: %1</target> - <context-group purpose="location"><context context-type="linenumber">538</context></context-group> + <context-group purpose="location"><context context-type="linenumber">557</context></context-group> </trans-unit> - <trans-unit id="_msg547" approved="yes"> + <trans-unit id="_msg560" approved="yes"> <source xml:space="preserve">Start %1</source> <target xml:space="preserve">Start %1</target> - <context-group purpose="location"><context context-type="linenumber">556</context></context-group> - <context-group purpose="location"><context context-type="linenumber">691</context></context-group> + <context-group purpose="location"><context context-type="linenumber">575</context></context-group> + <context-group purpose="location"><context context-type="linenumber">710</context></context-group> </trans-unit> - <trans-unit id="_msg548" approved="yes"> + <trans-unit id="_msg561" approved="yes"> <source xml:space="preserve">If you don't want to see internal %1 fees/transactions select "Most Common" as Type on the "Transactions" tab.</source> <target xml:space="preserve">If you don't want to see internal %1 fees/transactions select "Most Common" as Type on the "Transactions" tab.</target> - <context-group purpose="location"><context context-type="linenumber">654</context></context-group> + <context-group purpose="location"><context context-type="linenumber">673</context></context-group> </trans-unit> - <trans-unit id="_msg549" approved="yes"> + <trans-unit id="_msg562" approved="yes"> <source xml:space="preserve">%1 requires at least %2 to use.</source> <target xml:space="preserve">%1 requires at least %2 to use.</target> - <context-group purpose="location"><context context-type="linenumber">665</context></context-group> + <context-group purpose="location"><context context-type="linenumber">684</context></context-group> </trans-unit> - <trans-unit id="_msg550" approved="yes"> + <trans-unit id="_msg563" approved="yes"> <source xml:space="preserve">Wallet is locked and user declined to unlock. Disabling %1.</source> <target xml:space="preserve">Wallet is locked and user declined to unlock. Disabling %1.</target> - <context-group purpose="location"><context context-type="linenumber">679</context></context-group> + <context-group purpose="location"><context context-type="linenumber">698</context></context-group> </trans-unit> - <trans-unit id="_msg551" approved="yes"> + <trans-unit id="_msg564" approved="yes"> <source xml:space="preserve">Stop %1</source> <target xml:space="preserve">Stop %1</target> - <context-group purpose="location"><context context-type="linenumber">695</context></context-group> + <context-group purpose="location"><context context-type="linenumber">714</context></context-group> </trans-unit> - <trans-unit id="_msg552" approved="yes"> + <trans-unit id="_msg565" approved="yes"> <source xml:space="preserve">Disabled</source> <target xml:space="preserve">Disabled</target> - <context-group purpose="location"><context context-type="linenumber">558</context></context-group> - <context-group purpose="location"><context context-type="linenumber">612</context></context-group> - <context-group purpose="location"><context context-type="linenumber">731</context></context-group> - <context-group purpose="location"><context context-type="linenumber">734</context></context-group> + <context-group purpose="location"><context context-type="linenumber">577</context></context-group> + <context-group purpose="location"><context context-type="linenumber">631</context></context-group> + <context-group purpose="location"><context context-type="linenumber">750</context></context-group> + <context-group purpose="location"><context context-type="linenumber">753</context></context-group> </trans-unit> - <trans-unit id="_msg553" approved="yes"> + <trans-unit id="_msg566" approved="yes"> <source xml:space="preserve">Very low number of keys left since last automatic backup!</source> <target xml:space="preserve">Very low number of keys left since last automatic backup!</target> - <context-group purpose="location"><context context-type="linenumber">577</context></context-group> + <context-group purpose="location"><context context-type="linenumber">596</context></context-group> </trans-unit> - <trans-unit id="_msg554" approved="yes"> + <trans-unit id="_msg567" approved="yes"> <source xml:space="preserve">We are about to create a new automatic backup for you, however <span style='%1'> you should always make sure you have backups saved in some safe place</span>!</source> <target xml:space="preserve">We are about to create a new automatic backup for you, however <span style='%1'> you should always make sure you have backups saved in some safe place</span>!</target> - <context-group purpose="location"><context context-type="linenumber">578</context></context-group> + <context-group purpose="location"><context context-type="linenumber">597</context></context-group> </trans-unit> - <trans-unit id="_msg555" approved="yes"> + <trans-unit id="_msg568" approved="yes"> <source xml:space="preserve">Note: You can turn this message off in options.</source> <target xml:space="preserve">Note: You can turn this message off in options.</target> - <context-group purpose="location"><context context-type="linenumber">581</context></context-group> + <context-group purpose="location"><context context-type="linenumber">600</context></context-group> </trans-unit> - <trans-unit id="_msg556" approved="yes"> + <trans-unit id="_msg569" approved="yes"> <source xml:space="preserve">WARNING! Something went wrong on automatic backup</source> <target xml:space="preserve">WARNING! Something went wrong on automatic backup</target> - <context-group purpose="location"><context context-type="linenumber">597</context></context-group> + <context-group purpose="location"><context context-type="linenumber">616</context></context-group> </trans-unit> - <trans-unit id="_msg557" approved="yes"> + <trans-unit id="_msg570" approved="yes"> <source xml:space="preserve">ERROR! Failed to create automatic backup</source> <target xml:space="preserve">ERROR! Failed to create automatic backup</target> - <context-group purpose="location"><context context-type="linenumber">605</context></context-group> - <context-group purpose="location"><context context-type="linenumber">622</context></context-group> + <context-group purpose="location"><context context-type="linenumber">624</context></context-group> + <context-group purpose="location"><context context-type="linenumber">641</context></context-group> </trans-unit> - <trans-unit id="_msg558" approved="yes"> + <trans-unit id="_msg571" approved="yes"> <source xml:space="preserve">Mixing is disabled, please close your wallet and fix the issue!</source> <target xml:space="preserve">Mixing is disabled, please close your wallet and fix the issue!</target> - <context-group purpose="location"><context context-type="linenumber">606</context></context-group> - <context-group purpose="location"><context context-type="linenumber">624</context></context-group> + <context-group purpose="location"><context context-type="linenumber">625</context></context-group> + <context-group purpose="location"><context context-type="linenumber">643</context></context-group> </trans-unit> - <trans-unit id="_msg559" approved="yes"> + <trans-unit id="_msg572" approved="yes"> <source xml:space="preserve">Enabled</source> <target xml:space="preserve">Enabled</target> - <context-group purpose="location"><context context-type="linenumber">612</context></context-group> + <context-group purpose="location"><context context-type="linenumber">631</context></context-group> </trans-unit> - <trans-unit id="_msg560" approved="yes"> + <trans-unit id="_msg573" approved="yes"> <source xml:space="preserve">see debug.log for details.</source> <target xml:space="preserve">see debug.log for details.</target> - <context-group purpose="location"><context context-type="linenumber">623</context></context-group> + <context-group purpose="location"><context context-type="linenumber">642</context></context-group> </trans-unit> - <trans-unit id="_msg561" approved="yes"> + <trans-unit id="_msg574" approved="yes"> <source xml:space="preserve">WARNING! Failed to replenish keypool, please unlock your wallet to do so.</source> <target xml:space="preserve">WARNING! Failed to replenish keypool, please unlock your wallet to do so.</target> - <context-group purpose="location"><context context-type="linenumber">630</context></context-group> + <context-group purpose="location"><context context-type="linenumber">649</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/psbtoperationsdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="PSBTOperationsDialog"> - <trans-unit id="_msg562" approved="yes"> + <trans-unit id="_msg575" approved="yes"> <source xml:space="preserve">Dialog</source> <target xml:space="preserve">Dialog</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg563" approved="yes"> + <trans-unit id="_msg576" approved="yes"> <source xml:space="preserve">Sign Tx</source> <target xml:space="preserve">Sign Tx</target> <context-group purpose="location"><context context-type="linenumber">86</context></context-group> </trans-unit> - <trans-unit id="_msg564" approved="yes"> + <trans-unit id="_msg577" approved="yes"> <source xml:space="preserve">Broadcast Tx</source> <target xml:space="preserve">Broadcast Tx</target> <context-group purpose="location"><context context-type="linenumber">102</context></context-group> </trans-unit> - <trans-unit id="_msg565" approved="yes"> + <trans-unit id="_msg578" approved="yes"> <source xml:space="preserve">Copy to Clipboard</source> <target xml:space="preserve">Copy to Clipboard</target> <context-group purpose="location"><context context-type="linenumber">122</context></context-group> </trans-unit> - <trans-unit id="_msg566"> + <trans-unit id="_msg579" approved="yes"> <source xml:space="preserve">Save…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Save…</target> <context-group purpose="location"><context context-type="linenumber">129</context></context-group> </trans-unit> - <trans-unit id="_msg567" approved="yes"> + <trans-unit id="_msg580" approved="yes"> <source xml:space="preserve">Close</source> <target xml:space="preserve">Close</target> <context-group purpose="location"><context context-type="linenumber">136</context></context-group> @@ -3078,530 +3159,567 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../psbtoperationsdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="PSBTOperationsDialog"> - <trans-unit id="_msg568" approved="yes"> + <trans-unit id="_msg581" approved="yes"> <source xml:space="preserve">Failed to load transaction: %1</source> <target xml:space="preserve">Failed to load transaction: %1</target> - <context-group purpose="location"><context context-type="linenumber">55</context></context-group> + <context-group purpose="location"><context context-type="linenumber">58</context></context-group> </trans-unit> - <trans-unit id="_msg569" approved="yes"> + <trans-unit id="_msg582" approved="yes"> <source xml:space="preserve">Failed to sign transaction: %1</source> <target xml:space="preserve">Failed to sign transaction: %1</target> - <context-group purpose="location"><context context-type="linenumber">73</context></context-group> + <context-group purpose="location"><context context-type="linenumber">80</context></context-group> </trans-unit> - <trans-unit id="_msg570" approved="yes"> + <trans-unit id="_msg583" approved="yes"> <source xml:space="preserve">Could not sign any more inputs.</source> <target xml:space="preserve">Could not sign any more inputs.</target> - <context-group purpose="location"><context context-type="linenumber">81</context></context-group> + <context-group purpose="location"><context context-type="linenumber">88</context></context-group> </trans-unit> - <trans-unit id="_msg571" approved="yes"> + <trans-unit id="_msg584" approved="yes"> <source xml:space="preserve">Signed %1 inputs, but more signatures are still required.</source> <target xml:space="preserve">Signed %1 inputs, but more signatures are still required.</target> - <context-group purpose="location"><context context-type="linenumber">83</context></context-group> + <context-group purpose="location"><context context-type="linenumber">90</context></context-group> </trans-unit> - <trans-unit id="_msg572" approved="yes"> + <trans-unit id="_msg585" approved="yes"> <source xml:space="preserve">Signed transaction successfully. Transaction is ready to broadcast.</source> <target xml:space="preserve">Signed transaction successfully. Transaction is ready to broadcast.</target> - <context-group purpose="location"><context context-type="linenumber">86</context></context-group> + <context-group purpose="location"><context context-type="linenumber">93</context></context-group> </trans-unit> - <trans-unit id="_msg573" approved="yes"> + <trans-unit id="_msg586" approved="yes"> <source xml:space="preserve">Unknown error processing transaction.</source> <target xml:space="preserve">Unknown error processing transaction.</target> - <context-group purpose="location"><context context-type="linenumber">98</context></context-group> + <context-group purpose="location"><context context-type="linenumber">105</context></context-group> </trans-unit> - <trans-unit id="_msg574" approved="yes"> + <trans-unit id="_msg587" approved="yes"> <source xml:space="preserve">Transaction broadcast successfully! Transaction ID: %1</source> <target xml:space="preserve">Transaction broadcast successfully! Transaction ID: %1</target> - <context-group purpose="location"><context context-type="linenumber">108</context></context-group> + <context-group purpose="location"><context context-type="linenumber">115</context></context-group> </trans-unit> - <trans-unit id="_msg575" approved="yes"> + <trans-unit id="_msg588" approved="yes"> <source xml:space="preserve">Transaction broadcast failed: %1</source> <target xml:space="preserve">Transaction broadcast failed: %1</target> - <context-group purpose="location"><context context-type="linenumber">111</context></context-group> + <context-group purpose="location"><context context-type="linenumber">118</context></context-group> </trans-unit> - <trans-unit id="_msg576" approved="yes"> + <trans-unit id="_msg589" approved="yes"> <source xml:space="preserve">PSBT copied to clipboard.</source> <target xml:space="preserve">PSBT copied to clipboard.</target> - <context-group purpose="location"><context context-type="linenumber">120</context></context-group> + <context-group purpose="location"><context context-type="linenumber">127</context></context-group> </trans-unit> - <trans-unit id="_msg577" approved="yes"> + <trans-unit id="_msg590" approved="yes"> <source xml:space="preserve">Save Transaction Data</source> <target xml:space="preserve">Save Transaction Data</target> - <context-group purpose="location"><context context-type="linenumber">143</context></context-group> + <context-group purpose="location"><context context-type="linenumber">150</context></context-group> </trans-unit> - <trans-unit id="_msg578" approved="yes"> + <trans-unit id="_msg591" approved="yes"> <source xml:space="preserve">Partially Signed Transaction (Binary)</source> <target xml:space="preserve">Partially Signed Transaction (Binary)</target> - <context-group purpose="location"><context context-type="linenumber">145</context></context-group> + <context-group purpose="location"><context context-type="linenumber">152</context></context-group> <note annotates="source" from="developer">Expanded name of the binary PSBT file format. See: BIP 174.</note> </trans-unit> - <trans-unit id="_msg579" approved="yes"> + <trans-unit id="_msg592" approved="yes"> <source xml:space="preserve">PSBT saved to disk.</source> <target xml:space="preserve">PSBT saved to disk.</target> - <context-group purpose="location"><context context-type="linenumber">152</context></context-group> + <context-group purpose="location"><context context-type="linenumber">159</context></context-group> </trans-unit> - <trans-unit id="_msg580" approved="yes"> + <trans-unit id="_msg593" approved="yes"> <source xml:space="preserve"> * Sends %1 to %2</source> <target xml:space="preserve"> * Sends %1 to %2</target> - <context-group purpose="location"><context context-type="linenumber">168</context></context-group> + <context-group purpose="location"><context context-type="linenumber">175</context></context-group> </trans-unit> - <trans-unit id="_msg581" approved="yes"> + <trans-unit id="_msg594"> + <source xml:space="preserve">own address</source> + <target xml:space="preserve" state="needs-review-translation">own address</target> + <context-group purpose="location"><context context-type="linenumber">179</context></context-group> + </trans-unit> + <trans-unit id="_msg595" approved="yes"> <source xml:space="preserve">Unable to calculate transaction fee or total transaction amount.</source> <target xml:space="preserve">Unable to calculate transaction fee or total transaction amount.</target> - <context-group purpose="location"><context context-type="linenumber">178</context></context-group> + <context-group purpose="location"><context context-type="linenumber">187</context></context-group> </trans-unit> - <trans-unit id="_msg582" approved="yes"> + <trans-unit id="_msg596" approved="yes"> <source xml:space="preserve">Pays transaction fee: </source> <target xml:space="preserve">Pays transaction fee: </target> - <context-group purpose="location"><context context-type="linenumber">180</context></context-group> + <context-group purpose="location"><context context-type="linenumber">189</context></context-group> </trans-unit> - <trans-unit id="_msg583" approved="yes"> + <trans-unit id="_msg597" approved="yes"> <source xml:space="preserve">Total Amount</source> <target xml:space="preserve">Total Amount</target> - <context-group purpose="location"><context context-type="linenumber">192</context></context-group> + <context-group purpose="location"><context context-type="linenumber">201</context></context-group> </trans-unit> - <trans-unit id="_msg584" approved="yes"> + <trans-unit id="_msg598" approved="yes"> <source xml:space="preserve">or</source> <target xml:space="preserve">or</target> - <context-group purpose="location"><context context-type="linenumber">195</context></context-group> + <context-group purpose="location"><context context-type="linenumber">204</context></context-group> </trans-unit> - <trans-unit id="_msg585" approved="yes"> + <trans-unit id="_msg599" approved="yes"> <source xml:space="preserve">Transaction has %1 unsigned inputs.</source> <target xml:space="preserve">Transaction has %1 unsigned inputs.</target> - <context-group purpose="location"><context context-type="linenumber">201</context></context-group> + <context-group purpose="location"><context context-type="linenumber">210</context></context-group> </trans-unit> - <trans-unit id="_msg586" approved="yes"> + <trans-unit id="_msg600" approved="yes"> <source xml:space="preserve">Transaction is missing some information about inputs.</source> <target xml:space="preserve">Transaction is missing some information about inputs.</target> - <context-group purpose="location"><context context-type="linenumber">243</context></context-group> + <context-group purpose="location"><context context-type="linenumber">256</context></context-group> </trans-unit> - <trans-unit id="_msg587" approved="yes"> + <trans-unit id="_msg601" approved="yes"> <source xml:space="preserve">Transaction still needs signature(s).</source> <target xml:space="preserve">Transaction still needs signature(s).</target> - <context-group purpose="location"><context context-type="linenumber">247</context></context-group> + <context-group purpose="location"><context context-type="linenumber">260</context></context-group> </trans-unit> - <trans-unit id="_msg588" approved="yes"> + <trans-unit id="_msg602"> + <source xml:space="preserve">(But no wallet is loaded.)</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">263</context></context-group> + </trans-unit> + <trans-unit id="_msg603" approved="yes"> <source xml:space="preserve">(But this wallet cannot sign transactions.)</source> <target xml:space="preserve">(But this wallet cannot sign transactions.)</target> - <context-group purpose="location"><context context-type="linenumber">250</context></context-group> + <context-group purpose="location"><context context-type="linenumber">266</context></context-group> </trans-unit> - <trans-unit id="_msg589" approved="yes"> + <trans-unit id="_msg604" approved="yes"> <source xml:space="preserve">(But this wallet does not have the right keys.)</source> <target xml:space="preserve">(But this wallet does not have the right keys.)</target> - <context-group purpose="location"><context context-type="linenumber">253</context></context-group> + <context-group purpose="location"><context context-type="linenumber">269</context></context-group> </trans-unit> - <trans-unit id="_msg590" approved="yes"> + <trans-unit id="_msg605" approved="yes"> <source xml:space="preserve">Transaction is fully signed and ready for broadcast.</source> <target xml:space="preserve">Transaction is fully signed and ready for broadcast.</target> - <context-group purpose="location"><context context-type="linenumber">261</context></context-group> + <context-group purpose="location"><context context-type="linenumber">277</context></context-group> </trans-unit> - <trans-unit id="_msg591" approved="yes"> + <trans-unit id="_msg606" approved="yes"> <source xml:space="preserve">Transaction status is unknown.</source> <target xml:space="preserve">Transaction status is unknown.</target> - <context-group purpose="location"><context context-type="linenumber">265</context></context-group> + <context-group purpose="location"><context context-type="linenumber">281</context></context-group> </trans-unit> </group> </body></file> <file original="../paymentserver.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="PaymentServer"> - <trans-unit id="_msg592" approved="yes"> + <trans-unit id="_msg607" approved="yes"> <source xml:space="preserve">Payment request error</source> <target xml:space="preserve">Payment request error</target> - <context-group purpose="location"><context context-type="linenumber">174</context></context-group> + <context-group purpose="location"><context context-type="linenumber">153</context></context-group> </trans-unit> - <trans-unit id="_msg593" approved="yes"> + <trans-unit id="_msg608" approved="yes"> <source xml:space="preserve">Cannot start dash: click-to-pay handler</source> <target xml:space="preserve">Cannot start dash: click-to-pay handler</target> - <context-group purpose="location"><context context-type="linenumber">175</context></context-group> + <context-group purpose="location"><context context-type="linenumber">154</context></context-group> </trans-unit> - <trans-unit id="_msg594" approved="yes"> + <trans-unit id="_msg609" approved="yes"> <source xml:space="preserve">URI handling</source> <target xml:space="preserve">URI handling</target> + <context-group purpose="location"><context context-type="linenumber">204</context></context-group> + <context-group purpose="location"><context context-type="linenumber">220</context></context-group> <context-group purpose="location"><context context-type="linenumber">225</context></context-group> - <context-group purpose="location"><context context-type="linenumber">241</context></context-group> - <context-group purpose="location"><context context-type="linenumber">246</context></context-group> - <context-group purpose="location"><context context-type="linenumber">254</context></context-group> + <context-group purpose="location"><context context-type="linenumber">233</context></context-group> </trans-unit> - <trans-unit id="_msg595" approved="yes"> + <trans-unit id="_msg610" approved="yes"> <source xml:space="preserve">'dash://' is not a valid URI. Use 'dash:' instead.</source> <target xml:space="preserve">'dash://' is not a valid URI. Use 'dash:' instead.</target> - <context-group purpose="location"><context context-type="linenumber">225</context></context-group> - </trans-unit> - <trans-unit id="_msg596" approved="yes"> - <source xml:space="preserve">Cannot process payment request as BIP70 is no longer supported.</source> - <target xml:space="preserve">Cannot process payment request as BIP70 is no longer supported.</target> - <context-group purpose="location"><context context-type="linenumber">242</context></context-group> - <context-group purpose="location"><context context-type="linenumber">265</context></context-group> + <context-group purpose="location"><context context-type="linenumber">204</context></context-group> </trans-unit> - <trans-unit id="_msg597" approved="yes"> - <source xml:space="preserve">Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> - <target xml:space="preserve">Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</target> - <context-group purpose="location"><context context-type="linenumber">243</context></context-group> - <context-group purpose="location"><context context-type="linenumber">266</context></context-group> + <trans-unit id="_msg611"> + <source xml:space="preserve">Cannot process payment request as BIP70 is no longer supported. +Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">221</context></context-group> + <context-group purpose="location"><context context-type="linenumber">244</context></context-group> </trans-unit> - <trans-unit id="_msg598" approved="yes"> + <trans-unit id="_msg612" approved="yes"> <source xml:space="preserve">URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</source> <target xml:space="preserve">URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</target> - <context-group purpose="location"><context context-type="linenumber">255</context></context-group> + <context-group purpose="location"><context context-type="linenumber">234</context></context-group> </trans-unit> - <trans-unit id="_msg599" approved="yes"> + <trans-unit id="_msg613" approved="yes"> <source xml:space="preserve">Payment request file handling</source> <target xml:space="preserve">Payment request file handling</target> - <context-group purpose="location"><context context-type="linenumber">264</context></context-group> + <context-group purpose="location"><context context-type="linenumber">243</context></context-group> </trans-unit> </group> </body></file> <file original="../peertablemodel.h" datatype="c" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="PeerTableModel"> - <trans-unit id="_msg600" approved="yes"> + <trans-unit id="_msg614" approved="yes"> <source xml:space="preserve">User Agent</source> <target xml:space="preserve">User Agent</target> - <context-group purpose="location"><context context-type="linenumber">115</context></context-group> + <context-group purpose="location"><context context-type="linenumber">112</context></context-group> <note annotates="source" from="developer">Title of Peers Table column which contains the peer's User Agent string.</note> </trans-unit> - <trans-unit id="_msg601" approved="yes"> + <trans-unit id="_msg615" approved="yes"> <source xml:space="preserve">Ping</source> <target xml:space="preserve">Ping</target> - <context-group purpose="location"><context context-type="linenumber">106</context></context-group> + <context-group purpose="location"><context context-type="linenumber">103</context></context-group> <note annotates="source" from="developer">Title of Peers Table column which indicates the current latency of the connection with the peer.</note> </trans-unit> - <trans-unit id="_msg602"> + <trans-unit id="_msg616" approved="yes"> <source xml:space="preserve">Peer</source> + <target xml:space="preserve">Peer</target> + <context-group purpose="location"><context context-type="linenumber">85</context></context-group> + <note annotates="source" from="developer">Title of Peers Table column which contains a unique number used to identify a connection.</note> + </trans-unit> + <trans-unit id="_msg617"> + <source xml:space="preserve">Age</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">88</context></context-group> + <note annotates="source" from="developer">Title of Peers Table column which indicates the duration (length of time) since the peer connection started.</note> + </trans-unit> + <trans-unit id="_msg618"> + <source xml:space="preserve">Direction</source> <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">94</context></context-group> - <note annotates="source" from="developer">Title of Peers Table column which contains a unique number used to identify a connection.</note> + <note annotates="source" from="developer">Title of Peers Table column which indicates the direction the peer connection was initiated from.</note> </trans-unit> - <trans-unit id="_msg603"> + <trans-unit id="_msg619" approved="yes"> <source xml:space="preserve">Type</source> - <target xml:space="preserve" state="needs-review-translation">Type</target> - <context-group purpose="location"><context context-type="linenumber">100</context></context-group> + <target xml:space="preserve">Type</target> + <context-group purpose="location"><context context-type="linenumber">97</context></context-group> <note annotates="source" from="developer">Title of Peers Table column which describes the type of peer connection. The "type" describes why the connection exists.</note> </trans-unit> - <trans-unit id="_msg604" approved="yes"> + <trans-unit id="_msg620" approved="yes"> <source xml:space="preserve">Sent</source> <target xml:space="preserve">Sent</target> - <context-group purpose="location"><context context-type="linenumber">109</context></context-group> + <context-group purpose="location"><context context-type="linenumber">106</context></context-group> <note annotates="source" from="developer">Title of Peers Table column which indicates the total amount of network information we have sent to the peer.</note> </trans-unit> - <trans-unit id="_msg605" approved="yes"> + <trans-unit id="_msg621" approved="yes"> <source xml:space="preserve">Received</source> <target xml:space="preserve">Received</target> - <context-group purpose="location"><context context-type="linenumber">112</context></context-group> + <context-group purpose="location"><context context-type="linenumber">109</context></context-group> <note annotates="source" from="developer">Title of Peers Table column which indicates the total amount of network information we have received from the peer.</note> </trans-unit> - <trans-unit id="_msg606" approved="yes"> + <trans-unit id="_msg622" approved="yes"> <source xml:space="preserve">Address</source> <target xml:space="preserve">Address</target> - <context-group purpose="location"><context context-type="linenumber">97</context></context-group> + <context-group purpose="location"><context context-type="linenumber">91</context></context-group> <note annotates="source" from="developer">Title of Peers Table column which contains the IP/Onion/I2P address of the connected peer.</note> </trans-unit> - <trans-unit id="_msg607" approved="yes"> + <trans-unit id="_msg623" approved="yes"> <source xml:space="preserve">Network</source> <target xml:space="preserve">Network</target> - <context-group purpose="location"><context context-type="linenumber">103</context></context-group> + <context-group purpose="location"><context context-type="linenumber">100</context></context-group> <note annotates="source" from="developer">Title of Peers Table column which states the network the peer connected through.</note> </trans-unit> </group> </body></file> + <file original="../peertablemodel.cpp" datatype="cpp" source-language="en" target-language="en"><body> + <group restype="x-trolltech-linguist-context" resname="PeerTableModel"> + <trans-unit id="_msg624"> + <source xml:space="preserve">Inbound</source> + <target xml:space="preserve" state="needs-review-translation">Inbound</target> + <context-group purpose="location"><context context-type="linenumber">81</context></context-group> + <note annotates="source" from="developer">An Inbound Connection from a Peer.</note> + </trans-unit> + <trans-unit id="_msg625"> + <source xml:space="preserve">Outbound</source> + <target xml:space="preserve" state="needs-review-translation">Outbound</target> + <context-group purpose="location"><context context-type="linenumber">83</context></context-group> + <note annotates="source" from="developer">An Outbound Connection to a Peer.</note> + </trans-unit> + </group> + </body></file> <file original="../bitcoinunits.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="QObject"> - <trans-unit id="_msg608" approved="yes"> + <trans-unit id="_msg626" approved="yes"> <source xml:space="preserve">Amount</source> <target xml:space="preserve">Amount</target> - <context-group purpose="location"><context context-type="linenumber">256</context></context-group> + <context-group purpose="location"><context context-type="linenumber">258</context></context-group> </trans-unit> </group> </body></file> <file original="../guiutil.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="QObject"> - <trans-unit id="_msg609" approved="yes"> + <trans-unit id="_msg627" approved="yes"> <source xml:space="preserve">Enter a Dash address (e.g. %1)</source> <target xml:space="preserve">Enter a Dash address (e.g. %1)</target> - <context-group purpose="location"><context context-type="linenumber">295</context></context-group> + <context-group purpose="location"><context context-type="linenumber">301</context></context-group> </trans-unit> - <trans-unit id="_msg610" approved="yes"> + <trans-unit id="_msg628" approved="yes"> <source xml:space="preserve">Appearance Setup</source> <target xml:space="preserve">Appearance Setup</target> - <context-group purpose="location"><context context-type="linenumber">307</context></context-group> + <context-group purpose="location"><context context-type="linenumber">313</context></context-group> </trans-unit> - <trans-unit id="_msg611" approved="yes"> + <trans-unit id="_msg629" approved="yes"> <source xml:space="preserve">Please choose your preferred settings for the appearance of %1</source> <target xml:space="preserve">Please choose your preferred settings for the appearance of %1</target> - <context-group purpose="location"><context context-type="linenumber">310</context></context-group> + <context-group purpose="location"><context context-type="linenumber">316</context></context-group> </trans-unit> - <trans-unit id="_msg612" approved="yes"> + <trans-unit id="_msg630" approved="yes"> <source xml:space="preserve">This can also be adjusted later in the "Appearance" tab of the preferences.</source> <target xml:space="preserve">This can also be adjusted later in the "Appearance" tab of the preferences.</target> - <context-group purpose="location"><context context-type="linenumber">313</context></context-group> + <context-group purpose="location"><context context-type="linenumber">319</context></context-group> </trans-unit> - <trans-unit id="_msg613"> + <trans-unit id="_msg631" approved="yes"> <source xml:space="preserve">Ctrl+W</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">632</context></context-group> + <target xml:space="preserve">Ctrl+W</target> + <context-group purpose="location"><context context-type="linenumber">643</context></context-group> </trans-unit> - <trans-unit id="_msg614" approved="yes"> + <trans-unit id="_msg632" approved="yes"> <source xml:space="preserve">Unroutable</source> <target xml:space="preserve">Unroutable</target> - <context-group purpose="location"><context context-type="linenumber">1666</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1677</context></context-group> </trans-unit> - <trans-unit id="_msg615" approved="yes"> + <trans-unit id="_msg633" approved="yes"> <source xml:space="preserve">Internal</source> <target xml:space="preserve">Internal</target> - <context-group purpose="location"><context context-type="linenumber">1672</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1683</context></context-group> </trans-unit> - <trans-unit id="_msg616"> + <trans-unit id="_msg634" approved="yes"> <source xml:space="preserve">Inbound</source> - <target xml:space="preserve" state="needs-review-translation">Inbound</target> - <context-group purpose="location"><context context-type="linenumber">1685</context></context-group> + <target xml:space="preserve">Inbound</target> + <context-group purpose="location"><context context-type="linenumber">1696</context></context-group> <note annotates="source" from="developer">An inbound connection from a peer. An inbound connection is a connection initiated by a peer.</note> </trans-unit> - <trans-unit id="_msg617"> + <trans-unit id="_msg635" approved="yes"> <source xml:space="preserve">Outbound</source> - <target xml:space="preserve" state="needs-review-translation">Outbound</target> - <context-group purpose="location"><context context-type="linenumber">1688</context></context-group> + <target xml:space="preserve">Outbound</target> + <context-group purpose="location"><context context-type="linenumber">1699</context></context-group> <note annotates="source" from="developer">An outbound connection to a peer. An outbound connection is a connection initiated by us.</note> </trans-unit> - <trans-unit id="_msg618"> + <trans-unit id="_msg636" approved="yes"> <source xml:space="preserve">Full Relay</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1693</context></context-group> + <target xml:space="preserve">Full Relay</target> + <context-group purpose="location"><context context-type="linenumber">1704</context></context-group> <note annotates="source" from="developer">Peer connection type that relays all network information.</note> </trans-unit> - <trans-unit id="_msg619"> + <trans-unit id="_msg637" approved="yes"> <source xml:space="preserve">Block Relay</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1696</context></context-group> + <target xml:space="preserve">Block Relay</target> + <context-group purpose="location"><context context-type="linenumber">1707</context></context-group> <note annotates="source" from="developer">Peer connection type that relays network information about blocks and not transactions or addresses.</note> </trans-unit> - <trans-unit id="_msg620"> + <trans-unit id="_msg638" approved="yes"> <source xml:space="preserve">Manual</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1698</context></context-group> + <target xml:space="preserve">Manual</target> + <context-group purpose="location"><context context-type="linenumber">1709</context></context-group> <note annotates="source" from="developer">Peer connection type established manually through one of several methods.</note> </trans-unit> - <trans-unit id="_msg621"> + <trans-unit id="_msg639" approved="yes"> <source xml:space="preserve">Feeler</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1700</context></context-group> + <target xml:space="preserve">Feeler</target> + <context-group purpose="location"><context context-type="linenumber">1711</context></context-group> <note annotates="source" from="developer">Short-lived peer connection type that tests the aliveness of known addresses.</note> </trans-unit> - <trans-unit id="_msg622"> + <trans-unit id="_msg640" approved="yes"> <source xml:space="preserve">Address Fetch</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1702</context></context-group> + <target xml:space="preserve">Address Fetch</target> + <context-group purpose="location"><context context-type="linenumber">1713</context></context-group> <note annotates="source" from="developer">Short-lived peer connection type that solicits known addresses from a peer.</note> </trans-unit> - <trans-unit id="_msg623" approved="yes"> + <trans-unit id="_msg641" approved="yes"> <source xml:space="preserve">%1 d</source> <target xml:space="preserve">%1 d</target> - <context-group purpose="location"><context context-type="linenumber">1715</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1726</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1738</context></context-group> </trans-unit> - <trans-unit id="_msg624" approved="yes"> + <trans-unit id="_msg642" approved="yes"> <source xml:space="preserve">%1 h</source> <target xml:space="preserve">%1 h</target> - <context-group purpose="location"><context context-type="linenumber">1716</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1727</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1739</context></context-group> </trans-unit> - <trans-unit id="_msg625" approved="yes"> + <trans-unit id="_msg643" approved="yes"> <source xml:space="preserve">%1 m</source> <target xml:space="preserve">%1 m</target> - <context-group purpose="location"><context context-type="linenumber">1717</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1728</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1740</context></context-group> </trans-unit> - <trans-unit id="_msg626" approved="yes"> + <trans-unit id="_msg644" approved="yes"> <source xml:space="preserve">%1 s</source> <target xml:space="preserve">%1 s</target> - <context-group purpose="location"><context context-type="linenumber">1719</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1746</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1730</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1741</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1767</context></context-group> </trans-unit> - <trans-unit id="_msg627" approved="yes"> + <trans-unit id="_msg645" approved="yes"> <source xml:space="preserve">None</source> <target xml:space="preserve">None</target> - <context-group purpose="location"><context context-type="linenumber">1734</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1755</context></context-group> </trans-unit> - <trans-unit id="_msg628" approved="yes"> + <trans-unit id="_msg646" approved="yes"> <source xml:space="preserve">N/A</source> <target xml:space="preserve">N/A</target> - <context-group purpose="location"><context context-type="linenumber">1740</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1761</context></context-group> </trans-unit> - <trans-unit id="_msg629" approved="yes"> + <trans-unit id="_msg647" approved="yes"> <source xml:space="preserve">%1 ms</source> <target xml:space="preserve">%1 ms</target> - <context-group purpose="location"><context context-type="linenumber">1741</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1762</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1759</context></context-group> - <trans-unit id="_msg630[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1780</context></context-group> + <trans-unit id="_msg648[0]" approved="yes"> <source xml:space="preserve">%n second(s)</source> <target xml:space="preserve">%n second</target> </trans-unit> - <trans-unit id="_msg630[1]" approved="yes"> + <trans-unit id="_msg648[1]" approved="yes"> <source xml:space="preserve">%n second(s)</source> <target xml:space="preserve">%n seconds</target> </trans-unit> </group> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1763</context></context-group> - <trans-unit id="_msg631[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1784</context></context-group> + <trans-unit id="_msg649[0]" approved="yes"> <source xml:space="preserve">%n minute(s)</source> <target xml:space="preserve">%n minute</target> </trans-unit> - <trans-unit id="_msg631[1]" approved="yes"> + <trans-unit id="_msg649[1]" approved="yes"> <source xml:space="preserve">%n minute(s)</source> <target xml:space="preserve">%n minutes</target> </trans-unit> </group> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1767</context></context-group> - <trans-unit id="_msg632[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1788</context></context-group> + <trans-unit id="_msg650[0]" approved="yes"> <source xml:space="preserve">%n hour(s)</source> <target xml:space="preserve">%n hour</target> </trans-unit> - <trans-unit id="_msg632[1]" approved="yes"> + <trans-unit id="_msg650[1]" approved="yes"> <source xml:space="preserve">%n hour(s)</source> <target xml:space="preserve">%n hours</target> </trans-unit> </group> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1771</context></context-group> - <trans-unit id="_msg633[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1792</context></context-group> + <trans-unit id="_msg651[0]" approved="yes"> <source xml:space="preserve">%n day(s)</source> <target xml:space="preserve">%n day</target> </trans-unit> - <trans-unit id="_msg633[1]" approved="yes"> + <trans-unit id="_msg651[1]" approved="yes"> <source xml:space="preserve">%n day(s)</source> <target xml:space="preserve">%n days</target> </trans-unit> </group> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1775</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1781</context></context-group> - <trans-unit id="_msg634[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1796</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1802</context></context-group> + <trans-unit id="_msg652[0]" approved="yes"> <source xml:space="preserve">%n week(s)</source> <target xml:space="preserve">%n week</target> </trans-unit> - <trans-unit id="_msg634[1]" approved="yes"> + <trans-unit id="_msg652[1]" approved="yes"> <source xml:space="preserve">%n week(s)</source> <target xml:space="preserve">%n weeks</target> </trans-unit> </group> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">1781</context></context-group> - <trans-unit id="_msg635[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">1802</context></context-group> + <trans-unit id="_msg653[0]" approved="yes"> <source xml:space="preserve">%n year(s)</source> <target xml:space="preserve">%n year</target> </trans-unit> - <trans-unit id="_msg635[1]" approved="yes"> + <trans-unit id="_msg653[1]" approved="yes"> <source xml:space="preserve">%n year(s)</source> <target xml:space="preserve">%n years</target> </trans-unit> </group> - <trans-unit id="_msg636" approved="yes"> + <trans-unit id="_msg654" approved="yes"> <source xml:space="preserve">%1 and %2</source> <target xml:space="preserve">%1 and %2</target> - <context-group purpose="location"><context context-type="linenumber">1781</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1802</context></context-group> </trans-unit> - <trans-unit id="_msg637" approved="yes"> + <trans-unit id="_msg655" approved="yes"> <source xml:space="preserve">%1 B</source> <target xml:space="preserve">%1 B</target> - <context-group purpose="location"><context context-type="linenumber">1789</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1810</context></context-group> </trans-unit> - <trans-unit id="_msg638" approved="yes"> - <source xml:space="preserve">%1 KB</source> - <target xml:space="preserve">%1 KB</target> - <context-group purpose="location"><context context-type="linenumber">1791</context></context-group> + <trans-unit id="_msg656"> + <source xml:space="preserve">%1 kB</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">1812</context></context-group> </trans-unit> - <trans-unit id="_msg639" approved="yes"> + <trans-unit id="_msg657" approved="yes"> <source xml:space="preserve">%1 MB</source> <target xml:space="preserve">%1 MB</target> - <context-group purpose="location"><context context-type="linenumber">1793</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1814</context></context-group> </trans-unit> - <trans-unit id="_msg640" approved="yes"> + <trans-unit id="_msg658" approved="yes"> <source xml:space="preserve">%1 GB</source> <target xml:space="preserve">%1 GB</target> - <context-group purpose="location"><context context-type="linenumber">1795</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1816</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/qrdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="QRDialog"> - <trans-unit id="_msg641" approved="yes"> + <trans-unit id="_msg659" approved="yes"> <source xml:space="preserve">QR-Code Title</source> <target xml:space="preserve">QR-Code Title</target> <context-group purpose="location"><context context-type="linenumber">17</context></context-group> </trans-unit> - <trans-unit id="_msg642" approved="yes"> + <trans-unit id="_msg660" approved="yes"> <source xml:space="preserve">QR Code</source> <target xml:space="preserve">QR Code</target> <context-group purpose="location"><context context-type="linenumber">39</context></context-group> </trans-unit> - <trans-unit id="_msg643"> + <trans-unit id="_msg661" approved="yes"> <source xml:space="preserve">&Save Image…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">&Save Image…</target> <context-group purpose="location"><context context-type="linenumber">85</context></context-group> </trans-unit> </group> </body></file> <file original="../qrimagewidget.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="QRImageWidget"> - <trans-unit id="_msg644"> + <trans-unit id="_msg662" approved="yes"> <source xml:space="preserve">&Save Image…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">&Save Image…</target> <context-group purpose="location"><context context-type="linenumber">30</context></context-group> </trans-unit> - <trans-unit id="_msg645" approved="yes"> + <trans-unit id="_msg663" approved="yes"> <source xml:space="preserve">&Copy Image</source> <target xml:space="preserve">&Copy Image</target> - <context-group purpose="location"><context context-type="linenumber">33</context></context-group> + <context-group purpose="location"><context context-type="linenumber">31</context></context-group> </trans-unit> - <trans-unit id="_msg646" approved="yes"> + <trans-unit id="_msg664" approved="yes"> <source xml:space="preserve">Resulting URI too long, try to reduce the text for label / message.</source> <target xml:space="preserve">Resulting URI too long, try to reduce the text for label / message.</target> - <context-group purpose="location"><context context-type="linenumber">46</context></context-group> + <context-group purpose="location"><context context-type="linenumber">42</context></context-group> </trans-unit> - <trans-unit id="_msg647" approved="yes"> + <trans-unit id="_msg665" approved="yes"> <source xml:space="preserve">Error encoding URI into QR Code.</source> <target xml:space="preserve">Error encoding URI into QR Code.</target> - <context-group purpose="location"><context context-type="linenumber">53</context></context-group> + <context-group purpose="location"><context context-type="linenumber">49</context></context-group> </trans-unit> - <trans-unit id="_msg648" approved="yes"> + <trans-unit id="_msg666" approved="yes"> <source xml:space="preserve">QR code support not available.</source> <target xml:space="preserve">QR code support not available.</target> - <context-group purpose="location"><context context-type="linenumber">108</context></context-group> + <context-group purpose="location"><context context-type="linenumber">104</context></context-group> </trans-unit> - <trans-unit id="_msg649" approved="yes"> + <trans-unit id="_msg667" approved="yes"> <source xml:space="preserve">Save QR Code</source> <target xml:space="preserve">Save QR Code</target> - <context-group purpose="location"><context context-type="linenumber">138</context></context-group> + <context-group purpose="location"><context context-type="linenumber">134</context></context-group> </trans-unit> - <trans-unit id="_msg650" approved="yes"> + <trans-unit id="_msg668" approved="yes"> <source xml:space="preserve">PNG Image</source> <target xml:space="preserve">PNG Image</target> - <context-group purpose="location"><context context-type="linenumber">141</context></context-group> - <note annotates="source" from="developer">Expanded name of the PNG file format. See https://en.wikipedia.org/wiki/Portable_Network_Graphics</note> + <context-group purpose="location"><context context-type="linenumber">137</context></context-group> + <note annotates="source" from="developer">Expanded name of the PNG file format. See: https://en.wikipedia.org/wiki/Portable_Network_Graphics.</note> </trans-unit> </group> </body></file> <file original="../forms/debugwindow.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="RPCConsole"> - <trans-unit id="_msg651" approved="yes"> + <trans-unit id="_msg669" approved="yes"> <source xml:space="preserve">Tools window</source> <target xml:space="preserve">Tools window</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg652" approved="yes"> + <trans-unit id="_msg670" approved="yes"> <source xml:space="preserve">&Information</source> <target xml:space="preserve">&Information</target> <context-group purpose="location"><context context-type="linenumber">44</context></context-group> </trans-unit> - <trans-unit id="_msg653" approved="yes"> + <trans-unit id="_msg671" approved="yes"> <source xml:space="preserve">General</source> <target xml:space="preserve">General</target> <context-group purpose="location"><context context-type="linenumber">112</context></context-group> </trans-unit> - <trans-unit id="_msg654" approved="yes"> + <trans-unit id="_msg672" approved="yes"> <source xml:space="preserve">Name</source> <target xml:space="preserve">Name</target> <context-group purpose="location"><context context-type="linenumber">256</context></context-group> </trans-unit> - <trans-unit id="_msg655" approved="yes"> + <trans-unit id="_msg673" approved="yes"> <source xml:space="preserve">N/A</source> <target xml:space="preserve">N/A</target> <context-group purpose="location"><context context-type="linenumber">129</context></context-group> @@ -3624,772 +3742,843 @@ https://explore.transifex.com/dash/dash/</source> <context-group purpose="location"><context context-type="linenumber">946</context></context-group> <context-group purpose="location"><context context-type="linenumber">969</context></context-group> <context-group purpose="location"><context context-type="linenumber">995</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1018</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1044</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1067</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1090</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1116</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1021</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1047</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1070</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1096</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1119</context></context-group> <context-group purpose="location"><context context-type="linenumber">1142</context></context-group> <context-group purpose="location"><context context-type="linenumber">1168</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1191</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1214</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1237</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1260</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1286</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1194</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1220</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1243</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1266</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1289</context></context-group> <context-group purpose="location"><context context-type="linenumber">1312</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1335</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1358</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1381</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1404</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1427</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1453</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1476</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1499</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1525</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1338</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1364</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1387</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1410</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1433</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1456</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1479</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1505</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1528</context></context-group> <context-group purpose="location"><context context-type="linenumber">1551</context></context-group> <context-group purpose="location"><context context-type="linenumber">1577</context></context-group> <context-group purpose="location"><context context-type="linenumber">1603</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../rpcconsole.cpp</context><context context-type="linenumber">1324</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../rpcconsole.cpp</context><context context-type="linenumber">1332</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../rpcconsole.cpp</context><context context-type="linenumber">1336</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1629</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1655</context></context-group> + <context-group purpose="location"><context context-type="sourcefile">../rpcconsole.h</context><context context-type="linenumber">156</context></context-group> </trans-unit> - <trans-unit id="_msg656" approved="yes"> + <trans-unit id="_msg674" approved="yes"> <source xml:space="preserve">Number of connections</source> <target xml:space="preserve">Number of connections</target> <context-group purpose="location"><context context-type="linenumber">279</context></context-group> </trans-unit> - <trans-unit id="_msg657" approved="yes"> + <trans-unit id="_msg675" approved="yes"> <source xml:space="preserve">&Open</source> <target xml:space="preserve">&Open</target> <context-group purpose="location"><context context-type="linenumber">545</context></context-group> </trans-unit> - <trans-unit id="_msg658" approved="yes"> + <trans-unit id="_msg676" approved="yes"> <source xml:space="preserve">Startup time</source> <target xml:space="preserve">Startup time</target> <context-group purpose="location"><context context-type="linenumber">226</context></context-group> </trans-unit> - <trans-unit id="_msg659" approved="yes"> + <trans-unit id="_msg677" approved="yes"> <source xml:space="preserve">Network</source> <target xml:space="preserve">Network</target> <context-group purpose="location"><context context-type="linenumber">249</context></context-group> - <context-group purpose="location"><context context-type="linenumber">985</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1037</context></context-group> </trans-unit> - <trans-unit id="_msg660" approved="yes"> + <trans-unit id="_msg678" approved="yes"> <source xml:space="preserve">Last block time</source> <target xml:space="preserve">Last block time</target> <context-group purpose="location"><context context-type="linenumber">372</context></context-group> </trans-unit> - <trans-unit id="_msg661" approved="yes"> + <trans-unit id="_msg679" approved="yes"> <source xml:space="preserve">Debug log file</source> <target xml:space="preserve">Debug log file</target> <context-group purpose="location"><context context-type="linenumber">535</context></context-group> </trans-unit> - <trans-unit id="_msg662" approved="yes"> + <trans-unit id="_msg680" approved="yes"> <source xml:space="preserve">Client version</source> <target xml:space="preserve">Client version</target> <context-group purpose="location"><context context-type="linenumber">119</context></context-group> </trans-unit> - <trans-unit id="_msg663" approved="yes"> + <trans-unit id="_msg681" approved="yes"> <source xml:space="preserve">Block chain</source> <target xml:space="preserve">Block chain</target> <context-group purpose="location"><context context-type="linenumber">342</context></context-group> </trans-unit> - <trans-unit id="_msg664" approved="yes"> + <trans-unit id="_msg682" approved="yes"> <source xml:space="preserve">Memory Pool</source> <target xml:space="preserve">Memory Pool</target> <context-group purpose="location"><context context-type="linenumber">464</context></context-group> </trans-unit> - <trans-unit id="_msg665" approved="yes"> + <trans-unit id="_msg683" approved="yes"> <source xml:space="preserve">Current number of transactions</source> <target xml:space="preserve">Current number of transactions</target> <context-group purpose="location"><context context-type="linenumber">471</context></context-group> </trans-unit> - <trans-unit id="_msg666" approved="yes"> + <trans-unit id="_msg684" approved="yes"> <source xml:space="preserve">Memory usage</source> <target xml:space="preserve">Memory usage</target> <context-group purpose="location"><context context-type="linenumber">494</context></context-group> </trans-unit> - <trans-unit id="_msg667" approved="yes"> + <trans-unit id="_msg685" approved="yes"> <source xml:space="preserve">&Console</source> <target xml:space="preserve">&Console</target> <context-group purpose="location"><context context-type="linenumber">54</context></context-group> </trans-unit> - <trans-unit id="_msg668" approved="yes"> + <trans-unit id="_msg686" approved="yes"> <source xml:space="preserve">Clear console</source> <target xml:space="preserve">Clear console</target> <context-group purpose="location"><context context-type="linenumber">654</context></context-group> </trans-unit> - <trans-unit id="_msg669" approved="yes"> + <trans-unit id="_msg687" approved="yes"> <source xml:space="preserve">&Network Traffic</source> <target xml:space="preserve">&Network Traffic</target> <context-group purpose="location"><context context-type="linenumber">64</context></context-group> </trans-unit> - <trans-unit id="_msg670" approved="yes"> + <trans-unit id="_msg688" approved="yes"> <source xml:space="preserve">Received</source> <target xml:space="preserve">Received</target> - <context-group purpose="location"><context context-type="linenumber">1394</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1446</context></context-group> </trans-unit> - <trans-unit id="_msg671" approved="yes"> + <trans-unit id="_msg689" approved="yes"> <source xml:space="preserve">Sent</source> <target xml:space="preserve">Sent</target> - <context-group purpose="location"><context context-type="linenumber">1371</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1423</context></context-group> </trans-unit> - <trans-unit id="_msg672" approved="yes"> + <trans-unit id="_msg690" approved="yes"> <source xml:space="preserve">&Peers</source> <target xml:space="preserve">&Peers</target> <context-group purpose="location"><context context-type="linenumber">74</context></context-group> </trans-unit> - <trans-unit id="_msg673" approved="yes"> + <trans-unit id="_msg691" approved="yes"> <source xml:space="preserve">Wallet:</source> <target xml:space="preserve">Wallet:</target> <context-group purpose="location"><context context-type="linenumber">608</context></context-group> </trans-unit> - <trans-unit id="_msg674" approved="yes"> + <trans-unit id="_msg692" approved="yes"> <source xml:space="preserve">Banned peers</source> <target xml:space="preserve">Banned peers</target> <context-group purpose="location"><context context-type="linenumber">842</context></context-group> </trans-unit> - <trans-unit id="_msg675" approved="yes"> + <trans-unit id="_msg693" approved="yes"> <source xml:space="preserve">Select a peer to view detailed information.</source> <target xml:space="preserve">Select a peer to view detailed information.</target> <context-group purpose="location"><context context-type="linenumber">905</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../rpcconsole.cpp</context><context context-type="linenumber">1292</context></context-group> + <context-group purpose="location"><context context-type="sourcefile">../rpcconsole.cpp</context><context context-type="linenumber">1275</context></context-group> </trans-unit> - <trans-unit id="_msg676" approved="yes"> + <trans-unit id="_msg694" approved="yes"> <source xml:space="preserve">Version</source> <target xml:space="preserve">Version</target> - <context-group purpose="location"><context context-type="linenumber">1057</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1109</context></context-group> </trans-unit> - <trans-unit id="_msg677"> + <trans-unit id="_msg695" approved="yes"> <source xml:space="preserve">Whether the peer requested us to relay transactions.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1129</context></context-group> + <target xml:space="preserve">Whether the peer requested us to relay transactions.</target> + <context-group purpose="location"><context context-type="linenumber">1181</context></context-group> </trans-unit> - <trans-unit id="_msg678"> + <trans-unit id="_msg696" approved="yes"> <source xml:space="preserve">Wants Tx Relay</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1132</context></context-group> + <target xml:space="preserve">Wants Tx Relay</target> + <context-group purpose="location"><context context-type="linenumber">1184</context></context-group> </trans-unit> - <trans-unit id="_msg679"> + <trans-unit id="_msg697" approved="yes"> <source xml:space="preserve">High bandwidth BIP152 compact block relay: %1</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1155</context></context-group> + <target xml:space="preserve">High bandwidth BIP152 compact block relay: %1</target> + <context-group purpose="location"><context context-type="linenumber">1207</context></context-group> </trans-unit> - <trans-unit id="_msg680"> + <trans-unit id="_msg698" approved="yes"> <source xml:space="preserve">High Bandwidth</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1158</context></context-group> + <target xml:space="preserve">High Bandwidth</target> + <context-group purpose="location"><context context-type="linenumber">1210</context></context-group> </trans-unit> - <trans-unit id="_msg681" approved="yes"> + <trans-unit id="_msg699" approved="yes"> <source xml:space="preserve">Starting Block</source> <target xml:space="preserve">Starting Block</target> - <context-group purpose="location"><context context-type="linenumber">1181</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1233</context></context-group> </trans-unit> - <trans-unit id="_msg682" approved="yes"> + <trans-unit id="_msg700" approved="yes"> <source xml:space="preserve">Synced Headers</source> <target xml:space="preserve">Synced Headers</target> - <context-group purpose="location"><context context-type="linenumber">1204</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1256</context></context-group> </trans-unit> - <trans-unit id="_msg683" approved="yes"> + <trans-unit id="_msg701" approved="yes"> <source xml:space="preserve">Synced Blocks</source> <target xml:space="preserve">Synced Blocks</target> - <context-group purpose="location"><context context-type="linenumber">1227</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1279</context></context-group> </trans-unit> - <trans-unit id="_msg684"> + <trans-unit id="_msg702" approved="yes"> <source xml:space="preserve">Elapsed time since a novel block passing initial validity checks was received from this peer.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1273</context></context-group> + <target xml:space="preserve">Elapsed time since a novel block passing initial validity checks was received from this peer.</target> + <context-group purpose="location"><context context-type="linenumber">1325</context></context-group> </trans-unit> - <trans-unit id="_msg685"> + <trans-unit id="_msg703" approved="yes"> <source xml:space="preserve">Last Block</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1276</context></context-group> + <target xml:space="preserve">Last Block</target> + <context-group purpose="location"><context context-type="linenumber">1328</context></context-group> </trans-unit> - <trans-unit id="_msg686"> + <trans-unit id="_msg704" approved="yes"> <source xml:space="preserve">Elapsed time since a novel transaction accepted into our mempool was received from this peer.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1299</context></context-group> + <target xml:space="preserve">Elapsed time since a novel transaction accepted into our mempool was received from this peer.</target> + <context-group purpose="location"><context context-type="linenumber">1351</context></context-group> <note annotates="source" from="developer">Tooltip text for the Last Transaction field in the peer details area.</note> </trans-unit> - <trans-unit id="_msg687"> + <trans-unit id="_msg705" approved="yes"> <source xml:space="preserve">Last Transaction</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1302</context></context-group> + <target xml:space="preserve">Last Transaction</target> + <context-group purpose="location"><context context-type="linenumber">1354</context></context-group> </trans-unit> - <trans-unit id="_msg688" approved="yes"> + <trans-unit id="_msg706" approved="yes"> <source xml:space="preserve">The mapped Autonomous System used for diversifying peer selection.</source> <target xml:space="preserve">The mapped Autonomous System used for diversifying peer selection.</target> - <context-group purpose="location"><context context-type="linenumber">1512</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1564</context></context-group> </trans-unit> - <trans-unit id="_msg689" approved="yes"> + <trans-unit id="_msg707" approved="yes"> <source xml:space="preserve">Mapped AS</source> <target xml:space="preserve">Mapped AS</target> - <context-group purpose="location"><context context-type="linenumber">1515</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1567</context></context-group> </trans-unit> - <trans-unit id="_msg690"> + <trans-unit id="_msg708" approved="yes"> <source xml:space="preserve">Whether we relay addresses to this peer.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1538</context></context-group> - <note annotates="source" from="developer">Tooltip text for the Address Relay field in the peer details area.</note> + <target xml:space="preserve">Whether we relay addresses to this peer.</target> + <context-group purpose="location"><context context-type="linenumber">1590</context></context-group> + <note annotates="source" from="developer">Tooltip text for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</note> </trans-unit> - <trans-unit id="_msg691"> + <trans-unit id="_msg709" approved="yes"> <source xml:space="preserve">Address Relay</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1541</context></context-group> - </trans-unit> - <trans-unit id="_msg692"> - <source xml:space="preserve">Total number of addresses processed, excluding those dropped due to rate-limiting.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1564</context></context-group> - <note annotates="source" from="developer">Tooltip text for the Addresses Processed field in the peer details area.</note> + <target xml:space="preserve">Address Relay</target> + <context-group purpose="location"><context context-type="linenumber">1593</context></context-group> + <note annotates="source" from="developer">Text title for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</note> </trans-unit> - <trans-unit id="_msg693"> + <trans-unit id="_msg710" approved="yes"> <source xml:space="preserve">Addresses Processed</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1567</context></context-group> + <target xml:space="preserve">Addresses Processed</target> + <context-group purpose="location"><context context-type="linenumber">1619</context></context-group> + <note annotates="source" from="developer">Text title for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</note> </trans-unit> - <trans-unit id="_msg694"> - <source xml:space="preserve">Total number of addresses dropped due to rate-limiting.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1590</context></context-group> - <note annotates="source" from="developer">Tooltip text for the Addresses Rate-Limited field in the peer details area.</note> - </trans-unit> - <trans-unit id="_msg695"> + <trans-unit id="_msg711" approved="yes"> <source xml:space="preserve">Addresses Rate-Limited</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1593</context></context-group> + <target xml:space="preserve">Addresses Rate-Limited</target> + <context-group purpose="location"><context context-type="linenumber">1645</context></context-group> + <note annotates="source" from="developer">Text title for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</note> </trans-unit> - <trans-unit id="_msg696" approved="yes"> + <trans-unit id="_msg712" approved="yes"> <source xml:space="preserve">Rescan blockchain files 1</source> <target xml:space="preserve">Rescan blockchain files 1</target> - <context-group purpose="location"><context context-type="linenumber">1674</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1726</context></context-group> </trans-unit> - <trans-unit id="_msg697" approved="yes"> + <trans-unit id="_msg713" approved="yes"> <source xml:space="preserve">Rescan blockchain files 2</source> <target xml:space="preserve">Rescan blockchain files 2</target> - <context-group purpose="location"><context context-type="linenumber">1697</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1749</context></context-group> </trans-unit> - <trans-unit id="_msg698" approved="yes"> + <trans-unit id="_msg714" approved="yes"> <source xml:space="preserve">The buttons below will restart the wallet with command-line options to repair the wallet, fix issues with corrupt blockchain files or missing/obsolete transactions.</source> <target xml:space="preserve">The buttons below will restart the wallet with command-line options to repair the wallet, fix issues with corrupt blockchain files or missing/obsolete transactions.</target> - <context-group purpose="location"><context context-type="linenumber">1654</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1706</context></context-group> </trans-unit> - <trans-unit id="_msg699" approved="yes"> + <trans-unit id="_msg715" approved="yes"> <source xml:space="preserve">-rescan=1: Rescan the block chain for missing wallet transactions starting from wallet creation time.</source> <target xml:space="preserve">-rescan=1: Rescan the block chain for missing wallet transactions starting from wallet creation time.</target> - <context-group purpose="location"><context context-type="linenumber">1681</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1733</context></context-group> </trans-unit> - <trans-unit id="_msg700" approved="yes"> + <trans-unit id="_msg716" approved="yes"> <source xml:space="preserve">-rescan=2: Rescan the block chain for missing wallet transactions starting from genesis block.</source> <target xml:space="preserve">-rescan=2: Rescan the block chain for missing wallet transactions starting from genesis block.</target> - <context-group purpose="location"><context context-type="linenumber">1704</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1756</context></context-group> </trans-unit> - <trans-unit id="_msg701" approved="yes"> + <trans-unit id="_msg717" approved="yes"> <source xml:space="preserve">User Agent</source> <target xml:space="preserve">User Agent</target> <context-group purpose="location"><context context-type="linenumber">142</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1080</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1132</context></context-group> </trans-unit> - <trans-unit id="_msg702" approved="yes"> + <trans-unit id="_msg718" approved="yes"> <source xml:space="preserve">Datadir</source> <target xml:space="preserve">Datadir</target> <context-group purpose="location"><context context-type="linenumber">168</context></context-group> </trans-unit> - <trans-unit id="_msg703" approved="yes"> + <trans-unit id="_msg719" approved="yes"> <source xml:space="preserve">To specify a non-default location of the data directory use the '%1' option.</source> <target xml:space="preserve">To specify a non-default location of the data directory use the '%1' option.</target> <context-group purpose="location"><context context-type="linenumber">178</context></context-group> </trans-unit> - <trans-unit id="_msg704" approved="yes"> + <trans-unit id="_msg720" approved="yes"> <source xml:space="preserve">Blocksdir</source> <target xml:space="preserve">Blocksdir</target> <context-group purpose="location"><context context-type="linenumber">197</context></context-group> </trans-unit> - <trans-unit id="_msg705" approved="yes"> + <trans-unit id="_msg721" approved="yes"> <source xml:space="preserve">To specify a non-default location of the blocks directory use the '%1' option.</source> <target xml:space="preserve">To specify a non-default location of the blocks directory use the '%1' option.</target> <context-group purpose="location"><context context-type="linenumber">207</context></context-group> </trans-unit> - <trans-unit id="_msg706" approved="yes"> + <trans-unit id="_msg722" approved="yes"> <source xml:space="preserve">Number of regular Masternodes</source> <target xml:space="preserve">Number of regular Masternodes</target> <context-group purpose="location"><context context-type="linenumber">302</context></context-group> </trans-unit> - <trans-unit id="_msg707" approved="yes"> + <trans-unit id="_msg723" approved="yes"> <source xml:space="preserve">Number of EvoNodes</source> <target xml:space="preserve">Number of EvoNodes</target> <context-group purpose="location"><context context-type="linenumber">322</context></context-group> </trans-unit> - <trans-unit id="_msg708" approved="yes"> + <trans-unit id="_msg724" approved="yes"> <source xml:space="preserve">Current block height</source> <target xml:space="preserve">Current block height</target> <context-group purpose="location"><context context-type="linenumber">349</context></context-group> </trans-unit> - <trans-unit id="_msg709" approved="yes"> + <trans-unit id="_msg725" approved="yes"> <source xml:space="preserve">Last block hash</source> <target xml:space="preserve">Last block hash</target> <context-group purpose="location"><context context-type="linenumber">395</context></context-group> </trans-unit> - <trans-unit id="_msg710" approved="yes"> + <trans-unit id="_msg726" approved="yes"> <source xml:space="preserve">Latest ChainLocked block hash</source> <target xml:space="preserve">Latest ChainLocked block hash</target> <context-group purpose="location"><context context-type="linenumber">418</context></context-group> </trans-unit> - <trans-unit id="_msg711" approved="yes"> + <trans-unit id="_msg727" approved="yes"> <source xml:space="preserve">Latest ChainLocked block height</source> <target xml:space="preserve">Latest ChainLocked block height</target> <context-group purpose="location"><context context-type="linenumber">441</context></context-group> </trans-unit> - <trans-unit id="_msg712" approved="yes"> + <trans-unit id="_msg728" approved="yes"> <source xml:space="preserve">Open the %1 debug log file from the current data directory. This can take a few seconds for large log files.</source> <target xml:space="preserve">Open the %1 debug log file from the current data directory. This can take a few seconds for large log files.</target> <context-group purpose="location"><context context-type="linenumber">542</context></context-group> </trans-unit> - <trans-unit id="_msg713" approved="yes"> + <trans-unit id="_msg729" approved="yes"> <source xml:space="preserve">InstantSend locks</source> <target xml:space="preserve">InstantSend locks</target> <context-group purpose="location"><context context-type="linenumber">557</context></context-group> </trans-unit> - <trans-unit id="_msg714" approved="yes"> + <trans-unit id="_msg730" approved="yes"> <source xml:space="preserve">(none)</source> <target xml:space="preserve">(none)</target> <context-group purpose="location"><context context-type="linenumber">619</context></context-group> </trans-unit> - <trans-unit id="_msg715" approved="yes"> + <trans-unit id="_msg731" approved="yes"> <source xml:space="preserve">Decrease font size</source> <target xml:space="preserve">Decrease font size</target> <context-group purpose="location"><context context-type="linenumber">640</context></context-group> </trans-unit> - <trans-unit id="_msg716" approved="yes"> + <trans-unit id="_msg732" approved="yes"> <source xml:space="preserve">Increase font size</source> <target xml:space="preserve">Increase font size</target> <context-group purpose="location"><context context-type="linenumber">647</context></context-group> </trans-unit> - <trans-unit id="_msg717" approved="yes"> + <trans-unit id="_msg733" approved="yes"> <source xml:space="preserve">&Reset</source> <target xml:space="preserve">&Reset</target> <context-group purpose="location"><context context-type="linenumber">759</context></context-group> </trans-unit> - <trans-unit id="_msg718" approved="yes"> + <trans-unit id="_msg734" approved="yes"> <source xml:space="preserve">Node Type</source> <target xml:space="preserve">Node Type</target> <context-group purpose="location"><context context-type="linenumber">936</context></context-group> </trans-unit> - <trans-unit id="_msg719" approved="yes"> + <trans-unit id="_msg735" approved="yes"> <source xml:space="preserve">PoSe Score</source> <target xml:space="preserve">PoSe Score</target> <context-group purpose="location"><context context-type="linenumber">959</context></context-group> </trans-unit> - <trans-unit id="_msg720" approved="yes"> + <trans-unit id="_msg736"> + <source xml:space="preserve">The transport layer version: %1</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">982</context></context-group> + </trans-unit> + <trans-unit id="_msg737"> + <source xml:space="preserve">Transport</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">985</context></context-group> + </trans-unit> + <trans-unit id="_msg738"> + <source xml:space="preserve">The BIP324 session ID string in hex.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">1008</context></context-group> + </trans-unit> + <trans-unit id="_msg739"> + <source xml:space="preserve">Session ID</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">1011</context></context-group> + </trans-unit> + <trans-unit id="_msg740" approved="yes"> <source xml:space="preserve">The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS.</source> <target xml:space="preserve">The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS.</target> - <context-group purpose="location"><context context-type="linenumber">982</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1034</context></context-group> </trans-unit> - <trans-unit id="_msg721" approved="yes"> + <trans-unit id="_msg741" approved="yes"> <source xml:space="preserve">Permissions</source> <target xml:space="preserve">Permissions</target> - <context-group purpose="location"><context context-type="linenumber">1008</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1060</context></context-group> </trans-unit> - <trans-unit id="_msg722"> + <trans-unit id="_msg742" approved="yes"> <source xml:space="preserve">The direction and type of peer connection: %1</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1031</context></context-group> + <target xml:space="preserve">The direction and type of peer connection: %1</target> + <context-group purpose="location"><context context-type="linenumber">1083</context></context-group> </trans-unit> - <trans-unit id="_msg723"> + <trans-unit id="_msg743" approved="yes"> <source xml:space="preserve">Direction/Type</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1034</context></context-group> + <target xml:space="preserve">Direction/Type</target> + <context-group purpose="location"><context context-type="linenumber">1086</context></context-group> </trans-unit> - <trans-unit id="_msg724" approved="yes"> + <trans-unit id="_msg744" approved="yes"> <source xml:space="preserve">Services</source> <target xml:space="preserve">Services</target> - <context-group purpose="location"><context context-type="linenumber">1106</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1158</context></context-group> </trans-unit> - <trans-unit id="_msg725" approved="yes"> + <trans-unit id="_msg745" approved="yes"> <source xml:space="preserve">Connection Time</source> <target xml:space="preserve">Connection Time</target> - <context-group purpose="location"><context context-type="linenumber">1250</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1302</context></context-group> </trans-unit> - <trans-unit id="_msg726" approved="yes"> + <trans-unit id="_msg746" approved="yes"> <source xml:space="preserve">Last Send</source> <target xml:space="preserve">Last Send</target> - <context-group purpose="location"><context context-type="linenumber">1325</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1377</context></context-group> </trans-unit> - <trans-unit id="_msg727" approved="yes"> + <trans-unit id="_msg747" approved="yes"> <source xml:space="preserve">Last Receive</source> <target xml:space="preserve">Last Receive</target> - <context-group purpose="location"><context context-type="linenumber">1348</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1400</context></context-group> </trans-unit> - <trans-unit id="_msg728" approved="yes"> + <trans-unit id="_msg748" approved="yes"> <source xml:space="preserve">Ping Time</source> <target xml:space="preserve">Ping Time</target> - <context-group purpose="location"><context context-type="linenumber">1417</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1469</context></context-group> </trans-unit> - <trans-unit id="_msg729" approved="yes"> + <trans-unit id="_msg749" approved="yes"> <source xml:space="preserve">The duration of a currently outstanding ping.</source> <target xml:space="preserve">The duration of a currently outstanding ping.</target> - <context-group purpose="location"><context context-type="linenumber">1440</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1492</context></context-group> </trans-unit> - <trans-unit id="_msg730" approved="yes"> + <trans-unit id="_msg750" approved="yes"> <source xml:space="preserve">Ping Wait</source> <target xml:space="preserve">Ping Wait</target> - <context-group purpose="location"><context context-type="linenumber">1443</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1495</context></context-group> </trans-unit> - <trans-unit id="_msg731" approved="yes"> + <trans-unit id="_msg751" approved="yes"> <source xml:space="preserve">Min Ping</source> <target xml:space="preserve">Min Ping</target> - <context-group purpose="location"><context context-type="linenumber">1466</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1518</context></context-group> </trans-unit> - <trans-unit id="_msg732" approved="yes"> + <trans-unit id="_msg752" approved="yes"> <source xml:space="preserve">Time Offset</source> <target xml:space="preserve">Time Offset</target> - <context-group purpose="location"><context context-type="linenumber">1489</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1541</context></context-group> </trans-unit> - <trans-unit id="_msg733" approved="yes"> + <trans-unit id="_msg753" approved="yes"> <source xml:space="preserve">&Wallet Repair</source> <target xml:space="preserve">&Wallet Repair</target> <context-group purpose="location"><context context-type="linenumber">84</context></context-group> </trans-unit> - <trans-unit id="_msg734" approved="yes"> + <trans-unit id="_msg754"> + <source xml:space="preserve">The total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">1616</context></context-group> + <note annotates="source" from="developer">Tooltip text for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</note> + </trans-unit> + <trans-unit id="_msg755"> + <source xml:space="preserve">The total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">1642</context></context-group> + <note annotates="source" from="developer">Tooltip text for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</note> + </trans-unit> + <trans-unit id="_msg756" approved="yes"> <source xml:space="preserve">Wallet repair options.</source> <target xml:space="preserve">Wallet repair options.</target> - <context-group purpose="location"><context context-type="linenumber">1644</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1696</context></context-group> </trans-unit> - <trans-unit id="_msg735" approved="yes"> + <trans-unit id="_msg757" approved="yes"> <source xml:space="preserve">Rebuild index</source> <target xml:space="preserve">Rebuild index</target> - <context-group purpose="location"><context context-type="linenumber">1714</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1766</context></context-group> </trans-unit> - <trans-unit id="_msg736" approved="yes"> + <trans-unit id="_msg758" approved="yes"> <source xml:space="preserve">-reindex: Rebuild block chain index from current blk000??.dat files.</source> <target xml:space="preserve">-reindex: Rebuild block chain index from current blk000??.dat files.</target> - <context-group purpose="location"><context context-type="linenumber">1721</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1773</context></context-group> </trans-unit> </group> </body></file> <file original="../rpcconsole.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="RPCConsole"> - <trans-unit id="_msg737"> + <trans-unit id="_msg759" approved="yes"> <source xml:space="preserve">Inbound: initiated by peer</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">509</context></context-group> + <target xml:space="preserve">Inbound: initiated by peer</target> + <context-group purpose="location"><context context-type="linenumber">516</context></context-group> <note annotates="source" from="developer">Explanatory text for an inbound peer connection.</note> </trans-unit> - <trans-unit id="_msg738"> + <trans-unit id="_msg760" approved="yes"> <source xml:space="preserve">Outbound Full Relay: default</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">513</context></context-group> + <target xml:space="preserve">Outbound Full Relay: default</target> + <context-group purpose="location"><context context-type="linenumber">520</context></context-group> <note annotates="source" from="developer">Explanatory text for an outbound peer connection that relays all network information. This is the default behavior for outbound connections.</note> </trans-unit> - <trans-unit id="_msg739"> + <trans-unit id="_msg761" approved="yes"> <source xml:space="preserve">Outbound Block Relay: does not relay transactions or addresses</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">516</context></context-group> + <target xml:space="preserve">Outbound Block Relay: does not relay transactions or addresses</target> + <context-group purpose="location"><context context-type="linenumber">523</context></context-group> <note annotates="source" from="developer">Explanatory text for an outbound peer connection that relays network information about blocks and not transactions or addresses.</note> </trans-unit> - <trans-unit id="_msg740"> + <trans-unit id="_msg762" approved="yes"> <source xml:space="preserve">Outbound Manual: added using RPC %1 or %2/%3 configuration options</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">521</context></context-group> + <target xml:space="preserve">Outbound Manual: added using RPC %1 or %2/%3 configuration options</target> + <context-group purpose="location"><context context-type="linenumber">528</context></context-group> <note annotates="source" from="developer">Explanatory text for an outbound peer connection that was established manually through one of several methods. The numbered arguments are stand-ins for the methods available to establish manual connections.</note> </trans-unit> - <trans-unit id="_msg741"> + <trans-unit id="_msg763" approved="yes"> <source xml:space="preserve">Outbound Feeler: short-lived, for testing addresses</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">527</context></context-group> + <target xml:space="preserve">Outbound Feeler: short-lived, for testing addresses</target> + <context-group purpose="location"><context context-type="linenumber">534</context></context-group> <note annotates="source" from="developer">Explanatory text for a short-lived outbound peer connection that is used to test the aliveness of known addresses.</note> </trans-unit> - <trans-unit id="_msg742"> + <trans-unit id="_msg764" approved="yes"> <source xml:space="preserve">Outbound Address Fetch: short-lived, for soliciting addresses</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">530</context></context-group> + <target xml:space="preserve">Outbound Address Fetch: short-lived, for soliciting addresses</target> + <context-group purpose="location"><context context-type="linenumber">537</context></context-group> <note annotates="source" from="developer">Explanatory text for a short-lived outbound peer connection that is used to request addresses from a peer.</note> </trans-unit> - <trans-unit id="_msg743"> - <source xml:space="preserve">To</source> - <target xml:space="preserve" state="needs-review-translation">To</target> - <context-group purpose="location"><context context-type="linenumber">534</context></context-group> - </trans-unit> - <trans-unit id="_msg744"> + <trans-unit id="_msg765" approved="yes"> <source xml:space="preserve">we selected the peer for high bandwidth relay</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">534</context></context-group> - </trans-unit> - <trans-unit id="_msg745"> - <source xml:space="preserve">From</source> - <target xml:space="preserve" state="needs-review-translation">From</target> - <context-group purpose="location"><context context-type="linenumber">535</context></context-group> + <target xml:space="preserve">we selected the peer for high bandwidth relay</target> + <context-group purpose="location"><context context-type="linenumber">550</context></context-group> </trans-unit> - <trans-unit id="_msg746"> + <trans-unit id="_msg766" approved="yes"> <source xml:space="preserve">the peer selected us for high bandwidth relay</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">535</context></context-group> - </trans-unit> - <trans-unit id="_msg747"> - <source xml:space="preserve">No</source> - <target xml:space="preserve" state="needs-review-translation">No</target> - <context-group purpose="location"><context context-type="linenumber">536</context></context-group> + <target xml:space="preserve">the peer selected us for high bandwidth relay</target> + <context-group purpose="location"><context context-type="linenumber">551</context></context-group> </trans-unit> - <trans-unit id="_msg748"> + <trans-unit id="_msg767" approved="yes"> <source xml:space="preserve">no high bandwidth relay selected</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">536</context></context-group> + <target xml:space="preserve">no high bandwidth relay selected</target> + <context-group purpose="location"><context context-type="linenumber">552</context></context-group> </trans-unit> - <trans-unit id="_msg749" approved="yes"> + <trans-unit id="_msg768" approved="yes"> <source xml:space="preserve">&Disconnect</source> <target xml:space="preserve">&Disconnect</target> - <context-group purpose="location"><context context-type="linenumber">709</context></context-group> - </trans-unit> - <trans-unit id="_msg750" approved="yes"> - <source xml:space="preserve">Ban for</source> - <target xml:space="preserve">Ban for</target> - <context-group purpose="location"><context context-type="linenumber">710</context></context-group> - <context-group purpose="location"><context context-type="linenumber">711</context></context-group> - <context-group purpose="location"><context context-type="linenumber">712</context></context-group> - <context-group purpose="location"><context context-type="linenumber">713</context></context-group> + <context-group purpose="location"><context context-type="linenumber">738</context></context-group> </trans-unit> - <trans-unit id="_msg751" approved="yes"> + <trans-unit id="_msg769" approved="yes"> <source xml:space="preserve">1 &hour</source> <target xml:space="preserve">1 &hour</target> - <context-group purpose="location"><context context-type="linenumber">710</context></context-group> + <context-group purpose="location"><context context-type="linenumber">739</context></context-group> </trans-unit> - <trans-unit id="_msg752" approved="yes"> - <source xml:space="preserve">1 &day</source> - <target xml:space="preserve">1 &day</target> - <context-group purpose="location"><context context-type="linenumber">711</context></context-group> - </trans-unit> - <trans-unit id="_msg753" approved="yes"> + <trans-unit id="_msg770" approved="yes"> <source xml:space="preserve">1 &week</source> <target xml:space="preserve">1 &week</target> - <context-group purpose="location"><context context-type="linenumber">712</context></context-group> + <context-group purpose="location"><context context-type="linenumber">741</context></context-group> </trans-unit> - <trans-unit id="_msg754" approved="yes"> + <trans-unit id="_msg771" approved="yes"> <source xml:space="preserve">1 &year</source> <target xml:space="preserve">1 &year</target> - <context-group purpose="location"><context context-type="linenumber">713</context></context-group> + <context-group purpose="location"><context context-type="linenumber">742</context></context-group> </trans-unit> - <trans-unit id="_msg755" approved="yes"> + <trans-unit id="_msg772" approved="yes"> <source xml:space="preserve">&Unban</source> <target xml:space="preserve">&Unban</target> - <context-group purpose="location"><context context-type="linenumber">750</context></context-group> - </trans-unit> - <trans-unit id="_msg756" approved="yes"> - <source xml:space="preserve">Welcome to the %1 RPC console.</source> - <target xml:space="preserve">Welcome to the %1 RPC console.</target> - <context-group purpose="location"><context context-type="linenumber">972</context></context-group> - </trans-unit> - <trans-unit id="_msg757" approved="yes"> - <source xml:space="preserve">Use up and down arrows to navigate history, and %1 to clear screen.</source> - <target xml:space="preserve">Use up and down arrows to navigate history, and %1 to clear screen.</target> - <context-group purpose="location"><context context-type="linenumber">973</context></context-group> - </trans-unit> - <trans-unit id="_msg758" approved="yes"> - <source xml:space="preserve">Type %1 for an overview of available commands.</source> - <target xml:space="preserve">Type %1 for an overview of available commands.</target> - <context-group purpose="location"><context context-type="linenumber">974</context></context-group> - </trans-unit> - <trans-unit id="_msg759" approved="yes"> - <source xml:space="preserve">For more information on using this console type %1.</source> - <target xml:space="preserve">For more information on using this console type %1.</target> - <context-group purpose="location"><context context-type="linenumber">975</context></context-group> + <context-group purpose="location"><context context-type="linenumber">772</context></context-group> </trans-unit> - <trans-unit id="_msg760" approved="yes"> - <source xml:space="preserve">WARNING: 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.</source> - <target xml:space="preserve">WARNING: 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.</target> - <context-group purpose="location"><context context-type="linenumber">977</context></context-group> - </trans-unit> - <trans-unit id="_msg761" approved="yes"> + <trans-unit id="_msg773" approved="yes"> <source xml:space="preserve">In:</source> <target xml:space="preserve">In:</target> - <context-group purpose="location"><context context-type="linenumber">1008</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1032</context></context-group> </trans-unit> - <trans-unit id="_msg762" approved="yes"> + <trans-unit id="_msg774" approved="yes"> <source xml:space="preserve">Out:</source> <target xml:space="preserve">Out:</target> - <context-group purpose="location"><context context-type="linenumber">1009</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1033</context></context-group> </trans-unit> - <trans-unit id="_msg763" approved="yes"> + <trans-unit id="_msg775" approved="yes"> <source xml:space="preserve">Network activity disabled</source> <target xml:space="preserve">Network activity disabled</target> - <context-group purpose="location"><context context-type="linenumber">1012</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1036</context></context-group> </trans-unit> - <trans-unit id="_msg764" approved="yes"> + <trans-unit id="_msg776" approved="yes"> <source xml:space="preserve">Total: %1 (Enabled: %2)</source> <target xml:space="preserve">Total: %1 (Enabled: %2)</target> - <context-group purpose="location"><context context-type="linenumber">1056</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1060</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1080</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1084</context></context-group> </trans-unit> - <trans-unit id="_msg765" approved="yes"> + <trans-unit id="_msg777" approved="yes"> <source xml:space="preserve">Executing command without any wallet</source> <target xml:space="preserve">Executing command without any wallet</target> - <context-group purpose="location"><context context-type="linenumber">1128</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1163</context></context-group> </trans-unit> - <trans-unit id="_msg766"> - <source xml:space="preserve">Ctrl+Shift+I</source> + <trans-unit id="_msg778"> + <source xml:space="preserve">Ctrl++</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1522</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1371</context></context-group> + <note annotates="source" from="developer">Main shortcut to increase the RPC console font size.</note> </trans-unit> - <trans-unit id="_msg767"> - <source xml:space="preserve">Ctrl+Shift+C</source> + <trans-unit id="_msg779"> + <source xml:space="preserve">Ctrl+=</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1523</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1373</context></context-group> + <note annotates="source" from="developer">Secondary shortcut to increase the RPC console font size.</note> </trans-unit> - <trans-unit id="_msg768"> - <source xml:space="preserve">Ctrl+Shift+G</source> + <trans-unit id="_msg780"> + <source xml:space="preserve">Ctrl+-</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1524</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1377</context></context-group> + <note annotates="source" from="developer">Main shortcut to decrease the RPC console font size.</note> </trans-unit> - <trans-unit id="_msg769"> - <source xml:space="preserve">Ctrl+Shift+P</source> + <trans-unit id="_msg781"> + <source xml:space="preserve">Ctrl+_</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1525</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1379</context></context-group> + <note annotates="source" from="developer">Secondary shortcut to decrease the RPC console font size.</note> + </trans-unit> + <trans-unit id="_msg782" approved="yes"> + <source xml:space="preserve">Ctrl+Shift+I</source> + <target xml:space="preserve">Ctrl+Shift+I</target> + <context-group purpose="location"><context context-type="linenumber">1529</context></context-group> + </trans-unit> + <trans-unit id="_msg783" approved="yes"> + <source xml:space="preserve">Ctrl+Shift+C</source> + <target xml:space="preserve">Ctrl+Shift+C</target> + <context-group purpose="location"><context context-type="linenumber">1530</context></context-group> + </trans-unit> + <trans-unit id="_msg784" approved="yes"> + <source xml:space="preserve">Ctrl+Shift+G</source> + <target xml:space="preserve">Ctrl+Shift+G</target> + <context-group purpose="location"><context context-type="linenumber">1531</context></context-group> + </trans-unit> + <trans-unit id="_msg785" approved="yes"> + <source xml:space="preserve">Ctrl+Shift+P</source> + <target xml:space="preserve">Ctrl+Shift+P</target> + <context-group purpose="location"><context context-type="linenumber">1532</context></context-group> </trans-unit> - <trans-unit id="_msg770"> + <trans-unit id="_msg786" approved="yes"> <source xml:space="preserve">Ctrl+Shift+R</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1526</context></context-group> + <target xml:space="preserve">Ctrl+Shift+R</target> + <context-group purpose="location"><context context-type="linenumber">1533</context></context-group> </trans-unit> - <trans-unit id="_msg771" approved="yes"> + <trans-unit id="_msg787" approved="yes"> <source xml:space="preserve">Executing command using "%1" wallet</source> <target xml:space="preserve">Executing command using "%1" wallet</target> - <context-group purpose="location"><context context-type="linenumber">1126</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1161</context></context-group> </trans-unit> - <trans-unit id="_msg772"> - <source xml:space="preserve">(peer: %1)</source> + <trans-unit id="_msg788"> + <source xml:space="preserve">detecting: peer could be v1 or v2</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">542</context></context-group> + <note annotates="source" from="developer">Explanatory text for "detecting" transport type.</note> + </trans-unit> + <trans-unit id="_msg789"> + <source xml:space="preserve">v1: unencrypted, plaintext transport protocol</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">1298</context></context-group> + <context-group purpose="location"><context context-type="linenumber">544</context></context-group> + <note annotates="source" from="developer">Explanatory text for v1 transport type.</note> </trans-unit> - <trans-unit id="_msg773" approved="yes"> + <trans-unit id="_msg790"> + <source xml:space="preserve">v2: BIP324 encrypted transport protocol</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">546</context></context-group> + <note annotates="source" from="developer">Explanatory text for v2 transport type.</note> + </trans-unit> + <trans-unit id="_msg791"> + <source xml:space="preserve">&Copy address</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">734</context></context-group> + <note annotates="source" from="developer">Context menu action to copy the address of a peer</note> + </trans-unit> + <trans-unit id="_msg792"> + <source xml:space="preserve">1 d&ay</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">740</context></context-group> + </trans-unit> + <trans-unit id="_msg793"> + <source xml:space="preserve">&Copy IP/Netmask</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">768</context></context-group> + <note annotates="source" from="developer">Context menu action to copy the IP/Netmask of a banned peer. IP/Netmask is the combination of a peer's IP address and its Netmask. For IP address see: https://en.wikipedia.org/wiki/IP_address</note> + </trans-unit> + <trans-unit id="_msg794"> + <source xml:space="preserve">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> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">985</context></context-group> + <note annotates="source" from="developer">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.</note> + </trans-unit> + <trans-unit id="_msg795"> + <source xml:space="preserve">Executing…</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">1171</context></context-group> + <note annotates="source" from="developer">A console message indicating an entered command is currently being executed.</note> + </trans-unit> + <trans-unit id="_msg796" approved="yes"> + <source xml:space="preserve">(peer: %1)</source> + <target xml:space="preserve">(peer: %1)</target> + <context-group purpose="location"><context context-type="linenumber">1281</context></context-group> + </trans-unit> + <trans-unit id="_msg797" approved="yes"> <source xml:space="preserve">via %1</source> <target xml:space="preserve">via %1</target> - <context-group purpose="location"><context context-type="linenumber">1300</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1283</context></context-group> </trans-unit> - <trans-unit id="_msg774" approved="yes"> + <trans-unit id="_msg798" approved="yes"> <source xml:space="preserve">Regular</source> <target xml:space="preserve">Regular</target> - <context-group purpose="location"><context context-type="linenumber">1335</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1326</context></context-group> </trans-unit> - <trans-unit id="_msg775" approved="yes"> + <trans-unit id="_msg799" approved="yes"> <source xml:space="preserve">Masternode</source> <target xml:space="preserve">Masternode</target> - <context-group purpose="location"><context context-type="linenumber">1339</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1330</context></context-group> </trans-unit> - <trans-unit id="_msg776" approved="yes"> + <trans-unit id="_msg800" approved="yes"> <source xml:space="preserve">Verified Masternode</source> <target xml:space="preserve">Verified Masternode</target> - <context-group purpose="location"><context context-type="linenumber">1341</context></context-group> - </trans-unit> - <trans-unit id="_msg777" approved="yes"> - <source xml:space="preserve">Unknown</source> - <target xml:space="preserve">Unknown</target> - <context-group purpose="location"><context context-type="linenumber">1353</context></context-group> - <context-group purpose="location"><context context-type="linenumber">1359</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1332</context></context-group> </trans-unit> </group> </body></file> <file original="../rpcconsole.h" datatype="c" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="RPCConsole"> - <trans-unit id="_msg778"> + <trans-unit id="_msg801" approved="yes"> + <source xml:space="preserve">To</source> + <target xml:space="preserve">To</target> + <context-group purpose="location"><context context-type="linenumber">155</context></context-group> + </trans-unit> + <trans-unit id="_msg802" approved="yes"> + <source xml:space="preserve">From</source> + <target xml:space="preserve">From</target> + <context-group purpose="location"><context context-type="linenumber">155</context></context-group> + </trans-unit> + <trans-unit id="_msg803" approved="yes"> + <source xml:space="preserve">No</source> + <target xml:space="preserve">No</target> + <context-group purpose="location"><context context-type="linenumber">155</context></context-group> + </trans-unit> + <trans-unit id="_msg804" approved="yes"> + <source xml:space="preserve">Ban for</source> + <target xml:space="preserve">Ban for</target> + <context-group purpose="location"><context context-type="linenumber">156</context></context-group> + </trans-unit> + <trans-unit id="_msg805"> + <source xml:space="preserve">Yes</source> + <target xml:space="preserve" state="needs-review-translation">Yes</target> + <context-group purpose="location"><context context-type="linenumber">155</context></context-group> + </trans-unit> + <trans-unit id="_msg806" approved="yes"> + <source xml:space="preserve">Unknown</source> + <target xml:space="preserve">Unknown</target> + <context-group purpose="location"><context context-type="linenumber">156</context></context-group> + </trans-unit> + <trans-unit id="_msg807" approved="yes"> <source xml:space="preserve">Never</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">198</context></context-group> + <target xml:space="preserve">Never</target> + <context-group purpose="location"><context context-type="linenumber">203</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/receivecoinsdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="ReceiveCoinsDialog"> - <trans-unit id="_msg779" approved="yes"> + <trans-unit id="_msg808" approved="yes"> <source xml:space="preserve">An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dash network.</source> <target xml:space="preserve">An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dash network.</target> <context-group purpose="location"><context context-type="linenumber">34</context></context-group> </trans-unit> - <trans-unit id="_msg780" approved="yes"> + <trans-unit id="_msg809" approved="yes"> <source xml:space="preserve">&Message:</source> <target xml:space="preserve">&Message:</target> <context-group purpose="location"><context context-type="linenumber">37</context></context-group> </trans-unit> - <trans-unit id="_msg781" approved="yes"> + <trans-unit id="_msg810" approved="yes"> <source xml:space="preserve">An optional label to associate with the new receiving address.</source> <target xml:space="preserve">An optional label to associate with the new receiving address.</target> <context-group purpose="location"><context context-type="linenumber">77</context></context-group> </trans-unit> - <trans-unit id="_msg782" approved="yes"> + <trans-unit id="_msg811" approved="yes"> <source xml:space="preserve">An optional message to attach to the payment request, which will be displayed when the request is opened.<br>Note: The message will not be sent with the payment over the Dash network.</source> <target xml:space="preserve">An optional message to attach to the payment request, which will be displayed when the request is opened.<br>Note: The message will not be sent with the payment over the Dash network.</target> <context-group purpose="location"><context context-type="linenumber">60</context></context-group> </trans-unit> - <trans-unit id="_msg783" approved="yes"> + <trans-unit id="_msg812" approved="yes"> <source xml:space="preserve">An optional label to associate with the new receiving address (used by you to identify an invoice). It is also attached to the payment request.</source> <target xml:space="preserve">An optional label to associate with the new receiving address (used by you to identify an invoice). It is also attached to the payment request.</target> <context-group purpose="location"><context context-type="linenumber">50</context></context-group> </trans-unit> - <trans-unit id="_msg784" approved="yes"> + <trans-unit id="_msg813" approved="yes"> <source xml:space="preserve">Use this form to request payments. All fields are <b>optional</b>.</source> <target xml:space="preserve">Use this form to request payments. All fields are <b>optional</b>.</target> <context-group purpose="location"><context context-type="linenumber">70</context></context-group> </trans-unit> - <trans-unit id="_msg785" approved="yes"> + <trans-unit id="_msg814" approved="yes"> <source xml:space="preserve">&Label:</source> <target xml:space="preserve">&Label:</target> <context-group purpose="location"><context context-type="linenumber">80</context></context-group> </trans-unit> - <trans-unit id="_msg786" approved="yes"> + <trans-unit id="_msg815" approved="yes"> <source xml:space="preserve">An optional amount to request. Leave this empty or zero to not request a specific amount.</source> <target xml:space="preserve">An optional amount to request. Leave this empty or zero to not request a specific amount.</target> <context-group purpose="location"><context context-type="linenumber">93</context></context-group> <context-group purpose="location"><context context-type="linenumber">179</context></context-group> </trans-unit> - <trans-unit id="_msg787" approved="yes"> + <trans-unit id="_msg816" approved="yes"> <source xml:space="preserve">&Amount:</source> <target xml:space="preserve">&Amount:</target> <context-group purpose="location"><context context-type="linenumber">96</context></context-group> </trans-unit> - <trans-unit id="_msg788" approved="yes"> + <trans-unit id="_msg817" approved="yes"> <source xml:space="preserve">&Create new receiving address</source> <target xml:space="preserve">&Create new receiving address</target> <context-group purpose="location"><context context-type="linenumber">117</context></context-group> </trans-unit> - <trans-unit id="_msg789" approved="yes"> + <trans-unit id="_msg818" approved="yes"> <source xml:space="preserve">Clear all fields of the form.</source> <target xml:space="preserve">Clear all fields of the form.</target> <context-group purpose="location"><context context-type="linenumber">136</context></context-group> </trans-unit> - <trans-unit id="_msg790" approved="yes"> + <trans-unit id="_msg819" approved="yes"> <source xml:space="preserve">Clear</source> <target xml:space="preserve">Clear</target> <context-group purpose="location"><context context-type="linenumber">139</context></context-group> </trans-unit> - <trans-unit id="_msg791" approved="yes"> + <trans-unit id="_msg820" approved="yes"> <source xml:space="preserve">Requested payments history</source> <target xml:space="preserve">Requested payments history</target> <context-group purpose="location"><context context-type="linenumber">234</context></context-group> </trans-unit> - <trans-unit id="_msg792" approved="yes"> + <trans-unit id="_msg821" approved="yes"> <source xml:space="preserve">Show the selected request (does the same as double clicking an entry)</source> <target xml:space="preserve">Show the selected request (does the same as double clicking an entry)</target> <context-group purpose="location"><context context-type="linenumber">259</context></context-group> </trans-unit> - <trans-unit id="_msg793" approved="yes"> + <trans-unit id="_msg822" approved="yes"> <source xml:space="preserve">Show</source> <target xml:space="preserve">Show</target> <context-group purpose="location"><context context-type="linenumber">262</context></context-group> </trans-unit> - <trans-unit id="_msg794" approved="yes"> + <trans-unit id="_msg823" approved="yes"> <source xml:space="preserve">Remove the selected entries from the list</source> <target xml:space="preserve">Remove the selected entries from the list</target> <context-group purpose="location"><context context-type="linenumber">275</context></context-group> </trans-unit> - <trans-unit id="_msg795" approved="yes"> + <trans-unit id="_msg824" approved="yes"> <source xml:space="preserve">Remove</source> <target xml:space="preserve">Remove</target> <context-group purpose="location"><context context-type="linenumber">278</context></context-group> </trans-unit> - <trans-unit id="_msg796" approved="yes"> + <trans-unit id="_msg825" approved="yes"> <source xml:space="preserve">Enter a label to associate with the new receiving address</source> <target xml:space="preserve">Enter a label to associate with the new receiving address</target> <context-group purpose="location"><context context-type="linenumber">53</context></context-group> </trans-unit> - <trans-unit id="_msg797" approved="yes"> + <trans-unit id="_msg826" approved="yes"> <source xml:space="preserve">Enter a message to attach to the payment request</source> <target xml:space="preserve">Enter a message to attach to the payment request</target> <context-group purpose="location"><context context-type="linenumber">63</context></context-group> @@ -4398,91 +4587,91 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../receivecoinsdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="ReceiveCoinsDialog"> - <trans-unit id="_msg798" approved="yes"> - <source xml:space="preserve">Copy URI</source> - <target xml:space="preserve">Copy URI</target> - <context-group purpose="location"><context context-type="linenumber">35</context></context-group> - </trans-unit> - <trans-unit id="_msg799" approved="yes"> - <source xml:space="preserve">Copy address</source> - <target xml:space="preserve">Copy address</target> + <trans-unit id="_msg827"> + <source xml:space="preserve">Copy &URI</source> + <target xml:space="preserve" state="needs-review-translation">Copy &URI</target> <context-group purpose="location"><context context-type="linenumber">36</context></context-group> </trans-unit> - <trans-unit id="_msg800" approved="yes"> - <source xml:space="preserve">Copy label</source> - <target xml:space="preserve">Copy label</target> + <trans-unit id="_msg828"> + <source xml:space="preserve">&Copy address</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">37</context></context-group> </trans-unit> - <trans-unit id="_msg801" approved="yes"> - <source xml:space="preserve">Copy message</source> - <target xml:space="preserve">Copy message</target> + <trans-unit id="_msg829"> + <source xml:space="preserve">Copy &label</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">38</context></context-group> </trans-unit> - <trans-unit id="_msg802" approved="yes"> - <source xml:space="preserve">Copy amount</source> - <target xml:space="preserve">Copy amount</target> + <trans-unit id="_msg830"> + <source xml:space="preserve">Copy &message</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">39</context></context-group> </trans-unit> - <trans-unit id="_msg803"> + <trans-unit id="_msg831"> + <source xml:space="preserve">Copy &amount</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">40</context></context-group> + </trans-unit> + <trans-unit id="_msg832" approved="yes"> <source xml:space="preserve">Could not unlock wallet.</source> - <target xml:space="preserve" state="needs-review-translation">Could not unlock wallet.</target> - <context-group purpose="location"><context context-type="linenumber">159</context></context-group> + <target xml:space="preserve">Could not unlock wallet.</target> + <context-group purpose="location"><context context-type="linenumber">145</context></context-group> </trans-unit> - <trans-unit id="_msg804"> + <trans-unit id="_msg833" approved="yes"> <source xml:space="preserve">Could not generate new address</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">164</context></context-group> + <target xml:space="preserve">Could not generate new address</target> + <context-group purpose="location"><context context-type="linenumber">150</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/receiverequestdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="ReceiveRequestDialog"> - <trans-unit id="_msg805"> + <trans-unit id="_msg834" approved="yes"> <source xml:space="preserve">Request payment to …</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Request payment to …</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg806" approved="yes"> + <trans-unit id="_msg835" approved="yes"> <source xml:space="preserve">Address:</source> <target xml:space="preserve">Address:</target> <context-group purpose="location"><context context-type="linenumber">90</context></context-group> </trans-unit> - <trans-unit id="_msg807" approved="yes"> + <trans-unit id="_msg836" approved="yes"> <source xml:space="preserve">Amount:</source> <target xml:space="preserve">Amount:</target> <context-group purpose="location"><context context-type="linenumber">119</context></context-group> </trans-unit> - <trans-unit id="_msg808" approved="yes"> + <trans-unit id="_msg837" approved="yes"> <source xml:space="preserve">Label:</source> <target xml:space="preserve">Label:</target> <context-group purpose="location"><context context-type="linenumber">148</context></context-group> </trans-unit> - <trans-unit id="_msg809" approved="yes"> + <trans-unit id="_msg838" approved="yes"> <source xml:space="preserve">Message:</source> <target xml:space="preserve">Message:</target> <context-group purpose="location"><context context-type="linenumber">180</context></context-group> </trans-unit> - <trans-unit id="_msg810" approved="yes"> + <trans-unit id="_msg839" approved="yes"> <source xml:space="preserve">Wallet:</source> <target xml:space="preserve">Wallet:</target> <context-group purpose="location"><context context-type="linenumber">212</context></context-group> </trans-unit> - <trans-unit id="_msg811" approved="yes"> + <trans-unit id="_msg840" approved="yes"> <source xml:space="preserve">Copy &URI</source> <target xml:space="preserve">Copy &URI</target> <context-group purpose="location"><context context-type="linenumber">240</context></context-group> </trans-unit> - <trans-unit id="_msg812" approved="yes"> + <trans-unit id="_msg841" approved="yes"> <source xml:space="preserve">Copy &Address</source> <target xml:space="preserve">Copy &Address</target> <context-group purpose="location"><context context-type="linenumber">250</context></context-group> </trans-unit> - <trans-unit id="_msg813"> + <trans-unit id="_msg842" approved="yes"> <source xml:space="preserve">&Save Image…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">&Save Image…</target> <context-group purpose="location"><context context-type="linenumber">260</context></context-group> </trans-unit> - <trans-unit id="_msg814" approved="yes"> + <trans-unit id="_msg843" approved="yes"> <source xml:space="preserve">Payment information</source> <target xml:space="preserve">Payment information</target> <context-group purpose="location"><context context-type="linenumber">39</context></context-group> @@ -4491,7 +4680,7 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../receiverequestdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="ReceiveRequestDialog"> - <trans-unit id="_msg815" approved="yes"> + <trans-unit id="_msg844" approved="yes"> <source xml:space="preserve">Request payment to %1</source> <target xml:space="preserve">Request payment to %1</target> <context-group purpose="location"><context context-type="linenumber">52</context></context-group> @@ -4500,219 +4689,219 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../recentrequeststablemodel.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="RecentRequestsTableModel"> - <trans-unit id="_msg816" approved="yes"> + <trans-unit id="_msg845" approved="yes"> <source xml:space="preserve">Date</source> <target xml:space="preserve">Date</target> - <context-group purpose="location"><context context-type="linenumber">29</context></context-group> + <context-group purpose="location"><context context-type="linenumber">32</context></context-group> </trans-unit> - <trans-unit id="_msg817" approved="yes"> + <trans-unit id="_msg846" approved="yes"> <source xml:space="preserve">Label</source> <target xml:space="preserve">Label</target> - <context-group purpose="location"><context context-type="linenumber">29</context></context-group> + <context-group purpose="location"><context context-type="linenumber">32</context></context-group> </trans-unit> - <trans-unit id="_msg818" approved="yes"> + <trans-unit id="_msg847" approved="yes"> <source xml:space="preserve">Message</source> <target xml:space="preserve">Message</target> - <context-group purpose="location"><context context-type="linenumber">29</context></context-group> + <context-group purpose="location"><context context-type="linenumber">32</context></context-group> </trans-unit> - <trans-unit id="_msg819" approved="yes"> + <trans-unit id="_msg848" approved="yes"> <source xml:space="preserve">(no label)</source> <target xml:space="preserve">(no label)</target> - <context-group purpose="location"><context context-type="linenumber">70</context></context-group> + <context-group purpose="location"><context context-type="linenumber">73</context></context-group> </trans-unit> - <trans-unit id="_msg820" approved="yes"> + <trans-unit id="_msg849" approved="yes"> <source xml:space="preserve">(no message)</source> <target xml:space="preserve">(no message)</target> - <context-group purpose="location"><context context-type="linenumber">79</context></context-group> + <context-group purpose="location"><context context-type="linenumber">82</context></context-group> </trans-unit> - <trans-unit id="_msg821" approved="yes"> + <trans-unit id="_msg850" approved="yes"> <source xml:space="preserve">(no amount requested)</source> <target xml:space="preserve">(no amount requested)</target> - <context-group purpose="location"><context context-type="linenumber">87</context></context-group> + <context-group purpose="location"><context context-type="linenumber">90</context></context-group> </trans-unit> - <trans-unit id="_msg822" approved="yes"> + <trans-unit id="_msg851" approved="yes"> <source xml:space="preserve">Requested</source> <target xml:space="preserve">Requested</target> - <context-group purpose="location"><context context-type="linenumber">129</context></context-group> + <context-group purpose="location"><context context-type="linenumber">133</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/sendcoinsdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="SendCoinsDialog"> - <trans-unit id="_msg823" approved="yes"> + <trans-unit id="_msg852" approved="yes"> <source xml:space="preserve">Send Coins</source> <target xml:space="preserve">Send Coins</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../sendcoinsdialog.cpp</context><context context-type="linenumber">762</context></context-group> + <context-group purpose="location"><context context-type="sourcefile">../sendcoinsdialog.cpp</context><context context-type="linenumber">765</context></context-group> </trans-unit> - <trans-unit id="_msg824" approved="yes"> + <trans-unit id="_msg853" approved="yes"> <source xml:space="preserve">Coin Control Features</source> <target xml:space="preserve">Coin Control Features</target> <context-group purpose="location"><context context-type="linenumber">81</context></context-group> </trans-unit> - <trans-unit id="_msg825" approved="yes"> + <trans-unit id="_msg854" approved="yes"> <source xml:space="preserve">automatically selected</source> <target xml:space="preserve">automatically selected</target> <context-group purpose="location"><context context-type="linenumber">111</context></context-group> </trans-unit> - <trans-unit id="_msg826" approved="yes"> + <trans-unit id="_msg855" approved="yes"> <source xml:space="preserve">Insufficient funds!</source> <target xml:space="preserve">Insufficient funds!</target> <context-group purpose="location"><context context-type="linenumber">121</context></context-group> </trans-unit> - <trans-unit id="_msg827" approved="yes"> + <trans-unit id="_msg856" approved="yes"> <source xml:space="preserve">Quantity:</source> <target xml:space="preserve">Quantity:</target> <context-group purpose="location"><context context-type="linenumber">204</context></context-group> </trans-unit> - <trans-unit id="_msg828" approved="yes"> + <trans-unit id="_msg857" approved="yes"> <source xml:space="preserve">Bytes:</source> <target xml:space="preserve">Bytes:</target> <context-group purpose="location"><context context-type="linenumber">233</context></context-group> </trans-unit> - <trans-unit id="_msg829" approved="yes"> + <trans-unit id="_msg858" approved="yes"> <source xml:space="preserve">Amount:</source> <target xml:space="preserve">Amount:</target> <context-group purpose="location"><context context-type="linenumber">275</context></context-group> </trans-unit> - <trans-unit id="_msg830" approved="yes"> + <trans-unit id="_msg859" approved="yes"> <source xml:space="preserve">Fee:</source> <target xml:space="preserve">Fee:</target> <context-group purpose="location"><context context-type="linenumber">343</context></context-group> </trans-unit> - <trans-unit id="_msg831" approved="yes"> + <trans-unit id="_msg860" approved="yes"> <source xml:space="preserve">Dust:</source> <target xml:space="preserve">Dust:</target> <context-group purpose="location"><context context-type="linenumber">301</context></context-group> </trans-unit> - <trans-unit id="_msg832"> + <trans-unit id="_msg861" approved="yes"> <source xml:space="preserve">Inputs…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Inputs…</target> <context-group purpose="location"><context context-type="linenumber">101</context></context-group> </trans-unit> - <trans-unit id="_msg833" approved="yes"> + <trans-unit id="_msg862" approved="yes"> <source xml:space="preserve">After Fee:</source> <target xml:space="preserve">After Fee:</target> <context-group purpose="location"><context context-type="linenumber">388</context></context-group> </trans-unit> - <trans-unit id="_msg834" approved="yes"> + <trans-unit id="_msg863" approved="yes"> <source xml:space="preserve">Change:</source> <target xml:space="preserve">Change:</target> <context-group purpose="location"><context context-type="linenumber">414</context></context-group> </trans-unit> - <trans-unit id="_msg835" approved="yes"> + <trans-unit id="_msg864" approved="yes"> <source xml:space="preserve">If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address.</source> <target xml:space="preserve">If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address.</target> <context-group purpose="location"><context context-type="linenumber">458</context></context-group> </trans-unit> - <trans-unit id="_msg836" approved="yes"> + <trans-unit id="_msg865" approved="yes"> <source xml:space="preserve">Custom change address</source> <target xml:space="preserve">Custom change address</target> <context-group purpose="location"><context context-type="linenumber">461</context></context-group> </trans-unit> - <trans-unit id="_msg837" approved="yes"> + <trans-unit id="_msg866" approved="yes"> <source xml:space="preserve">Transaction Fee:</source> <target xml:space="preserve">Transaction Fee:</target> <context-group purpose="location"><context context-type="linenumber">658</context></context-group> </trans-unit> - <trans-unit id="_msg838" approved="yes"> + <trans-unit id="_msg867" approved="yes"> <source xml:space="preserve">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 dash transactions than the network can process.</source> <target xml:space="preserve">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 dash transactions than the network can process.</target> <context-group purpose="location"><context context-type="linenumber">822</context></context-group> </trans-unit> - <trans-unit id="_msg839" approved="yes"> + <trans-unit id="_msg868" approved="yes"> <source xml:space="preserve">A too low fee might result in a never confirming transaction (read the tooltip)</source> <target xml:space="preserve">A too low fee might result in a never confirming transaction (read the tooltip)</target> <context-group purpose="location"><context context-type="linenumber">825</context></context-group> </trans-unit> - <trans-unit id="_msg840"> + <trans-unit id="_msg869" approved="yes"> <source xml:space="preserve">(Smart fee not initialized yet. This usually takes a few blocks…)</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">(Smart fee not initialized yet. This usually takes a few blocks…)</target> <context-group purpose="location"><context context-type="linenumber">942</context></context-group> </trans-unit> - <trans-unit id="_msg841" approved="yes"> + <trans-unit id="_msg870" approved="yes"> <source xml:space="preserve">Confirmation time target:</source> <target xml:space="preserve">Confirmation time target:</target> <context-group purpose="location"><context context-type="linenumber">968</context></context-group> </trans-unit> - <trans-unit id="_msg842" approved="yes"> + <trans-unit id="_msg871" approved="yes"> <source xml:space="preserve">If the custom fee is set to 1000 duffs and the transaction is only 250 bytes, then "per kilobyte" only pays 250 duffs in fee,<br />while "at least" pays 1000 duffs. For transactions bigger than a kilobyte both pay by kilobyte.</source> <target xml:space="preserve">If the custom fee is set to 1000 duffs and the transaction is only 250 bytes, then "per kilobyte" only pays 250 duffs in fee,<br />while "at least" pays 1000 duffs. For transactions bigger than a kilobyte both pay by kilobyte.</target> <context-group purpose="location"><context context-type="linenumber">789</context></context-group> </trans-unit> - <trans-unit id="_msg843" approved="yes"> + <trans-unit id="_msg872" approved="yes"> <source xml:space="preserve">per kilobyte</source> <target xml:space="preserve">per kilobyte</target> <context-group purpose="location"><context context-type="linenumber">792</context></context-group> </trans-unit> - <trans-unit id="_msg844" approved="yes"> + <trans-unit id="_msg873" approved="yes"> <source xml:space="preserve">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> <target xml:space="preserve">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.</target> <context-group purpose="location"><context context-type="linenumber">694</context></context-group> </trans-unit> - <trans-unit id="_msg845"> + <trans-unit id="_msg874" approved="yes"> <source xml:space="preserve">Choose…</source> - <target xml:space="preserve"></target> + <target xml:space="preserve">Choose…</target> <context-group purpose="location"><context context-type="linenumber">672</context></context-group> </trans-unit> - <trans-unit id="_msg846" approved="yes"> + <trans-unit id="_msg875" approved="yes"> <source xml:space="preserve">Note: Not enough data for fee estimation, using the fallback fee instead.</source> <target xml:space="preserve">Note: Not enough data for fee estimation, using the fallback fee instead.</target> <context-group purpose="location"><context context-type="linenumber">697</context></context-group> </trans-unit> - <trans-unit id="_msg847" approved="yes"> + <trans-unit id="_msg876" approved="yes"> <source xml:space="preserve">Hide transaction fee settings</source> <target xml:space="preserve">Hide transaction fee settings</target> <context-group purpose="location"><context context-type="linenumber">735</context></context-group> </trans-unit> - <trans-unit id="_msg848" approved="yes"> + <trans-unit id="_msg877" approved="yes"> <source xml:space="preserve">Hide</source> <target xml:space="preserve">Hide</target> <context-group purpose="location"><context context-type="linenumber">738</context></context-group> </trans-unit> - <trans-unit id="_msg849" approved="yes"> + <trans-unit id="_msg878" approved="yes"> <source xml:space="preserve">Recommended:</source> <target xml:space="preserve">Recommended:</target> <context-group purpose="location"><context context-type="linenumber">857</context></context-group> </trans-unit> - <trans-unit id="_msg850" approved="yes"> + <trans-unit id="_msg879" approved="yes"> <source xml:space="preserve">Custom:</source> <target xml:space="preserve">Custom:</target> <context-group purpose="location"><context context-type="linenumber">890</context></context-group> </trans-unit> - <trans-unit id="_msg851" approved="yes"> + <trans-unit id="_msg880" approved="yes"> <source xml:space="preserve">Confirm the send action</source> <target xml:space="preserve">Confirm the send action</target> <context-group purpose="location"><context context-type="linenumber">1055</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../sendcoinsdialog.cpp</context><context context-type="linenumber">152</context></context-group> + <context-group purpose="location"><context context-type="sourcefile">../sendcoinsdialog.cpp</context><context context-type="linenumber">155</context></context-group> </trans-unit> - <trans-unit id="_msg852" approved="yes"> + <trans-unit id="_msg881" approved="yes"> <source xml:space="preserve">S&end</source> <target xml:space="preserve">S&end</target> <context-group purpose="location"><context context-type="linenumber">1058</context></context-group> - <context-group purpose="location"><context context-type="sourcefile">../sendcoinsdialog.cpp</context><context context-type="linenumber">151</context></context-group> + <context-group purpose="location"><context context-type="sourcefile">../sendcoinsdialog.cpp</context><context context-type="linenumber">154</context></context-group> </trans-unit> - <trans-unit id="_msg853" approved="yes"> + <trans-unit id="_msg882" approved="yes"> <source xml:space="preserve">Clear all fields of the form.</source> <target xml:space="preserve">Clear all fields of the form.</target> <context-group purpose="location"><context context-type="linenumber">1077</context></context-group> </trans-unit> - <trans-unit id="_msg854" approved="yes"> + <trans-unit id="_msg883" approved="yes"> <source xml:space="preserve">Clear &All</source> <target xml:space="preserve">Clear &All</target> <context-group purpose="location"><context context-type="linenumber">1080</context></context-group> </trans-unit> - <trans-unit id="_msg855" approved="yes"> + <trans-unit id="_msg884" approved="yes"> <source xml:space="preserve">Send to multiple recipients at once</source> <target xml:space="preserve">Send to multiple recipients at once</target> <context-group purpose="location"><context context-type="linenumber">1090</context></context-group> </trans-unit> - <trans-unit id="_msg856" approved="yes"> + <trans-unit id="_msg885" approved="yes"> <source xml:space="preserve">Add &Recipient</source> <target xml:space="preserve">Add &Recipient</target> <context-group purpose="location"><context context-type="linenumber">1093</context></context-group> </trans-unit> - <trans-unit id="_msg857" approved="yes"> + <trans-unit id="_msg886" approved="yes"> <source xml:space="preserve">Balance:</source> <target xml:space="preserve">Balance:</target> <context-group purpose="location"><context context-type="linenumber">1121</context></context-group> @@ -4721,391 +4910,391 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../sendcoinsdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="SendCoinsDialog"> - <trans-unit id="_msg858" approved="yes"> + <trans-unit id="_msg887" approved="yes"> <source xml:space="preserve">Copy quantity</source> <target xml:space="preserve">Copy quantity</target> - <context-group purpose="location"><context context-type="linenumber">106</context></context-group> + <context-group purpose="location"><context context-type="linenumber">109</context></context-group> </trans-unit> - <trans-unit id="_msg859" approved="yes"> + <trans-unit id="_msg888" approved="yes"> <source xml:space="preserve">Copy amount</source> <target xml:space="preserve">Copy amount</target> - <context-group purpose="location"><context context-type="linenumber">107</context></context-group> + <context-group purpose="location"><context context-type="linenumber">110</context></context-group> </trans-unit> - <trans-unit id="_msg860" approved="yes"> + <trans-unit id="_msg889" approved="yes"> <source xml:space="preserve">Copy fee</source> <target xml:space="preserve">Copy fee</target> - <context-group purpose="location"><context context-type="linenumber">108</context></context-group> + <context-group purpose="location"><context context-type="linenumber">111</context></context-group> </trans-unit> - <trans-unit id="_msg861" approved="yes"> + <trans-unit id="_msg890" approved="yes"> <source xml:space="preserve">Copy after fee</source> <target xml:space="preserve">Copy after fee</target> - <context-group purpose="location"><context context-type="linenumber">109</context></context-group> + <context-group purpose="location"><context context-type="linenumber">112</context></context-group> </trans-unit> - <trans-unit id="_msg862" approved="yes"> + <trans-unit id="_msg891" approved="yes"> <source xml:space="preserve">Copy bytes</source> <target xml:space="preserve">Copy bytes</target> - <context-group purpose="location"><context context-type="linenumber">110</context></context-group> + <context-group purpose="location"><context context-type="linenumber">113</context></context-group> </trans-unit> - <trans-unit id="_msg863" approved="yes"> + <trans-unit id="_msg892" approved="yes"> <source xml:space="preserve">Copy dust</source> <target xml:space="preserve">Copy dust</target> - <context-group purpose="location"><context context-type="linenumber">111</context></context-group> + <context-group purpose="location"><context context-type="linenumber">114</context></context-group> </trans-unit> - <trans-unit id="_msg864" approved="yes"> + <trans-unit id="_msg893" approved="yes"> <source xml:space="preserve">Copy change</source> <target xml:space="preserve">Copy change</target> - <context-group purpose="location"><context context-type="linenumber">112</context></context-group> + <context-group purpose="location"><context context-type="linenumber">115</context></context-group> </trans-unit> - <trans-unit id="_msg865" approved="yes"> + <trans-unit id="_msg894" approved="yes"> <source xml:space="preserve">%1 (%2 blocks)</source> <target xml:space="preserve">%1 (%2 blocks)</target> - <context-group purpose="location"><context context-type="linenumber">208</context></context-group> + <context-group purpose="location"><context context-type="linenumber">211</context></context-group> </trans-unit> - <trans-unit id="_msg866" approved="yes"> + <trans-unit id="_msg895" approved="yes"> <source xml:space="preserve">This will produce a Partially Signed 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> <target xml:space="preserve">This will produce a Partially Signed Transaction (PSBT) which you can save or copy and then sign with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet.</target> - <context-group purpose="location"><context context-type="linenumber">373</context></context-group> + <context-group purpose="location"><context context-type="linenumber">376</context></context-group> </trans-unit> - <trans-unit id="_msg867" approved="yes"> + <trans-unit id="_msg896" approved="yes"> <source xml:space="preserve">using</source> <target xml:space="preserve">using</target> - <context-group purpose="location"><context context-type="linenumber">383</context></context-group> - <context-group purpose="location"><context context-type="linenumber">385</context></context-group> + <context-group purpose="location"><context context-type="linenumber">386</context></context-group> + <context-group purpose="location"><context context-type="linenumber">388</context></context-group> </trans-unit> - <trans-unit id="_msg868" approved="yes"> + <trans-unit id="_msg897" approved="yes"> <source xml:space="preserve">%1 to %2</source> <target xml:space="preserve">%1 to %2</target> - <context-group purpose="location"><context context-type="linenumber">354</context></context-group> + <context-group purpose="location"><context context-type="linenumber">357</context></context-group> </trans-unit> - <trans-unit id="_msg869" approved="yes"> + <trans-unit id="_msg898" approved="yes"> <source xml:space="preserve">Are you sure you want to send?</source> <target xml:space="preserve">Are you sure you want to send?</target> - <context-group purpose="location"><context context-type="linenumber">369</context></context-group> + <context-group purpose="location"><context context-type="linenumber">372</context></context-group> </trans-unit> - <trans-unit id="_msg870" approved="yes"> + <trans-unit id="_msg899" approved="yes"> <source xml:space="preserve"><b>(%1 of %2 entries displayed)</b></source> <target xml:space="preserve"><b>(%1 of %2 entries displayed)</b></target> - <context-group purpose="location"><context context-type="linenumber">394</context></context-group> + <context-group purpose="location"><context context-type="linenumber">397</context></context-group> </trans-unit> - <trans-unit id="_msg871" approved="yes"> + <trans-unit id="_msg900" approved="yes"> <source xml:space="preserve">S&end mixed funds</source> <target xml:space="preserve">S&end mixed funds</target> - <context-group purpose="location"><context context-type="linenumber">148</context></context-group> + <context-group purpose="location"><context context-type="linenumber">151</context></context-group> </trans-unit> - <trans-unit id="_msg872" approved="yes"> + <trans-unit id="_msg901" approved="yes"> <source xml:space="preserve">Confirm the %1 send action</source> <target xml:space="preserve">Confirm the %1 send action</target> - <context-group purpose="location"><context context-type="linenumber">149</context></context-group> + <context-group purpose="location"><context context-type="linenumber">152</context></context-group> </trans-unit> - <trans-unit id="_msg873" approved="yes"> + <trans-unit id="_msg902" approved="yes"> <source xml:space="preserve">Cr&eate Unsigned</source> <target xml:space="preserve">Cr&eate Unsigned</target> - <context-group purpose="location"><context context-type="linenumber">231</context></context-group> + <context-group purpose="location"><context context-type="linenumber">234</context></context-group> </trans-unit> - <trans-unit id="_msg874" approved="yes"> + <trans-unit id="_msg903" approved="yes"> <source xml:space="preserve">Creates a Partially Signed Bitcoin Transaction (PSBT) for use with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet.</source> <target xml:space="preserve">Creates a Partially Signed Bitcoin Transaction (PSBT) for use with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet.</target> - <context-group purpose="location"><context context-type="linenumber">232</context></context-group> + <context-group purpose="location"><context context-type="linenumber">235</context></context-group> </trans-unit> - <trans-unit id="_msg875" approved="yes"> + <trans-unit id="_msg904" approved="yes"> <source xml:space="preserve"> from wallet '%1'</source> <target xml:space="preserve"> from wallet '%1'</target> - <context-group purpose="location"><context context-type="linenumber">338</context></context-group> + <context-group purpose="location"><context context-type="linenumber">341</context></context-group> </trans-unit> - <trans-unit id="_msg876" approved="yes"> + <trans-unit id="_msg905" approved="yes"> <source xml:space="preserve">%1 to '%2'</source> <target xml:space="preserve">%1 to '%2'</target> - <context-group purpose="location"><context context-type="linenumber">349</context></context-group> + <context-group purpose="location"><context context-type="linenumber">352</context></context-group> </trans-unit> - <trans-unit id="_msg877" approved="yes"> + <trans-unit id="_msg906" approved="yes"> <source xml:space="preserve">Do you want to draft this transaction?</source> <target xml:space="preserve">Do you want to draft this transaction?</target> - <context-group purpose="location"><context context-type="linenumber">367</context></context-group> + <context-group purpose="location"><context context-type="linenumber">370</context></context-group> </trans-unit> - <trans-unit id="_msg878" approved="yes"> + <trans-unit id="_msg907" approved="yes"> <source xml:space="preserve">%1 funds only</source> <target xml:space="preserve">%1 funds only</target> - <context-group purpose="location"><context context-type="linenumber">383</context></context-group> + <context-group purpose="location"><context context-type="linenumber">386</context></context-group> </trans-unit> - <trans-unit id="_msg879" approved="yes"> + <trans-unit id="_msg908" approved="yes"> <source xml:space="preserve">any available funds</source> <target xml:space="preserve">any available funds</target> - <context-group purpose="location"><context context-type="linenumber">385</context></context-group> + <context-group purpose="location"><context context-type="linenumber">388</context></context-group> </trans-unit> - <trans-unit id="_msg880" approved="yes"> + <trans-unit id="_msg909" approved="yes"> <source xml:space="preserve">Transaction fee</source> <target xml:space="preserve">Transaction fee</target> - <context-group purpose="location"><context context-type="linenumber">404</context></context-group> + <context-group purpose="location"><context context-type="linenumber">407</context></context-group> </trans-unit> - <trans-unit id="_msg881" approved="yes"> + <trans-unit id="_msg910" approved="yes"> <source xml:space="preserve">(%1 transactions have higher fees usually due to no change output being allowed)</source> <target xml:space="preserve">(%1 transactions have higher fees usually due to no change output being allowed)</target> - <context-group purpose="location"><context context-type="linenumber">410</context></context-group> + <context-group purpose="location"><context context-type="linenumber">413</context></context-group> </trans-unit> - <trans-unit id="_msg882" approved="yes"> + <trans-unit id="_msg911" approved="yes"> <source xml:space="preserve">Transaction size: %1</source> <target xml:space="preserve">Transaction size: %1</target> - <context-group purpose="location"><context context-type="linenumber">417</context></context-group> + <context-group purpose="location"><context context-type="linenumber">420</context></context-group> </trans-unit> - <trans-unit id="_msg883" approved="yes"> + <trans-unit id="_msg912" approved="yes"> <source xml:space="preserve">Fee rate: %1</source> <target xml:space="preserve">Fee rate: %1</target> - <context-group purpose="location"><context context-type="linenumber">420</context></context-group> + <context-group purpose="location"><context context-type="linenumber">423</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">426</context></context-group> - <trans-unit id="_msg884[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">429</context></context-group> + <trans-unit id="_msg913[0]" approved="yes"> <source xml:space="preserve">This transaction will consume %n input(s)</source> <target xml:space="preserve">This transaction will consume %n input</target> </trans-unit> - <trans-unit id="_msg884[1]" approved="yes"> + <trans-unit id="_msg913[1]" approved="yes"> <source xml:space="preserve">This transaction will consume %n input(s)</source> <target xml:space="preserve">This transaction will consume %n inputs</target> </trans-unit> </group> - <trans-unit id="_msg885" approved="yes"> + <trans-unit id="_msg914" approved="yes"> <source xml:space="preserve">Warning: Using %1 with %2 or more inputs can harm your privacy and is not recommended</source> <target xml:space="preserve">Warning: Using %1 with %2 or more inputs can harm your privacy and is not recommended</target> - <context-group purpose="location"><context context-type="linenumber">432</context></context-group> + <context-group purpose="location"><context context-type="linenumber">435</context></context-group> </trans-unit> - <trans-unit id="_msg886" approved="yes"> + <trans-unit id="_msg915" approved="yes"> <source xml:space="preserve">Click to learn more</source> <target xml:space="preserve">Click to learn more</target> - <context-group purpose="location"><context context-type="linenumber">434</context></context-group> + <context-group purpose="location"><context context-type="linenumber">437</context></context-group> </trans-unit> - <trans-unit id="_msg887" approved="yes"> + <trans-unit id="_msg916" approved="yes"> <source xml:space="preserve">Total Amount</source> <target xml:space="preserve">Total Amount</target> - <context-group purpose="location"><context context-type="linenumber">451</context></context-group> + <context-group purpose="location"><context context-type="linenumber">454</context></context-group> </trans-unit> - <trans-unit id="_msg888" approved="yes"> + <trans-unit id="_msg917" approved="yes"> <source xml:space="preserve">or</source> <target xml:space="preserve">or</target> - <context-group purpose="location"><context context-type="linenumber">454</context></context-group> + <context-group purpose="location"><context context-type="linenumber">457</context></context-group> </trans-unit> - <trans-unit id="_msg889" approved="yes"> + <trans-unit id="_msg918" approved="yes"> <source xml:space="preserve">Confirm send coins</source> <target xml:space="preserve">Confirm send coins</target> - <context-group purpose="location"><context context-type="linenumber">473</context></context-group> + <context-group purpose="location"><context context-type="linenumber">476</context></context-group> </trans-unit> - <trans-unit id="_msg890" approved="yes"> + <trans-unit id="_msg919" approved="yes"> <source xml:space="preserve">Confirm transaction proposal</source> <target xml:space="preserve">Confirm transaction proposal</target> - <context-group purpose="location"><context context-type="linenumber">473</context></context-group> + <context-group purpose="location"><context context-type="linenumber">476</context></context-group> </trans-unit> - <trans-unit id="_msg891" approved="yes"> + <trans-unit id="_msg920" approved="yes"> <source xml:space="preserve">Create Unsigned</source> <target xml:space="preserve">Create Unsigned</target> - <context-group purpose="location"><context context-type="linenumber">474</context></context-group> + <context-group purpose="location"><context context-type="linenumber">477</context></context-group> </trans-unit> - <trans-unit id="_msg892" approved="yes"> + <trans-unit id="_msg921" approved="yes"> <source xml:space="preserve">Save Transaction Data</source> <target xml:space="preserve">Save Transaction Data</target> - <context-group purpose="location"><context context-type="linenumber">518</context></context-group> + <context-group purpose="location"><context context-type="linenumber">521</context></context-group> </trans-unit> - <trans-unit id="_msg893" approved="yes"> + <trans-unit id="_msg922" approved="yes"> <source xml:space="preserve">PSBT saved</source> <target xml:space="preserve">PSBT saved</target> - <context-group purpose="location"><context context-type="linenumber">527</context></context-group> + <context-group purpose="location"><context context-type="linenumber">530</context></context-group> </trans-unit> - <trans-unit id="_msg894" approved="yes"> + <trans-unit id="_msg923" approved="yes"> <source xml:space="preserve">Watch-only balance:</source> <target xml:space="preserve">Watch-only balance:</target> - <context-group purpose="location"><context context-type="linenumber">705</context></context-group> + <context-group purpose="location"><context context-type="linenumber">708</context></context-group> </trans-unit> - <trans-unit id="_msg895" approved="yes"> + <trans-unit id="_msg924" approved="yes"> <source xml:space="preserve">Send</source> <target xml:space="preserve">Send</target> - <context-group purpose="location"><context context-type="linenumber">474</context></context-group> + <context-group purpose="location"><context context-type="linenumber">477</context></context-group> </trans-unit> - <trans-unit id="_msg896"> + <trans-unit id="_msg925" approved="yes"> <source xml:space="preserve">To review recipient list click "Show Details…"</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">457</context></context-group> + <target xml:space="preserve">To review recipient list click "Show Details…"</target> + <context-group purpose="location"><context context-type="linenumber">460</context></context-group> </trans-unit> - <trans-unit id="_msg897" approved="yes"> + <trans-unit id="_msg926" approved="yes"> <source xml:space="preserve">Partially Signed Transaction (Binary)</source> <target xml:space="preserve">Partially Signed Transaction (Binary)</target> - <context-group purpose="location"><context context-type="linenumber">520</context></context-group> + <context-group purpose="location"><context context-type="linenumber">523</context></context-group> <note annotates="source" from="developer">Expanded name of the binary PSBT file format. See: BIP 174.</note> </trans-unit> - <trans-unit id="_msg898" approved="yes"> + <trans-unit id="_msg927" approved="yes"> <source xml:space="preserve">The recipient address is not valid. Please recheck.</source> <target xml:space="preserve">The recipient address is not valid. Please recheck.</target> - <context-group purpose="location"><context context-type="linenumber">735</context></context-group> + <context-group purpose="location"><context context-type="linenumber">738</context></context-group> </trans-unit> - <trans-unit id="_msg899" approved="yes"> + <trans-unit id="_msg928" approved="yes"> <source xml:space="preserve">The amount to pay must be larger than 0.</source> <target xml:space="preserve">The amount to pay must be larger than 0.</target> - <context-group purpose="location"><context context-type="linenumber">738</context></context-group> + <context-group purpose="location"><context context-type="linenumber">741</context></context-group> </trans-unit> - <trans-unit id="_msg900" approved="yes"> + <trans-unit id="_msg929" approved="yes"> <source xml:space="preserve">The amount exceeds your balance.</source> <target xml:space="preserve">The amount exceeds your balance.</target> - <context-group purpose="location"><context context-type="linenumber">741</context></context-group> + <context-group purpose="location"><context context-type="linenumber">744</context></context-group> </trans-unit> - <trans-unit id="_msg901" approved="yes"> + <trans-unit id="_msg930" approved="yes"> <source xml:space="preserve">The total exceeds your balance when the %1 transaction fee is included.</source> <target xml:space="preserve">The total exceeds your balance when the %1 transaction fee is included.</target> - <context-group purpose="location"><context context-type="linenumber">744</context></context-group> + <context-group purpose="location"><context context-type="linenumber">747</context></context-group> </trans-unit> - <trans-unit id="_msg902" approved="yes"> + <trans-unit id="_msg931" approved="yes"> <source xml:space="preserve">Duplicate address found: addresses should only be used once each.</source> <target xml:space="preserve">Duplicate address found: addresses should only be used once each.</target> - <context-group purpose="location"><context context-type="linenumber">747</context></context-group> + <context-group purpose="location"><context context-type="linenumber">750</context></context-group> </trans-unit> - <trans-unit id="_msg903" approved="yes"> + <trans-unit id="_msg932" approved="yes"> <source xml:space="preserve">Transaction creation failed!</source> <target xml:space="preserve">Transaction creation failed!</target> - <context-group purpose="location"><context context-type="linenumber">750</context></context-group> + <context-group purpose="location"><context context-type="linenumber">753</context></context-group> </trans-unit> - <trans-unit id="_msg904" approved="yes"> + <trans-unit id="_msg933" approved="yes"> <source xml:space="preserve">A fee higher than %1 is considered an absurdly high fee.</source> <target xml:space="preserve">A fee higher than %1 is considered an absurdly high fee.</target> - <context-group purpose="location"><context context-type="linenumber">754</context></context-group> + <context-group purpose="location"><context context-type="linenumber">757</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">872</context></context-group> - <trans-unit id="_msg905[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">875</context></context-group> + <trans-unit id="_msg934[0]" approved="yes"> <source xml:space="preserve">Estimated to begin confirmation within %n block(s).</source> <target xml:space="preserve">Estimated to begin confirmation within %n block.</target> </trans-unit> - <trans-unit id="_msg905[1]" approved="yes"> + <trans-unit id="_msg934[1]" approved="yes"> <source xml:space="preserve">Estimated to begin confirmation within %n block(s).</source> <target xml:space="preserve">Estimated to begin confirmation within %n blocks.</target> </trans-unit> </group> - <trans-unit id="_msg906" approved="yes"> + <trans-unit id="_msg935" approved="yes"> <source xml:space="preserve">Warning: Invalid Dash address</source> <target xml:space="preserve">Warning: Invalid Dash address</target> - <context-group purpose="location"><context context-type="linenumber">973</context></context-group> + <context-group purpose="location"><context context-type="linenumber">976</context></context-group> </trans-unit> - <trans-unit id="_msg907" approved="yes"> + <trans-unit id="_msg936" approved="yes"> <source xml:space="preserve">Warning: Unknown change address</source> <target xml:space="preserve">Warning: Unknown change address</target> - <context-group purpose="location"><context context-type="linenumber">978</context></context-group> + <context-group purpose="location"><context context-type="linenumber">981</context></context-group> </trans-unit> - <trans-unit id="_msg908" approved="yes"> + <trans-unit id="_msg937" approved="yes"> <source xml:space="preserve">Confirm custom change address</source> <target xml:space="preserve">Confirm custom change address</target> - <context-group purpose="location"><context context-type="linenumber">981</context></context-group> + <context-group purpose="location"><context context-type="linenumber">984</context></context-group> </trans-unit> - <trans-unit id="_msg909" approved="yes"> + <trans-unit id="_msg938" approved="yes"> <source xml:space="preserve">The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure?</source> <target xml:space="preserve">The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure?</target> - <context-group purpose="location"><context context-type="linenumber">981</context></context-group> + <context-group purpose="location"><context context-type="linenumber">984</context></context-group> </trans-unit> - <trans-unit id="_msg910" approved="yes"> + <trans-unit id="_msg939" approved="yes"> <source xml:space="preserve">(no label)</source> <target xml:space="preserve">(no label)</target> - <context-group purpose="location"><context context-type="linenumber">1002</context></context-group> + <context-group purpose="location"><context context-type="linenumber">1005</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/sendcoinsentry.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="SendCoinsEntry"> - <trans-unit id="_msg911" approved="yes"> + <trans-unit id="_msg940" approved="yes"> <source xml:space="preserve">Pay &To:</source> <target xml:space="preserve">Pay &To:</target> <context-group purpose="location"><context context-type="linenumber">39</context></context-group> </trans-unit> - <trans-unit id="_msg912" approved="yes"> + <trans-unit id="_msg941" approved="yes"> <source xml:space="preserve">The Dash address to send the payment to</source> <target xml:space="preserve">The Dash address to send the payment to</target> <context-group purpose="location"><context context-type="linenumber">57</context></context-group> </trans-unit> - <trans-unit id="_msg913" approved="yes"> + <trans-unit id="_msg942" approved="yes"> <source xml:space="preserve">Choose previously used address</source> <target xml:space="preserve">Choose previously used address</target> <context-group purpose="location"><context context-type="linenumber">64</context></context-group> </trans-unit> - <trans-unit id="_msg914" approved="yes"> + <trans-unit id="_msg943" approved="yes"> <source xml:space="preserve">Alt+A</source> <target xml:space="preserve">Alt+A</target> <context-group purpose="location"><context context-type="linenumber">76</context></context-group> </trans-unit> - <trans-unit id="_msg915" approved="yes"> + <trans-unit id="_msg944" approved="yes"> <source xml:space="preserve">Paste address from clipboard</source> <target xml:space="preserve">Paste address from clipboard</target> <context-group purpose="location"><context context-type="linenumber">83</context></context-group> </trans-unit> - <trans-unit id="_msg916" approved="yes"> + <trans-unit id="_msg945" approved="yes"> <source xml:space="preserve">Alt+P</source> <target xml:space="preserve">Alt+P</target> <context-group purpose="location"><context context-type="linenumber">95</context></context-group> </trans-unit> - <trans-unit id="_msg917" approved="yes"> + <trans-unit id="_msg946" approved="yes"> <source xml:space="preserve">Remove this entry</source> <target xml:space="preserve">Remove this entry</target> <context-group purpose="location"><context context-type="linenumber">102</context></context-group> <context-group purpose="location"><context context-type="linenumber">660</context></context-group> <context-group purpose="location"><context context-type="linenumber">1189</context></context-group> </trans-unit> - <trans-unit id="_msg918" approved="yes"> + <trans-unit id="_msg947" approved="yes"> <source xml:space="preserve">&Label:</source> <target xml:space="preserve">&Label:</target> <context-group purpose="location"><context context-type="linenumber">120</context></context-group> </trans-unit> - <trans-unit id="_msg919" approved="yes"> + <trans-unit id="_msg948" approved="yes"> <source xml:space="preserve">Enter a label for this address to add it to the list of used addresses</source> <target xml:space="preserve">Enter a label for this address to add it to the list of used addresses</target> <context-group purpose="location"><context context-type="linenumber">133</context></context-group> <context-group purpose="location"><context context-type="linenumber">136</context></context-group> </trans-unit> - <trans-unit id="_msg920" approved="yes"> + <trans-unit id="_msg949" approved="yes"> <source xml:space="preserve">A&mount:</source> <target xml:space="preserve">A&mount:</target> <context-group purpose="location"><context context-type="linenumber">143</context></context-group> <context-group purpose="location"><context context-type="linenumber">689</context></context-group> <context-group purpose="location"><context context-type="linenumber">1218</context></context-group> </trans-unit> - <trans-unit id="_msg921" approved="yes"> + <trans-unit id="_msg950" approved="yes"> <source xml:space="preserve">The amount to send in the selected unit</source> <target xml:space="preserve">The amount to send in the selected unit</target> <context-group purpose="location"><context context-type="linenumber">158</context></context-group> </trans-unit> - <trans-unit id="_msg922" approved="yes"> + <trans-unit id="_msg951" approved="yes"> <source xml:space="preserve">The fee will be deducted from the amount being sent. The recipient will receive a lower amount of Dash than you enter in the amount field. If multiple recipients are selected, the fee is split equally.</source> <target xml:space="preserve">The fee will be deducted from the amount being sent. The recipient will receive a lower amount of Dash than you enter in the amount field. If multiple recipients are selected, the fee is split equally.</target> <context-group purpose="location"><context context-type="linenumber">165</context></context-group> </trans-unit> - <trans-unit id="_msg923" approved="yes"> + <trans-unit id="_msg952" approved="yes"> <source xml:space="preserve">S&ubtract fee from amount</source> <target xml:space="preserve">S&ubtract fee from amount</target> <context-group purpose="location"><context context-type="linenumber">168</context></context-group> </trans-unit> - <trans-unit id="_msg924" approved="yes"> + <trans-unit id="_msg953" approved="yes"> <source xml:space="preserve">Use available balance</source> <target xml:space="preserve">Use available balance</target> <context-group purpose="location"><context context-type="linenumber">175</context></context-group> </trans-unit> - <trans-unit id="_msg925" approved="yes"> + <trans-unit id="_msg954" approved="yes"> <source xml:space="preserve">Message:</source> <target xml:space="preserve">Message:</target> <context-group purpose="location"><context context-type="linenumber">184</context></context-group> </trans-unit> - <trans-unit id="_msg926" approved="yes"> + <trans-unit id="_msg955" approved="yes"> <source xml:space="preserve">A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network.</source> <target xml:space="preserve">A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network.</target> <context-group purpose="location"><context context-type="linenumber">194</context></context-group> </trans-unit> - <trans-unit id="_msg927" approved="yes"> + <trans-unit id="_msg956" approved="yes"> <source xml:space="preserve">This is an unauthenticated payment request.</source> <target xml:space="preserve">This is an unauthenticated payment request.</target> <context-group purpose="location"><context context-type="linenumber">627</context></context-group> </trans-unit> - <trans-unit id="_msg928" approved="yes"> + <trans-unit id="_msg957" approved="yes"> <source xml:space="preserve">This is an authenticated payment request.</source> <target xml:space="preserve">This is an authenticated payment request.</target> <context-group purpose="location"><context context-type="linenumber">1152</context></context-group> </trans-unit> - <trans-unit id="_msg929" approved="yes"> + <trans-unit id="_msg958" approved="yes"> <source xml:space="preserve">Pay To:</source> <target xml:space="preserve">Pay To:</target> <context-group purpose="location"><context context-type="linenumber">642</context></context-group> <context-group purpose="location"><context context-type="linenumber">1167</context></context-group> </trans-unit> - <trans-unit id="_msg930" approved="yes"> + <trans-unit id="_msg959" approved="yes"> <source xml:space="preserve">Memo:</source> <target xml:space="preserve">Memo:</target> <context-group purpose="location"><context context-type="linenumber">672</context></context-group> @@ -5115,140 +5304,140 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../forms/signverifymessagedialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="SignVerifyMessageDialog"> - <trans-unit id="_msg931" approved="yes"> + <trans-unit id="_msg960" approved="yes"> <source xml:space="preserve">Signatures - Sign / Verify a Message</source> <target xml:space="preserve">Signatures - Sign / Verify a Message</target> <context-group purpose="location"><context context-type="linenumber">14</context></context-group> </trans-unit> - <trans-unit id="_msg932" approved="yes"> + <trans-unit id="_msg961" approved="yes"> <source xml:space="preserve">&Sign Message</source> <target xml:space="preserve">&Sign Message</target> <context-group purpose="location"><context context-type="linenumber">31</context></context-group> </trans-unit> - <trans-unit id="_msg933" approved="yes"> + <trans-unit id="_msg962" approved="yes"> <source xml:space="preserve">You can sign messages/agreements with your addresses to prove you can receive Dash sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to.</source> <target xml:space="preserve">You can sign messages/agreements with your addresses to prove you can receive Dash sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to.</target> <context-group purpose="location"><context context-type="linenumber">66</context></context-group> </trans-unit> - <trans-unit id="_msg934" approved="yes"> + <trans-unit id="_msg963" approved="yes"> <source xml:space="preserve">The Dash address to sign the message with</source> <target xml:space="preserve">The Dash address to sign the message with</target> <context-group purpose="location"><context context-type="linenumber">84</context></context-group> </trans-unit> - <trans-unit id="_msg935" approved="yes"> + <trans-unit id="_msg964" approved="yes"> <source xml:space="preserve">Choose previously used address</source> <target xml:space="preserve">Choose previously used address</target> <context-group purpose="location"><context context-type="linenumber">91</context></context-group> <context-group purpose="location"><context context-type="linenumber">264</context></context-group> </trans-unit> - <trans-unit id="_msg936" approved="yes"> + <trans-unit id="_msg965" approved="yes"> <source xml:space="preserve">Alt+A</source> <target xml:space="preserve">Alt+A</target> <context-group purpose="location"><context context-type="linenumber">97</context></context-group> <context-group purpose="location"><context context-type="linenumber">270</context></context-group> </trans-unit> - <trans-unit id="_msg937" approved="yes"> + <trans-unit id="_msg966" approved="yes"> <source xml:space="preserve">Paste address from clipboard</source> <target xml:space="preserve">Paste address from clipboard</target> <context-group purpose="location"><context context-type="linenumber">104</context></context-group> </trans-unit> - <trans-unit id="_msg938" approved="yes"> + <trans-unit id="_msg967" approved="yes"> <source xml:space="preserve">Alt+P</source> <target xml:space="preserve">Alt+P</target> <context-group purpose="location"><context context-type="linenumber">110</context></context-group> </trans-unit> - <trans-unit id="_msg939" approved="yes"> + <trans-unit id="_msg968" approved="yes"> <source xml:space="preserve">Enter the message you want to sign here</source> <target xml:space="preserve">Enter the message you want to sign here</target> <context-group purpose="location"><context context-type="linenumber">119</context></context-group> </trans-unit> - <trans-unit id="_msg940" approved="yes"> + <trans-unit id="_msg969" approved="yes"> <source xml:space="preserve">Signature</source> <target xml:space="preserve">Signature</target> <context-group purpose="location"><context context-type="linenumber">129</context></context-group> </trans-unit> - <trans-unit id="_msg941" approved="yes"> + <trans-unit id="_msg970" approved="yes"> <source xml:space="preserve">Copy the current signature to the system clipboard</source> <target xml:space="preserve">Copy the current signature to the system clipboard</target> <context-group purpose="location"><context context-type="linenumber">154</context></context-group> </trans-unit> - <trans-unit id="_msg942" approved="yes"> + <trans-unit id="_msg971" approved="yes"> <source xml:space="preserve">Sign the message to prove you own this Dash address</source> <target xml:space="preserve">Sign the message to prove you own this Dash address</target> <context-group purpose="location"><context context-type="linenumber">168</context></context-group> </trans-unit> - <trans-unit id="_msg943" approved="yes"> + <trans-unit id="_msg972" approved="yes"> <source xml:space="preserve">Sign &Message</source> <target xml:space="preserve">Sign &Message</target> <context-group purpose="location"><context context-type="linenumber">171</context></context-group> </trans-unit> - <trans-unit id="_msg944" approved="yes"> + <trans-unit id="_msg973" approved="yes"> <source xml:space="preserve">Reset all sign message fields</source> <target xml:space="preserve">Reset all sign message fields</target> <context-group purpose="location"><context context-type="linenumber">181</context></context-group> </trans-unit> - <trans-unit id="_msg945" approved="yes"> + <trans-unit id="_msg974" approved="yes"> <source xml:space="preserve">Clear &All</source> <target xml:space="preserve">Clear &All</target> <context-group purpose="location"><context context-type="linenumber">184</context></context-group> <context-group purpose="location"><context context-type="linenumber">317</context></context-group> </trans-unit> - <trans-unit id="_msg946" approved="yes"> + <trans-unit id="_msg975" approved="yes"> <source xml:space="preserve">&Verify Message</source> <target xml:space="preserve">&Verify Message</target> <context-group purpose="location"><context context-type="linenumber">41</context></context-group> </trans-unit> - <trans-unit id="_msg947" approved="yes"> + <trans-unit id="_msg976" approved="yes"> <source xml:space="preserve">Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction!</source> <target xml:space="preserve">Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction!</target> <context-group purpose="location"><context context-type="linenumber">236</context></context-group> </trans-unit> - <trans-unit id="_msg948" approved="yes"> + <trans-unit id="_msg977" approved="yes"> <source xml:space="preserve">The Dash address the message was signed with</source> <target xml:space="preserve">The Dash address the message was signed with</target> <context-group purpose="location"><context context-type="linenumber">257</context></context-group> </trans-unit> - <trans-unit id="_msg949" approved="yes"> + <trans-unit id="_msg978" approved="yes"> <source xml:space="preserve">The signed message to verify</source> <target xml:space="preserve">The signed message to verify</target> <context-group purpose="location"><context context-type="linenumber">279</context></context-group> </trans-unit> - <trans-unit id="_msg950" approved="yes"> + <trans-unit id="_msg979" approved="yes"> <source xml:space="preserve">The signature given when the message was signed</source> <target xml:space="preserve">The signature given when the message was signed</target> <context-group purpose="location"><context context-type="linenumber">289</context></context-group> </trans-unit> - <trans-unit id="_msg951" approved="yes"> + <trans-unit id="_msg980" approved="yes"> <source xml:space="preserve">Verify the message to ensure it was signed with the specified Dash address</source> <target xml:space="preserve">Verify the message to ensure it was signed with the specified Dash address</target> <context-group purpose="location"><context context-type="linenumber">301</context></context-group> </trans-unit> - <trans-unit id="_msg952" approved="yes"> + <trans-unit id="_msg981" approved="yes"> <source xml:space="preserve">Verify &Message</source> <target xml:space="preserve">Verify &Message</target> <context-group purpose="location"><context context-type="linenumber">304</context></context-group> </trans-unit> - <trans-unit id="_msg953" approved="yes"> + <trans-unit id="_msg982" approved="yes"> <source xml:space="preserve">Reset all verify message fields</source> <target xml:space="preserve">Reset all verify message fields</target> <context-group purpose="location"><context context-type="linenumber">314</context></context-group> </trans-unit> - <trans-unit id="_msg954" approved="yes"> + <trans-unit id="_msg983" approved="yes"> <source xml:space="preserve">Enter a message to be signed</source> <target xml:space="preserve">Enter a message to be signed</target> <context-group purpose="location"><context context-type="linenumber">122</context></context-group> </trans-unit> - <trans-unit id="_msg955" approved="yes"> + <trans-unit id="_msg984" approved="yes"> <source xml:space="preserve">Click "Sign Message" to generate signature</source> <target xml:space="preserve">Click "Sign Message" to generate signature</target> <context-group purpose="location"><context context-type="linenumber">144</context></context-group> </trans-unit> - <trans-unit id="_msg956" approved="yes"> + <trans-unit id="_msg985" approved="yes"> <source xml:space="preserve">Enter a message to be verified</source> <target xml:space="preserve">Enter a message to be verified</target> <context-group purpose="location"><context context-type="linenumber">282</context></context-group> </trans-unit> - <trans-unit id="_msg957" approved="yes"> + <trans-unit id="_msg986" approved="yes"> <source xml:space="preserve">Enter a signature for the message to be verified</source> <target xml:space="preserve">Enter a signature for the message to be verified</target> <context-group purpose="location"><context context-type="linenumber">292</context></context-group> @@ -5257,13 +5446,13 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../signverifymessagedialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="SignVerifyMessageDialog"> - <trans-unit id="_msg958" approved="yes"> + <trans-unit id="_msg987" approved="yes"> <source xml:space="preserve">The entered address is invalid.</source> <target xml:space="preserve">The entered address is invalid.</target> <context-group purpose="location"><context context-type="linenumber">151</context></context-group> <context-group purpose="location"><context context-type="linenumber">250</context></context-group> </trans-unit> - <trans-unit id="_msg959" approved="yes"> + <trans-unit id="_msg988" approved="yes"> <source xml:space="preserve">Please check the address and try again.</source> <target xml:space="preserve">Please check the address and try again.</target> <context-group purpose="location"><context context-type="linenumber">151</context></context-group> @@ -5271,83 +5460,97 @@ https://explore.transifex.com/dash/dash/</source> <context-group purpose="location"><context context-type="linenumber">251</context></context-group> <context-group purpose="location"><context context-type="linenumber">258</context></context-group> </trans-unit> - <trans-unit id="_msg960" approved="yes"> + <trans-unit id="_msg989" approved="yes"> <source xml:space="preserve">The entered address does not refer to a key.</source> <target xml:space="preserve">The entered address does not refer to a key.</target> <context-group purpose="location"><context context-type="linenumber">158</context></context-group> <context-group purpose="location"><context context-type="linenumber">257</context></context-group> </trans-unit> - <trans-unit id="_msg961" approved="yes"> + <trans-unit id="_msg990" approved="yes"> <source xml:space="preserve">Wallet unlock was cancelled.</source> <target xml:space="preserve">Wallet unlock was cancelled.</target> <context-group purpose="location"><context context-type="linenumber">166</context></context-group> </trans-unit> - <trans-unit id="_msg962" approved="yes"> + <trans-unit id="_msg991" approved="yes"> <source xml:space="preserve">No error</source> <target xml:space="preserve">No error</target> <context-group purpose="location"><context context-type="linenumber">177</context></context-group> </trans-unit> - <trans-unit id="_msg963" approved="yes"> + <trans-unit id="_msg992" approved="yes"> <source xml:space="preserve">Private key for the entered address is not available.</source> <target xml:space="preserve">Private key for the entered address is not available.</target> <context-group purpose="location"><context context-type="linenumber">180</context></context-group> </trans-unit> - <trans-unit id="_msg964" approved="yes"> + <trans-unit id="_msg993" approved="yes"> <source xml:space="preserve">Message signing failed.</source> <target xml:space="preserve">Message signing failed.</target> <context-group purpose="location"><context context-type="linenumber">183</context></context-group> </trans-unit> - <trans-unit id="_msg965" approved="yes"> + <trans-unit id="_msg994" approved="yes"> <source xml:space="preserve">Message signed.</source> <target xml:space="preserve">Message signed.</target> <context-group purpose="location"><context context-type="linenumber">195</context></context-group> </trans-unit> - <trans-unit id="_msg966" approved="yes"> + <trans-unit id="_msg995" approved="yes"> <source xml:space="preserve">The signature could not be decoded.</source> <target xml:space="preserve">The signature could not be decoded.</target> <context-group purpose="location"><context context-type="linenumber">264</context></context-group> </trans-unit> - <trans-unit id="_msg967" approved="yes"> + <trans-unit id="_msg996" approved="yes"> <source xml:space="preserve">Please check the signature and try again.</source> <target xml:space="preserve">Please check the signature and try again.</target> <context-group purpose="location"><context context-type="linenumber">265</context></context-group> <context-group purpose="location"><context context-type="linenumber">272</context></context-group> </trans-unit> - <trans-unit id="_msg968" approved="yes"> + <trans-unit id="_msg997" approved="yes"> <source xml:space="preserve">The signature did not match the message digest.</source> <target xml:space="preserve">The signature did not match the message digest.</target> <context-group purpose="location"><context context-type="linenumber">271</context></context-group> </trans-unit> - <trans-unit id="_msg969" approved="yes"> + <trans-unit id="_msg998" approved="yes"> <source xml:space="preserve">Message verification failed.</source> <target xml:space="preserve">Message verification failed.</target> <context-group purpose="location"><context context-type="linenumber">277</context></context-group> </trans-unit> - <trans-unit id="_msg970" approved="yes"> + <trans-unit id="_msg999" approved="yes"> <source xml:space="preserve">Message verified.</source> <target xml:space="preserve">Message verified.</target> <context-group purpose="location"><context context-type="linenumber">245</context></context-group> </trans-unit> </group> </body></file> + <file original="../splashscreen.cpp" datatype="cpp" source-language="en" target-language="en"><body> + <group restype="x-trolltech-linguist-context" resname="SplashScreen"> + <trans-unit id="_msg1000"> + <source xml:space="preserve">(press q to shutdown and continue later)</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">192</context></context-group> + </trans-unit> + <trans-unit id="_msg1001"> + <source xml:space="preserve">press q to shutdown</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">193</context></context-group> + </trans-unit> + </group> + </body></file> <file original="../trafficgraphwidget.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="TrafficGraphWidget"> - <trans-unit id="_msg971" approved="yes"> - <source xml:space="preserve">KB/s</source> - <target xml:space="preserve">KB/s</target> + <trans-unit id="_msg1002"> + <source xml:space="preserve">kB/s</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">101</context></context-group> </trans-unit> - <trans-unit id="_msg972" approved="yes"> + <trans-unit id="_msg1003" approved="yes"> <source xml:space="preserve">Total</source> <target xml:space="preserve">Total</target> <context-group purpose="location"><context context-type="linenumber">166</context></context-group> </trans-unit> - <trans-unit id="_msg973" approved="yes"> + <trans-unit id="_msg1004" approved="yes"> <source xml:space="preserve">Received</source> <target xml:space="preserve">Received</target> <context-group purpose="location"><context context-type="linenumber">167</context></context-group> </trans-unit> - <trans-unit id="_msg974" approved="yes"> + <trans-unit id="_msg1005" approved="yes"> <source xml:space="preserve">Sent</source> <target xml:space="preserve">Sent</target> <context-group purpose="location"><context context-type="linenumber">168</context></context-group> @@ -5357,241 +5560,247 @@ https://explore.transifex.com/dash/dash/</source> <file original="../transactiondesc.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="TransactionDesc"> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">34</context></context-group> - <trans-unit id="_msg975[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">36</context></context-group> + <trans-unit id="_msg1006[0]" approved="yes"> <source xml:space="preserve">Open for %n more block(s)</source> <target xml:space="preserve">Open for %n more block</target> </trans-unit> - <trans-unit id="_msg975[1]" approved="yes"> + <trans-unit id="_msg1006[1]" approved="yes"> <source xml:space="preserve">Open for %n more block(s)</source> <target xml:space="preserve">Open for %n more blocks</target> </trans-unit> </group> - <trans-unit id="_msg976" approved="yes"> + <trans-unit id="_msg1007" approved="yes"> <source xml:space="preserve">Open until %1</source> <target xml:space="preserve">Open until %1</target> - <context-group purpose="location"><context context-type="linenumber">36</context></context-group> + <context-group purpose="location"><context context-type="linenumber">38</context></context-group> </trans-unit> - <trans-unit id="_msg977" approved="yes"> + <trans-unit id="_msg1008" approved="yes"> <source xml:space="preserve">conflicted</source> <target xml:space="preserve">conflicted</target> - <context-group purpose="location"><context context-type="linenumber">41</context></context-group> + <context-group purpose="location"><context context-type="linenumber">43</context></context-group> </trans-unit> - <trans-unit id="_msg978" approved="yes"> + <trans-unit id="_msg1009" approved="yes"> <source xml:space="preserve">0/unconfirmed, %1</source> <target xml:space="preserve">0/unconfirmed, %1</target> - <context-group purpose="location"><context context-type="linenumber">47</context></context-group> + <context-group purpose="location"><context context-type="linenumber">50</context></context-group> </trans-unit> - <trans-unit id="_msg979" approved="yes"> + <trans-unit id="_msg1010" approved="yes"> <source xml:space="preserve">in memory pool</source> <target xml:space="preserve">in memory pool</target> - <context-group purpose="location"><context context-type="linenumber">47</context></context-group> + <context-group purpose="location"><context context-type="linenumber">50</context></context-group> </trans-unit> - <trans-unit id="_msg980" approved="yes"> + <trans-unit id="_msg1011" approved="yes"> <source xml:space="preserve">not in memory pool</source> <target xml:space="preserve">not in memory pool</target> - <context-group purpose="location"><context context-type="linenumber">47</context></context-group> + <context-group purpose="location"><context context-type="linenumber">50</context></context-group> </trans-unit> - <trans-unit id="_msg981" approved="yes"> + <trans-unit id="_msg1012" approved="yes"> <source xml:space="preserve">abandoned</source> <target xml:space="preserve">abandoned</target> - <context-group purpose="location"><context context-type="linenumber">47</context></context-group> + <context-group purpose="location"><context context-type="linenumber">49</context></context-group> </trans-unit> - <trans-unit id="_msg982" approved="yes"> + <trans-unit id="_msg1013" approved="yes"> <source xml:space="preserve">%1/unconfirmed</source> <target xml:space="preserve">%1/unconfirmed</target> - <context-group purpose="location"><context context-type="linenumber">49</context></context-group> + <context-group purpose="location"><context context-type="linenumber">52</context></context-group> </trans-unit> - <trans-unit id="_msg983" approved="yes"> + <trans-unit id="_msg1014" approved="yes"> <source xml:space="preserve">%1 confirmations</source> <target xml:space="preserve">%1 confirmations</target> - <context-group purpose="location"><context context-type="linenumber">51</context></context-group> + <context-group purpose="location"><context context-type="linenumber">54</context></context-group> </trans-unit> - <trans-unit id="_msg984" approved="yes"> + <trans-unit id="_msg1015" approved="yes"> <source xml:space="preserve">locked via ChainLocks</source> <target xml:space="preserve">locked via ChainLocks</target> - <context-group purpose="location"><context context-type="linenumber">53</context></context-group> + <context-group purpose="location"><context context-type="linenumber">56</context></context-group> </trans-unit> - <trans-unit id="_msg985" approved="yes"> + <trans-unit id="_msg1016" approved="yes"> <source xml:space="preserve">verified via InstantSend</source> <target xml:space="preserve">verified via InstantSend</target> - <context-group purpose="location"><context context-type="linenumber">59</context></context-group> + <context-group purpose="location"><context context-type="linenumber">62</context></context-group> </trans-unit> - <trans-unit id="_msg986" approved="yes"> + <trans-unit id="_msg1017" approved="yes"> <source xml:space="preserve">Status</source> <target xml:space="preserve">Status</target> - <context-group purpose="location"><context context-type="linenumber">84</context></context-group> + <context-group purpose="location"><context context-type="linenumber">87</context></context-group> </trans-unit> - <trans-unit id="_msg987" approved="yes"> + <trans-unit id="_msg1018" approved="yes"> <source xml:space="preserve">Date</source> <target xml:space="preserve">Date</target> - <context-group purpose="location"><context context-type="linenumber">87</context></context-group> + <context-group purpose="location"><context context-type="linenumber">90</context></context-group> </trans-unit> - <trans-unit id="_msg988" approved="yes"> + <trans-unit id="_msg1019" approved="yes"> <source xml:space="preserve">Source</source> <target xml:space="preserve">Source</target> - <context-group purpose="location"><context context-type="linenumber">94</context></context-group> + <context-group purpose="location"><context context-type="linenumber">97</context></context-group> + <context-group purpose="location"><context context-type="linenumber">101</context></context-group> </trans-unit> - <trans-unit id="_msg989" approved="yes"> + <trans-unit id="_msg1020" approved="yes"> <source xml:space="preserve">Generated</source> <target xml:space="preserve">Generated</target> - <context-group purpose="location"><context context-type="linenumber">94</context></context-group> + <context-group purpose="location"><context context-type="linenumber">97</context></context-group> </trans-unit> - <trans-unit id="_msg990" approved="yes"> + <trans-unit id="_msg1021"> + <source xml:space="preserve">Platform Transfer</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">101</context></context-group> + </trans-unit> + <trans-unit id="_msg1022" approved="yes"> <source xml:space="preserve">From</source> <target xml:space="preserve">From</target> - <context-group purpose="location"><context context-type="linenumber">99</context></context-group> - <context-group purpose="location"><context context-type="linenumber">113</context></context-group> - <context-group purpose="location"><context context-type="linenumber">185</context></context-group> + <context-group purpose="location"><context context-type="linenumber">106</context></context-group> + <context-group purpose="location"><context context-type="linenumber">120</context></context-group> + <context-group purpose="location"><context context-type="linenumber">192</context></context-group> </trans-unit> - <trans-unit id="_msg991" approved="yes"> + <trans-unit id="_msg1023" approved="yes"> <source xml:space="preserve">unknown</source> <target xml:space="preserve">unknown</target> - <context-group purpose="location"><context context-type="linenumber">113</context></context-group> + <context-group purpose="location"><context context-type="linenumber">120</context></context-group> </trans-unit> - <trans-unit id="_msg992" approved="yes"> + <trans-unit id="_msg1024" approved="yes"> <source xml:space="preserve">To</source> <target xml:space="preserve">To</target> - <context-group purpose="location"><context context-type="linenumber">114</context></context-group> - <context-group purpose="location"><context context-type="linenumber">134</context></context-group> - <context-group purpose="location"><context context-type="linenumber">204</context></context-group> + <context-group purpose="location"><context context-type="linenumber">121</context></context-group> + <context-group purpose="location"><context context-type="linenumber">141</context></context-group> + <context-group purpose="location"><context context-type="linenumber">211</context></context-group> </trans-unit> - <trans-unit id="_msg993" approved="yes"> + <trans-unit id="_msg1025" approved="yes"> <source xml:space="preserve">own address</source> <target xml:space="preserve">own address</target> - <context-group purpose="location"><context context-type="linenumber">116</context></context-group> + <context-group purpose="location"><context context-type="linenumber">123</context></context-group> </trans-unit> - <trans-unit id="_msg994" approved="yes"> + <trans-unit id="_msg1026" approved="yes"> <source xml:space="preserve">watch-only</source> <target xml:space="preserve">watch-only</target> - <context-group purpose="location"><context context-type="linenumber">116</context></context-group> - <context-group purpose="location"><context context-type="linenumber">185</context></context-group> + <context-group purpose="location"><context context-type="linenumber">123</context></context-group> + <context-group purpose="location"><context context-type="linenumber">192</context></context-group> </trans-unit> - <trans-unit id="_msg995" approved="yes"> + <trans-unit id="_msg1027" approved="yes"> <source xml:space="preserve">label</source> <target xml:space="preserve">label</target> - <context-group purpose="location"><context context-type="linenumber">118</context></context-group> + <context-group purpose="location"><context context-type="linenumber">125</context></context-group> </trans-unit> - <trans-unit id="_msg996" approved="yes"> + <trans-unit id="_msg1028" approved="yes"> <source xml:space="preserve">Credit</source> <target xml:space="preserve">Credit</target> - <context-group purpose="location"><context context-type="linenumber">154</context></context-group> - <context-group purpose="location"><context context-type="linenumber">166</context></context-group> - <context-group purpose="location"><context context-type="linenumber">220</context></context-group> - <context-group purpose="location"><context context-type="linenumber">250</context></context-group> - <context-group purpose="location"><context context-type="linenumber">293</context></context-group> + <context-group purpose="location"><context context-type="linenumber">161</context></context-group> + <context-group purpose="location"><context context-type="linenumber">173</context></context-group> + <context-group purpose="location"><context context-type="linenumber">227</context></context-group> + <context-group purpose="location"><context context-type="linenumber">257</context></context-group> + <context-group purpose="location"><context context-type="linenumber">300</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">156</context></context-group> - <trans-unit id="_msg997[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">163</context></context-group> + <trans-unit id="_msg1029[0]" approved="yes"> <source xml:space="preserve">matures in %n more block(s)</source> <target xml:space="preserve">matures in %n more block</target> </trans-unit> - <trans-unit id="_msg997[1]" approved="yes"> + <trans-unit id="_msg1029[1]" approved="yes"> <source xml:space="preserve">matures in %n more block(s)</source> <target xml:space="preserve">matures in %n more blocks</target> </trans-unit> </group> - <trans-unit id="_msg998" approved="yes"> + <trans-unit id="_msg1030" approved="yes"> <source xml:space="preserve">not accepted</source> <target xml:space="preserve">not accepted</target> - <context-group purpose="location"><context context-type="linenumber">158</context></context-group> + <context-group purpose="location"><context context-type="linenumber">165</context></context-group> </trans-unit> - <trans-unit id="_msg999" approved="yes"> + <trans-unit id="_msg1031" approved="yes"> <source xml:space="preserve">Debit</source> <target xml:space="preserve">Debit</target> - <context-group purpose="location"><context context-type="linenumber">218</context></context-group> - <context-group purpose="location"><context context-type="linenumber">244</context></context-group> - <context-group purpose="location"><context context-type="linenumber">290</context></context-group> + <context-group purpose="location"><context context-type="linenumber">225</context></context-group> + <context-group purpose="location"><context context-type="linenumber">251</context></context-group> + <context-group purpose="location"><context context-type="linenumber">297</context></context-group> </trans-unit> - <trans-unit id="_msg1000" approved="yes"> + <trans-unit id="_msg1032" approved="yes"> <source xml:space="preserve">Total debit</source> <target xml:space="preserve">Total debit</target> - <context-group purpose="location"><context context-type="linenumber">228</context></context-group> + <context-group purpose="location"><context context-type="linenumber">235</context></context-group> </trans-unit> - <trans-unit id="_msg1001" approved="yes"> + <trans-unit id="_msg1033" approved="yes"> <source xml:space="preserve">Total credit</source> <target xml:space="preserve">Total credit</target> - <context-group purpose="location"><context context-type="linenumber">229</context></context-group> + <context-group purpose="location"><context context-type="linenumber">236</context></context-group> </trans-unit> - <trans-unit id="_msg1002" approved="yes"> + <trans-unit id="_msg1034" approved="yes"> <source xml:space="preserve">Transaction fee</source> <target xml:space="preserve">Transaction fee</target> - <context-group purpose="location"><context context-type="linenumber">234</context></context-group> + <context-group purpose="location"><context context-type="linenumber">241</context></context-group> </trans-unit> - <trans-unit id="_msg1003" approved="yes"> + <trans-unit id="_msg1035" approved="yes"> <source xml:space="preserve">Net amount</source> <target xml:space="preserve">Net amount</target> - <context-group purpose="location"><context context-type="linenumber">256</context></context-group> + <context-group purpose="location"><context context-type="linenumber">263</context></context-group> </trans-unit> - <trans-unit id="_msg1004" approved="yes"> + <trans-unit id="_msg1036" approved="yes"> <source xml:space="preserve">Message</source> <target xml:space="preserve">Message</target> - <context-group purpose="location"><context context-type="linenumber">262</context></context-group> - <context-group purpose="location"><context context-type="linenumber">273</context></context-group> + <context-group purpose="location"><context context-type="linenumber">269</context></context-group> + <context-group purpose="location"><context context-type="linenumber">280</context></context-group> </trans-unit> - <trans-unit id="_msg1005" approved="yes"> + <trans-unit id="_msg1037" approved="yes"> <source xml:space="preserve">Comment</source> <target xml:space="preserve">Comment</target> - <context-group purpose="location"><context context-type="linenumber">264</context></context-group> + <context-group purpose="location"><context context-type="linenumber">271</context></context-group> </trans-unit> - <trans-unit id="_msg1006" approved="yes"> + <trans-unit id="_msg1038" approved="yes"> <source xml:space="preserve">Transaction ID</source> <target xml:space="preserve">Transaction ID</target> - <context-group purpose="location"><context context-type="linenumber">266</context></context-group> + <context-group purpose="location"><context context-type="linenumber">273</context></context-group> </trans-unit> - <trans-unit id="_msg1007" approved="yes"> + <trans-unit id="_msg1039" approved="yes"> <source xml:space="preserve">Output index</source> <target xml:space="preserve">Output index</target> - <context-group purpose="location"><context context-type="linenumber">267</context></context-group> + <context-group purpose="location"><context context-type="linenumber">274</context></context-group> </trans-unit> - <trans-unit id="_msg1008" approved="yes"> + <trans-unit id="_msg1040" approved="yes"> <source xml:space="preserve">Transaction total size</source> <target xml:space="preserve">Transaction total size</target> - <context-group purpose="location"><context context-type="linenumber">268</context></context-group> + <context-group purpose="location"><context context-type="linenumber">275</context></context-group> </trans-unit> - <trans-unit id="_msg1009" approved="yes"> + <trans-unit id="_msg1041" approved="yes"> <source xml:space="preserve">Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.</source> <target xml:space="preserve">Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.</target> - <context-group purpose="location"><context context-type="linenumber">279</context></context-group> + <context-group purpose="location"><context context-type="linenumber">286</context></context-group> </trans-unit> - <trans-unit id="_msg1010" approved="yes"> + <trans-unit id="_msg1042" approved="yes"> <source xml:space="preserve">Debug information</source> <target xml:space="preserve">Debug information</target> - <context-group purpose="location"><context context-type="linenumber">287</context></context-group> + <context-group purpose="location"><context context-type="linenumber">294</context></context-group> </trans-unit> - <trans-unit id="_msg1011" approved="yes"> + <trans-unit id="_msg1043" approved="yes"> <source xml:space="preserve">Transaction</source> <target xml:space="preserve">Transaction</target> - <context-group purpose="location"><context context-type="linenumber">295</context></context-group> + <context-group purpose="location"><context context-type="linenumber">302</context></context-group> </trans-unit> - <trans-unit id="_msg1012" approved="yes"> + <trans-unit id="_msg1044" approved="yes"> <source xml:space="preserve">Inputs</source> <target xml:space="preserve">Inputs</target> - <context-group purpose="location"><context context-type="linenumber">298</context></context-group> + <context-group purpose="location"><context context-type="linenumber">305</context></context-group> </trans-unit> - <trans-unit id="_msg1013" approved="yes"> + <trans-unit id="_msg1045" approved="yes"> <source xml:space="preserve">Amount</source> <target xml:space="preserve">Amount</target> - <context-group purpose="location"><context context-type="linenumber">319</context></context-group> + <context-group purpose="location"><context context-type="linenumber">326</context></context-group> </trans-unit> - <trans-unit id="_msg1014" approved="yes"> + <trans-unit id="_msg1046" approved="yes"> <source xml:space="preserve">true</source> <target xml:space="preserve">true</target> - <context-group purpose="location"><context context-type="linenumber">320</context></context-group> - <context-group purpose="location"><context context-type="linenumber">321</context></context-group> + <context-group purpose="location"><context context-type="linenumber">327</context></context-group> + <context-group purpose="location"><context context-type="linenumber">328</context></context-group> </trans-unit> - <trans-unit id="_msg1015" approved="yes"> + <trans-unit id="_msg1047" approved="yes"> <source xml:space="preserve">false</source> <target xml:space="preserve">false</target> - <context-group purpose="location"><context context-type="linenumber">320</context></context-group> - <context-group purpose="location"><context context-type="linenumber">321</context></context-group> + <context-group purpose="location"><context context-type="linenumber">327</context></context-group> + <context-group purpose="location"><context context-type="linenumber">328</context></context-group> </trans-unit> </group> </body></file> <file original="../forms/transactiondescdialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="TransactionDescDialog"> - <trans-unit id="_msg1016" approved="yes"> + <trans-unit id="_msg1048" approved="yes"> <source xml:space="preserve">This pane shows a detailed description of the transaction</source> <target xml:space="preserve">This pane shows a detailed description of the transaction</target> <context-group purpose="location"><context context-type="linenumber">20</context></context-group> @@ -5600,7 +5809,7 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../transactiondescdialog.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="TransactionDescDialog"> - <trans-unit id="_msg1017" approved="yes"> + <trans-unit id="_msg1049" approved="yes"> <source xml:space="preserve">Details for %1</source> <target xml:space="preserve">Details for %1</target> <context-group purpose="location"><context context-type="linenumber">21</context></context-group> @@ -5609,451 +5818,493 @@ https://explore.transifex.com/dash/dash/</source> </body></file> <file original="../transactiontablemodel.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="TransactionTableModel"> - <trans-unit id="_msg1018" approved="yes"> + <trans-unit id="_msg1050" approved="yes"> <source xml:space="preserve">Date</source> <target xml:space="preserve">Date</target> - <context-group purpose="location"><context context-type="linenumber">270</context></context-group> + <context-group purpose="location"><context context-type="linenumber">275</context></context-group> </trans-unit> - <trans-unit id="_msg1019" approved="yes"> + <trans-unit id="_msg1051" approved="yes"> <source xml:space="preserve">Type</source> <target xml:space="preserve">Type</target> - <context-group purpose="location"><context context-type="linenumber">270</context></context-group> + <context-group purpose="location"><context context-type="linenumber">275</context></context-group> </trans-unit> - <trans-unit id="_msg1020" approved="yes"> + <trans-unit id="_msg1052" approved="yes"> <source xml:space="preserve">Address / Label</source> <target xml:space="preserve">Address / Label</target> - <context-group purpose="location"><context context-type="linenumber">270</context></context-group> + <context-group purpose="location"><context context-type="linenumber">275</context></context-group> </trans-unit> <group restype="x-gettext-plurals"> - <context-group purpose="location"><context context-type="linenumber">353</context></context-group> - <trans-unit id="_msg1021[0]" approved="yes"> + <context-group purpose="location"><context context-type="linenumber">356</context></context-group> + <trans-unit id="_msg1053[0]" approved="yes"> <source xml:space="preserve">Open for %n more block(s)</source> <target xml:space="preserve">Open for %n more block</target> </trans-unit> - <trans-unit id="_msg1021[1]" approved="yes"> + <trans-unit id="_msg1053[1]" approved="yes"> <source xml:space="preserve">Open for %n more block(s)</source> <target xml:space="preserve">Open for %n more blocks</target> </trans-unit> </group> - <trans-unit id="_msg1022" approved="yes"> + <trans-unit id="_msg1054" approved="yes"> <source xml:space="preserve">Open until %1</source> <target xml:space="preserve">Open until %1</target> - <context-group purpose="location"><context context-type="linenumber">356</context></context-group> + <context-group purpose="location"><context context-type="linenumber">359</context></context-group> </trans-unit> - <trans-unit id="_msg1023" approved="yes"> + <trans-unit id="_msg1055" approved="yes"> <source xml:space="preserve">Unconfirmed</source> <target xml:space="preserve">Unconfirmed</target> - <context-group purpose="location"><context context-type="linenumber">359</context></context-group> + <context-group purpose="location"><context context-type="linenumber">362</context></context-group> </trans-unit> - <trans-unit id="_msg1024" approved="yes"> + <trans-unit id="_msg1056" approved="yes"> <source xml:space="preserve">Abandoned</source> <target xml:space="preserve">Abandoned</target> - <context-group purpose="location"><context context-type="linenumber">362</context></context-group> + <context-group purpose="location"><context context-type="linenumber">365</context></context-group> </trans-unit> - <trans-unit id="_msg1025" approved="yes"> + <trans-unit id="_msg1057" approved="yes"> <source xml:space="preserve">Confirming (%1 of %2 recommended confirmations)</source> <target xml:space="preserve">Confirming (%1 of %2 recommended confirmations)</target> - <context-group purpose="location"><context context-type="linenumber">365</context></context-group> + <context-group purpose="location"><context context-type="linenumber">368</context></context-group> </trans-unit> - <trans-unit id="_msg1026" approved="yes"> + <trans-unit id="_msg1058" approved="yes"> <source xml:space="preserve">Confirmed (%1 confirmations)</source> <target xml:space="preserve">Confirmed (%1 confirmations)</target> - <context-group purpose="location"><context context-type="linenumber">368</context></context-group> + <context-group purpose="location"><context context-type="linenumber">371</context></context-group> </trans-unit> - <trans-unit id="_msg1027" approved="yes"> + <trans-unit id="_msg1059" approved="yes"> <source xml:space="preserve">Conflicted</source> <target xml:space="preserve">Conflicted</target> - <context-group purpose="location"><context context-type="linenumber">371</context></context-group> + <context-group purpose="location"><context context-type="linenumber">374</context></context-group> </trans-unit> - <trans-unit id="_msg1028" approved="yes"> + <trans-unit id="_msg1060" approved="yes"> <source xml:space="preserve">Immature (%1 confirmations, will be available after %2)</source> <target xml:space="preserve">Immature (%1 confirmations, will be available after %2)</target> - <context-group purpose="location"><context context-type="linenumber">374</context></context-group> + <context-group purpose="location"><context context-type="linenumber">377</context></context-group> </trans-unit> - <trans-unit id="_msg1029" approved="yes"> + <trans-unit id="_msg1061" approved="yes"> <source xml:space="preserve">Generated but not accepted</source> <target xml:space="preserve">Generated but not accepted</target> - <context-group purpose="location"><context context-type="linenumber">377</context></context-group> + <context-group purpose="location"><context context-type="linenumber">380</context></context-group> </trans-unit> - <trans-unit id="_msg1030" approved="yes"> + <trans-unit id="_msg1062" approved="yes"> <source xml:space="preserve">verified via InstantSend</source> <target xml:space="preserve">verified via InstantSend</target> - <context-group purpose="location"><context context-type="linenumber">382</context></context-group> + <context-group purpose="location"><context context-type="linenumber">385</context></context-group> </trans-unit> - <trans-unit id="_msg1031" approved="yes"> + <trans-unit id="_msg1063" approved="yes"> <source xml:space="preserve">locked via ChainLocks</source> <target xml:space="preserve">locked via ChainLocks</target> - <context-group purpose="location"><context context-type="linenumber">385</context></context-group> + <context-group purpose="location"><context context-type="linenumber">388</context></context-group> </trans-unit> - <trans-unit id="_msg1032" approved="yes"> + <trans-unit id="_msg1064" approved="yes"> <source xml:space="preserve">Received with</source> <target xml:space="preserve">Received with</target> - <context-group purpose="location"><context context-type="linenumber">422</context></context-group> + <context-group purpose="location"><context context-type="linenumber">425</context></context-group> </trans-unit> - <trans-unit id="_msg1033" approved="yes"> + <trans-unit id="_msg1065" approved="yes"> <source xml:space="preserve">Received from</source> <target xml:space="preserve">Received from</target> - <context-group purpose="location"><context context-type="linenumber">424</context></context-group> + <context-group purpose="location"><context context-type="linenumber">427</context></context-group> </trans-unit> - <trans-unit id="_msg1034" approved="yes"> + <trans-unit id="_msg1066" approved="yes"> <source xml:space="preserve">Received via %1</source> <target xml:space="preserve">Received via %1</target> - <context-group purpose="location"><context context-type="linenumber">426</context></context-group> + <context-group purpose="location"><context context-type="linenumber">429</context></context-group> </trans-unit> - <trans-unit id="_msg1035" approved="yes"> + <trans-unit id="_msg1067" approved="yes"> <source xml:space="preserve">Sent to</source> <target xml:space="preserve">Sent to</target> - <context-group purpose="location"><context context-type="linenumber">429</context></context-group> + <context-group purpose="location"><context context-type="linenumber">432</context></context-group> </trans-unit> - <trans-unit id="_msg1036" approved="yes"> + <trans-unit id="_msg1068" approved="yes"> <source xml:space="preserve">Payment to yourself</source> <target xml:space="preserve">Payment to yourself</target> - <context-group purpose="location"><context context-type="linenumber">431</context></context-group> + <context-group purpose="location"><context context-type="linenumber">434</context></context-group> </trans-unit> - <trans-unit id="_msg1037" approved="yes"> + <trans-unit id="_msg1069" approved="yes"> <source xml:space="preserve">Mined</source> <target xml:space="preserve">Mined</target> - <context-group purpose="location"><context context-type="linenumber">433</context></context-group> + <context-group purpose="location"><context context-type="linenumber">436</context></context-group> </trans-unit> - <trans-unit id="_msg1038" approved="yes"> + <trans-unit id="_msg1070"> + <source xml:space="preserve">Platform Transfer</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">438</context></context-group> + </trans-unit> + <trans-unit id="_msg1071" approved="yes"> <source xml:space="preserve">%1 Mixing</source> <target xml:space="preserve">%1 Mixing</target> - <context-group purpose="location"><context context-type="linenumber">436</context></context-group> + <context-group purpose="location"><context context-type="linenumber">441</context></context-group> </trans-unit> - <trans-unit id="_msg1039" approved="yes"> + <trans-unit id="_msg1072" approved="yes"> <source xml:space="preserve">%1 Collateral Payment</source> <target xml:space="preserve">%1 Collateral Payment</target> - <context-group purpose="location"><context context-type="linenumber">438</context></context-group> + <context-group purpose="location"><context context-type="linenumber">443</context></context-group> </trans-unit> - <trans-unit id="_msg1040" approved="yes"> + <trans-unit id="_msg1073" approved="yes"> <source xml:space="preserve">%1 Make Collateral Inputs</source> <target xml:space="preserve">%1 Make Collateral Inputs</target> - <context-group purpose="location"><context context-type="linenumber">440</context></context-group> + <context-group purpose="location"><context context-type="linenumber">445</context></context-group> </trans-unit> - <trans-unit id="_msg1041" approved="yes"> + <trans-unit id="_msg1074" approved="yes"> <source xml:space="preserve">%1 Create Denominations</source> <target xml:space="preserve">%1 Create Denominations</target> - <context-group purpose="location"><context context-type="linenumber">442</context></context-group> + <context-group purpose="location"><context context-type="linenumber">447</context></context-group> </trans-unit> - <trans-unit id="_msg1042" approved="yes"> + <trans-unit id="_msg1075" approved="yes"> <source xml:space="preserve">%1 Send</source> <target xml:space="preserve">%1 Send</target> - <context-group purpose="location"><context context-type="linenumber">444</context></context-group> + <context-group purpose="location"><context context-type="linenumber">449</context></context-group> </trans-unit> - <trans-unit id="_msg1043" approved="yes"> + <trans-unit id="_msg1076" approved="yes"> <source xml:space="preserve">watch-only</source> <target xml:space="preserve">watch-only</target> - <context-group purpose="location"><context context-type="linenumber">464</context></context-group> + <context-group purpose="location"><context context-type="linenumber">470</context></context-group> </trans-unit> - <trans-unit id="_msg1044" approved="yes"> + <trans-unit id="_msg1077" approved="yes"> <source xml:space="preserve">(n/a)</source> <target xml:space="preserve">(n/a)</target> - <context-group purpose="location"><context context-type="linenumber">482</context></context-group> + <context-group purpose="location"><context context-type="linenumber">495</context></context-group> </trans-unit> - <trans-unit id="_msg1045" approved="yes"> + <trans-unit id="_msg1078" approved="yes"> <source xml:space="preserve">(no label)</source> <target xml:space="preserve">(no label)</target> - <context-group purpose="location"><context context-type="linenumber">715</context></context-group> + <context-group purpose="location"><context context-type="linenumber">731</context></context-group> </trans-unit> - <trans-unit id="_msg1046" approved="yes"> + <trans-unit id="_msg1079" approved="yes"> <source xml:space="preserve">Transaction status. Hover over this field to show number of confirmations.</source> <target xml:space="preserve">Transaction status. Hover over this field to show number of confirmations.</target> - <context-group purpose="location"><context context-type="linenumber">754</context></context-group> + <context-group purpose="location"><context context-type="linenumber">770</context></context-group> </trans-unit> - <trans-unit id="_msg1047" approved="yes"> + <trans-unit id="_msg1080" approved="yes"> <source xml:space="preserve">Date and time that the transaction was received.</source> <target xml:space="preserve">Date and time that the transaction was received.</target> - <context-group purpose="location"><context context-type="linenumber">756</context></context-group> + <context-group purpose="location"><context context-type="linenumber">772</context></context-group> </trans-unit> - <trans-unit id="_msg1048" approved="yes"> + <trans-unit id="_msg1081" approved="yes"> <source xml:space="preserve">Type of transaction.</source> <target xml:space="preserve">Type of transaction.</target> - <context-group purpose="location"><context context-type="linenumber">758</context></context-group> + <context-group purpose="location"><context context-type="linenumber">774</context></context-group> </trans-unit> - <trans-unit id="_msg1049" approved="yes"> + <trans-unit id="_msg1082" approved="yes"> <source xml:space="preserve">Whether or not a watch-only address is involved in this transaction.</source> <target xml:space="preserve">Whether or not a watch-only address is involved in this transaction.</target> - <context-group purpose="location"><context context-type="linenumber">760</context></context-group> + <context-group purpose="location"><context context-type="linenumber">776</context></context-group> </trans-unit> - <trans-unit id="_msg1050" approved="yes"> + <trans-unit id="_msg1083" approved="yes"> <source xml:space="preserve">User-defined intent/purpose of the transaction.</source> <target xml:space="preserve">User-defined intent/purpose of the transaction.</target> - <context-group purpose="location"><context context-type="linenumber">762</context></context-group> + <context-group purpose="location"><context context-type="linenumber">778</context></context-group> </trans-unit> - <trans-unit id="_msg1051" approved="yes"> + <trans-unit id="_msg1084" approved="yes"> <source xml:space="preserve">Amount removed from or added to balance.</source> <target xml:space="preserve">Amount removed from or added to balance.</target> - <context-group purpose="location"><context context-type="linenumber">764</context></context-group> + <context-group purpose="location"><context context-type="linenumber">780</context></context-group> </trans-unit> </group> </body></file> <file original="../transactionview.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="TransactionView"> - <trans-unit id="_msg1052" approved="yes"> + <trans-unit id="_msg1085" approved="yes"> <source xml:space="preserve">All</source> <target xml:space="preserve">All</target> - <context-group purpose="location"><context context-type="linenumber">67</context></context-group> - <context-group purpose="location"><context context-type="linenumber">80</context></context-group> + <context-group purpose="location"><context context-type="linenumber">69</context></context-group> + <context-group purpose="location"><context context-type="linenumber">82</context></context-group> </trans-unit> - <trans-unit id="_msg1053" approved="yes"> + <trans-unit id="_msg1086" approved="yes"> <source xml:space="preserve">Today</source> <target xml:space="preserve">Today</target> - <context-group purpose="location"><context context-type="linenumber">68</context></context-group> + <context-group purpose="location"><context context-type="linenumber">70</context></context-group> </trans-unit> - <trans-unit id="_msg1054" approved="yes"> + <trans-unit id="_msg1087" approved="yes"> <source xml:space="preserve">This week</source> <target xml:space="preserve">This week</target> - <context-group purpose="location"><context context-type="linenumber">69</context></context-group> + <context-group purpose="location"><context context-type="linenumber">71</context></context-group> </trans-unit> - <trans-unit id="_msg1055" approved="yes"> + <trans-unit id="_msg1088" approved="yes"> <source xml:space="preserve">This month</source> <target xml:space="preserve">This month</target> - <context-group purpose="location"><context context-type="linenumber">70</context></context-group> + <context-group purpose="location"><context context-type="linenumber">72</context></context-group> </trans-unit> - <trans-unit id="_msg1056" approved="yes"> + <trans-unit id="_msg1089" approved="yes"> <source xml:space="preserve">Last month</source> <target xml:space="preserve">Last month</target> - <context-group purpose="location"><context context-type="linenumber">71</context></context-group> + <context-group purpose="location"><context context-type="linenumber">73</context></context-group> </trans-unit> - <trans-unit id="_msg1057" approved="yes"> + <trans-unit id="_msg1090" approved="yes"> <source xml:space="preserve">This year</source> <target xml:space="preserve">This year</target> - <context-group purpose="location"><context context-type="linenumber">72</context></context-group> + <context-group purpose="location"><context context-type="linenumber">74</context></context-group> </trans-unit> - <trans-unit id="_msg1058"> + <trans-unit id="_msg1091" approved="yes"> <source xml:space="preserve">Range…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">73</context></context-group> + <target xml:space="preserve">Range…</target> + <context-group purpose="location"><context context-type="linenumber">75</context></context-group> </trans-unit> - <trans-unit id="_msg1059" approved="yes"> + <trans-unit id="_msg1092" approved="yes"> <source xml:space="preserve">Most Common</source> <target xml:space="preserve">Most Common</target> - <context-group purpose="location"><context context-type="linenumber">81</context></context-group> + <context-group purpose="location"><context context-type="linenumber">83</context></context-group> </trans-unit> - <trans-unit id="_msg1060" approved="yes"> + <trans-unit id="_msg1093" approved="yes"> <source xml:space="preserve">Received with</source> <target xml:space="preserve">Received with</target> - <context-group purpose="location"><context context-type="linenumber">82</context></context-group> + <context-group purpose="location"><context context-type="linenumber">84</context></context-group> </trans-unit> - <trans-unit id="_msg1061" approved="yes"> + <trans-unit id="_msg1094" approved="yes"> <source xml:space="preserve">Sent to</source> <target xml:space="preserve">Sent to</target> - <context-group purpose="location"><context context-type="linenumber">84</context></context-group> + <context-group purpose="location"><context context-type="linenumber">86</context></context-group> </trans-unit> - <trans-unit id="_msg1062" approved="yes"> + <trans-unit id="_msg1095" approved="yes"> <source xml:space="preserve">%1 Send</source> <target xml:space="preserve">%1 Send</target> - <context-group purpose="location"><context context-type="linenumber">86</context></context-group> + <context-group purpose="location"><context context-type="linenumber">88</context></context-group> </trans-unit> - <trans-unit id="_msg1063" approved="yes"> + <trans-unit id="_msg1096" approved="yes"> <source xml:space="preserve">%1 Make Collateral Inputs</source> <target xml:space="preserve">%1 Make Collateral Inputs</target> - <context-group purpose="location"><context context-type="linenumber">87</context></context-group> + <context-group purpose="location"><context context-type="linenumber">89</context></context-group> </trans-unit> - <trans-unit id="_msg1064" approved="yes"> + <trans-unit id="_msg1097" approved="yes"> <source xml:space="preserve">%1 Create Denominations</source> <target xml:space="preserve">%1 Create Denominations</target> - <context-group purpose="location"><context context-type="linenumber">88</context></context-group> + <context-group purpose="location"><context context-type="linenumber">90</context></context-group> </trans-unit> - <trans-unit id="_msg1065" approved="yes"> + <trans-unit id="_msg1098" approved="yes"> <source xml:space="preserve">%1 Mixing</source> <target xml:space="preserve">%1 Mixing</target> - <context-group purpose="location"><context context-type="linenumber">89</context></context-group> + <context-group purpose="location"><context context-type="linenumber">91</context></context-group> </trans-unit> - <trans-unit id="_msg1066" approved="yes"> + <trans-unit id="_msg1099" approved="yes"> <source xml:space="preserve">%1 Collateral Payment</source> <target xml:space="preserve">%1 Collateral Payment</target> - <context-group purpose="location"><context context-type="linenumber">90</context></context-group> + <context-group purpose="location"><context context-type="linenumber">92</context></context-group> </trans-unit> - <trans-unit id="_msg1067" approved="yes"> + <trans-unit id="_msg1100" approved="yes"> <source xml:space="preserve">To yourself</source> <target xml:space="preserve">To yourself</target> - <context-group purpose="location"><context context-type="linenumber">91</context></context-group> + <context-group purpose="location"><context context-type="linenumber">93</context></context-group> </trans-unit> - <trans-unit id="_msg1068" approved="yes"> + <trans-unit id="_msg1101" approved="yes"> <source xml:space="preserve">Mined</source> <target xml:space="preserve">Mined</target> - <context-group purpose="location"><context context-type="linenumber">92</context></context-group> + <context-group purpose="location"><context context-type="linenumber">94</context></context-group> </trans-unit> - <trans-unit id="_msg1069" approved="yes"> + <trans-unit id="_msg1102"> + <source xml:space="preserve">Platform Transfer</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">95</context></context-group> + </trans-unit> + <trans-unit id="_msg1103" approved="yes"> <source xml:space="preserve">Other</source> <target xml:space="preserve">Other</target> - <context-group purpose="location"><context context-type="linenumber">93</context></context-group> + <context-group purpose="location"><context context-type="linenumber">96</context></context-group> </trans-unit> - <trans-unit id="_msg1070" approved="yes"> + <trans-unit id="_msg1104" approved="yes"> <source xml:space="preserve">Enter address, transaction id, or label to search</source> <target xml:space="preserve">Enter address, transaction id, or label to search</target> - <context-group purpose="location"><context context-type="linenumber">99</context></context-group> + <context-group purpose="location"><context context-type="linenumber">102</context></context-group> </trans-unit> - <trans-unit id="_msg1071" approved="yes"> + <trans-unit id="_msg1105" approved="yes"> <source xml:space="preserve">Min amount</source> <target xml:space="preserve">Min amount</target> - <context-group purpose="location"><context context-type="linenumber">104</context></context-group> - </trans-unit> - <trans-unit id="_msg1072" approved="yes"> - <source xml:space="preserve">Abandon transaction</source> - <target xml:space="preserve">Abandon transaction</target> - <context-group purpose="location"><context context-type="linenumber">150</context></context-group> - </trans-unit> - <trans-unit id="_msg1073" approved="yes"> - <source xml:space="preserve">Resend transaction</source> - <target xml:space="preserve">Resend transaction</target> - <context-group purpose="location"><context context-type="linenumber">151</context></context-group> - </trans-unit> - <trans-unit id="_msg1074" approved="yes"> - <source xml:space="preserve">Copy address</source> - <target xml:space="preserve">Copy address</target> - <context-group purpose="location"><context context-type="linenumber">152</context></context-group> + <context-group purpose="location"><context context-type="linenumber">107</context></context-group> </trans-unit> - <trans-unit id="_msg1075" approved="yes"> - <source xml:space="preserve">Copy label</source> - <target xml:space="preserve">Copy label</target> + <trans-unit id="_msg1106"> + <source xml:space="preserve">&Copy address</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">153</context></context-group> </trans-unit> - <trans-unit id="_msg1076" approved="yes"> - <source xml:space="preserve">Copy amount</source> - <target xml:space="preserve">Copy amount</target> + <trans-unit id="_msg1107"> + <source xml:space="preserve">Copy &label</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">154</context></context-group> </trans-unit> - <trans-unit id="_msg1077" approved="yes"> - <source xml:space="preserve">Copy transaction ID</source> - <target xml:space="preserve">Copy transaction ID</target> + <trans-unit id="_msg1108"> + <source xml:space="preserve">Copy &amount</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">155</context></context-group> </trans-unit> - <trans-unit id="_msg1078" approved="yes"> - <source xml:space="preserve">Copy raw transaction</source> - <target xml:space="preserve">Copy raw transaction</target> + <trans-unit id="_msg1109"> + <source xml:space="preserve">Copy transaction &ID</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">156</context></context-group> </trans-unit> - <trans-unit id="_msg1079" approved="yes"> - <source xml:space="preserve">Copy full transaction details</source> - <target xml:space="preserve">Copy full transaction details</target> + <trans-unit id="_msg1110"> + <source xml:space="preserve">Copy &raw transaction</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">157</context></context-group> </trans-unit> - <trans-unit id="_msg1080" approved="yes"> - <source xml:space="preserve">Edit address label</source> - <target xml:space="preserve">Edit address label</target> + <trans-unit id="_msg1111"> + <source xml:space="preserve">Copy full transaction &details</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">158</context></context-group> </trans-unit> - <trans-unit id="_msg1081" approved="yes"> - <source xml:space="preserve">Show transaction details</source> - <target xml:space="preserve">Show transaction details</target> + <trans-unit id="_msg1112"> + <source xml:space="preserve">&Show transaction details</source> + <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">159</context></context-group> </trans-unit> - <trans-unit id="_msg1082" approved="yes"> - <source xml:space="preserve">Show address QR code</source> - <target xml:space="preserve">Show address QR code</target> - <context-group purpose="location"><context context-type="linenumber">160</context></context-group> + <trans-unit id="_msg1113"> + <source xml:space="preserve">A&bandon transaction</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">161</context></context-group> </trans-unit> - <trans-unit id="_msg1083" approved="yes"> + <trans-unit id="_msg1114"> + <source xml:space="preserve">Rese&nd transaction</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">162</context></context-group> + </trans-unit> + <trans-unit id="_msg1115"> + <source xml:space="preserve">&Edit address label</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">163</context></context-group> + </trans-unit> + <trans-unit id="_msg1116"> + <source xml:space="preserve">Show address &QR code</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">164</context></context-group> + </trans-unit> + <trans-unit id="_msg1117" approved="yes"> <source xml:space="preserve">Export Transaction History</source> <target xml:space="preserve">Export Transaction History</target> - <context-group purpose="location"><context context-type="linenumber">389</context></context-group> + <context-group purpose="location"><context context-type="linenumber">367</context></context-group> </trans-unit> - <trans-unit id="_msg1084" approved="yes"> + <trans-unit id="_msg1118" approved="yes"> <source xml:space="preserve">Comma separated file</source> <target xml:space="preserve">Comma separated file</target> - <context-group purpose="location"><context context-type="linenumber">392</context></context-group> - <note annotates="source" from="developer">Expanded name of the CSV file format. See https://en.wikipedia.org/wiki/Comma-separated_values</note> + <context-group purpose="location"><context context-type="linenumber">370</context></context-group> + <note annotates="source" from="developer">Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</note> </trans-unit> - <trans-unit id="_msg1085" approved="yes"> + <trans-unit id="_msg1119" approved="yes"> <source xml:space="preserve">Confirmed</source> <target xml:space="preserve">Confirmed</target> - <context-group purpose="location"><context context-type="linenumber">401</context></context-group> + <context-group purpose="location"><context context-type="linenumber">379</context></context-group> </trans-unit> - <trans-unit id="_msg1086" approved="yes"> + <trans-unit id="_msg1120" approved="yes"> <source xml:space="preserve">Watch-only</source> <target xml:space="preserve">Watch-only</target> - <context-group purpose="location"><context context-type="linenumber">403</context></context-group> + <context-group purpose="location"><context context-type="linenumber">381</context></context-group> </trans-unit> - <trans-unit id="_msg1087" approved="yes"> + <trans-unit id="_msg1121" approved="yes"> <source xml:space="preserve">Date</source> <target xml:space="preserve">Date</target> - <context-group purpose="location"><context context-type="linenumber">404</context></context-group> + <context-group purpose="location"><context context-type="linenumber">382</context></context-group> </trans-unit> - <trans-unit id="_msg1088" approved="yes"> + <trans-unit id="_msg1122" approved="yes"> <source xml:space="preserve">Type</source> <target xml:space="preserve">Type</target> - <context-group purpose="location"><context context-type="linenumber">405</context></context-group> + <context-group purpose="location"><context context-type="linenumber">383</context></context-group> </trans-unit> - <trans-unit id="_msg1089" approved="yes"> + <trans-unit id="_msg1123" approved="yes"> <source xml:space="preserve">Label</source> <target xml:space="preserve">Label</target> - <context-group purpose="location"><context context-type="linenumber">406</context></context-group> + <context-group purpose="location"><context context-type="linenumber">384</context></context-group> </trans-unit> - <trans-unit id="_msg1090" approved="yes"> + <trans-unit id="_msg1124" approved="yes"> <source xml:space="preserve">Address</source> <target xml:space="preserve">Address</target> - <context-group purpose="location"><context context-type="linenumber">407</context></context-group> + <context-group purpose="location"><context context-type="linenumber">385</context></context-group> </trans-unit> - <trans-unit id="_msg1091" approved="yes"> + <trans-unit id="_msg1125" approved="yes"> <source xml:space="preserve">ID</source> <target xml:space="preserve">ID</target> - <context-group purpose="location"><context context-type="linenumber">409</context></context-group> + <context-group purpose="location"><context context-type="linenumber">387</context></context-group> </trans-unit> - <trans-unit id="_msg1092" approved="yes"> + <trans-unit id="_msg1126" approved="yes"> <source xml:space="preserve">Exporting Failed</source> <target xml:space="preserve">Exporting Failed</target> - <context-group purpose="location"><context context-type="linenumber">412</context></context-group> + <context-group purpose="location"><context context-type="linenumber">390</context></context-group> </trans-unit> - <trans-unit id="_msg1093" approved="yes"> + <trans-unit id="_msg1127" approved="yes"> <source xml:space="preserve">There was an error trying to save the transaction history to %1.</source> <target xml:space="preserve">There was an error trying to save the transaction history to %1.</target> - <context-group purpose="location"><context context-type="linenumber">412</context></context-group> + <context-group purpose="location"><context context-type="linenumber">390</context></context-group> </trans-unit> - <trans-unit id="_msg1094" approved="yes"> + <trans-unit id="_msg1128" approved="yes"> <source xml:space="preserve">Exporting Successful</source> <target xml:space="preserve">Exporting Successful</target> - <context-group purpose="location"><context context-type="linenumber">416</context></context-group> + <context-group purpose="location"><context context-type="linenumber">394</context></context-group> </trans-unit> - <trans-unit id="_msg1095" approved="yes"> + <trans-unit id="_msg1129" approved="yes"> <source xml:space="preserve">The transaction history was successfully saved to %1.</source> <target xml:space="preserve">The transaction history was successfully saved to %1.</target> - <context-group purpose="location"><context context-type="linenumber">416</context></context-group> + <context-group purpose="location"><context context-type="linenumber">394</context></context-group> </trans-unit> - <trans-unit id="_msg1096" approved="yes"> + <trans-unit id="_msg1130" approved="yes"> <source xml:space="preserve">QR code</source> <target xml:space="preserve">QR code</target> - <context-group purpose="location"><context context-type="linenumber">574</context></context-group> + <context-group purpose="location"><context context-type="linenumber">552</context></context-group> </trans-unit> - <trans-unit id="_msg1097" approved="yes"> + <trans-unit id="_msg1131" approved="yes"> <source xml:space="preserve">Range:</source> <target xml:space="preserve">Range:</target> - <context-group purpose="location"><context context-type="linenumber">617</context></context-group> + <context-group purpose="location"><context context-type="linenumber">595</context></context-group> </trans-unit> - <trans-unit id="_msg1098" approved="yes"> + <trans-unit id="_msg1132" approved="yes"> <source xml:space="preserve">to</source> <target xml:space="preserve">to</target> - <context-group purpose="location"><context context-type="linenumber">626</context></context-group> + <context-group purpose="location"><context context-type="linenumber">604</context></context-group> </trans-unit> </group> </body></file> <file original="../walletframe.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="WalletFrame"> - <trans-unit id="_msg1099" approved="yes"> + <trans-unit id="_msg1133" approved="yes"> <source xml:space="preserve">No wallet has been loaded. Go to File > Open Wallet to load a wallet. - OR -</source> <target xml:space="preserve">No wallet has been loaded. Go to File > Open Wallet to load a wallet. - OR -</target> - <context-group purpose="location"><context context-type="linenumber">41</context></context-group> + <context-group purpose="location"><context context-type="linenumber">46</context></context-group> </trans-unit> - <trans-unit id="_msg1100" approved="yes"> + <trans-unit id="_msg1134" approved="yes"> <source xml:space="preserve">Create a new wallet</source> <target xml:space="preserve">Create a new wallet</target> - <context-group purpose="location"><context context-type="linenumber">46</context></context-group> + <context-group purpose="location"><context context-type="linenumber">51</context></context-group> + </trans-unit> + <trans-unit id="_msg1135"> + <source xml:space="preserve">Error</source> + <target xml:space="preserve" state="needs-review-translation">Error</target> + <context-group purpose="location"><context context-type="linenumber">259</context></context-group> + <context-group purpose="location"><context context-type="linenumber">268</context></context-group> + <context-group purpose="location"><context context-type="linenumber">278</context></context-group> + </trans-unit> + <trans-unit id="_msg1136"> + <source xml:space="preserve">Unable to decode PSBT from clipboard (invalid base64)</source> + <target xml:space="preserve" state="needs-review-translation">Unable to decode PSBT from clipboard (invalid base64)</target> + <context-group purpose="location"><context context-type="linenumber">259</context></context-group> + </trans-unit> + <trans-unit id="_msg1137"> + <source xml:space="preserve">Load Transaction Data</source> + <target xml:space="preserve" state="needs-review-translation">Load Transaction Data</target> + <context-group purpose="location"><context context-type="linenumber">264</context></context-group> + </trans-unit> + <trans-unit id="_msg1138"> + <source xml:space="preserve">Partially Signed Transaction (*.psbt)</source> + <target xml:space="preserve" state="needs-review-translation">Partially Signed Transaction (*.psbt)</target> + <context-group purpose="location"><context context-type="linenumber">265</context></context-group> + </trans-unit> + <trans-unit id="_msg1139"> + <source xml:space="preserve">PSBT file must be smaller than 100 MiB</source> + <target xml:space="preserve" state="needs-review-translation">PSBT file must be smaller than 100 MiB</target> + <context-group purpose="location"><context context-type="linenumber">268</context></context-group> + </trans-unit> + <trans-unit id="_msg1140"> + <source xml:space="preserve">Unable to decode PSBT</source> + <target xml:space="preserve" state="needs-review-translation">Unable to decode PSBT</target> + <context-group purpose="location"><context context-type="linenumber">278</context></context-group> </trans-unit> </group> </body></file> <file original="../walletmodel.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="WalletModel"> - <trans-unit id="_msg1101" approved="yes"> + <trans-unit id="_msg1141" approved="yes"> <source xml:space="preserve">Send Coins</source> <target xml:space="preserve">Send Coins</target> <context-group purpose="location"><context context-type="linenumber">265</context></context-group> </trans-unit> - <trans-unit id="_msg1102" approved="yes"> + <trans-unit id="_msg1142" approved="yes"> <source xml:space="preserve">default wallet</source> <target xml:space="preserve">default wallet</target> <context-group purpose="location"><context context-type="linenumber">587</context></context-group> @@ -6062,1367 +6313,1395 @@ Go to File > Open Wallet to load a wallet. </body></file> <file original="../walletview.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="WalletView"> - <trans-unit id="_msg1103" approved="yes"> + <trans-unit id="_msg1143" approved="yes"> <source xml:space="preserve">&Export</source> <target xml:space="preserve">&Export</target> - <context-group purpose="location"><context context-type="linenumber">55</context></context-group> + <context-group purpose="location"><context context-type="linenumber">51</context></context-group> </trans-unit> - <trans-unit id="_msg1104" approved="yes"> + <trans-unit id="_msg1144" approved="yes"> <source xml:space="preserve">Export the data in the current tab to a file</source> <target xml:space="preserve">Export the data in the current tab to a file</target> - <context-group purpose="location"><context context-type="linenumber">56</context></context-group> + <context-group purpose="location"><context context-type="linenumber">52</context></context-group> </trans-unit> - <trans-unit id="_msg1105" approved="yes"> + <trans-unit id="_msg1145" approved="yes"> <source xml:space="preserve">Selected amount:</source> <target xml:space="preserve">Selected amount:</target> - <context-group purpose="location"><context context-type="linenumber">62</context></context-group> - </trans-unit> - <trans-unit id="_msg1106" approved="yes"> - <source xml:space="preserve">Unable to decode PSBT from clipboard (invalid base64)</source> - <target xml:space="preserve">Unable to decode PSBT from clipboard (invalid base64)</target> - <context-group purpose="location"><context context-type="linenumber">310</context></context-group> - </trans-unit> - <trans-unit id="_msg1107" approved="yes"> - <source xml:space="preserve">Load Transaction Data</source> - <target xml:space="preserve">Load Transaction Data</target> - <context-group purpose="location"><context context-type="linenumber">315</context></context-group> - </trans-unit> - <trans-unit id="_msg1108" approved="yes"> - <source xml:space="preserve">Partially Signed Transaction (*.psbt)</source> - <target xml:space="preserve">Partially Signed Transaction (*.psbt)</target> - <context-group purpose="location"><context context-type="linenumber">316</context></context-group> - </trans-unit> - <trans-unit id="_msg1109" approved="yes"> - <source xml:space="preserve">Unable to decode PSBT</source> - <target xml:space="preserve">Unable to decode PSBT</target> - <context-group purpose="location"><context context-type="linenumber">329</context></context-group> + <context-group purpose="location"><context context-type="linenumber">58</context></context-group> </trans-unit> - <trans-unit id="_msg1110" approved="yes"> + <trans-unit id="_msg1146" approved="yes"> <source xml:space="preserve">Wallet Data</source> <target xml:space="preserve">Wallet Data</target> - <context-group purpose="location"><context context-type="linenumber">370</context></context-group> + <context-group purpose="location"><context context-type="linenumber">319</context></context-group> <note annotates="source" from="developer">Name of the wallet data file format.</note> </trans-unit> - <trans-unit id="_msg1111" approved="yes"> - <source xml:space="preserve">Error</source> - <target xml:space="preserve">Error</target> - <context-group purpose="location"><context context-type="linenumber">310</context></context-group> - <context-group purpose="location"><context context-type="linenumber">319</context></context-group> - <context-group purpose="location"><context context-type="linenumber">329</context></context-group> - </trans-unit> - <trans-unit id="_msg1112" approved="yes"> - <source xml:space="preserve">PSBT file must be smaller than 100 MiB</source> - <target xml:space="preserve">PSBT file must be smaller than 100 MiB</target> - <context-group purpose="location"><context context-type="linenumber">319</context></context-group> - </trans-unit> - <trans-unit id="_msg1113" approved="yes"> + <trans-unit id="_msg1147" approved="yes"> <source xml:space="preserve">Backup Wallet</source> <target xml:space="preserve">Backup Wallet</target> - <context-group purpose="location"><context context-type="linenumber">368</context></context-group> + <context-group purpose="location"><context context-type="linenumber">317</context></context-group> </trans-unit> - <trans-unit id="_msg1114" approved="yes"> + <trans-unit id="_msg1148" approved="yes"> <source xml:space="preserve">Backup Failed</source> <target xml:space="preserve">Backup Failed</target> - <context-group purpose="location"><context context-type="linenumber">376</context></context-group> + <context-group purpose="location"><context context-type="linenumber">325</context></context-group> </trans-unit> - <trans-unit id="_msg1115" approved="yes"> + <trans-unit id="_msg1149" approved="yes"> <source xml:space="preserve">There was an error trying to save the wallet data to %1.</source> <target xml:space="preserve">There was an error trying to save the wallet data to %1.</target> - <context-group purpose="location"><context context-type="linenumber">376</context></context-group> + <context-group purpose="location"><context context-type="linenumber">325</context></context-group> </trans-unit> - <trans-unit id="_msg1116" approved="yes"> + <trans-unit id="_msg1150" approved="yes"> <source xml:space="preserve">Backup Successful</source> <target xml:space="preserve">Backup Successful</target> - <context-group purpose="location"><context context-type="linenumber">380</context></context-group> + <context-group purpose="location"><context context-type="linenumber">329</context></context-group> </trans-unit> - <trans-unit id="_msg1117" approved="yes"> + <trans-unit id="_msg1151" approved="yes"> <source xml:space="preserve">The wallet data was successfully saved to %1.</source> <target xml:space="preserve">The wallet data was successfully saved to %1.</target> - <context-group purpose="location"><context context-type="linenumber">380</context></context-group> + <context-group purpose="location"><context context-type="linenumber">329</context></context-group> </trans-unit> - <trans-unit id="_msg1118" approved="yes"> + <trans-unit id="_msg1152" approved="yes"> <source xml:space="preserve">Cancel</source> <target xml:space="preserve">Cancel</target> - <context-group purpose="location"><context context-type="linenumber">433</context></context-group> + <context-group purpose="location"><context context-type="linenumber">382</context></context-group> </trans-unit> </group> </body></file> <file original="../dashstrings.cpp" datatype="cpp" source-language="en" target-language="en"><body> <group restype="x-trolltech-linguist-context" resname="dash-core"> - <trans-unit id="_msg1119" approved="yes"> + <trans-unit id="_msg1153" approved="yes"> <source xml:space="preserve">Error: Listening for incoming connections failed (listen returned error %s)</source> <target xml:space="preserve">Error: Listening for incoming connections failed (listen returned error %s)</target> - <context-group purpose="location"><context context-type="linenumber">51</context></context-group> + <context-group purpose="location"><context context-type="linenumber">68</context></context-group> </trans-unit> - <trans-unit id="_msg1120" approved="yes"> + <trans-unit id="_msg1154" approved="yes"> <source xml:space="preserve">Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee.</source> <target xml:space="preserve">Fee estimation failed. Fallbackfee is disabled. Wait a few blocks or enable -fallbackfee.</target> - <context-group purpose="location"><context context-type="linenumber">57</context></context-group> + <context-group purpose="location"><context context-type="linenumber">77</context></context-group> </trans-unit> - <trans-unit id="_msg1121" approved="yes"> + <trans-unit id="_msg1155" approved="yes"> <source xml:space="preserve">This error could occur if this wallet was not shutdown cleanly and was last loaded using a build with a newer version of Berkeley DB. If so, please use the software that last loaded this wallet</source> <target xml:space="preserve">This error could occur if this wallet was not shutdown cleanly and was last loaded using a build with a newer version of Berkeley DB. If so, please use the software that last loaded this wallet</target> - <context-group purpose="location"><context context-type="linenumber">120</context></context-group> + <context-group purpose="location"><context context-type="linenumber">153</context></context-group> </trans-unit> - <trans-unit id="_msg1122" approved="yes"> + <trans-unit id="_msg1156" approved="yes"> <source xml:space="preserve">This is a pre-release test build - use at your own risk - do not use for mining or merchant applications</source> <target xml:space="preserve">This is a pre-release test build - use at your own risk - do not use for mining or merchant applications</target> - <context-group purpose="location"><context context-type="linenumber">124</context></context-group> + <context-group purpose="location"><context context-type="linenumber">157</context></context-group> </trans-unit> - <trans-unit id="_msg1123" approved="yes"> + <trans-unit id="_msg1157" approved="yes"> <source xml:space="preserve">Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.</source> <target xml:space="preserve">Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.</target> - <context-group purpose="location"><context context-type="linenumber">161</context></context-group> + <context-group purpose="location"><context context-type="linenumber">194</context></context-group> </trans-unit> - <trans-unit id="_msg1124" approved="yes"> + <trans-unit id="_msg1158" approved="yes"> <source xml:space="preserve">Already have that input.</source> <target xml:space="preserve">Already have that input.</target> - <context-group purpose="location"><context context-type="linenumber">181</context></context-group> + <context-group purpose="location"><context context-type="linenumber">214</context></context-group> </trans-unit> - <trans-unit id="_msg1125" approved="yes"> + <trans-unit id="_msg1159" approved="yes"> <source xml:space="preserve">Collateral not valid.</source> <target xml:space="preserve">Collateral not valid.</target> - <context-group purpose="location"><context context-type="linenumber">190</context></context-group> + <context-group purpose="location"><context context-type="linenumber">223</context></context-group> </trans-unit> - <trans-unit id="_msg1126" approved="yes"> + <trans-unit id="_msg1160" approved="yes"> <source xml:space="preserve">Corrupted block database detected</source> <target xml:space="preserve">Corrupted block database detected</target> - <context-group purpose="location"><context context-type="linenumber">193</context></context-group> + <context-group purpose="location"><context context-type="linenumber">226</context></context-group> </trans-unit> - <trans-unit id="_msg1127" approved="yes"> + <trans-unit id="_msg1161" approved="yes"> <source xml:space="preserve">Do you want to rebuild the block database now?</source> <target xml:space="preserve">Do you want to rebuild the block database now?</target> - <context-group purpose="location"><context context-type="linenumber">197</context></context-group> + <context-group purpose="location"><context context-type="linenumber">230</context></context-group> </trans-unit> - <trans-unit id="_msg1128" approved="yes"> + <trans-unit id="_msg1162" approved="yes"> <source xml:space="preserve">Done loading</source> <target xml:space="preserve">Done loading</target> - <context-group purpose="location"><context context-type="linenumber">198</context></context-group> + <context-group purpose="location"><context context-type="linenumber">231</context></context-group> </trans-unit> - <trans-unit id="_msg1129" approved="yes"> + <trans-unit id="_msg1163" approved="yes"> <source xml:space="preserve">Entries are full.</source> <target xml:space="preserve">Entries are full.</target> - <context-group purpose="location"><context context-type="linenumber">201</context></context-group> + <context-group purpose="location"><context context-type="linenumber">234</context></context-group> </trans-unit> - <trans-unit id="_msg1130" approved="yes"> + <trans-unit id="_msg1164" approved="yes"> <source xml:space="preserve">Error initializing block database</source> <target xml:space="preserve">Error initializing block database</target> - <context-group purpose="location"><context context-type="linenumber">204</context></context-group> + <context-group purpose="location"><context context-type="linenumber">237</context></context-group> </trans-unit> - <trans-unit id="_msg1131" approved="yes"> + <trans-unit id="_msg1165" approved="yes"> <source xml:space="preserve">Error initializing wallet database environment %s!</source> <target xml:space="preserve">Error initializing wallet database environment %s!</target> - <context-group purpose="location"><context context-type="linenumber">205</context></context-group> + <context-group purpose="location"><context context-type="linenumber">238</context></context-group> </trans-unit> - <trans-unit id="_msg1132" approved="yes"> + <trans-unit id="_msg1166" approved="yes"> <source xml:space="preserve">Error loading block database</source> <target xml:space="preserve">Error loading block database</target> - <context-group purpose="location"><context context-type="linenumber">211</context></context-group> + <context-group purpose="location"><context context-type="linenumber">244</context></context-group> </trans-unit> - <trans-unit id="_msg1133" approved="yes"> + <trans-unit id="_msg1167" approved="yes"> <source xml:space="preserve">Error opening block database</source> <target xml:space="preserve">Error opening block database</target> - <context-group purpose="location"><context context-type="linenumber">212</context></context-group> + <context-group purpose="location"><context context-type="linenumber">245</context></context-group> </trans-unit> - <trans-unit id="_msg1134" approved="yes"> + <trans-unit id="_msg1168" approved="yes"> <source xml:space="preserve">Error reading from database, shutting down.</source> <target xml:space="preserve">Error reading from database, shutting down.</target> - <context-group purpose="location"><context context-type="linenumber">213</context></context-group> + <context-group purpose="location"><context context-type="linenumber">246</context></context-group> </trans-unit> - <trans-unit id="_msg1135"> + <trans-unit id="_msg1169" approved="yes"> <source xml:space="preserve">Error: Missing checksum</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">223</context></context-group> + <target xml:space="preserve">Error: Missing checksum</target> + <context-group purpose="location"><context context-type="linenumber">256</context></context-group> </trans-unit> - <trans-unit id="_msg1136"> + <trans-unit id="_msg1170" approved="yes"> <source xml:space="preserve">Error: Unable to parse version %u as a uint32_t</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">224</context></context-group> + <target xml:space="preserve">Error: Unable to parse version %u as a uint32_t</target> + <context-group purpose="location"><context context-type="linenumber">258</context></context-group> </trans-unit> - <trans-unit id="_msg1137"> + <trans-unit id="_msg1171" approved="yes"> <source xml:space="preserve">Error: Unable to write record to new wallet</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">225</context></context-group> + <target xml:space="preserve">Error: Unable to write record to new wallet</target> + <context-group purpose="location"><context context-type="linenumber">259</context></context-group> </trans-unit> - <trans-unit id="_msg1138" approved="yes"> + <trans-unit id="_msg1172" approved="yes"> <source xml:space="preserve">Failed to listen on any port. Use -listen=0 if you want this.</source> <target xml:space="preserve">Failed to listen on any port. Use -listen=0 if you want this.</target> - <context-group purpose="location"><context context-type="linenumber">235</context></context-group> + <context-group purpose="location"><context context-type="linenumber">269</context></context-group> </trans-unit> - <trans-unit id="_msg1139" approved="yes"> + <trans-unit id="_msg1173" approved="yes"> <source xml:space="preserve">-maxtxfee is set very high! Fees this large could be paid on a single transaction.</source> <target xml:space="preserve">-maxtxfee is set very high! Fees this large could be paid on a single transaction.</target> <context-group purpose="location"><context context-type="linenumber">22</context></context-group> </trans-unit> - <trans-unit id="_msg1140" approved="yes"> + <trans-unit id="_msg1174" approved="yes"> <source xml:space="preserve">Cannot provide specific connections and have addrman find outgoing connections at the same.</source> <target xml:space="preserve">Cannot provide specific connections and have addrman find outgoing connections at the same.</target> - <context-group purpose="location"><context context-type="linenumber">30</context></context-group> + <context-group purpose="location"><context context-type="linenumber">42</context></context-group> </trans-unit> - <trans-unit id="_msg1141" approved="yes"> + <trans-unit id="_msg1175" approved="yes"> <source xml:space="preserve">Found unconfirmed denominated outputs, will wait till they confirm to continue.</source> <target xml:space="preserve">Found unconfirmed denominated outputs, will wait till they confirm to continue.</target> - <context-group purpose="location"><context context-type="linenumber">63</context></context-group> + <context-group purpose="location"><context context-type="linenumber">83</context></context-group> </trans-unit> - <trans-unit id="_msg1142" approved="yes"> + <trans-unit id="_msg1176" approved="yes"> <source xml:space="preserve">Invalid -socketevents ('%s') specified. Only these modes are supported: %s</source> <target xml:space="preserve">Invalid -socketevents ('%s') specified. Only these modes are supported: %s</target> - <context-group purpose="location"><context context-type="linenumber">69</context></context-group> + <context-group purpose="location"><context context-type="linenumber">92</context></context-group> </trans-unit> - <trans-unit id="_msg1143" approved="yes"> + <trans-unit id="_msg1177" approved="yes"> <source xml:space="preserve">Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)</source> <target xml:space="preserve">Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)</target> - <context-group purpose="location"><context context-type="linenumber">71</context></context-group> + <context-group purpose="location"><context context-type="linenumber">94</context></context-group> </trans-unit> - <trans-unit id="_msg1144" approved="yes"> + <trans-unit id="_msg1178" approved="yes"> <source xml:space="preserve">SQLiteDatabase: Unknown sqlite wallet schema version %d. Only version %d is supported</source> <target xml:space="preserve">SQLiteDatabase: Unknown sqlite wallet schema version %d. Only version %d is supported</target> - <context-group purpose="location"><context context-type="linenumber">110</context></context-group> + <context-group purpose="location"><context context-type="linenumber">136</context></context-group> </trans-unit> - <trans-unit id="_msg1145" approved="yes"> + <trans-unit id="_msg1179" approved="yes"> <source xml:space="preserve">Transaction index can't be disabled with governance validation enabled. Either start with -disablegovernance command line switch or enable transaction index.</source> <target xml:space="preserve">Transaction index can't be disabled with governance validation enabled. Either start with -disablegovernance command line switch or enable transaction index.</target> - <context-group purpose="location"><context context-type="linenumber">138</context></context-group> + <context-group purpose="location"><context context-type="linenumber">171</context></context-group> </trans-unit> - <trans-unit id="_msg1146" approved="yes"> + <trans-unit id="_msg1180" approved="yes"> <source xml:space="preserve">Can't mix: no compatible inputs found!</source> <target xml:space="preserve">Can't mix: no compatible inputs found!</target> - <context-group purpose="location"><context context-type="linenumber">185</context></context-group> + <context-group purpose="location"><context context-type="linenumber">218</context></context-group> </trans-unit> - <trans-unit id="_msg1147" approved="yes"> + <trans-unit id="_msg1181" approved="yes"> <source xml:space="preserve">Entry exceeds maximum size.</source> <target xml:space="preserve">Entry exceeds maximum size.</target> - <context-group purpose="location"><context context-type="linenumber">202</context></context-group> + <context-group purpose="location"><context context-type="linenumber">235</context></context-group> </trans-unit> - <trans-unit id="_msg1148" approved="yes"> + <trans-unit id="_msg1182" approved="yes"> <source xml:space="preserve">Found enough users, signing ( waiting %s )</source> <target xml:space="preserve">Found enough users, signing ( waiting %s )</target> - <context-group purpose="location"><context context-type="linenumber">243</context></context-group> + <context-group purpose="location"><context context-type="linenumber">278</context></context-group> </trans-unit> - <trans-unit id="_msg1149" approved="yes"> + <trans-unit id="_msg1183" approved="yes"> <source xml:space="preserve">Incompatible mode.</source> <target xml:space="preserve">Incompatible mode.</target> - <context-group purpose="location"><context context-type="linenumber">247</context></context-group> + <context-group purpose="location"><context context-type="linenumber">282</context></context-group> </trans-unit> - <trans-unit id="_msg1150" approved="yes"> + <trans-unit id="_msg1184" approved="yes"> <source xml:space="preserve">Incompatible version.</source> <target xml:space="preserve">Incompatible version.</target> - <context-group purpose="location"><context context-type="linenumber">248</context></context-group> + <context-group purpose="location"><context context-type="linenumber">283</context></context-group> </trans-unit> - <trans-unit id="_msg1151" approved="yes"> + <trans-unit id="_msg1185" approved="yes"> <source xml:space="preserve">Incorrect or no genesis block found. Wrong datadir for network?</source> <target xml:space="preserve">Incorrect or no genesis block found. Wrong datadir for network?</target> - <context-group purpose="location"><context context-type="linenumber">250</context></context-group> + <context-group purpose="location"><context context-type="linenumber">285</context></context-group> </trans-unit> - <trans-unit id="_msg1152" approved="yes"> + <trans-unit id="_msg1186" approved="yes"> <source xml:space="preserve">Input is not valid.</source> <target xml:space="preserve">Input is not valid.</target> - <context-group purpose="location"><context context-type="linenumber">252</context></context-group> + <context-group purpose="location"><context context-type="linenumber">287</context></context-group> </trans-unit> - <trans-unit id="_msg1153" approved="yes"> + <trans-unit id="_msg1187" approved="yes"> <source xml:space="preserve">Insufficient funds.</source> <target xml:space="preserve">Insufficient funds.</target> - <context-group purpose="location"><context context-type="linenumber">254</context></context-group> + <context-group purpose="location"><context context-type="linenumber">290</context></context-group> </trans-unit> - <trans-unit id="_msg1154" approved="yes"> + <trans-unit id="_msg1188" approved="yes"> <source xml:space="preserve">Invalid amount for -discardfee=<amount>: '%s'</source> <target xml:space="preserve">Invalid amount for -discardfee=<amount>: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">261</context></context-group> + <context-group purpose="location"><context context-type="linenumber">297</context></context-group> </trans-unit> - <trans-unit id="_msg1155" approved="yes"> + <trans-unit id="_msg1189" approved="yes"> <source xml:space="preserve">Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s)</source> <target xml:space="preserve">Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s)</target> - <context-group purpose="location"><context context-type="linenumber">263</context></context-group> + <context-group purpose="location"><context context-type="linenumber">299</context></context-group> </trans-unit> - <trans-unit id="_msg1156" approved="yes"> + <trans-unit id="_msg1190" approved="yes"> <source xml:space="preserve">Invalid minimum number of spork signers specified with -minsporkkeys</source> <target xml:space="preserve">Invalid minimum number of spork signers specified with -minsporkkeys</target> - <context-group purpose="location"><context context-type="linenumber">265</context></context-group> + <context-group purpose="location"><context context-type="linenumber">301</context></context-group> </trans-unit> - <trans-unit id="_msg1157" approved="yes"> + <trans-unit id="_msg1191" approved="yes"> <source xml:space="preserve">Lock is already in place.</source> <target xml:space="preserve">Lock is already in place.</target> - <context-group purpose="location"><context context-type="linenumber">275</context></context-group> + <context-group purpose="location"><context context-type="linenumber">311</context></context-group> </trans-unit> - <trans-unit id="_msg1158" approved="yes"> + <trans-unit id="_msg1192" approved="yes"> <source xml:space="preserve">Need to specify a port with -whitebind: '%s'</source> <target xml:space="preserve">Need to specify a port with -whitebind: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">280</context></context-group> + <context-group purpose="location"><context context-type="linenumber">316</context></context-group> </trans-unit> - <trans-unit id="_msg1159" approved="yes"> + <trans-unit id="_msg1193" approved="yes"> <source xml:space="preserve">No Masternodes detected.</source> <target xml:space="preserve">No Masternodes detected.</target> - <context-group purpose="location"><context context-type="linenumber">281</context></context-group> + <context-group purpose="location"><context context-type="linenumber">317</context></context-group> </trans-unit> - <trans-unit id="_msg1160" approved="yes"> + <trans-unit id="_msg1194" approved="yes"> <source xml:space="preserve">No compatible Masternode found.</source> <target xml:space="preserve">No compatible Masternode found.</target> - <context-group purpose="location"><context context-type="linenumber">282</context></context-group> + <context-group purpose="location"><context context-type="linenumber">319</context></context-group> </trans-unit> - <trans-unit id="_msg1161" approved="yes"> + <trans-unit id="_msg1195" approved="yes"> <source xml:space="preserve">Not enough funds to mix.</source> <target xml:space="preserve">Not enough funds to mix.</target> - <context-group purpose="location"><context context-type="linenumber">288</context></context-group> + <context-group purpose="location"><context context-type="linenumber">325</context></context-group> </trans-unit> - <trans-unit id="_msg1162" approved="yes"> + <trans-unit id="_msg1196" approved="yes"> <source xml:space="preserve">Not in the Masternode list.</source> <target xml:space="preserve">Not in the Masternode list.</target> - <context-group purpose="location"><context context-type="linenumber">289</context></context-group> + <context-group purpose="location"><context context-type="linenumber">326</context></context-group> </trans-unit> - <trans-unit id="_msg1163"> + <trans-unit id="_msg1197" approved="yes"> <source xml:space="preserve">Pruning blockstore…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">294</context></context-group> + <target xml:space="preserve">Pruning blockstore…</target> + <context-group purpose="location"><context context-type="linenumber">330</context></context-group> </trans-unit> - <trans-unit id="_msg1164"> + <trans-unit id="_msg1198" approved="yes"> <source xml:space="preserve">Replaying blocks…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">296</context></context-group> + <target xml:space="preserve">Replaying blocks…</target> + <context-group purpose="location"><context context-type="linenumber">332</context></context-group> </trans-unit> - <trans-unit id="_msg1165"> + <trans-unit id="_msg1199" approved="yes"> <source xml:space="preserve">Rescanning…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">297</context></context-group> + <target xml:space="preserve">Rescanning…</target> + <context-group purpose="location"><context context-type="linenumber">333</context></context-group> </trans-unit> - <trans-unit id="_msg1166"> + <trans-unit id="_msg1200" approved="yes"> <source xml:space="preserve">Starting network threads…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">310</context></context-group> + <target xml:space="preserve">Starting network threads…</target> + <context-group purpose="location"><context context-type="linenumber">346</context></context-group> </trans-unit> - <trans-unit id="_msg1167" approved="yes"> + <trans-unit id="_msg1201" approved="yes"> <source xml:space="preserve">Submitted to masternode, waiting in queue %s</source> <target xml:space="preserve">Submitted to masternode, waiting in queue %s</target> - <context-group purpose="location"><context context-type="linenumber">311</context></context-group> + <context-group purpose="location"><context context-type="linenumber">347</context></context-group> </trans-unit> - <trans-unit id="_msg1168" approved="yes"> + <trans-unit id="_msg1202" approved="yes"> <source xml:space="preserve">Synchronization finished</source> <target xml:space="preserve">Synchronization finished</target> - <context-group purpose="location"><context context-type="linenumber">312</context></context-group> + <context-group purpose="location"><context context-type="linenumber">348</context></context-group> </trans-unit> - <trans-unit id="_msg1169"> + <trans-unit id="_msg1203" approved="yes"> <source xml:space="preserve">Synchronizing blockchain…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">313</context></context-group> + <target xml:space="preserve">Synchronizing blockchain…</target> + <context-group purpose="location"><context context-type="linenumber">349</context></context-group> </trans-unit> - <trans-unit id="_msg1170"> + <trans-unit id="_msg1204" approved="yes"> <source xml:space="preserve">Synchronizing governance objects…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">314</context></context-group> + <target xml:space="preserve">Synchronizing governance objects…</target> + <context-group purpose="location"><context context-type="linenumber">350</context></context-group> </trans-unit> - <trans-unit id="_msg1171" approved="yes"> + <trans-unit id="_msg1205" approved="yes"> <source xml:space="preserve">Unable to start HTTP server. See debug log for details.</source> <target xml:space="preserve">Unable to start HTTP server. See debug log for details.</target> - <context-group purpose="location"><context context-type="linenumber">341</context></context-group> + <context-group purpose="location"><context context-type="linenumber">378</context></context-group> </trans-unit> - <trans-unit id="_msg1172" approved="yes"> + <trans-unit id="_msg1206" approved="yes"> <source xml:space="preserve">Unknown response.</source> <target xml:space="preserve">Unknown response.</target> - <context-group purpose="location"><context context-type="linenumber">345</context></context-group> + <context-group purpose="location"><context context-type="linenumber">382</context></context-group> </trans-unit> - <trans-unit id="_msg1173" approved="yes"> + <trans-unit id="_msg1207" approved="yes"> <source xml:space="preserve">User Agent comment (%s) contains unsafe characters.</source> <target xml:space="preserve">User Agent comment (%s) contains unsafe characters.</target> - <context-group purpose="location"><context context-type="linenumber">350</context></context-group> + <context-group purpose="location"><context context-type="linenumber">386</context></context-group> </trans-unit> - <trans-unit id="_msg1174" approved="yes"> + <trans-unit id="_msg1208" approved="yes"> <source xml:space="preserve">Can't find random Masternode.</source> <target xml:space="preserve">Can't find random Masternode.</target> - <context-group purpose="location"><context context-type="linenumber">183</context></context-group> + <context-group purpose="location"><context context-type="linenumber">216</context></context-group> </trans-unit> - <trans-unit id="_msg1175" approved="yes"> + <trans-unit id="_msg1209" approved="yes"> <source xml:space="preserve">%s can't be lower than %s</source> <target xml:space="preserve">%s can't be lower than %s</target> - <context-group purpose="location"><context context-type="linenumber">170</context></context-group> + <context-group purpose="location"><context context-type="linenumber">203</context></context-group> </trans-unit> - <trans-unit id="_msg1176" approved="yes"> + <trans-unit id="_msg1210" approved="yes"> <source xml:space="preserve">%s is idle.</source> <target xml:space="preserve">%s is idle.</target> - <context-group purpose="location"><context context-type="linenumber">172</context></context-group> + <context-group purpose="location"><context context-type="linenumber">205</context></context-group> </trans-unit> - <trans-unit id="_msg1177" approved="yes"> + <trans-unit id="_msg1211" approved="yes"> <source xml:space="preserve">Can't mix while sync in progress.</source> <target xml:space="preserve">Can't mix while sync in progress.</target> - <context-group purpose="location"><context context-type="linenumber">184</context></context-group> + <context-group purpose="location"><context context-type="linenumber">217</context></context-group> </trans-unit> - <trans-unit id="_msg1178" approved="yes"> + <trans-unit id="_msg1212" approved="yes"> <source xml:space="preserve">Invalid netmask specified in -whitelist: '%s'</source> <target xml:space="preserve">Invalid netmask specified in -whitelist: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">266</context></context-group> + <context-group purpose="location"><context context-type="linenumber">302</context></context-group> </trans-unit> - <trans-unit id="_msg1179" approved="yes"> + <trans-unit id="_msg1213" approved="yes"> <source xml:space="preserve">Invalid script detected.</source> <target xml:space="preserve">Invalid script detected.</target> - <context-group purpose="location"><context context-type="linenumber">267</context></context-group> + <context-group purpose="location"><context context-type="linenumber">303</context></context-group> </trans-unit> - <trans-unit id="_msg1180" approved="yes"> + <trans-unit id="_msg1214" approved="yes"> <source xml:space="preserve">%s file contains all private keys from this wallet. Do not share it with anyone!</source> <target xml:space="preserve">%s file contains all private keys from this wallet. Do not share it with anyone!</target> <context-group purpose="location"><context context-type="linenumber">16</context></context-group> </trans-unit> - <trans-unit id="_msg1181" approved="yes"> + <trans-unit id="_msg1215" approved="yes"> <source xml:space="preserve">Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this.</source> <target xml:space="preserve">Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this.</target> - <context-group purpose="location"><context context-type="linenumber">53</context></context-group> + <context-group purpose="location"><context context-type="linenumber">70</context></context-group> </trans-unit> - <trans-unit id="_msg1182" approved="yes"> + <trans-unit id="_msg1216" approved="yes"> <source xml:space="preserve">Make sure to encrypt your wallet and delete all non-encrypted backups after you have verified that the wallet works!</source> <target xml:space="preserve">Make sure to encrypt your wallet and delete all non-encrypted backups after you have verified that the wallet works!</target> - <context-group purpose="location"><context context-type="linenumber">78</context></context-group> + <context-group purpose="location"><context context-type="linenumber">101</context></context-group> </trans-unit> - <trans-unit id="_msg1183" approved="yes"> + <trans-unit id="_msg1217" approved="yes"> <source xml:space="preserve">More than one onion bind address is provided. Using %s for the automatically created Tor onion service.</source> <target xml:space="preserve">More than one onion bind address is provided. Using %s for the automatically created Tor onion service.</target> - <context-group purpose="location"><context context-type="linenumber">81</context></context-group> + <context-group purpose="location"><context context-type="linenumber">104</context></context-group> </trans-unit> - <trans-unit id="_msg1184" approved="yes"> + <trans-unit id="_msg1218" approved="yes"> <source xml:space="preserve">Prune configured below the minimum of %d MiB. Please use a higher number.</source> <target xml:space="preserve">Prune configured below the minimum of %d MiB. Please use a higher number.</target> - <context-group purpose="location"><context context-type="linenumber">105</context></context-group> + <context-group purpose="location"><context context-type="linenumber">128</context></context-group> </trans-unit> - <trans-unit id="_msg1185" approved="yes"> + <trans-unit id="_msg1219" approved="yes"> <source xml:space="preserve">Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node)</source> <target xml:space="preserve">Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node)</target> - <context-group purpose="location"><context context-type="linenumber">107</context></context-group> + <context-group purpose="location"><context context-type="linenumber">133</context></context-group> </trans-unit> - <trans-unit id="_msg1186" approved="yes"> + <trans-unit id="_msg1220" approved="yes"> <source xml:space="preserve">The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct</source> <target xml:space="preserve">The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct</target> - <context-group purpose="location"><context context-type="linenumber">113</context></context-group> + <context-group purpose="location"><context context-type="linenumber">142</context></context-group> </trans-unit> - <trans-unit id="_msg1187" approved="yes"> + <trans-unit id="_msg1221" approved="yes"> <source xml:space="preserve">The transaction amount is too small to send after the fee has been deducted</source> <target xml:space="preserve">The transaction amount is too small to send after the fee has been deducted</target> - <context-group purpose="location"><context context-type="linenumber">118</context></context-group> + <context-group purpose="location"><context context-type="linenumber">151</context></context-group> </trans-unit> - <trans-unit id="_msg1188" approved="yes"> + <trans-unit id="_msg1222" approved="yes"> <source xml:space="preserve">Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments.</source> <target xml:space="preserve">Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments.</target> - <context-group purpose="location"><context context-type="linenumber">135</context></context-group> + <context-group purpose="location"><context context-type="linenumber">168</context></context-group> </trans-unit> - <trans-unit id="_msg1189" approved="yes"> + <trans-unit id="_msg1223" approved="yes"> <source xml:space="preserve">Transaction needs a change address, but we can't generate it. Please call keypoolrefill first.</source> <target xml:space="preserve">Transaction needs a change address, but we can't generate it. Please call keypoolrefill first.</target> - <context-group purpose="location"><context context-type="linenumber">142</context></context-group> + <context-group purpose="location"><context context-type="linenumber">175</context></context-group> </trans-unit> - <trans-unit id="_msg1190" approved="yes"> + <trans-unit id="_msg1224" approved="yes"> <source xml:space="preserve">WARNING! Failed to replenish keypool, please unlock your wallet to do so.</source> <target xml:space="preserve">WARNING! Failed to replenish keypool, please unlock your wallet to do so.</target> - <context-group purpose="location"><context context-type="linenumber">151</context></context-group> + <context-group purpose="location"><context context-type="linenumber">184</context></context-group> </trans-unit> - <trans-unit id="_msg1191" approved="yes"> + <trans-unit id="_msg1225" approved="yes"> <source xml:space="preserve">Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</source> <target xml:space="preserve">Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</target> - <context-group purpose="location"><context context-type="linenumber">153</context></context-group> - </trans-unit> - <trans-unit id="_msg1192" approved="yes"> - <source xml:space="preserve">You need to rebuild the database using -reindex to change -timestampindex</source> - <target xml:space="preserve">You need to rebuild the database using -reindex to change -timestampindex</target> - <context-group purpose="location"><context context-type="linenumber">164</context></context-group> + <context-group purpose="location"><context context-type="linenumber">186</context></context-group> </trans-unit> - <trans-unit id="_msg1193" approved="yes"> + <trans-unit id="_msg1226" approved="yes"> <source xml:space="preserve">You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <target xml:space="preserve">You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</target> - <context-group purpose="location"><context context-type="linenumber">166</context></context-group> + <context-group purpose="location"><context context-type="linenumber">199</context></context-group> </trans-unit> - <trans-unit id="_msg1194" approved="yes"> + <trans-unit id="_msg1227" approved="yes"> <source xml:space="preserve">%s failed</source> <target xml:space="preserve">%s failed</target> - <context-group purpose="location"><context context-type="linenumber">171</context></context-group> + <context-group purpose="location"><context context-type="linenumber">204</context></context-group> </trans-unit> - <trans-unit id="_msg1195" approved="yes"> + <trans-unit id="_msg1228" approved="yes"> <source xml:space="preserve">-maxmempool must be at least %d MB</source> <target xml:space="preserve">-maxmempool must be at least %d MB</target> - <context-group purpose="location"><context context-type="linenumber">177</context></context-group> + <context-group purpose="location"><context context-type="linenumber">210</context></context-group> </trans-unit> - <trans-unit id="_msg1196" approved="yes"> + <trans-unit id="_msg1229" approved="yes"> <source xml:space="preserve">Automatic backups disabled</source> <target xml:space="preserve">Automatic backups disabled</target> - <context-group purpose="location"><context context-type="linenumber">182</context></context-group> + <context-group purpose="location"><context context-type="linenumber">215</context></context-group> </trans-unit> - <trans-unit id="_msg1197" approved="yes"> + <trans-unit id="_msg1230" approved="yes"> <source xml:space="preserve">Cannot set -peerblockfilters without -blockfilterindex.</source> <target xml:space="preserve">Cannot set -peerblockfilters without -blockfilterindex.</target> - <context-group purpose="location"><context context-type="linenumber">187</context></context-group> + <context-group purpose="location"><context context-type="linenumber">220</context></context-group> </trans-unit> - <trans-unit id="_msg1198" approved="yes"> + <trans-unit id="_msg1231" approved="yes"> <source xml:space="preserve">Config setting for %s only applied on %s network when in [%s] section.</source> <target xml:space="preserve">Config setting for %s only applied on %s network when in [%s] section.</target> - <context-group purpose="location"><context context-type="linenumber">191</context></context-group> + <context-group purpose="location"><context context-type="linenumber">224</context></context-group> </trans-unit> - <trans-unit id="_msg1199" approved="yes"> + <trans-unit id="_msg1232" approved="yes"> <source xml:space="preserve">Could not find asmap file %s</source> <target xml:space="preserve">Could not find asmap file %s</target> - <context-group purpose="location"><context context-type="linenumber">194</context></context-group> + <context-group purpose="location"><context context-type="linenumber">227</context></context-group> </trans-unit> - <trans-unit id="_msg1200" approved="yes"> + <trans-unit id="_msg1233" approved="yes"> <source xml:space="preserve">Could not parse asmap file %s</source> <target xml:space="preserve">Could not parse asmap file %s</target> - <context-group purpose="location"><context context-type="linenumber">195</context></context-group> + <context-group purpose="location"><context context-type="linenumber">228</context></context-group> </trans-unit> - <trans-unit id="_msg1201" approved="yes"> + <trans-unit id="_msg1234" approved="yes"> <source xml:space="preserve">ERROR! Failed to create automatic backup</source> <target xml:space="preserve">ERROR! Failed to create automatic backup</target> - <context-group purpose="location"><context context-type="linenumber">200</context></context-group> + <context-group purpose="location"><context context-type="linenumber">233</context></context-group> </trans-unit> - <trans-unit id="_msg1202" approved="yes"> + <trans-unit id="_msg1235" approved="yes"> <source xml:space="preserve">Error loading %s: Private keys can only be disabled during creation</source> <target xml:space="preserve">Error loading %s: Private keys can only be disabled during creation</target> - <context-group purpose="location"><context context-type="linenumber">207</context></context-group> + <context-group purpose="location"><context context-type="linenumber">240</context></context-group> </trans-unit> - <trans-unit id="_msg1203" approved="yes"> + <trans-unit id="_msg1236" approved="yes"> <source xml:space="preserve">Error upgrading evo database</source> <target xml:space="preserve">Error upgrading evo database</target> - <context-group purpose="location"><context context-type="linenumber">216</context></context-group> + <context-group purpose="location"><context context-type="linenumber">249</context></context-group> </trans-unit> - <trans-unit id="_msg1204"> + <trans-unit id="_msg1237" approved="yes"> <source xml:space="preserve">Error: Couldn't create cursor into database</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">217</context></context-group> + <target xml:space="preserve">Error: Couldn't create cursor into database</target> + <context-group purpose="location"><context context-type="linenumber">250</context></context-group> </trans-unit> - <trans-unit id="_msg1205" approved="yes"> + <trans-unit id="_msg1238" approved="yes"> <source xml:space="preserve">Error: Disk space is low for %s</source> <target xml:space="preserve">Error: Disk space is low for %s</target> - <context-group purpose="location"><context context-type="linenumber">218</context></context-group> + <context-group purpose="location"><context context-type="linenumber">251</context></context-group> </trans-unit> - <trans-unit id="_msg1206"> + <trans-unit id="_msg1239" approved="yes"> <source xml:space="preserve">Error: Dumpfile checksum does not match. Computed %s, expected %s</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">219</context></context-group> + <target xml:space="preserve">Error: Dumpfile checksum does not match. Computed %s, expected %s</target> + <context-group purpose="location"><context context-type="linenumber">252</context></context-group> </trans-unit> - <trans-unit id="_msg1207"> + <trans-unit id="_msg1240" approved="yes"> <source xml:space="preserve">Error: Got key that was not hex: %s</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">220</context></context-group> + <target xml:space="preserve">Error: Got key that was not hex: %s</target> + <context-group purpose="location"><context context-type="linenumber">253</context></context-group> </trans-unit> - <trans-unit id="_msg1208"> + <trans-unit id="_msg1241" approved="yes"> <source xml:space="preserve">Error: Got value that was not hex: %s</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">221</context></context-group> + <target xml:space="preserve">Error: Got value that was not hex: %s</target> + <context-group purpose="location"><context context-type="linenumber">254</context></context-group> </trans-unit> - <trans-unit id="_msg1209" approved="yes"> + <trans-unit id="_msg1242" approved="yes"> <source xml:space="preserve">Error: Keypool ran out, please call keypoolrefill first</source> <target xml:space="preserve">Error: Keypool ran out, please call keypoolrefill first</target> - <context-group purpose="location"><context context-type="linenumber">222</context></context-group> + <context-group purpose="location"><context context-type="linenumber">255</context></context-group> </trans-unit> - <trans-unit id="_msg1210" approved="yes"> + <trans-unit id="_msg1243"> + <source xml:space="preserve">Error: No addresses available.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">257</context></context-group> + </trans-unit> + <trans-unit id="_msg1244" approved="yes"> <source xml:space="preserve">Exceeded max tries.</source> <target xml:space="preserve">Exceeded max tries.</target> - <context-group purpose="location"><context context-type="linenumber">226</context></context-group> + <context-group purpose="location"><context context-type="linenumber">260</context></context-group> </trans-unit> - <trans-unit id="_msg1211" approved="yes"> + <trans-unit id="_msg1245" approved="yes"> <source xml:space="preserve">Failed to commit EvoDB</source> <target xml:space="preserve">Failed to commit EvoDB</target> - <context-group purpose="location"><context context-type="linenumber">230</context></context-group> + <context-group purpose="location"><context context-type="linenumber">264</context></context-group> </trans-unit> - <trans-unit id="_msg1212" approved="yes"> + <trans-unit id="_msg1246" approved="yes"> <source xml:space="preserve">Failed to create backup %s!</source> <target xml:space="preserve">Failed to create backup %s!</target> - <context-group purpose="location"><context context-type="linenumber">231</context></context-group> + <context-group purpose="location"><context context-type="linenumber">265</context></context-group> </trans-unit> - <trans-unit id="_msg1213" approved="yes"> + <trans-unit id="_msg1247" approved="yes"> <source xml:space="preserve">Failed to create backup, error: %s</source> <target xml:space="preserve">Failed to create backup, error: %s</target> - <context-group purpose="location"><context context-type="linenumber">232</context></context-group> + <context-group purpose="location"><context context-type="linenumber">266</context></context-group> </trans-unit> - <trans-unit id="_msg1214" approved="yes"> + <trans-unit id="_msg1248" approved="yes"> <source xml:space="preserve">Failed to delete backup, error: %s</source> <target xml:space="preserve">Failed to delete backup, error: %s</target> - <context-group purpose="location"><context context-type="linenumber">233</context></context-group> + <context-group purpose="location"><context context-type="linenumber">267</context></context-group> </trans-unit> - <trans-unit id="_msg1215" approved="yes"> + <trans-unit id="_msg1249" approved="yes"> <source xml:space="preserve">Failed to rescan the wallet during initialization</source> <target xml:space="preserve">Failed to rescan the wallet during initialization</target> - <context-group purpose="location"><context context-type="linenumber">240</context></context-group> + <context-group purpose="location"><context context-type="linenumber">274</context></context-group> </trans-unit> - <trans-unit id="_msg1216" approved="yes"> + <trans-unit id="_msg1250" approved="yes"> <source xml:space="preserve">Failed to verify database</source> <target xml:space="preserve">Failed to verify database</target> - <context-group purpose="location"><context context-type="linenumber">242</context></context-group> + <context-group purpose="location"><context context-type="linenumber">276</context></context-group> </trans-unit> - <trans-unit id="_msg1217"> - <source xml:space="preserve">Found enough users, signing…</source> + <trans-unit id="_msg1251"> + <source xml:space="preserve">Fee rate (%s) is lower than the minimum fee rate setting (%s)</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">244</context></context-group> + <context-group purpose="location"><context context-type="linenumber">277</context></context-group> </trans-unit> - <trans-unit id="_msg1218" approved="yes"> + <trans-unit id="_msg1252" approved="yes"> + <source xml:space="preserve">Found enough users, signing…</source> + <target xml:space="preserve">Found enough users, signing…</target> + <context-group purpose="location"><context context-type="linenumber">279</context></context-group> + </trans-unit> + <trans-unit id="_msg1253" approved="yes"> <source xml:space="preserve">Ignoring duplicate -wallet %s.</source> <target xml:space="preserve">Ignoring duplicate -wallet %s.</target> - <context-group purpose="location"><context context-type="linenumber">245</context></context-group> + <context-group purpose="location"><context context-type="linenumber">280</context></context-group> </trans-unit> - <trans-unit id="_msg1219" approved="yes"> + <trans-unit id="_msg1254"> + <source xml:space="preserve">Input not found or already spent</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">288</context></context-group> + </trans-unit> + <trans-unit id="_msg1255" approved="yes"> <source xml:space="preserve">Invalid P2P permission: '%s'</source> <target xml:space="preserve">Invalid P2P permission: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">259</context></context-group> + <context-group purpose="location"><context context-type="linenumber">295</context></context-group> </trans-unit> - <trans-unit id="_msg1220" approved="yes"> + <trans-unit id="_msg1256" approved="yes"> <source xml:space="preserve">Invalid amount for -fallbackfee=<amount>: '%s'</source> <target xml:space="preserve">Invalid amount for -fallbackfee=<amount>: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">262</context></context-group> + <context-group purpose="location"><context context-type="linenumber">298</context></context-group> </trans-unit> - <trans-unit id="_msg1221" approved="yes"> + <trans-unit id="_msg1257" approved="yes"> <source xml:space="preserve">Invalid masternodeblsprivkey. Please see documentation.</source> <target xml:space="preserve">Invalid masternodeblsprivkey. Please see documentation.</target> - <context-group purpose="location"><context context-type="linenumber">264</context></context-group> + <context-group purpose="location"><context context-type="linenumber">300</context></context-group> </trans-unit> - <trans-unit id="_msg1222" approved="yes"> + <trans-unit id="_msg1258" approved="yes"> <source xml:space="preserve">Masternode queue is full.</source> <target xml:space="preserve">Masternode queue is full.</target> - <context-group purpose="location"><context context-type="linenumber">276</context></context-group> + <context-group purpose="location"><context context-type="linenumber">312</context></context-group> </trans-unit> - <trans-unit id="_msg1223" approved="yes"> + <trans-unit id="_msg1259" approved="yes"> <source xml:space="preserve">Masternode:</source> <target xml:space="preserve">Masternode:</target> - <context-group purpose="location"><context context-type="linenumber">277</context></context-group> + <context-group purpose="location"><context context-type="linenumber">313</context></context-group> </trans-unit> - <trans-unit id="_msg1224" approved="yes"> + <trans-unit id="_msg1260" approved="yes"> <source xml:space="preserve">Missing input transaction information.</source> <target xml:space="preserve">Missing input transaction information.</target> - <context-group purpose="location"><context context-type="linenumber">278</context></context-group> + <context-group purpose="location"><context context-type="linenumber">314</context></context-group> </trans-unit> - <trans-unit id="_msg1225"> + <trans-unit id="_msg1261" approved="yes"> <source xml:space="preserve">Mixing in progress…</source> + <target xml:space="preserve">Mixing in progress…</target> + <context-group purpose="location"><context context-type="linenumber">315</context></context-group> + </trans-unit> + <trans-unit id="_msg1262"> + <source xml:space="preserve">No addresses available</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">279</context></context-group> + <context-group purpose="location"><context context-type="linenumber">318</context></context-group> </trans-unit> - <trans-unit id="_msg1226" approved="yes"> + <trans-unit id="_msg1263" approved="yes"> <source xml:space="preserve">No errors detected.</source> <target xml:space="preserve">No errors detected.</target> - <context-group purpose="location"><context context-type="linenumber">283</context></context-group> + <context-group purpose="location"><context context-type="linenumber">320</context></context-group> </trans-unit> - <trans-unit id="_msg1227" approved="yes"> + <trans-unit id="_msg1264" approved="yes"> <source xml:space="preserve">No matching denominations found for mixing.</source> <target xml:space="preserve">No matching denominations found for mixing.</target> - <context-group purpose="location"><context context-type="linenumber">284</context></context-group> + <context-group purpose="location"><context context-type="linenumber">321</context></context-group> </trans-unit> - <trans-unit id="_msg1228" approved="yes"> + <trans-unit id="_msg1265" approved="yes"> <source xml:space="preserve">No proxy server specified. Use -proxy=<ip> or -proxy=<ip:port>.</source> <target xml:space="preserve">No proxy server specified. Use -proxy=<ip> or -proxy=<ip:port>.</target> - <context-group purpose="location"><context context-type="linenumber">285</context></context-group> + <context-group purpose="location"><context context-type="linenumber">322</context></context-group> </trans-unit> - <trans-unit id="_msg1229" approved="yes"> + <trans-unit id="_msg1266" approved="yes"> <source xml:space="preserve">Not compatible with existing transactions.</source> <target xml:space="preserve">Not compatible with existing transactions.</target> - <context-group purpose="location"><context context-type="linenumber">286</context></context-group> + <context-group purpose="location"><context context-type="linenumber">323</context></context-group> </trans-unit> - <trans-unit id="_msg1230" approved="yes"> + <trans-unit id="_msg1267" approved="yes"> <source xml:space="preserve">Not enough file descriptors available.</source> <target xml:space="preserve">Not enough file descriptors available.</target> - <context-group purpose="location"><context context-type="linenumber">287</context></context-group> + <context-group purpose="location"><context context-type="linenumber">324</context></context-group> </trans-unit> - <trans-unit id="_msg1231" approved="yes"> + <trans-unit id="_msg1268" approved="yes"> <source xml:space="preserve">Prune cannot be configured with a negative value.</source> <target xml:space="preserve">Prune cannot be configured with a negative value.</target> - <context-group purpose="location"><context context-type="linenumber">290</context></context-group> + <context-group purpose="location"><context context-type="linenumber">327</context></context-group> </trans-unit> - <trans-unit id="_msg1232" approved="yes"> + <trans-unit id="_msg1269" approved="yes"> <source xml:space="preserve">Prune mode is incompatible with -disablegovernance=false.</source> <target xml:space="preserve">Prune mode is incompatible with -disablegovernance=false.</target> - <context-group purpose="location"><context context-type="linenumber">292</context></context-group> + <context-group purpose="location"><context context-type="linenumber">328</context></context-group> </trans-unit> - <trans-unit id="_msg1233" approved="yes"> + <trans-unit id="_msg1270" approved="yes"> <source xml:space="preserve">Prune mode is incompatible with -txindex.</source> <target xml:space="preserve">Prune mode is incompatible with -txindex.</target> - <context-group purpose="location"><context context-type="linenumber">293</context></context-group> + <context-group purpose="location"><context context-type="linenumber">329</context></context-group> </trans-unit> - <trans-unit id="_msg1234" approved="yes"> + <trans-unit id="_msg1271" approved="yes"> <source xml:space="preserve">SQLiteDatabase: Failed to execute statement to verify database: %s</source> <target xml:space="preserve">SQLiteDatabase: Failed to execute statement to verify database: %s</target> - <context-group purpose="location"><context context-type="linenumber">298</context></context-group> + <context-group purpose="location"><context context-type="linenumber">334</context></context-group> </trans-unit> - <trans-unit id="_msg1235" approved="yes"> + <trans-unit id="_msg1272" approved="yes"> <source xml:space="preserve">SQLiteDatabase: Failed to prepare statement to verify database: %s</source> <target xml:space="preserve">SQLiteDatabase: Failed to prepare statement to verify database: %s</target> - <context-group purpose="location"><context context-type="linenumber">299</context></context-group> + <context-group purpose="location"><context context-type="linenumber">335</context></context-group> </trans-unit> - <trans-unit id="_msg1236" approved="yes"> + <trans-unit id="_msg1273" approved="yes"> <source xml:space="preserve">SQLiteDatabase: Failed to read database verification error: %s</source> <target xml:space="preserve">SQLiteDatabase: Failed to read database verification error: %s</target> - <context-group purpose="location"><context context-type="linenumber">300</context></context-group> + <context-group purpose="location"><context context-type="linenumber">336</context></context-group> </trans-unit> - <trans-unit id="_msg1237" approved="yes"> + <trans-unit id="_msg1274" approved="yes"> <source xml:space="preserve">SQLiteDatabase: Unexpected application id. Expected %u, got %u</source> <target xml:space="preserve">SQLiteDatabase: Unexpected application id. Expected %u, got %u</target> - <context-group purpose="location"><context context-type="linenumber">301</context></context-group> + <context-group purpose="location"><context context-type="linenumber">337</context></context-group> </trans-unit> - <trans-unit id="_msg1238" approved="yes"> + <trans-unit id="_msg1275" approved="yes"> <source xml:space="preserve">Section [%s] is not recognized.</source> <target xml:space="preserve">Section [%s] is not recognized.</target> - <context-group purpose="location"><context context-type="linenumber">302</context></context-group> + <context-group purpose="location"><context context-type="linenumber">338</context></context-group> </trans-unit> - <trans-unit id="_msg1239" approved="yes"> + <trans-unit id="_msg1276" approved="yes"> <source xml:space="preserve">Specified -walletdir "%s" does not exist</source> <target xml:space="preserve">Specified -walletdir "%s" does not exist</target> - <context-group purpose="location"><context context-type="linenumber">306</context></context-group> + <context-group purpose="location"><context context-type="linenumber">342</context></context-group> </trans-unit> - <trans-unit id="_msg1240" approved="yes"> + <trans-unit id="_msg1277" approved="yes"> <source xml:space="preserve">Specified -walletdir "%s" is a relative path</source> <target xml:space="preserve">Specified -walletdir "%s" is a relative path</target> - <context-group purpose="location"><context context-type="linenumber">307</context></context-group> + <context-group purpose="location"><context context-type="linenumber">343</context></context-group> </trans-unit> - <trans-unit id="_msg1241" approved="yes"> + <trans-unit id="_msg1278" approved="yes"> <source xml:space="preserve">Specified -walletdir "%s" is not a directory</source> <target xml:space="preserve">Specified -walletdir "%s" is not a directory</target> - <context-group purpose="location"><context context-type="linenumber">308</context></context-group> + <context-group purpose="location"><context context-type="linenumber">344</context></context-group> </trans-unit> - <trans-unit id="_msg1242" approved="yes"> + <trans-unit id="_msg1279" approved="yes"> <source xml:space="preserve">The wallet will avoid paying less than the minimum relay fee.</source> <target xml:space="preserve">The wallet will avoid paying less than the minimum relay fee.</target> - <context-group purpose="location"><context context-type="linenumber">318</context></context-group> + <context-group purpose="location"><context context-type="linenumber">354</context></context-group> </trans-unit> - <trans-unit id="_msg1243" approved="yes"> + <trans-unit id="_msg1280" approved="yes"> <source xml:space="preserve">This is expected because you are running a pruned node.</source> <target xml:space="preserve">This is expected because you are running a pruned node.</target> - <context-group purpose="location"><context context-type="linenumber">319</context></context-group> + <context-group purpose="location"><context context-type="linenumber">355</context></context-group> </trans-unit> - <trans-unit id="_msg1244" approved="yes"> + <trans-unit id="_msg1281" approved="yes"> <source xml:space="preserve">This is the minimum transaction fee you pay on every transaction.</source> <target xml:space="preserve">This is the minimum transaction fee you pay on every transaction.</target> - <context-group purpose="location"><context context-type="linenumber">321</context></context-group> + <context-group purpose="location"><context context-type="linenumber">357</context></context-group> </trans-unit> - <trans-unit id="_msg1245" approved="yes"> + <trans-unit id="_msg1282" approved="yes"> <source xml:space="preserve">This is the transaction fee you will pay if you send a transaction.</source> <target xml:space="preserve">This is the transaction fee you will pay if you send a transaction.</target> - <context-group purpose="location"><context context-type="linenumber">322</context></context-group> + <context-group purpose="location"><context context-type="linenumber">358</context></context-group> </trans-unit> - <trans-unit id="_msg1246"> + <trans-unit id="_msg1283" approved="yes"> <source xml:space="preserve">Topping up keypool…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">323</context></context-group> + <target xml:space="preserve">Topping up keypool…</target> + <context-group purpose="location"><context context-type="linenumber">359</context></context-group> </trans-unit> - <trans-unit id="_msg1247" approved="yes"> + <trans-unit id="_msg1284" approved="yes"> <source xml:space="preserve">Transaction amounts must not be negative</source> <target xml:space="preserve">Transaction amounts must not be negative</target> - <context-group purpose="location"><context context-type="linenumber">325</context></context-group> + <context-group purpose="location"><context context-type="linenumber">361</context></context-group> </trans-unit> - <trans-unit id="_msg1248" approved="yes"> + <trans-unit id="_msg1285" approved="yes"> <source xml:space="preserve">Transaction has too long of a mempool chain</source> <target xml:space="preserve">Transaction has too long of a mempool chain</target> - <context-group purpose="location"><context context-type="linenumber">328</context></context-group> + <context-group purpose="location"><context context-type="linenumber">364</context></context-group> </trans-unit> - <trans-unit id="_msg1249" approved="yes"> + <trans-unit id="_msg1286" approved="yes"> <source xml:space="preserve">Transaction must have at least one recipient</source> <target xml:space="preserve">Transaction must have at least one recipient</target> - <context-group purpose="location"><context context-type="linenumber">329</context></context-group> + <context-group purpose="location"><context context-type="linenumber">365</context></context-group> </trans-unit> - <trans-unit id="_msg1250" approved="yes"> + <trans-unit id="_msg1287" approved="yes"> <source xml:space="preserve">Transaction too large</source> <target xml:space="preserve">Transaction too large</target> - <context-group purpose="location"><context context-type="linenumber">331</context></context-group> + <context-group purpose="location"><context context-type="linenumber">367</context></context-group> </trans-unit> - <trans-unit id="_msg1251" approved="yes"> + <trans-unit id="_msg1288" approved="yes"> <source xml:space="preserve">Unable to bind to %s on this computer. %s is probably already running.</source> <target xml:space="preserve">Unable to bind to %s on this computer. %s is probably already running.</target> - <context-group purpose="location"><context context-type="linenumber">334</context></context-group> + <context-group purpose="location"><context context-type="linenumber">370</context></context-group> </trans-unit> - <trans-unit id="_msg1252" approved="yes"> + <trans-unit id="_msg1289" approved="yes"> <source xml:space="preserve">Unable to create the PID file '%s': %s</source> <target xml:space="preserve">Unable to create the PID file '%s': %s</target> - <context-group purpose="location"><context context-type="linenumber">335</context></context-group> + <context-group purpose="location"><context context-type="linenumber">371</context></context-group> </trans-unit> - <trans-unit id="_msg1253" approved="yes"> + <trans-unit id="_msg1290" approved="yes"> <source xml:space="preserve">Unable to generate initial keys</source> <target xml:space="preserve">Unable to generate initial keys</target> - <context-group purpose="location"><context context-type="linenumber">336</context></context-group> + <context-group purpose="location"><context context-type="linenumber">372</context></context-group> </trans-unit> - <trans-unit id="_msg1254"> + <trans-unit id="_msg1291" approved="yes"> <source xml:space="preserve">Unable to open %s for writing</source> + <target xml:space="preserve">Unable to open %s for writing</target> + <context-group purpose="location"><context context-type="linenumber">375</context></context-group> + </trans-unit> + <trans-unit id="_msg1292"> + <source xml:space="preserve">Unable to parse -maxuploadtarget: '%s' (possible integer overflow?)</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">339</context></context-group> + <context-group purpose="location"><context context-type="linenumber">376</context></context-group> </trans-unit> - <trans-unit id="_msg1255" approved="yes"> + <trans-unit id="_msg1293" approved="yes"> <source xml:space="preserve">Unknown -blockfilterindex value %s.</source> <target xml:space="preserve">Unknown -blockfilterindex value %s.</target> - <context-group purpose="location"><context context-type="linenumber">342</context></context-group> + <context-group purpose="location"><context context-type="linenumber">379</context></context-group> </trans-unit> - <trans-unit id="_msg1256" approved="yes"> + <trans-unit id="_msg1294" approved="yes"> <source xml:space="preserve">Unknown new rules activated (versionbit %i)</source> <target xml:space="preserve">Unknown new rules activated (versionbit %i)</target> - <context-group purpose="location"><context context-type="linenumber">344</context></context-group> + <context-group purpose="location"><context context-type="linenumber">381</context></context-group> </trans-unit> - <trans-unit id="_msg1257" approved="yes"> + <trans-unit id="_msg1295" approved="yes"> <source xml:space="preserve">Upgrading UTXO database</source> <target xml:space="preserve">Upgrading UTXO database</target> - <context-group purpose="location"><context context-type="linenumber">348</context></context-group> + <context-group purpose="location"><context context-type="linenumber">385</context></context-group> </trans-unit> - <trans-unit id="_msg1258"> + <trans-unit id="_msg1296" approved="yes"> <source xml:space="preserve">Verifying blocks…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">351</context></context-group> + <target xml:space="preserve">Verifying blocks…</target> + <context-group purpose="location"><context context-type="linenumber">387</context></context-group> </trans-unit> - <trans-unit id="_msg1259"> + <trans-unit id="_msg1297" approved="yes"> <source xml:space="preserve">Verifying wallet(s)…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">352</context></context-group> + <target xml:space="preserve">Verifying wallet(s)…</target> + <context-group purpose="location"><context context-type="linenumber">388</context></context-group> </trans-unit> - <trans-unit id="_msg1260" approved="yes"> + <trans-unit id="_msg1298" approved="yes"> <source xml:space="preserve">Wallet needed to be rewritten: restart %s to complete</source> <target xml:space="preserve">Wallet needed to be rewritten: restart %s to complete</target> - <context-group purpose="location"><context context-type="linenumber">355</context></context-group> + <context-group purpose="location"><context context-type="linenumber">391</context></context-group> </trans-unit> - <trans-unit id="_msg1261" approved="yes"> + <trans-unit id="_msg1299" approved="yes"> <source xml:space="preserve">Wasn't able to create wallet backup folder %s!</source> <target xml:space="preserve">Wasn't able to create wallet backup folder %s!</target> - <context-group purpose="location"><context context-type="linenumber">358</context></context-group> + <context-group purpose="location"><context context-type="linenumber">394</context></context-group> </trans-unit> - <trans-unit id="_msg1262"> + <trans-unit id="_msg1300" approved="yes"> <source xml:space="preserve">Wiping wallet transactions…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">360</context></context-group> + <target xml:space="preserve">Wiping wallet transactions…</target> + <context-group purpose="location"><context context-type="linenumber">396</context></context-group> </trans-unit> - <trans-unit id="_msg1263" approved="yes"> + <trans-unit id="_msg1301" approved="yes"> <source xml:space="preserve">You can not start a masternode with wallet enabled.</source> <target xml:space="preserve">You can not start a masternode with wallet enabled.</target> - <context-group purpose="location"><context context-type="linenumber">363</context></context-group> - </trans-unit> - <trans-unit id="_msg1264" approved="yes"> - <source xml:space="preserve">You need to rebuild the database using -reindex to change -addressindex</source> - <target xml:space="preserve">You need to rebuild the database using -reindex to change -addressindex</target> - <context-group purpose="location"><context context-type="linenumber">364</context></context-group> - </trans-unit> - <trans-unit id="_msg1265" approved="yes"> - <source xml:space="preserve">You need to rebuild the database using -reindex to change -spentindex</source> - <target xml:space="preserve">You need to rebuild the database using -reindex to change -spentindex</target> - <context-group purpose="location"><context context-type="linenumber">365</context></context-group> + <context-group purpose="location"><context context-type="linenumber">399</context></context-group> </trans-unit> - <trans-unit id="_msg1266" approved="yes"> + <trans-unit id="_msg1302" approved="yes"> <source xml:space="preserve">no mixing available.</source> <target xml:space="preserve">no mixing available.</target> - <context-group purpose="location"><context context-type="linenumber">367</context></context-group> + <context-group purpose="location"><context context-type="linenumber">403</context></context-group> </trans-unit> - <trans-unit id="_msg1267" approved="yes"> + <trans-unit id="_msg1303" approved="yes"> <source xml:space="preserve">see debug.log for details.</source> <target xml:space="preserve">see debug.log for details.</target> - <context-group purpose="location"><context context-type="linenumber">368</context></context-group> + <context-group purpose="location"><context context-type="linenumber">404</context></context-group> </trans-unit> - <trans-unit id="_msg1268" approved="yes"> + <trans-unit id="_msg1304" approved="yes"> <source xml:space="preserve">The %s developers</source> <target xml:space="preserve">The %s developers</target> <context-group purpose="location"><context context-type="linenumber">12</context></context-group> </trans-unit> - <trans-unit id="_msg1269" approved="yes"> + <trans-unit id="_msg1305" approved="yes"> <source xml:space="preserve">%s uses exact denominated amounts to send funds, you might simply need to mix some more coins.</source> <target xml:space="preserve">%s uses exact denominated amounts to send funds, you might simply need to mix some more coins.</target> <context-group purpose="location"><context context-type="linenumber">19</context></context-group> </trans-unit> - <trans-unit id="_msg1270"> - <source xml:space="preserve">Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source> + <trans-unit id="_msg1306"> + <source xml:space="preserve">-reindex-chainstate option is not compatible with -blockfilterindex. Please temporarily disable blockfilterindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> <target xml:space="preserve"></target> <context-group purpose="location"><context context-type="linenumber">25</context></context-group> </trans-unit> - <trans-unit id="_msg1271" approved="yes"> + <trans-unit id="_msg1307"> + <source xml:space="preserve">-reindex-chainstate option is not compatible with -coinstatsindex. Please temporarily disable coinstatsindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">29</context></context-group> + </trans-unit> + <trans-unit id="_msg1308"> + <source xml:space="preserve">-reindex-chainstate option is not compatible with -txindex. Please temporarily disable txindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">33</context></context-group> + </trans-unit> + <trans-unit id="_msg1309" approved="yes"> + <source xml:space="preserve">Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source> + <target xml:space="preserve">Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</target> + <context-group purpose="location"><context context-type="linenumber">37</context></context-group> + </trans-unit> + <trans-unit id="_msg1310" approved="yes"> <source xml:space="preserve">Cannot obtain a lock on data directory %s. %s is probably already running.</source> <target xml:space="preserve">Cannot obtain a lock on data directory %s. %s is probably already running.</target> - <context-group purpose="location"><context context-type="linenumber">28</context></context-group> + <context-group purpose="location"><context context-type="linenumber">40</context></context-group> </trans-unit> - <trans-unit id="_msg1272"> + <trans-unit id="_msg1311" approved="yes"> <source xml:space="preserve">Cannot upgrade a non HD wallet from version %i to version %i which is non-HD wallet. Use upgradetohd RPC</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">33</context></context-group> + <target xml:space="preserve">Cannot upgrade a non HD wallet from version %i to version %i which is non-HD wallet. Use upgradetohd RPC</target> + <context-group purpose="location"><context context-type="linenumber">45</context></context-group> </trans-unit> - <trans-unit id="_msg1273" approved="yes"> + <trans-unit id="_msg1312" approved="yes"> <source xml:space="preserve">Distributed under the MIT software license, see the accompanying file %s or %s</source> <target xml:space="preserve">Distributed under the MIT software license, see the accompanying file %s or %s</target> - <context-group purpose="location"><context context-type="linenumber">36</context></context-group> + <context-group purpose="location"><context context-type="linenumber">48</context></context-group> </trans-unit> - <trans-unit id="_msg1274" approved="yes"> + <trans-unit id="_msg1313" approved="yes"> <source xml:space="preserve">Error loading %s: You can't enable HD on an already existing non-HD wallet</source> <target xml:space="preserve">Error loading %s: You can't enable HD on an already existing non-HD wallet</target> - <context-group purpose="location"><context context-type="linenumber">39</context></context-group> + <context-group purpose="location"><context context-type="linenumber">51</context></context-group> </trans-unit> - <trans-unit id="_msg1275" approved="yes"> + <trans-unit id="_msg1314"> + <source xml:space="preserve">Error loading wallet. Wallet requires blocks to be downloaded, and software does not currently support loading wallets while blocks are being downloaded out of order when using assumeutxo snapshots. Wallet should be able to load successfully after node sync reaches height %s</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">53</context></context-group> + </trans-unit> + <trans-unit id="_msg1315" approved="yes"> <source xml:space="preserve">Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</source> <target xml:space="preserve">Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</target> - <context-group purpose="location"><context context-type="linenumber">41</context></context-group> + <context-group purpose="location"><context context-type="linenumber">58</context></context-group> </trans-unit> - <trans-unit id="_msg1276"> + <trans-unit id="_msg1316" approved="yes"> <source xml:space="preserve">Error: Dumpfile format record is incorrect. Got "%s", expected "format".</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">44</context></context-group> + <target xml:space="preserve">Error: Dumpfile format record is incorrect. Got "%s", expected "format".</target> + <context-group purpose="location"><context context-type="linenumber">61</context></context-group> </trans-unit> - <trans-unit id="_msg1277"> + <trans-unit id="_msg1317" approved="yes"> <source xml:space="preserve">Error: Dumpfile identifier record is incorrect. Got "%s", expected "%s".</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">46</context></context-group> + <target xml:space="preserve">Error: Dumpfile identifier record is incorrect. Got "%s", expected "%s".</target> + <context-group purpose="location"><context context-type="linenumber">63</context></context-group> </trans-unit> - <trans-unit id="_msg1278"> + <trans-unit id="_msg1318" approved="yes"> <source xml:space="preserve">Error: Dumpfile version is not supported. This version of bitcoin-wallet only supports version 1 dumpfiles. Got dumpfile with version %s</source> + <target xml:space="preserve">Error: Dumpfile version is not supported. This version of bitcoin-wallet only supports version 1 dumpfiles. Got dumpfile with version %s</target> + <context-group purpose="location"><context context-type="linenumber">65</context></context-group> + </trans-unit> + <trans-unit id="_msg1319"> + <source xml:space="preserve">Failed to rename invalid peers.dat file. Please move or delete it and try again.</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">48</context></context-group> + <context-group purpose="location"><context context-type="linenumber">74</context></context-group> </trans-unit> - <trans-unit id="_msg1279"> + <trans-unit id="_msg1320" approved="yes"> <source xml:space="preserve">File %s already exists. If you are sure this is what you want, move it out of the way first.</source> + <target xml:space="preserve">File %s already exists. If you are sure this is what you want, move it out of the way first.</target> + <context-group purpose="location"><context context-type="linenumber">80</context></context-group> + </trans-unit> + <trans-unit id="_msg1321"> + <source xml:space="preserve">Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet forbids connections to IPv4/IPv6</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">60</context></context-group> + <context-group purpose="location"><context context-type="linenumber">86</context></context-group> </trans-unit> - <trans-unit id="_msg1280" approved="yes"> + <trans-unit id="_msg1322" approved="yes"> <source xml:space="preserve">Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?</source> <target xml:space="preserve">Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?</target> - <context-group purpose="location"><context context-type="linenumber">66</context></context-group> + <context-group purpose="location"><context context-type="linenumber">89</context></context-group> </trans-unit> - <trans-unit id="_msg1281"> + <trans-unit id="_msg1323" approved="yes"> <source xml:space="preserve">Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">74</context></context-group> + <target xml:space="preserve">Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start.</target> + <context-group purpose="location"><context context-type="linenumber">97</context></context-group> </trans-unit> - <trans-unit id="_msg1282"> + <trans-unit id="_msg1324" approved="yes"> <source xml:space="preserve">No dump file provided. To use createfromdump, -dumpfile=<filename> must be provided.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">84</context></context-group> + <target xml:space="preserve">No dump file provided. To use createfromdump, -dumpfile=<filename> must be provided.</target> + <context-group purpose="location"><context context-type="linenumber">107</context></context-group> </trans-unit> - <trans-unit id="_msg1283"> + <trans-unit id="_msg1325" approved="yes"> <source xml:space="preserve">No dump file provided. To use dump, -dumpfile=<filename> must be provided.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">87</context></context-group> + <target xml:space="preserve">No dump file provided. To use dump, -dumpfile=<filename> must be provided.</target> + <context-group purpose="location"><context context-type="linenumber">110</context></context-group> </trans-unit> - <trans-unit id="_msg1284"> + <trans-unit id="_msg1326" approved="yes"> <source xml:space="preserve">No wallet file format provided. To use createfromdump, -format=<format> must be provided.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">89</context></context-group> + <target xml:space="preserve">No wallet file format provided. To use createfromdump, -format=<format> must be provided.</target> + <context-group purpose="location"><context context-type="linenumber">112</context></context-group> </trans-unit> - <trans-unit id="_msg1285"> + <trans-unit id="_msg1327" approved="yes"> <source xml:space="preserve">Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is explicitly forbidden: -onion=0</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">92</context></context-group> + <target xml:space="preserve">Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is explicitly forbidden: -onion=0</target> + <context-group purpose="location"><context context-type="linenumber">115</context></context-group> </trans-unit> - <trans-unit id="_msg1286"> + <trans-unit id="_msg1328" approved="yes"> <source xml:space="preserve">Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is not provided: none of -proxy, -onion or -listenonion is given</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">95</context></context-group> + <target xml:space="preserve">Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is not provided: none of -proxy, -onion or -listenonion is given</target> + <context-group purpose="location"><context context-type="linenumber">118</context></context-group> </trans-unit> - <trans-unit id="_msg1287" approved="yes"> + <trans-unit id="_msg1329" approved="yes"> <source xml:space="preserve">Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly.</source> <target xml:space="preserve">Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly.</target> - <context-group purpose="location"><context context-type="linenumber">99</context></context-group> + <context-group purpose="location"><context context-type="linenumber">122</context></context-group> </trans-unit> - <trans-unit id="_msg1288" approved="yes"> + <trans-unit id="_msg1330" approved="yes"> <source xml:space="preserve">Please contribute if you find %s useful. Visit %s for further information about the software.</source> <target xml:space="preserve">Please contribute if you find %s useful. Visit %s for further information about the software.</target> - <context-group purpose="location"><context context-type="linenumber">102</context></context-group> + <context-group purpose="location"><context context-type="linenumber">125</context></context-group> </trans-unit> - <trans-unit id="_msg1289"> - <source xml:space="preserve">This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection.</source> + <trans-unit id="_msg1331"> + <source xml:space="preserve">Prune mode is incompatible with -reindex-chainstate. Use full -reindex instead.</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">127</context></context-group> + <context-group purpose="location"><context context-type="linenumber">130</context></context-group> </trans-unit> - <trans-unit id="_msg1290" approved="yes"> + <trans-unit id="_msg1332"> + <source xml:space="preserve">The -txindex upgrade started by a previous version can not be completed. Restart with the previous version or run a full -reindex.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">139</context></context-group> + </trans-unit> + <trans-unit id="_msg1333"> + <source xml:space="preserve">The block index db contains a legacy 'txindex'. To clear the occupied disk space, run a full -reindex, otherwise ignore this error. This error message will not be displayed again.</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">147</context></context-group> + </trans-unit> + <trans-unit id="_msg1334" approved="yes"> + <source xml:space="preserve">This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection.</source> + <target xml:space="preserve">This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection.</target> + <context-group purpose="location"><context context-type="linenumber">160</context></context-group> + </trans-unit> + <trans-unit id="_msg1335" approved="yes"> <source xml:space="preserve">This is the transaction fee you may discard if change is smaller than dust at this level</source> <target xml:space="preserve">This is the transaction fee you may discard if change is smaller than dust at this level</target> - <context-group purpose="location"><context context-type="linenumber">130</context></context-group> + <context-group purpose="location"><context context-type="linenumber">163</context></context-group> </trans-unit> - <trans-unit id="_msg1291" approved="yes"> + <trans-unit id="_msg1336" approved="yes"> <source xml:space="preserve">This is the transaction fee you may pay when fee estimates are not available.</source> <target xml:space="preserve">This is the transaction fee you may pay when fee estimates are not available.</target> - <context-group purpose="location"><context context-type="linenumber">133</context></context-group> + <context-group purpose="location"><context context-type="linenumber">166</context></context-group> </trans-unit> - <trans-unit id="_msg1292" approved="yes"> + <trans-unit id="_msg1337" approved="yes"> <source xml:space="preserve">Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate.</source> <target xml:space="preserve">Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate.</target> - <context-group purpose="location"><context context-type="linenumber">145</context></context-group> + <context-group purpose="location"><context context-type="linenumber">178</context></context-group> </trans-unit> - <trans-unit id="_msg1293"> + <trans-unit id="_msg1338" approved="yes"> <source xml:space="preserve">Unknown wallet file format "%s" provided. Please provide one of "bdb" or "sqlite".</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">148</context></context-group> + <target xml:space="preserve">Unknown wallet file format "%s" provided. Please provide one of "bdb" or "sqlite".</target> + <context-group purpose="location"><context context-type="linenumber">181</context></context-group> </trans-unit> - <trans-unit id="_msg1294"> + <trans-unit id="_msg1339" approved="yes"> <source xml:space="preserve">Warning: Dumpfile wallet format "%s" does not match command line specified format "%s".</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">156</context></context-group> + <target xml:space="preserve">Warning: Dumpfile wallet format "%s" does not match command line specified format "%s".</target> + <context-group purpose="location"><context context-type="linenumber">189</context></context-group> </trans-unit> - <trans-unit id="_msg1295" approved="yes"> + <trans-unit id="_msg1340" approved="yes"> <source xml:space="preserve">Warning: Private keys detected in wallet {%s} with disabled private keys</source> <target xml:space="preserve">Warning: Private keys detected in wallet {%s} with disabled private keys</target> - <context-group purpose="location"><context context-type="linenumber">159</context></context-group> + <context-group purpose="location"><context context-type="linenumber">192</context></context-group> </trans-unit> - <trans-unit id="_msg1296"> - <source xml:space="preserve">%s -- Incorrect seed, it should be a hex string</source> + <trans-unit id="_msg1341"> + <source xml:space="preserve">You need to rebuild the database using -reindex to enable -timestampindex</source> <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">169</context></context-group> + <context-group purpose="location"><context context-type="linenumber">197</context></context-group> + </trans-unit> + <trans-unit id="_msg1342" approved="yes"> + <source xml:space="preserve">%s -- Incorrect seed, it should be a hex string</source> + <target xml:space="preserve">%s -- Incorrect seed, it should be a hex string</target> + <context-group purpose="location"><context context-type="linenumber">202</context></context-group> </trans-unit> - <trans-unit id="_msg1297" approved="yes"> + <trans-unit id="_msg1343" approved="yes"> <source xml:space="preserve">%s is not a valid backup folder!</source> <target xml:space="preserve">%s is not a valid backup folder!</target> - <context-group purpose="location"><context context-type="linenumber">173</context></context-group> + <context-group purpose="location"><context context-type="linenumber">206</context></context-group> </trans-unit> - <trans-unit id="_msg1298" approved="yes"> + <trans-unit id="_msg1344" approved="yes"> <source xml:space="preserve">%s is set very high!</source> <target xml:space="preserve">%s is set very high!</target> - <context-group purpose="location"><context context-type="linenumber">174</context></context-group> + <context-group purpose="location"><context context-type="linenumber">207</context></context-group> </trans-unit> - <trans-unit id="_msg1299" approved="yes"> + <trans-unit id="_msg1345" approved="yes"> <source xml:space="preserve">%s request incomplete:</source> <target xml:space="preserve">%s request incomplete:</target> - <context-group purpose="location"><context context-type="linenumber">175</context></context-group> + <context-group purpose="location"><context context-type="linenumber">208</context></context-group> </trans-unit> - <trans-unit id="_msg1300" approved="yes"> + <trans-unit id="_msg1346" approved="yes"> <source xml:space="preserve">-devnet can only be specified once</source> <target xml:space="preserve">-devnet can only be specified once</target> - <context-group purpose="location"><context context-type="linenumber">176</context></context-group> + <context-group purpose="location"><context context-type="linenumber">209</context></context-group> </trans-unit> - <trans-unit id="_msg1301" approved="yes"> + <trans-unit id="_msg1347" approved="yes"> <source xml:space="preserve">-port must be specified when -devnet and -listen are specified</source> <target xml:space="preserve">-port must be specified when -devnet and -listen are specified</target> - <context-group purpose="location"><context context-type="linenumber">178</context></context-group> + <context-group purpose="location"><context context-type="linenumber">211</context></context-group> </trans-unit> - <trans-unit id="_msg1302" approved="yes"> + <trans-unit id="_msg1348" approved="yes"> <source xml:space="preserve">-rpcport must be specified when -devnet and -server are specified</source> <target xml:space="preserve">-rpcport must be specified when -devnet and -server are specified</target> - <context-group purpose="location"><context context-type="linenumber">179</context></context-group> + <context-group purpose="location"><context context-type="linenumber">212</context></context-group> </trans-unit> - <trans-unit id="_msg1303" approved="yes"> + <trans-unit id="_msg1349" approved="yes"> <source xml:space="preserve">A fatal internal error occurred, see debug.log for details</source> <target xml:space="preserve">A fatal internal error occurred, see debug.log for details</target> - <context-group purpose="location"><context context-type="linenumber">180</context></context-group> + <context-group purpose="location"><context context-type="linenumber">213</context></context-group> </trans-unit> - <trans-unit id="_msg1304" approved="yes"> + <trans-unit id="_msg1350" approved="yes"> <source xml:space="preserve">Cannot resolve -%s address: '%s'</source> <target xml:space="preserve">Cannot resolve -%s address: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">186</context></context-group> + <context-group purpose="location"><context context-type="linenumber">219</context></context-group> </trans-unit> - <trans-unit id="_msg1305" approved="yes"> + <trans-unit id="_msg1351" approved="yes"> <source xml:space="preserve">Cannot write to data directory '%s'; check permissions.</source> <target xml:space="preserve">Cannot write to data directory '%s'; check permissions.</target> - <context-group purpose="location"><context context-type="linenumber">188</context></context-group> + <context-group purpose="location"><context context-type="linenumber">221</context></context-group> </trans-unit> - <trans-unit id="_msg1306" approved="yes"> + <trans-unit id="_msg1352" approved="yes"> <source xml:space="preserve">Change index out of range</source> <target xml:space="preserve">Change index out of range</target> - <context-group purpose="location"><context context-type="linenumber">189</context></context-group> + <context-group purpose="location"><context context-type="linenumber">222</context></context-group> </trans-unit> - <trans-unit id="_msg1307" approved="yes"> + <trans-unit id="_msg1353" approved="yes"> <source xml:space="preserve">Copyright (C)</source> <target xml:space="preserve">Copyright (C)</target> - <context-group purpose="location"><context context-type="linenumber">192</context></context-group> + <context-group purpose="location"><context context-type="linenumber">225</context></context-group> </trans-unit> - <trans-unit id="_msg1308" approved="yes"> + <trans-unit id="_msg1354" approved="yes"> <source xml:space="preserve">Disk space is too low!</source> <target xml:space="preserve">Disk space is too low!</target> - <context-group purpose="location"><context context-type="linenumber">196</context></context-group> + <context-group purpose="location"><context context-type="linenumber">229</context></context-group> </trans-unit> - <trans-unit id="_msg1309"> + <trans-unit id="_msg1355" approved="yes"> <source xml:space="preserve">Dump file %s does not exist.</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">199</context></context-group> + <target xml:space="preserve">Dump file %s does not exist.</target> + <context-group purpose="location"><context context-type="linenumber">232</context></context-group> </trans-unit> - <trans-unit id="_msg1310"> + <trans-unit id="_msg1356" approved="yes"> <source xml:space="preserve">Error creating %s</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">203</context></context-group> + <target xml:space="preserve">Error creating %s</target> + <context-group purpose="location"><context context-type="linenumber">236</context></context-group> </trans-unit> - <trans-unit id="_msg1311" approved="yes"> + <trans-unit id="_msg1357" approved="yes"> <source xml:space="preserve">Error loading %s</source> <target xml:space="preserve">Error loading %s</target> - <context-group purpose="location"><context context-type="linenumber">206</context></context-group> + <context-group purpose="location"><context context-type="linenumber">239</context></context-group> </trans-unit> - <trans-unit id="_msg1312" approved="yes"> + <trans-unit id="_msg1358" approved="yes"> <source xml:space="preserve">Error loading %s: Wallet corrupted</source> <target xml:space="preserve">Error loading %s: Wallet corrupted</target> - <context-group purpose="location"><context context-type="linenumber">208</context></context-group> + <context-group purpose="location"><context context-type="linenumber">241</context></context-group> </trans-unit> - <trans-unit id="_msg1313" approved="yes"> + <trans-unit id="_msg1359" approved="yes"> <source xml:space="preserve">Error loading %s: Wallet requires newer version of %s</source> <target xml:space="preserve">Error loading %s: Wallet requires newer version of %s</target> - <context-group purpose="location"><context context-type="linenumber">209</context></context-group> + <context-group purpose="location"><context context-type="linenumber">242</context></context-group> </trans-unit> - <trans-unit id="_msg1314" approved="yes"> + <trans-unit id="_msg1360" approved="yes"> <source xml:space="preserve">Error loading %s: You can't disable HD on an already existing HD wallet</source> <target xml:space="preserve">Error loading %s: You can't disable HD on an already existing HD wallet</target> - <context-group purpose="location"><context context-type="linenumber">210</context></context-group> + <context-group purpose="location"><context context-type="linenumber">243</context></context-group> </trans-unit> - <trans-unit id="_msg1315"> + <trans-unit id="_msg1361" approved="yes"> <source xml:space="preserve">Error reading next record from wallet database</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">214</context></context-group> + <target xml:space="preserve">Error reading next record from wallet database</target> + <context-group purpose="location"><context context-type="linenumber">247</context></context-group> </trans-unit> - <trans-unit id="_msg1316" approved="yes"> + <trans-unit id="_msg1362" approved="yes"> <source xml:space="preserve">Error upgrading chainstate database</source> <target xml:space="preserve">Error upgrading chainstate database</target> - <context-group purpose="location"><context context-type="linenumber">215</context></context-group> + <context-group purpose="location"><context context-type="linenumber">248</context></context-group> </trans-unit> - <trans-unit id="_msg1317"> + <trans-unit id="_msg1363" approved="yes"> <source xml:space="preserve">Loading P2P addresses…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">271</context></context-group> + <target xml:space="preserve">Loading P2P addresses…</target> + <context-group purpose="location"><context context-type="linenumber">307</context></context-group> </trans-unit> - <trans-unit id="_msg1318"> + <trans-unit id="_msg1364" approved="yes"> <source xml:space="preserve">Loading banlist…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">272</context></context-group> + <target xml:space="preserve">Loading banlist…</target> + <context-group purpose="location"><context context-type="linenumber">308</context></context-group> </trans-unit> - <trans-unit id="_msg1319"> + <trans-unit id="_msg1365" approved="yes"> <source xml:space="preserve">Loading block index…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">273</context></context-group> + <target xml:space="preserve">Loading block index…</target> + <context-group purpose="location"><context context-type="linenumber">309</context></context-group> </trans-unit> - <trans-unit id="_msg1320"> + <trans-unit id="_msg1366" approved="yes"> <source xml:space="preserve">Loading wallet…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">274</context></context-group> + <target xml:space="preserve">Loading wallet…</target> + <context-group purpose="location"><context context-type="linenumber">310</context></context-group> </trans-unit> - <trans-unit id="_msg1321" approved="yes"> + <trans-unit id="_msg1367" approved="yes"> <source xml:space="preserve">Failed to clear fulfilled requests cache at %s</source> <target xml:space="preserve">Failed to clear fulfilled requests cache at %s</target> - <context-group purpose="location"><context context-type="linenumber">227</context></context-group> + <context-group purpose="location"><context context-type="linenumber">261</context></context-group> </trans-unit> - <trans-unit id="_msg1322" approved="yes"> + <trans-unit id="_msg1368" approved="yes"> <source xml:space="preserve">Failed to clear governance cache at %s</source> <target xml:space="preserve">Failed to clear governance cache at %s</target> - <context-group purpose="location"><context context-type="linenumber">228</context></context-group> + <context-group purpose="location"><context context-type="linenumber">262</context></context-group> </trans-unit> - <trans-unit id="_msg1323" approved="yes"> + <trans-unit id="_msg1369" approved="yes"> <source xml:space="preserve">Failed to clear masternode cache at %s</source> <target xml:space="preserve">Failed to clear masternode cache at %s</target> - <context-group purpose="location"><context context-type="linenumber">229</context></context-group> + <context-group purpose="location"><context context-type="linenumber">263</context></context-group> </trans-unit> - <trans-unit id="_msg1324" approved="yes"> + <trans-unit id="_msg1370" approved="yes"> <source xml:space="preserve">Failed to find mixing queue to join</source> <target xml:space="preserve">Failed to find mixing queue to join</target> - <context-group purpose="location"><context context-type="linenumber">234</context></context-group> + <context-group purpose="location"><context context-type="linenumber">268</context></context-group> </trans-unit> - <trans-unit id="_msg1325" approved="yes"> + <trans-unit id="_msg1371" approved="yes"> <source xml:space="preserve">Failed to load fulfilled requests cache from %s</source> <target xml:space="preserve">Failed to load fulfilled requests cache from %s</target> - <context-group purpose="location"><context context-type="linenumber">236</context></context-group> + <context-group purpose="location"><context context-type="linenumber">270</context></context-group> </trans-unit> - <trans-unit id="_msg1326" approved="yes"> + <trans-unit id="_msg1372" approved="yes"> <source xml:space="preserve">Failed to load governance cache from %s</source> <target xml:space="preserve">Failed to load governance cache from %s</target> - <context-group purpose="location"><context context-type="linenumber">237</context></context-group> + <context-group purpose="location"><context context-type="linenumber">271</context></context-group> </trans-unit> - <trans-unit id="_msg1327" approved="yes"> + <trans-unit id="_msg1373" approved="yes"> <source xml:space="preserve">Failed to load masternode cache from %s</source> <target xml:space="preserve">Failed to load masternode cache from %s</target> - <context-group purpose="location"><context context-type="linenumber">238</context></context-group> + <context-group purpose="location"><context context-type="linenumber">272</context></context-group> </trans-unit> - <trans-unit id="_msg1328" approved="yes"> + <trans-unit id="_msg1374" approved="yes"> <source xml:space="preserve">Failed to load sporks cache from %s</source> <target xml:space="preserve">Failed to load sporks cache from %s</target> - <context-group purpose="location"><context context-type="linenumber">239</context></context-group> + <context-group purpose="location"><context context-type="linenumber">273</context></context-group> </trans-unit> - <trans-unit id="_msg1329" approved="yes"> + <trans-unit id="_msg1375" approved="yes"> <source xml:space="preserve">Failed to start a new mixing queue</source> <target xml:space="preserve">Failed to start a new mixing queue</target> - <context-group purpose="location"><context context-type="linenumber">241</context></context-group> + <context-group purpose="location"><context context-type="linenumber">275</context></context-group> </trans-unit> - <trans-unit id="_msg1330"> + <trans-unit id="_msg1376" approved="yes"> <source xml:space="preserve">Importing…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">246</context></context-group> + <target xml:space="preserve">Importing…</target> + <context-group purpose="location"><context context-type="linenumber">281</context></context-group> </trans-unit> - <trans-unit id="_msg1331" approved="yes"> + <trans-unit id="_msg1377" approved="yes"> <source xml:space="preserve">Incorrect -rescan mode, falling back to default value</source> <target xml:space="preserve">Incorrect -rescan mode, falling back to default value</target> - <context-group purpose="location"><context context-type="linenumber">249</context></context-group> + <context-group purpose="location"><context context-type="linenumber">284</context></context-group> </trans-unit> - <trans-unit id="_msg1332" approved="yes"> + <trans-unit id="_msg1378" approved="yes"> <source xml:space="preserve">Initialization sanity check failed. %s is shutting down.</source> <target xml:space="preserve">Initialization sanity check failed. %s is shutting down.</target> - <context-group purpose="location"><context context-type="linenumber">251</context></context-group> + <context-group purpose="location"><context context-type="linenumber">286</context></context-group> </trans-unit> - <trans-unit id="_msg1333" approved="yes"> + <trans-unit id="_msg1379" approved="yes"> <source xml:space="preserve">Inputs vs outputs size mismatch.</source> <target xml:space="preserve">Inputs vs outputs size mismatch.</target> - <context-group purpose="location"><context context-type="linenumber">253</context></context-group> + <context-group purpose="location"><context context-type="linenumber">289</context></context-group> </trans-unit> - <trans-unit id="_msg1334" approved="yes"> + <trans-unit id="_msg1380" approved="yes"> <source xml:space="preserve">Invalid '%s'. Allowed values: 128, 160, 192, 224, 256.</source> <target xml:space="preserve">Invalid '%s'. Allowed values: 128, 160, 192, 224, 256.</target> - <context-group purpose="location"><context context-type="linenumber">255</context></context-group> + <context-group purpose="location"><context context-type="linenumber">291</context></context-group> </trans-unit> - <trans-unit id="_msg1335" approved="yes"> + <trans-unit id="_msg1381" approved="yes"> <source xml:space="preserve">Invalid -i2psam address or hostname: '%s'</source> <target xml:space="preserve">Invalid -i2psam address or hostname: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">256</context></context-group> + <context-group purpose="location"><context context-type="linenumber">292</context></context-group> </trans-unit> - <trans-unit id="_msg1336" approved="yes"> + <trans-unit id="_msg1382" approved="yes"> <source xml:space="preserve">Invalid -onion address or hostname: '%s'</source> <target xml:space="preserve">Invalid -onion address or hostname: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">257</context></context-group> + <context-group purpose="location"><context context-type="linenumber">293</context></context-group> </trans-unit> - <trans-unit id="_msg1337" approved="yes"> + <trans-unit id="_msg1383" approved="yes"> <source xml:space="preserve">Invalid -proxy address or hostname: '%s'</source> <target xml:space="preserve">Invalid -proxy address or hostname: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">258</context></context-group> + <context-group purpose="location"><context context-type="linenumber">294</context></context-group> </trans-unit> - <trans-unit id="_msg1338" approved="yes"> + <trans-unit id="_msg1384" approved="yes"> <source xml:space="preserve">Invalid amount for -%s=<amount>: '%s'</source> <target xml:space="preserve">Invalid amount for -%s=<amount>: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">260</context></context-group> + <context-group purpose="location"><context context-type="linenumber">296</context></context-group> </trans-unit> - <trans-unit id="_msg1339" approved="yes"> + <trans-unit id="_msg1385" approved="yes"> <source xml:space="preserve">Invalid spork address specified with -sporkaddr</source> <target xml:space="preserve">Invalid spork address specified with -sporkaddr</target> - <context-group purpose="location"><context context-type="linenumber">268</context></context-group> - </trans-unit> - <trans-unit id="_msg1340" approved="yes"> - <source xml:space="preserve">Prune mode is incompatible with -coinstatsindex.</source> - <target xml:space="preserve">Prune mode is incompatible with -coinstatsindex.</target> - <context-group purpose="location"><context context-type="linenumber">291</context></context-group> + <context-group purpose="location"><context context-type="linenumber">304</context></context-group> </trans-unit> - <trans-unit id="_msg1341" approved="yes"> + <trans-unit id="_msg1386" approved="yes"> <source xml:space="preserve">Reducing -maxconnections from %d to %d, because of system limitations.</source> <target xml:space="preserve">Reducing -maxconnections from %d to %d, because of system limitations.</target> - <context-group purpose="location"><context context-type="linenumber">295</context></context-group> + <context-group purpose="location"><context context-type="linenumber">331</context></context-group> </trans-unit> - <trans-unit id="_msg1342" approved="yes"> + <trans-unit id="_msg1387" approved="yes"> <source xml:space="preserve">Session not complete!</source> <target xml:space="preserve">Session not complete!</target> - <context-group purpose="location"><context context-type="linenumber">303</context></context-group> + <context-group purpose="location"><context context-type="linenumber">339</context></context-group> </trans-unit> - <trans-unit id="_msg1343" approved="yes"> + <trans-unit id="_msg1388" approved="yes"> <source xml:space="preserve">Session timed out.</source> <target xml:space="preserve">Session timed out.</target> - <context-group purpose="location"><context context-type="linenumber">304</context></context-group> + <context-group purpose="location"><context context-type="linenumber">340</context></context-group> </trans-unit> - <trans-unit id="_msg1344" approved="yes"> + <trans-unit id="_msg1389" approved="yes"> <source xml:space="preserve">Signing transaction failed</source> <target xml:space="preserve">Signing transaction failed</target> - <context-group purpose="location"><context context-type="linenumber">305</context></context-group> + <context-group purpose="location"><context context-type="linenumber">341</context></context-group> </trans-unit> - <trans-unit id="_msg1345" approved="yes"> + <trans-unit id="_msg1390" approved="yes"> <source xml:space="preserve">Specified blocks directory "%s" does not exist.</source> <target xml:space="preserve">Specified blocks directory "%s" does not exist.</target> - <context-group purpose="location"><context context-type="linenumber">309</context></context-group> + <context-group purpose="location"><context context-type="linenumber">345</context></context-group> </trans-unit> - <trans-unit id="_msg1346" approved="yes"> + <trans-unit id="_msg1391" approved="yes"> <source xml:space="preserve">Last queue was created too recently.</source> <target xml:space="preserve">Last queue was created too recently.</target> - <context-group purpose="location"><context context-type="linenumber">269</context></context-group> + <context-group purpose="location"><context context-type="linenumber">305</context></context-group> </trans-unit> - <trans-unit id="_msg1347" approved="yes"> + <trans-unit id="_msg1392" approved="yes"> <source xml:space="preserve">%s corrupt. Try using the wallet tool dash-wallet to salvage or restoring a backup.</source> <target xml:space="preserve">%s corrupt. Try using the wallet tool dash-wallet to salvage or restoring a backup.</target> <context-group purpose="location"><context context-type="linenumber">13</context></context-group> </trans-unit> - <trans-unit id="_msg1348" approved="yes"> + <trans-unit id="_msg1393" approved="yes"> <source xml:space="preserve">Last successful action was too recent.</source> <target xml:space="preserve">Last successful action was too recent.</target> - <context-group purpose="location"><context context-type="linenumber">270</context></context-group> + <context-group purpose="location"><context context-type="linenumber">306</context></context-group> </trans-unit> - <trans-unit id="_msg1349" approved="yes"> + <trans-unit id="_msg1394" approved="yes"> <source xml:space="preserve">The source code is available from %s.</source> <target xml:space="preserve">The source code is available from %s.</target> - <context-group purpose="location"><context context-type="linenumber">315</context></context-group> + <context-group purpose="location"><context context-type="linenumber">351</context></context-group> </trans-unit> - <trans-unit id="_msg1350" approved="yes"> + <trans-unit id="_msg1395" approved="yes"> <source xml:space="preserve">The specified config file %s does not exist</source> <target xml:space="preserve">The specified config file %s does not exist</target> - <context-group purpose="location"><context context-type="linenumber">316</context></context-group> + <context-group purpose="location"><context context-type="linenumber">352</context></context-group> </trans-unit> - <trans-unit id="_msg1351" approved="yes"> + <trans-unit id="_msg1396" approved="yes"> <source xml:space="preserve">The transaction amount is too small to pay the fee</source> <target xml:space="preserve">The transaction amount is too small to pay the fee</target> - <context-group purpose="location"><context context-type="linenumber">317</context></context-group> + <context-group purpose="location"><context context-type="linenumber">353</context></context-group> </trans-unit> - <trans-unit id="_msg1352" approved="yes"> + <trans-unit id="_msg1397" approved="yes"> <source xml:space="preserve">This is experimental software.</source> <target xml:space="preserve">This is experimental software.</target> - <context-group purpose="location"><context context-type="linenumber">320</context></context-group> + <context-group purpose="location"><context context-type="linenumber">356</context></context-group> </trans-unit> - <trans-unit id="_msg1353" approved="yes"> + <trans-unit id="_msg1398" approved="yes"> <source xml:space="preserve">Transaction amount too small</source> <target xml:space="preserve">Transaction amount too small</target> - <context-group purpose="location"><context context-type="linenumber">324</context></context-group> + <context-group purpose="location"><context context-type="linenumber">360</context></context-group> </trans-unit> - <trans-unit id="_msg1354" approved="yes"> + <trans-unit id="_msg1399" approved="yes"> <source xml:space="preserve">Transaction created successfully.</source> <target xml:space="preserve">Transaction created successfully.</target> - <context-group purpose="location"><context context-type="linenumber">326</context></context-group> + <context-group purpose="location"><context context-type="linenumber">362</context></context-group> </trans-unit> - <trans-unit id="_msg1355" approved="yes"> + <trans-unit id="_msg1400" approved="yes"> <source xml:space="preserve">Transaction fees are too high.</source> <target xml:space="preserve">Transaction fees are too high.</target> - <context-group purpose="location"><context context-type="linenumber">327</context></context-group> + <context-group purpose="location"><context context-type="linenumber">363</context></context-group> </trans-unit> - <trans-unit id="_msg1356" approved="yes"> + <trans-unit id="_msg1401" approved="yes"> <source xml:space="preserve">Transaction not valid.</source> <target xml:space="preserve">Transaction not valid.</target> - <context-group purpose="location"><context context-type="linenumber">330</context></context-group> + <context-group purpose="location"><context context-type="linenumber">366</context></context-group> </trans-unit> - <trans-unit id="_msg1357"> + <trans-unit id="_msg1402" approved="yes"> <source xml:space="preserve">Trying to connect…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">332</context></context-group> + <target xml:space="preserve">Trying to connect…</target> + <context-group purpose="location"><context context-type="linenumber">368</context></context-group> </trans-unit> - <trans-unit id="_msg1358" approved="yes"> + <trans-unit id="_msg1403" approved="yes"> <source xml:space="preserve">Unable to bind to %s on this computer (bind returned error %s)</source> <target xml:space="preserve">Unable to bind to %s on this computer (bind returned error %s)</target> - <context-group purpose="location"><context context-type="linenumber">333</context></context-group> + <context-group purpose="location"><context context-type="linenumber">369</context></context-group> </trans-unit> - <trans-unit id="_msg1359" approved="yes"> + <trans-unit id="_msg1404" approved="yes"> <source xml:space="preserve">Unable to locate enough mixed funds for this transaction.</source> <target xml:space="preserve">Unable to locate enough mixed funds for this transaction.</target> - <context-group purpose="location"><context context-type="linenumber">337</context></context-group> + <context-group purpose="location"><context context-type="linenumber">373</context></context-group> </trans-unit> - <trans-unit id="_msg1360" approved="yes"> + <trans-unit id="_msg1405" approved="yes"> <source xml:space="preserve">Unable to locate enough non-denominated funds for this transaction.</source> <target xml:space="preserve">Unable to locate enough non-denominated funds for this transaction.</target> - <context-group purpose="location"><context context-type="linenumber">338</context></context-group> + <context-group purpose="location"><context context-type="linenumber">374</context></context-group> </trans-unit> - <trans-unit id="_msg1361" approved="yes"> + <trans-unit id="_msg1406" approved="yes"> <source xml:space="preserve">Unable to sign spork message, wrong key?</source> <target xml:space="preserve">Unable to sign spork message, wrong key?</target> - <context-group purpose="location"><context context-type="linenumber">340</context></context-group> + <context-group purpose="location"><context context-type="linenumber">377</context></context-group> </trans-unit> - <trans-unit id="_msg1362" approved="yes"> + <trans-unit id="_msg1407" approved="yes"> <source xml:space="preserve">Unknown network specified in -onlynet: '%s'</source> <target xml:space="preserve">Unknown network specified in -onlynet: '%s'</target> - <context-group purpose="location"><context context-type="linenumber">343</context></context-group> + <context-group purpose="location"><context context-type="linenumber">380</context></context-group> </trans-unit> - <trans-unit id="_msg1363" approved="yes"> + <trans-unit id="_msg1408" approved="yes"> <source xml:space="preserve">Unknown state: id = %u</source> <target xml:space="preserve">Unknown state: id = %u</target> - <context-group purpose="location"><context context-type="linenumber">346</context></context-group> + <context-group purpose="location"><context context-type="linenumber">383</context></context-group> </trans-unit> - <trans-unit id="_msg1364" approved="yes"> + <trans-unit id="_msg1409" approved="yes"> <source xml:space="preserve">Unsupported logging category %s=%s.</source> <target xml:space="preserve">Unsupported logging category %s=%s.</target> - <context-group purpose="location"><context context-type="linenumber">347</context></context-group> - </trans-unit> - <trans-unit id="_msg1365" approved="yes"> - <source xml:space="preserve">Upgrading txindex database</source> - <target xml:space="preserve">Upgrading txindex database</target> - <context-group purpose="location"><context context-type="linenumber">349</context></context-group> + <context-group purpose="location"><context context-type="linenumber">384</context></context-group> </trans-unit> - <trans-unit id="_msg1366" approved="yes"> + <trans-unit id="_msg1410" approved="yes"> <source xml:space="preserve">Very low number of keys left: %d</source> <target xml:space="preserve">Very low number of keys left: %d</target> - <context-group purpose="location"><context context-type="linenumber">353</context></context-group> + <context-group purpose="location"><context context-type="linenumber">389</context></context-group> </trans-unit> - <trans-unit id="_msg1367" approved="yes"> + <trans-unit id="_msg1411" approved="yes"> <source xml:space="preserve">Wallet is locked.</source> <target xml:space="preserve">Wallet is locked.</target> - <context-group purpose="location"><context context-type="linenumber">354</context></context-group> + <context-group purpose="location"><context context-type="linenumber">390</context></context-group> </trans-unit> - <trans-unit id="_msg1368" approved="yes"> + <trans-unit id="_msg1412" approved="yes"> <source xml:space="preserve">Warning: can't use %s and %s together, will prefer %s</source> <target xml:space="preserve">Warning: can't use %s and %s together, will prefer %s</target> - <context-group purpose="location"><context context-type="linenumber">356</context></context-group> + <context-group purpose="location"><context context-type="linenumber">392</context></context-group> </trans-unit> - <trans-unit id="_msg1369" approved="yes"> + <trans-unit id="_msg1413" approved="yes"> <source xml:space="preserve">Warning: incorrect parameter %s, path must exist! Using default path.</source> <target xml:space="preserve">Warning: incorrect parameter %s, path must exist! Using default path.</target> - <context-group purpose="location"><context context-type="linenumber">357</context></context-group> + <context-group purpose="location"><context context-type="linenumber">393</context></context-group> </trans-unit> - <trans-unit id="_msg1370"> + <trans-unit id="_msg1414" approved="yes"> <source xml:space="preserve">Will retry…</source> - <target xml:space="preserve"></target> - <context-group purpose="location"><context context-type="linenumber">359</context></context-group> + <target xml:space="preserve">Will retry…</target> + <context-group purpose="location"><context context-type="linenumber">395</context></context-group> </trans-unit> - <trans-unit id="_msg1371" approved="yes"> + <trans-unit id="_msg1415" approved="yes"> <source xml:space="preserve">You are starting with governance validation disabled.</source> <target xml:space="preserve">You are starting with governance validation disabled.</target> - <context-group purpose="location"><context context-type="linenumber">361</context></context-group> + <context-group purpose="location"><context context-type="linenumber">397</context></context-group> </trans-unit> - <trans-unit id="_msg1372" approved="yes"> + <trans-unit id="_msg1416" approved="yes"> <source xml:space="preserve">You can not disable governance validation on a masternode.</source> <target xml:space="preserve">You can not disable governance validation on a masternode.</target> - <context-group purpose="location"><context context-type="linenumber">362</context></context-group> + <context-group purpose="location"><context context-type="linenumber">398</context></context-group> </trans-unit> - <trans-unit id="_msg1373" approved="yes"> + <trans-unit id="_msg1417"> + <source xml:space="preserve">You need to rebuild the database using -reindex to enable -addressindex</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">400</context></context-group> + </trans-unit> + <trans-unit id="_msg1418"> + <source xml:space="preserve">You need to rebuild the database using -reindex to enable -spentindex</source> + <target xml:space="preserve"></target> + <context-group purpose="location"><context context-type="linenumber">401</context></context-group> + </trans-unit> + <trans-unit id="_msg1419" approved="yes"> <source xml:space="preserve">Your entries added successfully.</source> <target xml:space="preserve">Your entries added successfully.</target> - <context-group purpose="location"><context context-type="linenumber">366</context></context-group> + <context-group purpose="location"><context context-type="linenumber">402</context></context-group> </trans-unit> </group> </body></file> diff --git a/src/qt/locale/dash_fr.ts b/src/qt/locale/dash_fr.ts index 336dab7beb9bb..c9bffe9ce916c 100644 --- a/src/qt/locale/dash_fr.ts +++ b/src/qt/locale/dash_fr.ts @@ -93,10 +93,6 @@ <source>&Edit</source> <translation>&Modifier</translation> </message> - <message> - <source>&Show address QR code</source> - <translation>Voir le QR-code de l'adresse</translation> - </message> <message> <source>QR code</source> <translation>QR-code</translation> @@ -105,6 +101,16 @@ <source>Export Address List</source> <translation>Exporter la liste d'adresses</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>Fichier avec virgules comme séparations</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> + <translation>Une erreur s'est produite en essayant de sauvegarder la liste d'adresses sur %1. Veuillez réessayer.</translation> + </message> <message> <source>Exporting Failed</source> <translation>L'exportation a échoué</translation> @@ -303,7 +309,23 @@ </context> <context> <name>BitcoinApplication</name> - </context> + <message> + <source>Runaway exception</source> + <translation>Exception lors de l'exécution</translation> + </message> + <message> + <source>A fatal error occurred. %1 can no longer continue safely and will quit.</source> + <translation>Une erreur fatale s'est produite. %1 ne peut plus continuer de manière sûre, il va se fermer.</translation> + </message> + <message> + <source>Internal error</source> + <translation>Erreur interne</translation> + </message> + <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>Une erreur interne s'est produite. %1 va essayer de continuer de manière sûre. C'est un bug inattendu qui peut être signalé avec la description ci-dessous.</translation> + </message> +</context> <context> <name>BitcoinGUI</name> <message> @@ -330,6 +352,10 @@ <source>Request payments (generates QR codes and dash: URIs)</source> <translation>Demande de paiements (génère des QR-codes et des URIs Dash)</translation> </message> + <message> + <source>Ctrl+Q</source> + <translation>Ctrl+Q</translation> + </message> <message> <source>&Options…</source> <translation>&Options…</translation> @@ -358,6 +384,14 @@ <source>&Verify message…</source> <translation>&Vérifier un message…</translation> </message> + <message> + <source>&Load PSBT from file…</source> + <translation>Charger PSBT depuis fichier…</translation> + </message> + <message> + <source>Load PSBT from clipboard…</source> + <translation>Charger PSBT depuis le presse-papiers…</translation> + </message> <message> <source>&Sending addresses</source> <translation>Envoyer des adresses</translation> @@ -576,10 +610,30 @@ <source>Show information about %1</source> <translation>Afficher les informations sur %1</translation> </message> + <message> + <source>Load Partially Signed Dash Transaction</source> + <translation>Charger transaction Dash partiellement signée</translation> + </message> + <message> + <source>Load Partially Signed Bitcoin Transaction from clipboard</source> + <translation>Charger transaction Bitcoin partiellement signée depuis le presse-papiers</translation> + </message> + <message> + <source>Open debugging and diagnostic console</source> + <translation>Ouvrir la console de débogage et de diagnostic</translation> + </message> + <message> + <source>Open a dash: URI</source> + <translation>Ouvrir une URI dash:</translation> + </message> <message> <source>Create a new wallet</source> <translation>Créer un nouveau portefeuille</translation> </message> + <message> + <source>Close all wallets</source> + <translation>Fermer tous les portefeuilles</translation> + </message> <message> <source>%1 &information</source> <translation>%1 &Informations</translation> @@ -588,6 +642,14 @@ <source>Show the %1 basic information</source> <translation>Afficher les informations de base %1</translation> </message> + <message> + <source>&Discreet mode</source> + <translation>Mode &Discret</translation> + </message> + <message> + <source>Mask the values in the Overview tab</source> + <translation>Masquer les valeurs dans l'onglet Vue d'ensemble</translation> + </message> <message> <source>&Settings</source> <translation>&Réglages</translation> @@ -610,6 +672,7 @@ </message> <message numerus="yes"> <source>%n active connection(s) to Dash network</source> + <extracomment>A substring of the tooltip.</extracomment> <translation><numerusform>%n connexion active au réseau Dash </numerusform><numerusform>%n connexions actives au réseau Dash </numerusform><numerusform>%n connexions actives au réseau Dash </numerusform></translation> </message> <message> @@ -632,6 +695,18 @@ <source>Create Wallet…</source> <translation>Créer un portefeuille…</translation> </message> + <message> + <source>Close All Wallets…</source> + <translation>Fermer tous les portefeuilles…</translation> + </message> + <message> + <source>Ctrl+Shift+D</source> + <translation>Ctrl+Maj+D</translation> + </message> + <message> + <source>Ctrl+M</source> + <translation>Ctrl+M</translation> + </message> <message> <source>Syncing Headers (%1%)…</source> <translation>Synchronisation des en-têtes (%1%)…</translation> @@ -865,30 +940,10 @@ <source>Confirmed</source> <translation>Confirmée</translation> </message> - <message> - <source>Copy address</source> - <translation>Copier l’adresse</translation> - </message> - <message> - <source>Copy label</source> - <translation>Copier l’étiquette</translation> - </message> <message> <source>Copy amount</source> <translation>Copier le montant</translation> </message> - <message> - <source>Copy transaction ID</source> - <translation>Copier l'ID de la transaction</translation> - </message> - <message> - <source>Lock unspent</source> - <translation>Verrouiller ce qui n'est pas dépensé</translation> - </message> - <message> - <source>Unlock unspent</source> - <translation>Déverrouiller ce qui n'est pas dépensé</translation> - </message> <message> <source>Copy quantity</source> <translation>Copier la quantité</translation> @@ -978,6 +1033,7 @@ <name>CreateWalletActivity</name> <message> <source>Creating Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</extracomment> <translation>Création du portefeuille <b>%1</b>…</translation> </message> <message> @@ -999,6 +1055,10 @@ <source>Wallet Name</source> <translation>Nom du portefeuille</translation> </message> + <message> + <source>Wallet</source> + <translation>Portefeuille</translation> + </message> <message> <source>Encrypt the wallet. The wallet will be encrypted with a passphrase of your choice.</source> <translation>Chiffrer le portefeuille. Le portefeuille sera chiffré avec une phrase de passe de votre choix.</translation> @@ -1007,6 +1067,10 @@ <source>Encrypt Wallet</source> <translation>Chiffrer le portefeuille</translation> </message> + <message> + <source>Advanced Options</source> + <translation>Options avancées</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>Désactiver les clés privées pour ce portefeuille. Les portefeuilles avec des clés privées désactivées n'auront pas de clés privées et ne peuvent avoir une graine HD ou des clés privées importées. C'est idéal pour les portefeuilles en consultation seule.</translation> @@ -1023,11 +1087,23 @@ <source>Make Blank Wallet</source> <translation>Créer un portefeuille vierge</translation> </message> + <message> + <source>Use descriptors for scriptPubKey management. This feature is well-tested but still considered experimental and not recommended for use yet.</source> + <translation>Utiliser des descripteurs pour la gestion scriptPubKey. Cette fonction a été bien testée mais reste considérée comme expérimentale, son utilisation n'est pas encore recommandée.</translation> + </message> + <message> + <source>Descriptor Wallet (EXPERIMENTAL)</source> + <translation>Portefeuille à descripteur (EXPÉRIMENTAL)</translation> + </message> <message> <source>Create</source> <translation>Créer</translation> </message> - </context> + <message> + <source>Compiled without sqlite support (required for descriptor wallets)</source> + <translation>Compilé sans support sqlite (indispensable pour les portefeuilles à descripteurs)</translation> + </message> +</context> <context> <name>EditAddressDialog</name> <message> @@ -1116,6 +1192,10 @@ <source>Filter List:</source> <translation>Liste de filtres :</translation> </message> + <message> + <source>Filter proposal list</source> + <translation>Filtrer la liste des propositions</translation> + </message> <message> <source>Proposal Count:</source> <translation>Nombre de propositions :</translation> @@ -1166,10 +1246,26 @@ <source>As this is the first time the program is launched, you can choose where %1 will store its data.</source> <translation>Puisque c’est la première fois que le logiciel est lancé, vous pouvez choisir où %1 stockera ses données.</translation> </message> + <message> + <source>Limit block chain storage to</source> + <translation>Limiter le stockage de blockchain à</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>Inverser ce réglage entraîne un nouveau téléchargement de la blockchain entière. Il est plus rapide de télécharger la chaîne entière d'abord, puis de la tailler ensuite. Désactive certaines fonctions avancées.</translation> + </message> + <message> + <source> GB</source> + <translation>Go</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>La synchronisation initiale est très exigeante et pourrait exposer des problèmes matériels dans votre ordinateur passés inaperçus auparavant. Chaque fois que vous exécuterez %1, le téléchargement reprendra où il s’était arrêté.</translation> </message> + <message> + <source>When you click OK, %1 will begin to download and process the full %4 block chain (%2 GB) starting with the earliest transactions in %3 when %4 initially launched.</source> + <translation>Quand vous cliquez sur OK, %1 se mettra à télécharger et traiter la blockchain %4 entière (%2 Go) en commençant par les premières transactions dans %3 quand %4 a été lancé initialement.</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>Si vous avez choisi de limiter le stockage de la chaîne de blocs (élagage), les données historiques doivent quand même être téléchargées et traitées, mais seront supprimées par la suite pour minimiser l’utilisation de votre espace disque.</translation> @@ -1182,6 +1278,18 @@ <source>Use a custom data directory:</source> <translation>Utiliser un répertoire de données personnalisé :</translation> </message> + <message> + <source>%1 GB of free space available</source> + <translation>%1 Go d'espace disponible</translation> + </message> + <message> + <source>(of %1 GB needed)</source> + <translation>(de %1 Go nécessaire)</translation> + </message> + <message> + <source>(%1 GB needed for full chain)</source> + <translation>(%1 Go nécessaires pour la chaîne entière)</translation> + </message> <message> <source>At least %1 GB of data will be stored in this directory, and it will grow over time.</source> <translation>Au moins %1 Go de données seront stockés dans ce répertoire et sa taille augmentera avec le temps.</translation> @@ -1190,6 +1298,11 @@ <source>Approximately %1 GB of data will be stored in this directory.</source> <translation>Approximativement %1 Go de données seront stockés dans ce répertoire.</translation> </message> + <message numerus="yes"> + <source>(sufficient to restore backups %n day(s) old)</source> + <extracomment>Explanatory text on the capability of the current prune target.</extracomment> + <translation><numerusform>(suffisant pour restaurer des sauvegardes vieilles de %n jour)</numerusform><numerusform>(suffisant pour restaurer des sauvegardes vieilles de %n jours)</numerusform><numerusform>(suffisant pour restaurer des sauvegardes vieilles de %n jours)</numerusform></translation> + </message> <message> <source>%1 will download and store a copy of the Dash block chain.</source> <translation>%1 téléchargera et stockera une copie de la chaîne de blocs Dash.</translation> @@ -1241,6 +1354,10 @@ <source>Service</source> <translation>Service</translation> </message> + <message> + <source>Type</source> + <translation>Type</translation> + </message> <message> <source>PoSe Score</source> <translation>Score PoSe</translation> @@ -1376,6 +1493,10 @@ <source>Hide</source> <translation>Masquer</translation> </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>%1 est en cours de synchronisation. Il téléchargera les en-têtes et les blocs des pairs, et les validera jusqu'à atteindre le bout de la blockchain.</translation> + </message> <message> <source>Unknown. Syncing Headers (%1, %2%)…</source> <translation>Inconnu. Synchronisation d'en-têtes (%1, %2%)…</translation> @@ -1408,6 +1529,7 @@ </message> <message> <source>Opening Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</extracomment> <translation>Ouverture du portefeuille <b>%1</b>…</translation> </message> </context> @@ -1441,6 +1563,14 @@ <source>&Appearance</source> <translation>&Apparence</translation> </message> + <message> + <source>Show the icon in the system tray.</source> + <translation>Afficher l'icône dans le tiroir système.</translation> + </message> + <message> + <source>&Show tray icon</source> + <translation>Afficher l'icône de tiroir</translation> + </message> <message> <source>Prune &block storage to</source> <translation>Élaguer le stockage &block à</translation> @@ -1453,10 +1583,28 @@ <source>Reverting this setting requires re-downloading the entire blockchain.</source> <translation>Inverser ce réglage impose de télécharger à nouveau la blockchain entière.</translation> </message> + <message> + <source>Maximum database cache size. A larger cache can contribute to faster sync, after which the benefit is less pronounced for most use cases. Lowering the cache size will reduce memory usage. Unused mempool memory is shared for this cache.</source> + <extracomment>Tooltip text for Options window setting that sets the size of the database cache. Explains the corresponding effects of increasing/decreasing this value.</extracomment> + <translation>Taille maximale du cache de la base de données. Un cache plus grand peut entraîner une synchronisation plus rapide, après quoi le bénéfice est moins évident dans la plupart des cas d'utilisation. Baisser la taille du cache réduira la mémoire utilisée. La mémoire mempool inutilisée est partagée pour ce cache.</translation> + </message> <message> <source>MiB</source> <translation>Mio</translation> </message> + <message> + <source>Set the number of script verification threads. Negative values correspond to the number of cores you want to leave free to the system.</source> + <extracomment>Tooltip text for Options window setting that sets the number of script verification threads. Explains that negative values mean to leave these many cores free to the system.</extracomment> + <translation>Fixe le nombre de files de vérification de scripts. Les valeurs négatives correspondent au nombre de cœurs que vous souhaitez laisser disponibles au système.</translation> + </message> + <message> + <source>Whether to keep the specified custom change address or not.</source> + <translation>S'il faut garder ou non l'adresse personnalisée de monnaie spécifiée.</translation> + </message> + <message> + <source>Keep custom change &address</source> + <translation>Garder l'adresse de monnaie personnalisée</translation> + </message> <message> <source>Show additional tab listing all your masternodes in first sub-tab<br/>and all masternodes on the network in second sub-tab.</source> <translation>Ajouter un onglet montrant tous vos masternodes dans le premier sous-onglet<br/>et tous les masternodes du réseau dans le second.</translation> @@ -1513,6 +1661,14 @@ <source>Enable &multi-session</source> <translation>Activer le mode &multi-session</translation> </message> + <message> + <source>Use this many separate masternodes in parallel to mix funds.<br/>Note: You must use this feature carefully.<br/>Make sure you always have recent wallet (auto)backup in a safe place!</source> + <translation>Utiliser en parallèle ce nombre de masternodes distincts pour mélanger les fonds.<br/>Note : vous devez utiliser cette fonction avec précaution.<br/>Vérifiez que vous avez toujours une sauvegarde récente de votre portefeuille dans un endroit sûr !</translation> + </message> + <message> + <source>Parallel sessions</source> + <translation>Sessions parallèles</translation> + </message> <message> <source>Mixing rounds</source> <translation>Cycles de mélange</translation> @@ -1525,6 +1681,30 @@ <source>Target balance</source> <translation>Solde cible</translation> </message> + <message> + <source>How many inputs of each denominated amount are created.<br/>Lower these numbers if you want fewer smaller denominations.</source> + <translation>Combien d'entrées de chaque coupure sont créées.<br/>Baissez ces nombres si vous souhaitez moins de petites coupures.</translation> + </message> + <message> + <source>Inputs per denomination</source> + <translation>Entrées par coupure</translation> + </message> + <message> + <source>Try to create at least this many inputs for each denominated amount.<br/>Lower this number if you want fewer smaller denominations.</source> + <translation>Tenter la création d'au moins ce nombre d'entrées pour chaque coupure.<br/>Baissez ce nombre si vous souhaitez moins de petites coupures.</translation> + </message> + <message> + <source>Target</source> + <translation>Cible</translation> + </message> + <message> + <source>Create up to this many inputs for each denominated amount.<br/>Lower this number if you want fewer smaller denominations.</source> + <translation>Créer ce maximum d'entrées pour chaque coupure.<br/>Baissez ce nombre si vous souhaitez moins de petites coupures.</translation> + </message> + <message> + <source>Maximum</source> + <translation>Maximum</translation> + </message> <message> <source>Automatically open the Dash Core client port on the router. This only works when your router supports UPnP and it is enabled.</source> <translation>Ouvrir automatiquement le port du client Dash Core sur le routeur. Cela ne fonctionne que si votre routeur supporte UPnP et est activé.</translation> @@ -1553,6 +1733,12 @@ <source>Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type.</source> <translation>Indique si le proxy SOCKS5 par défaut est utilisé pour atteindre les pairs à travers ce type de réseau.</translation> </message> + <message> + <source>Language missing or translation incomplete? Help contributing translations here: +https://explore.transifex.com/dash/dash/</source> + <translation>Langue absent ou traduction incompléte ? Aidez à traduire ici : +https://explore.transifex.com/dash/dash/</translation> + </message> <message> <source>Options set in this dialog are overridden by the command line or in the configuration file:</source> <translation>Les options choisies dans ce dialogue sont remplacées par la ligne de commande ou dans le fichier de configuration :</translation> @@ -1605,6 +1791,10 @@ <source>Map port using &UPnP</source> <translation>Mapper le port avec l'&UPnP</translation> </message> + <message> + <source>Automatically open the Dash Core client port on the router. This only works when your router supports NAT-PMP and it is enabled. The external port could be random.</source> + <translation>Ouvrir automatiquement le port client Dash Core sur le routeur. Cela ne fonctionne que si votre routeur supporte NAT-PMP et qu'il est activé. Le port externe peut être choisi au hasard.</translation> + </message> <message> <source>Proxy &IP:</source> <translation>&IP du serveur mandataire :</translation> @@ -1653,6 +1843,14 @@ <source>&Display</source> <translation>&Afficher</translation> </message> + <message> + <source>Connect to the Dash network through a separate SOCKS5 proxy for Tor onion services.</source> + <translation>Connexion au réseau Dash via un proxy SOCKS5 distinct pour les services onion Tor.</translation> + </message> + <message> + <source>Use separate SOCKS&5 proxy to reach peers via Tor onion services:</source> + <translation>Utiliser un proxy SOCKS5 distinct pour atteindre les pairs via les services onion Tor :</translation> + </message> <message> <source>User Interface &language:</source> <translation>&Langue de l'interface utilisateur :</translation> @@ -1844,6 +2042,10 @@ <source>%1 Balance</source> <translation>Solde %1</translation> </message> + <message> + <source>Discreet mode activated for the Overview tab. To unmask the values, uncheck Settings->Discreet mode.</source> + <translation>Mode discret activé pour l'onglet Vue d'ensemble. Pour révéler les valeurs, décochez Mode discret dans les Réglages.</translation> + </message> <message numerus="yes"> <source>%n Rounds</source> <translation><numerusform>%n Cycle</numerusform><numerusform>%n cycles</numerusform><numerusform>%n cycles</numerusform></translation> @@ -1943,7 +2145,128 @@ </context> <context> <name>PSBTOperationsDialog</name> - </context> + <message> + <source>Dialog</source> + <translation>Dialogue</translation> + </message> + <message> + <source>Sign Tx</source> + <translation>Signature Tx</translation> + </message> + <message> + <source>Broadcast Tx</source> + <translation>Diffusion Tx</translation> + </message> + <message> + <source>Copy to Clipboard</source> + <translation>Copier dans le presse-papiers</translation> + </message> + <message> + <source>Save…</source> + <translation>Enregistrer…</translation> + </message> + <message> + <source>Close</source> + <translation>Fermer</translation> + </message> + <message> + <source>Failed to load transaction: %1</source> + <translation>Échec du chargement de la transaction : %1</translation> + </message> + <message> + <source>Failed to sign transaction: %1</source> + <translation>Échec de la signature de la transaction : %1</translation> + </message> + <message> + <source>Could not sign any more inputs.</source> + <translation>Impossible de signer plus d'entrées.</translation> + </message> + <message> + <source>Signed %1 inputs, but more signatures are still required.</source> + <translation>Signé %1 entrées, mais plus de signatures restent demandées.</translation> + </message> + <message> + <source>Signed transaction successfully. Transaction is ready to broadcast.</source> + <translation>Transaction signée avec succès. La transaction est prête à être diffusée.</translation> + </message> + <message> + <source>Unknown error processing transaction.</source> + <translation>Erreur inconnue en traitant la transaction.</translation> + </message> + <message> + <source>Transaction broadcast successfully! Transaction ID: %1</source> + <translation>Transaction diffusée avec succès ! ID de la transaction : %1</translation> + </message> + <message> + <source>Transaction broadcast failed: %1</source> + <translation>Échec de la diffusion de la transaction : %1</translation> + </message> + <message> + <source>PSBT copied to clipboard.</source> + <translation>PSBT copié dans le presse-papiers.</translation> + </message> + <message> + <source>Save Transaction Data</source> + <translation>Enregistrer les données de transaction</translation> + </message> + <message> + <source>Partially Signed Transaction (Binary)</source> + <extracomment>Expanded name of the binary PSBT file format. See: BIP 174.</extracomment> + <translation>Transaction partiellement signée (binaire)</translation> + </message> + <message> + <source>PSBT saved to disk.</source> + <translation>PSBT enregistré sur le disque.</translation> + </message> + <message> + <source> * Sends %1 to %2</source> + <translation>* Envoie %1 à %2</translation> + </message> + <message> + <source>Unable to calculate transaction fee or total transaction amount.</source> + <translation>Impossible de calculer les frais de transaction ou le montant total de la transaction.@</translation> + </message> + <message> + <source>Pays transaction fee: </source> + <translation>Paie les frais de transaction :</translation> + </message> + <message> + <source>Total Amount</source> + <translation>Montant total</translation> + </message> + <message> + <source>or</source> + <translation>ou</translation> + </message> + <message> + <source>Transaction has %1 unsigned inputs.</source> + <translation>La transaction a %1 entrées non signées.</translation> + </message> + <message> + <source>Transaction is missing some information about inputs.</source> + <translation>Il manque à la transaction certains informations sur les entrées.</translation> + </message> + <message> + <source>Transaction still needs signature(s).</source> + <translation>La transaction a encore besoin de signature(s).</translation> + </message> + <message> + <source>(But this wallet cannot sign transactions.)</source> + <translation>(Mais ce portefeuille ne peut pas signer les transactions.)</translation> + </message> + <message> + <source>(But this wallet does not have the right keys.)</source> + <translation>(Mais ce portefeuille ne détient pas les bonnes clés.)</translation> + </message> + <message> + <source>Transaction is fully signed and ready for broadcast.</source> + <translation>La transaction est entièrement signée et prête à être diffusée.</translation> + </message> + <message> + <source>Transaction status is unknown.</source> + <translation>L'état de la transaction est inconnu.</translation> + </message> +</context> <context> <name>PaymentServer</name> <message> @@ -1983,6 +2306,16 @@ <extracomment>Title of Peers Table column which indicates the current latency of the connection with the peer.</extracomment> <translation>Ping</translation> </message> + <message> + <source>Peer</source> + <extracomment>Title of Peers Table column which contains a unique number used to identify a connection.</extracomment> + <translation>Pair</translation> + </message> + <message> + <source>Type</source> + <extracomment>Title of Peers Table column which describes the type of peer connection. The "type" describes why the connection exists.</extracomment> + <translation>Type</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> @@ -1993,6 +2326,16 @@ <extracomment>Title of Peers Table column which indicates the total amount of network information we have received from the peer.</extracomment> <translation>Reçu</translation> </message> + <message> + <source>Address</source> + <extracomment>Title of Peers Table column which contains the IP/Onion/I2P address of the connected peer.</extracomment> + <translation>Adresse</translation> + </message> + <message> + <source>Network</source> + <extracomment>Title of Peers Table column which states the network the peer connected through.</extracomment> + <translation>Réseau</translation> + </message> </context> <context> <name>Proposal</name> @@ -2046,6 +2389,11 @@ </context> <context> <name>QObject</name> + <message> + <source>Do you want to reset settings to default values, or to abort without making changes?</source> + <extracomment>Explanatory text shown on startup when the settings file cannot be read. Prompts user to make a choice between resetting or aborting.</extracomment> + <translation>Souhaitez-vous réinitialiser les réglages à leurs valeurs de défaut, ou abandonner sans faire de modification ?</translation> + </message> <message> <source>Choose data directory on startup (default: %u)</source> <translation>Choisir le répertoire de données au démarrage (par défaut : %u)</translation> @@ -2146,6 +2494,53 @@ <source>This can also be adjusted later in the "Appearance" tab of the preferences.</source> <translation>Vous pouvez aussi choisir cela plus tard, dans l'onglet "Apparence" des préférences.</translation> </message> + <message> + <source>Ctrl+W</source> + <translation>Ctrl+W</translation> + </message> + <message> + <source>Unroutable</source> + <translation>Non routable</translation> + </message> + <message> + <source>Internal</source> + <translation>Interne</translation> + </message> + <message> + <source>Inbound</source> + <extracomment>An inbound connection from a peer. An inbound connection is a connection initiated by a peer.</extracomment> + <translation>Entrant</translation> + </message> + <message> + <source>Outbound</source> + <extracomment>An outbound connection to a peer. An outbound connection is a connection initiated by us.</extracomment> + <translation>Sortant</translation> + </message> + <message> + <source>Full Relay</source> + <extracomment>Peer connection type that relays all network information.</extracomment> + <translation>Relais entier</translation> + </message> + <message> + <source>Block Relay</source> + <extracomment>Peer connection type that relays network information about blocks and not transactions or addresses.</extracomment> + <translation>Relais de bloc</translation> + </message> + <message> + <source>Manual</source> + <extracomment>Peer connection type established manually through one of several methods.</extracomment> + <translation>Manuel</translation> + </message> + <message> + <source>Feeler</source> + <extracomment>Short-lived peer connection type that tests the aliveness of known addresses.</extracomment> + <translation>Feeler</translation> + </message> + <message> + <source>Address Fetch</source> + <extracomment>Short-lived peer connection type that solicits known addresses from a peer.</extracomment> + <translation>Atteinte d'adresse</translation> + </message> <message> <source>%1 d</source> <translation>%1 j</translation> @@ -2206,10 +2601,6 @@ <source>%1 B</source> <translation>%1 o</translation> </message> - <message> - <source>%1 KB</source> - <translation>%1 Ko</translation> - </message> <message> <source>%1 MB</source> <translation>%1 Mo</translation> @@ -2264,7 +2655,12 @@ <source>Save QR Code</source> <translation>Sauvegarder le QR-code</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>Image PNG</translation> + </message> +</context> <context> <name>RPCConsole</name> <message> @@ -2371,6 +2767,22 @@ <source>Version</source> <translation>Version</translation> </message> + <message> + <source>Whether the peer requested us to relay transactions.</source> + <translation>Si le pair nous a demandés de relayer des transactions.</translation> + </message> + <message> + <source>Wants Tx Relay</source> + <translation>Souhaite un relais de transaction</translation> + </message> + <message> + <source>High bandwidth BIP152 compact block relay: %1</source> + <translation>Relais de bloc compact BIP152 haute bande passante : %1</translation> + </message> + <message> + <source>High Bandwidth</source> + <translation>Haute bande passante</translation> + </message> <message> <source>Starting Block</source> <translation>Bloc de départ</translation> @@ -2384,31 +2796,76 @@ <translation>Blocs synchronisés</translation> </message> <message> - <source>Rescan blockchain files 1</source> - <translation>Rebalayer les fichiers de la chaîne de blocs (1)</translation> + <source>Elapsed time since a novel block passing initial validity checks was received from this peer.</source> + <translation>Temps écoulé depuis qu'un nouveau bloc passant les vérifications initiales a été reçu de ce pair.</translation> </message> <message> - <source>Rescan blockchain files 2</source> - <translation>Rebalayer les fichiers de la chaîne de blocs (2)</translation> + <source>Last Block</source> + <translation>Dernier bloc</translation> </message> <message> - <source>The buttons below will restart the wallet with command-line options to repair the wallet, fix issues with corrupt blockchain files or missing/obsolete transactions.</source> - <translation>Les boutons ci-dessous vont redémarrer le portefeuille avec des options de ligne de commande pour réparer le portefeuille, régler les problèmes avec des fichiers corrompus de blockchain ou des transactions manquantes ou obsolètes.</translation> + <source>Elapsed time since a novel transaction accepted into our mempool was received from this peer.</source> + <extracomment>Tooltip text for the Last Transaction field in the peer details area.</extracomment> + <translation>Temps écoulé depuis qu'une nouvelle transaction acceptée par notre mempool a été reçue de ce pair.</translation> </message> <message> - <source>-rescan=1: Rescan the block chain for missing wallet transactions starting from wallet creation time.</source> - <translation>-rescan=1 : Rebalaye la chaîne de blocs pour les transactions de portefeuille manquantes, à compter du moment de création du portefeuille.</translation> + <source>Last Transaction</source> + <translation>Dernière transaction</translation> </message> <message> - <source>-rescan=2: Rescan the block chain for missing wallet transactions starting from genesis block.</source> - <translation>-rescan=2 : Rebalaye la chaîne de blocs pour les transactions de portefeuille manquantes, à compter du tout premier bloc.</translation> + <source>The mapped Autonomous System used for diversifying peer selection.</source> + <translation>Le Système Autonome cartographié utilisé pour diversifier le choix de pairs.</translation> </message> <message> - <source>User Agent</source> - <translation>Agent utilisateur</translation> + <source>Mapped AS</source> + <translation>AS cartographié</translation> </message> <message> - <source>Datadir</source> + <source>Whether we relay addresses to this peer.</source> + <extracomment>Tooltip text for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</extracomment> + <translation>Si nous relayons les adresses vers ce pair.</translation> + </message> + <message> + <source>Address Relay</source> + <extracomment>Text title for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</extracomment> + <translation>Relay d'adresses</translation> + </message> + <message> + <source>Addresses Processed</source> + <extracomment>Text title for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</extracomment> + <translation>Adresses traitées</translation> + </message> + <message> + <source>Addresses Rate-Limited</source> + <extracomment>Text title for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</extracomment> + <translation>Adresses au taux limité</translation> + </message> + <message> + <source>Rescan blockchain files 1</source> + <translation>Rebalayer les fichiers de la chaîne de blocs (1)</translation> + </message> + <message> + <source>Rescan blockchain files 2</source> + <translation>Rebalayer les fichiers de la chaîne de blocs (2)</translation> + </message> + <message> + <source>The buttons below will restart the wallet with command-line options to repair the wallet, fix issues with corrupt blockchain files or missing/obsolete transactions.</source> + <translation>Les boutons ci-dessous vont redémarrer le portefeuille avec des options de ligne de commande pour réparer le portefeuille, régler les problèmes avec des fichiers corrompus de blockchain ou des transactions manquantes ou obsolètes.</translation> + </message> + <message> + <source>-rescan=1: Rescan the block chain for missing wallet transactions starting from wallet creation time.</source> + <translation>-rescan=1 : Rebalaye la chaîne de blocs pour les transactions de portefeuille manquantes, à compter du moment de création du portefeuille.</translation> + </message> + <message> + <source>-rescan=2: Rescan the block chain for missing wallet transactions starting from genesis block.</source> + <translation>-rescan=2 : Rebalaye la chaîne de blocs pour les transactions de portefeuille manquantes, à compter du tout premier bloc.</translation> + </message> + <message> + <source>User Agent</source> + <translation>Agent utilisateur</translation> + </message> + <message> + <source>Datadir</source> <translation>Rép. de données</translation> </message> <message> @@ -2423,6 +2880,14 @@ <source>To specify a non-default location of the blocks directory use the '%1' option.</source> <translation>Pour indiquer une localisation non-défaut du répertoire de blocs, utilisez l'option '%1'.</translation> </message> + <message> + <source>Number of regular Masternodes</source> + <translation>Nombre de masternodes standard</translation> + </message> + <message> + <source>Number of EvoNodes</source> + <translation>Nombre d'Evonodes</translation> + </message> <message> <source>Current block height</source> <translation>Hauteur du bloc actuel</translation> @@ -2471,6 +2936,22 @@ <source>PoSe Score</source> <translation>Score PoSe</translation> </message> + <message> + <source>The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS.</source> + <translation>Le protocole de réseau à travers lequel ce pair est connecté : IPv4, IPv6, Onion, I2P ou CJDNS.</translation> + </message> + <message> + <source>Permissions</source> + <translation>Autorisations</translation> + </message> + <message> + <source>The direction and type of peer connection: %1</source> + <translation>La direction et le type de connexion au pair : %1</translation> + </message> + <message> + <source>Direction/Type</source> + <translation>Direction/Type</translation> + </message> <message> <source>Services</source> <translation>Services</translation> @@ -2524,52 +3005,82 @@ <translation>-reindex: Reconstruit l'index de la chaîne de blocs à partir des fichiers blk000??.dat actuels.</translation> </message> <message> - <source>&Disconnect</source> - <translation>&Déconnecter</translation> + <source>Inbound: initiated by peer</source> + <extracomment>Explanatory text for an inbound peer connection.</extracomment> + <translation>Entrant : initié par pair</translation> </message> <message> - <source>Ban for</source> - <translation>Bannir pour</translation> + <source>Outbound Full Relay: default</source> + <extracomment>Explanatory text for an outbound peer connection that relays all network information. This is the default behavior for outbound connections.</extracomment> + <translation>Relais entier sortant : par défaut</translation> </message> <message> - <source>1 &hour</source> - <translation>1 &heure</translation> + <source>Outbound Block Relay: does not relay transactions or addresses</source> + <extracomment>Explanatory text for an outbound peer connection that relays network information about blocks and not transactions or addresses.</extracomment> + <translation>Relais de bloc sortant : ne relaye pas les transactions ou adresses</translation> </message> <message> - <source>1 &day</source> - <translation>1 &jour</translation> + <source>Outbound Manual: added using RPC %1 or %2/%3 configuration options</source> + <extracomment>Explanatory text for an outbound peer connection that was established manually through one of several methods. The numbered arguments are stand-ins for the methods available to establish manual connections.</extracomment> + <translation>Sortant manuel : ajouté avec les options de configuration RPC %1 ou %2/%3</translation> </message> <message> - <source>1 &week</source> - <translation>1 &semaine</translation> + <source>Outbound Feeler: short-lived, for testing addresses</source> + <extracomment>Explanatory text for a short-lived outbound peer connection that is used to test the aliveness of known addresses.</extracomment> + <translation>Feeler sortant : durée de vie brève, pour tester les adresses</translation> </message> <message> - <source>1 &year</source> - <translation>1 &an</translation> + <source>Outbound Address Fetch: short-lived, for soliciting addresses</source> + <extracomment>Explanatory text for a short-lived outbound peer connection that is used to request addresses from a peer.</extracomment> + <translation>Atteinte d'adresse sortante : durée de vie brève, pour solliciter les adresses</translation> </message> <message> - <source>&Unban</source> - <translation>Dé&bannir</translation> + <source>To</source> + <translation>À</translation> + </message> + <message> + <source>we selected the peer for high bandwidth relay</source> + <translation>nous avons choisi le pair pour relais à haute bande passante</translation> + </message> + <message> + <source>From</source> + <translation>De</translation> + </message> + <message> + <source>the peer selected us for high bandwidth relay</source> + <translation>le pair nous a choisis pour relais à haute bande passante</translation> + </message> + <message> + <source>No</source> + <translation>Non</translation> + </message> + <message> + <source>no high bandwidth relay selected</source> + <translation>Aucun relais à haute bande passante n'a été choisi</translation> + </message> + <message> + <source>&Disconnect</source> + <translation>&Déconnecter</translation> </message> <message> - <source>Welcome to the %1 RPC console.</source> - <translation>Bienvenue sur la console RPC de %1.</translation> + <source>Ban for</source> + <translation>Bannir pour</translation> </message> <message> - <source>Use up and down arrows to navigate history, and %1 to clear screen.</source> - <translation>Utilisez les touches de curseur pour naviguer dans l'historique et %1 pour effacer l'écran.</translation> + <source>1 &hour</source> + <translation>1 &heure</translation> </message> <message> - <source>Type %1 for an overview of available commands.</source> - <translation>Saisissez %1 pour un aperçu des commandes disponibles.</translation> + <source>1 &week</source> + <translation>1 &semaine</translation> </message> <message> - <source>For more information on using this console type %1.</source> - <translation>Pour en savoir plus sur l'utilisation de cette console, saisissez %1.</translation> + <source>1 &year</source> + <translation>1 &an</translation> </message> <message> - <source>WARNING: 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.</source> - <translation>AVERTISSEMENT : des escrocs ont déjà tenté d'inciter des utilisateurs à saisir des commandes ici même, pour voler le contenu de leur portefeuille. N'utilisez pas cette console sans comprendre exactement la portée d'une commande.</translation> + <source>&Unban</source> + <translation>Dé&bannir</translation> </message> <message> <source>In:</source> @@ -2591,10 +3102,34 @@ <source>Executing command without any wallet</source> <translation>Exécution de commande sans aucun portefeuille</translation> </message> + <message> + <source>Ctrl+Shift+I</source> + <translation>Ctrl+Maj+I</translation> + </message> + <message> + <source>Ctrl+Shift+C</source> + <translation>Ctrl+Maj+C</translation> + </message> + <message> + <source>Ctrl+Shift+G</source> + <translation>Ctrl+Maj+G</translation> + </message> + <message> + <source>Ctrl+Shift+P</source> + <translation>Ctrl+Maj+P</translation> + </message> + <message> + <source>Ctrl+Shift+R</source> + <translation>Ctrl+Maj+R</translation> + </message> <message> <source>Executing command using "%1" wallet</source> <translation>Exécution de commande avec le portefeuille "%1"</translation> </message> + <message> + <source>(peer: %1)</source> + <translation>(pair : %1)</translation> + </message> <message> <source>via %1</source> <translation>via %1</translation> @@ -2615,7 +3150,11 @@ <source>Unknown</source> <translation>Inconnus</translation> </message> - </context> + <message> + <source>Never</source> + <translation>Jamais</translation> + </message> +</context> <context> <name>ReceiveCoinsDialog</name> <message> @@ -2634,6 +3173,10 @@ <source>An optional message to attach to the payment request, which will be displayed when the request is opened.<br>Note: The message will not be sent with the payment over the Dash network.</source> <translation>Un message optionnel à joindre à la demande de paiement, qui sera affiché quand la demande sera ouverte.<br>Note : ce message ne sera pas envoyé avec le paiement à travers le réseau Dash.</translation> </message> + <message> + <source>An optional label to associate with the new receiving address (used by you to identify an invoice). It is also attached to the payment request.</source> + <translation>Une étiquette facultative à associer à la nouvelle adresse de réception (utilisée par vous pour identifier une facture). Elle est aussi jointe à la demande de paiement.</translation> + </message> <message> <source>Use this form to request payments. All fields are <b>optional</b>.</source> <translation>Utilisez ce formulaire pour demander des paiements. Tous les champs sont <b>optionnels</b>.</translation> @@ -2691,28 +3234,40 @@ <translation>Saisissez un message à joindre à la requête de paiement</translation> </message> <message> - <source>Copy URI</source> - <translation>Copier l'&URI</translation> + <source>Could not unlock wallet.</source> + <translation>Impossible de déverrouiller le portefeuille.</translation> </message> <message> - <source>Copy address</source> - <translation>Copier l'adresse</translation> + <source>Could not generate new address</source> + <translation>Impossible de générer une nouvelle adresse</translation> </message> +</context> +<context> + <name>ReceiveRequestDialog</name> <message> - <source>Copy label</source> - <translation>Copier l’étiquette</translation> + <source>Request payment to …</source> + <translation>Demander un paiement à…</translation> </message> <message> - <source>Copy message</source> - <translation>Copier le message</translation> + <source>Address:</source> + <translation>Adresse :</translation> </message> <message> - <source>Copy amount</source> - <translation>Copier le montant</translation> + <source>Amount:</source> + <translation>Montant :</translation> + </message> + <message> + <source>Label:</source> + <translation>Étiquette :</translation> + </message> + <message> + <source>Message:</source> + <translation>Message :</translation> + </message> + <message> + <source>Wallet:</source> + <translation>Portefeuille :</translation> </message> - </context> -<context> - <name>ReceiveRequestDialog</name> <message> <source>Copy &URI</source> <translation>Copier l'&URI</translation> @@ -2827,6 +3382,14 @@ <source>Transaction Fee:</source> <translation>Frais de transaction :</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 dash transactions than the network can process.</source> + <translation>Quand il y a moins de volume de transactions que d'espace dans les blocs, les mineurs comme les nœuds de relais peuvent imposer des frais minimaux. Payer seulement ces frais minimaux est parfait, mais soyez conscient que cela peut entraîner une transaction jamais confirmée, dans le cas où il y a plus de demandes de transactions Dash que ne peut en traiter le réseau.</translation> + </message> + <message> + <source>A too low fee might result in a never confirming transaction (read the tooltip)</source> + <translation>Des frais trop bas peuvent entraîner une transaction jamais confirmée (lisez la bulle d'aide)</translation> + </message> <message> <source>(Smart fee not initialized yet. This usually takes a few blocks…)</source> <translation>(Les frais intelligents ne sont pas encore disponibles. Cette fonction apparaît d'habitude après quelques blocs…)</translation> @@ -2931,6 +3494,10 @@ <source>%1 (%2 blocks)</source> <translation>%1 (%2 blocs)</translation> </message> + <message> + <source>This will produce a Partially Signed 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>Cela produira une transaction partiellement signée (PSBT) que vous pouvez enregistrer ou copier, puis signer avec (par exemple) un portefeuille %1 hors ligne, ou un portefeuille matériel compatible PSBT.</translation> + </message> <message> <source>using</source> <translation>utiliser</translation> @@ -2955,6 +3522,26 @@ <source>Confirm the %1 send action</source> <translation>Confirmer l’action d'envoi %1</translation> </message> + <message> + <source>Cr&eate Unsigned</source> + <translation>Créer non-signée</translation> + </message> + <message> + <source>Creates a Partially Signed Bitcoin Transaction (PSBT) for use with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet.</source> + <translation>Créer une transaction Bitcoin partiellement signée (PSBT) pour utilisation avec (par exemple) un portefeuille %1 hors ligne, ou un portefeuille matériel compatible PSBT.</translation> + </message> + <message> + <source> from wallet '%1'</source> + <translation>depuis le portefeuille '%1'</translation> + </message> + <message> + <source>%1 to '%2'</source> + <translation>%1 à '%2'</translation> + </message> + <message> + <source>Do you want to draft this transaction?</source> + <translation>Voulez-vous créer un brouillon de cette transaction ?</translation> + </message> <message> <source>%1 funds only</source> <translation>Fonds %1 seulement</translation> @@ -3003,6 +3590,39 @@ <source>Confirm send coins</source> <translation>Confirmer l’envoi des fonds</translation> </message> + <message> + <source>Confirm transaction proposal</source> + <translation>Confirmer la proposition de transaction</translation> + </message> + <message> + <source>Create Unsigned</source> + <translation>Créer non-signée</translation> + </message> + <message> + <source>Save Transaction Data</source> + <translation>Enregistrer les données de transaction</translation> + </message> + <message> + <source>PSBT saved</source> + <translation>PSBT enregistré</translation> + </message> + <message> + <source>Watch-only balance:</source> + <translation>Solde à consultation seule :</translation> + </message> + <message> + <source>Send</source> + <translation>Envoyer</translation> + </message> + <message> + <source>To review recipient list click "Show Details…"</source> + <translation>Pour voir la liste des destinataires, cliquez sur "Voir les détails…"</translation> + </message> + <message> + <source>Partially Signed Transaction (Binary)</source> + <extracomment>Expanded name of the binary PSBT file format. See: BIP 174.</extracomment> + <translation>Transaction partiellement signée (binaire)</translation> + </message> <message> <source>The recipient address is not valid. Please recheck.</source> <translation>L'adresse du destinataire n’est pas valide. Veuillez la vérifier.</translation> @@ -3276,6 +3896,10 @@ <source>Wallet unlock was cancelled.</source> <translation>Le déverrouillage du portefeuille a été annulé.</translation> </message> + <message> + <source>No error</source> + <translation>Pas d'erreur</translation> + </message> <message> <source>Private key for the entered address is not available.</source> <translation>La clef privée pour l'adresse indiquée n'est pas disponible.</translation> @@ -3309,12 +3933,11 @@ <translation>Message vérifié.</translation> </message> </context> +<context> + <name>SplashScreen</name> + </context> <context> <name>TrafficGraphWidget</name> - <message> - <source>KB/s</source> - <translation>Ko/s</translation> - </message> <message> <source>Total</source> <translation>Total</translation> @@ -3727,50 +4350,15 @@ <source>Min amount</source> <translation>Montant min.</translation> </message> - <message> - <source>Abandon transaction</source> - <translation>Abandonner la transaction</translation> - </message> - <message> - <source>Copy address</source> - <translation>Copier l’adresse</translation> - </message> - <message> - <source>Copy label</source> - <translation>Copier l’étiquette</translation> - </message> - <message> - <source>Copy amount</source> - <translation>Copier le montant</translation> - </message> - <message> - <source>Copy transaction ID</source> - <translation>Copier l'ID de la transaction</translation> - </message> - <message> - <source>Copy raw transaction</source> - <translation>Copier la transaction brute</translation> - </message> - <message> - <source>Copy full transaction details</source> - <translation>Copier les détails complets de la transaction</translation> - </message> - <message> - <source>Edit address label</source> - <translation>Modifier le label d'adresse</translation> - </message> - <message> - <source>Show transaction details</source> - <translation>Afficher les détails de la transaction</translation> - </message> - <message> - <source>Show address QR code</source> - <translation>Voir le QR-code de l'adresse</translation> - </message> <message> <source>Export Transaction History</source> <translation>Exporter l'historique des transactions</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>Fichier avec virgules comme séparations</translation> + </message> <message> <source>Confirmed</source> <translation>Confirmée</translation> @@ -3849,9 +4437,29 @@ <source>Closing the wallet for too long can result in having to resync the entire chain if pruning is enabled.</source> <translation>Fermer trop longtemps le portefeuille peut entraîner la nécessité de resynchroniser la chaîne entière si l'élagage est activé.</translation> </message> - </context> + <message> + <source>Close all wallets</source> + <translation>Fermer tous les portefeuilles</translation> + </message> + <message> + <source>Are you sure you wish to close all wallets?</source> + <translation>Souhaitez-vous vraiment fermer tous les portefeuilles ?</translation> + </message> +</context> <context> <name>WalletFrame</name> + <message> + <source>No wallet has been loaded. +Go to File > Open Wallet to load a wallet. +- OR -</source> + <translation>Aucun portefeuille n'a été chargé. +Allez à Fichier > Ouvrir le portefeuille pour charger un portefeuille. +- OU -</translation> + </message> + <message> + <source>Create a new wallet</source> + <translation>Créer un nouveau portefeuille</translation> + </message> </context> <context> <name>WalletModel</name> @@ -3878,6 +4486,11 @@ <source>Selected amount:</source> <translation>Montant sélectionné :</translation> </message> + <message> + <source>Wallet Data</source> + <extracomment>Name of the wallet data file format.</extracomment> + <translation>Données de portefeuille</translation> + </message> <message> <source>Backup Wallet</source> <translation>Sauvegarder le portefeuille</translation> @@ -3969,6 +4582,18 @@ <source>Error reading from database, shutting down.</source> <translation>Erreur à la lecture de la base de données, arrêt en cours.</translation> </message> + <message> + <source>Error: Missing checksum</source> + <translation>Erreur : checksum manquant</translation> + </message> + <message> + <source>Error: Unable to parse version %u as a uint32_t</source> + <translation>Erreur : impossible de traiter la version %u en tant que uint32_t</translation> + </message> + <message> + <source>Error: Unable to write record to new wallet</source> + <translation>Erreur : impossible d'écrire l'enregistrement vers un nouveau portefeuille</translation> + </message> <message> <source>Failed to listen on any port. Use -listen=0 if you want this.</source> <translation>Échec de l'écoute sur un port quelconque. Utilisez -listen=0 si vous voulez ceci.</translation> @@ -3993,6 +4618,10 @@ <source>Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)</source> <translation>Montant invalide pour -maxtxfee=<montant> : « %s » (doit être au moins du montant de frais minrelay de %s pour éviter des transactions bloquées)</translation> </message> + <message> + <source>SQLiteDatabase: Unknown sqlite wallet schema version %d. Only version %d is supported</source> + <translation>SQLiteDatabase : version %d de portefeuille sqlite inconnue. Seule la version %d est supportée</translation> + </message> <message> <source>Transaction index can't be disabled with governance validation enabled. Either start with -disablegovernance command line switch or enable transaction index.</source> <translation>L'index de transaction ne peut pas être désactivé lorsque la validation de gouvernance est activée. Démarrez en ligne de commande avec l'argument -disablegovernance, ou bien activez l'index de transaction.</translation> @@ -4145,6 +4774,10 @@ <source>Make sure to encrypt your wallet and delete all non-encrypted backups after you have verified that the wallet works!</source> <translation>Assurez-vous de chiffrer votre portefeuille, et effacez toutes vos sauvegardes non chiffrées après avoir vérifié que ce portefeuille marche !</translation> </message> + <message> + <source>More than one onion bind address is provided. Using %s for the automatically created Tor onion service.</source> + <translation>Plus d'une adresse onion bind est fournie. Utilisation de %s pour le service onion Tor automatiquement créé.</translation> + </message> <message> <source>Prune configured below the minimum of %d MiB. Please use a higher number.</source> <translation>Élagage configuré sous le minimum de %d Mio. Veuillez s'il vous plaît utiliser une valeur supérieure.</translation> @@ -4165,6 +4798,10 @@ <source>Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments.</source> <translation>La taille totale de la chaîne de version réseau (%i) dépasse la taille maximum (%i). Réduisez le nombre ou la taille des uacomments.</translation> </message> + <message> + <source>Transaction needs a change address, but we can't generate it. Please call keypoolrefill first.</source> + <translation>La transaction nécessite une adresse de monnaie rendue, mais nous ne pouvons pas la générer. Veuillez appeler d'abord keypoolrefill.</translation> + </message> <message> <source>WARNING! Failed to replenish keypool, please unlock your wallet to do so.</source> <translation>ATTENTION ! Impossible de réalimenter la série de clefs. Veuillez déverrouiller votre portefeuille pour cela.</translation> @@ -4173,10 +4810,6 @@ <source>Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</source> <translation>Le portefeuille est verrouillé, impossible de réalimenter la série de clefs ! La sauvegarde automatique et le mélange sont désactivés, veuillez déverrouiller votre portefeuille pour la réalimenter.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -timestampindex</source> - <translation>Vous devez reconstruire la base de données avec l'option -reindex afin de modifier -timestampindex</translation> - </message> <message> <source>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <translation>Vous devez reconstruire la base de données en utilisant -reindex pour retourner en mode non-élagué. Ceci aura pour effet de télécharger à nouveau la chaîne de blocs complète.</translation> @@ -4221,10 +4854,30 @@ <source>Error upgrading evo database</source> <translation>Erreur en mettant à jour la base de données evo</translation> </message> + <message> + <source>Error: Couldn't create cursor into database</source> + <translation>Erreur : impossible de créer de curseur dans la base de données</translation> + </message> <message> <source>Error: Disk space is low for %s</source> <translation>Erreur : l'espace-disque est trop bas pour %s</translation> </message> + <message> + <source>Error: Dumpfile checksum does not match. Computed %s, expected %s</source> + <translation>Erreur : le checksum du dumpfile ne correspond pas. Calculé %s, attendu %s</translation> + </message> + <message> + <source>Error: Got key that was not hex: %s</source> + <translation>Erreur : eu une clé qui n'était pas hexadécimale : %s</translation> + </message> + <message> + <source>Error: Got value that was not hex: %s</source> + <translation>Erreur : eu une valeur qui n'était pas hexadécimale : %s</translation> + </message> + <message> + <source>Error: Keypool ran out, please call keypoolrefill first</source> + <translation>Erreur : keypool épuisé, veuillez appeler d'abord keypoolrefill</translation> + </message> <message> <source>Exceeded max tries.</source> <translation>Le nombre maximal d'essais est dépassé.</translation> @@ -4249,10 +4902,18 @@ <source>Failed to rescan the wallet during initialization</source> <translation>Échec de la réinspection du portefeuille pendant le démarrage</translation> </message> + <message> + <source>Failed to verify database</source> + <translation>Échec de la vérification de la base de données</translation> + </message> <message> <source>Found enough users, signing…</source> <translation>Nombre suffisant d'utilisateurs trouvé, signature…</translation> </message> + <message> + <source>Ignoring duplicate -wallet %s.</source> + <translation>Portefeuille en double ignoré -wallet %s.</translation> + </message> <message> <source>Invalid P2P permission: '%s'</source> <translation>Autorisation P2P invalide : '%s'</translation> @@ -4289,6 +4950,10 @@ <source>No matching denominations found for mixing.</source> <translation>Pas de coupures équivalentes trouvées pour le mélange.</translation> </message> + <message> + <source>No proxy server specified. Use -proxy=<ip> or -proxy=<ip:port>.</source> + <translation>Aucun serveur proxy spécifié. Utilisez -proxy=<ip> ou -proxy=<ip:port>.</translation> + </message> <message> <source>Not compatible with existing transactions.</source> <translation>Non compatible avec les transactions existantes.</translation> @@ -4309,6 +4974,22 @@ <source>Prune mode is incompatible with -txindex.</source> <translation>Le mode Élaguer est incompatible avec -txindex.</translation> </message> + <message> + <source>SQLiteDatabase: Failed to execute statement to verify database: %s</source> + <translation>SQLiteDatabase: impossible d'exécuter la commande pour vérifier la base de données : %s</translation> + </message> + <message> + <source>SQLiteDatabase: Failed to prepare statement to verify database: %s</source> + <translation>SQLiteDatabase: impossible de préparer la commande pour vérifier la base de données : %s</translation> + </message> + <message> + <source>SQLiteDatabase: Failed to read database verification error: %s</source> + <translation>SQLiteDatabase: impossible de lire l'erreur de vérification de la base de données : %s</translation> + </message> + <message> + <source>SQLiteDatabase: Unexpected application id. Expected %u, got %u</source> + <translation>SQLiteDatabase: Id d'application inattendu. Attendu %u, obtenu %u</translation> + </message> <message> <source>Section [%s] is not recognized.</source> <translation>La section [%s] n'est pas reconnue.</translation> @@ -4341,6 +5022,10 @@ <source>This is the transaction fee you will pay if you send a transaction.</source> <translation>Il s’agit des frais minimaux que vous payez si vous envoyez une transaction.</translation> </message> + <message> + <source>Topping up keypool…</source> + <translation>Remplissage du keypool…</translation> + </message> <message> <source>Transaction amounts must not be negative</source> <translation>Les montants transactionnels ne doivent pas être négatifs</translation> @@ -4369,10 +5054,18 @@ <source>Unable to generate initial keys</source> <translation>Impossible de générer les clés initiales</translation> </message> + <message> + <source>Unable to open %s for writing</source> + <translation>Impossible d'ouvrir %s pour y écrire</translation> + </message> <message> <source>Unknown -blockfilterindex value %s.</source> <translation>Valeur inconnue de -blockfilterindex %s.</translation> </message> + <message> + <source>Unknown new rules activated (versionbit %i)</source> + <translation>Nouvelles règles inconnues activées (versionbit %i)</translation> + </message> <message> <source>Upgrading UTXO database</source> <translation>Mise à niveau de la base de données UTXO</translation> @@ -4394,16 +5087,12 @@ <translation>La création du répertoire de sauvegarde du portefeuille %s a échoué !</translation> </message> <message> - <source>You can not start a masternode with wallet enabled.</source> - <translation>Impossible de démarrer un masternode avec le portefeuille activé.</translation> - </message> - <message> - <source>You need to rebuild the database using -reindex to change -addressindex</source> - <translation>Vous devez reconstruire la base de données avec l'option -reindex afin de modifier -addressindex</translation> + <source>Wiping wallet transactions…</source> + <translation>Effacement des transactions de portefeuille…</translation> </message> <message> - <source>You need to rebuild the database using -reindex to change -spentindex</source> - <translation>Vous devez reconstruire la base de données avec l'option -reindex afin de modifier -spentindex</translation> + <source>You can not start a masternode with wallet enabled.</source> + <translation>Impossible de démarrer un masternode avec le portefeuille activé.</translation> </message> <message> <source>no mixing available.</source> @@ -4421,10 +5110,18 @@ <source>%s uses exact denominated amounts to send funds, you might simply need to mix some more coins.</source> <translation>%s utilise des montants exacts de coupures pour envoyer des fonds, vous pourriez simplement avoir besoin de mélanger plus de fonds.</translation> </message> + <message> + <source>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source> + <translation>Impossible de baisser le portefeuille de la version %i à %i. Version de portefeuille inchangée.</translation> + </message> <message> <source>Cannot obtain a lock on data directory %s. %s is probably already running.</source> <translation>Impossible d’obtenir un verrou sur le répertoire de données %s. %s fonctionne probablement déjà.</translation> </message> + <message> + <source>Cannot upgrade a non HD wallet from version %i to version %i which is non-HD wallet. Use upgradetohd RPC</source> + <translation>Impossible de monter un portefeuille non-HD de la version %i à la version %i qui est un portefeuille non-HD. Utilisez RPC upgradetohd</translation> + </message> <message> <source>Distributed under the MIT software license, see the accompanying file %s or %s</source> <translation>Distribué sous la licence MIT d’utilisation d’un logiciel. Consulter le fichier joint %s ou %s</translation> @@ -4437,10 +5134,50 @@ <source>Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</source> <translation>Erreur de lecture de %s ! Toutes les clés ont été lues correctement, mais les données transactionnelles ou les entrées du carnet d’adresses sont peut-être manquantes ou incorrectes.</translation> </message> + <message> + <source>Error: Dumpfile format record is incorrect. Got "%s", expected "format".</source> + <translation>Erreur : l'enregistrement de format dumpfile est incorrect. Obtenu "%s", attendu "format".</translation> + </message> + <message> + <source>Error: Dumpfile identifier record is incorrect. Got "%s", expected "%s".</source> + <translation>Erreur : l'enregistrement d'identifieur dumpfile est incorrect. Obtenu "%s", attendu "%s".</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>Erreur : version de dumpfile non supportée. Cette version de bitcoin-wallet supporte seulement les dumpfiles de version 1. Obtenu un dumpfile de version %s</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>Le fichier %s existe déjà. Si vous êtes sûr que c'est ce que vous souhaitez, sortez-le d'abord.</translation> + </message> <message> <source>Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?</source> <translation>Le bloc de genèse devnet est incorrect ou introuvable. Mauvais répertoire de données pour devnet ?</translation> </message> + <message> + <source>Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start.</source> + <translation>peers.dat invalide ou corrompu (%s). Si vous pensez que c'est un bug, veuillez le signaler à %s. Comme contournement, vous pouvez déplacer ailleurs le fichier %s (renommez-le, déplacez-le ou effacez-le) pour qu'un nouveau soit créé au prochain démarrage.</translation> + </message> + <message> + <source>No dump file provided. To use createfromdump, -dumpfile=<filename> must be provided.</source> + <translation>Aucun dumpfile fourni. Pour utiliser createfromdump, -dumpfile=<filename> doit être fourni.</translation> + </message> + <message> + <source>No dump file provided. To use dump, -dumpfile=<filename> must be provided.</source> + <translation>Aucun dumpfile fourni. Pour utiliser dump, -dumpfile=<filename> doit être fourni.</translation> + </message> + <message> + <source>No wallet file format provided. To use createfromdump, -format=<format> must be provided.</source> + <translation>Aucun format de fichier portefeuille fourni. Pour utiliser createfromdump, -format=<format> doit être fourni.</translation> + </message> + <message> + <source>Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is explicitly forbidden: -onion=0</source> + <translation>Connexions sortantes restreintes à Tor (-onlynet=onion) mais le proxy pour atteindre le réseau Tor est explicitement interdit : -onion=0</translation> + </message> + <message> + <source>Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is not provided: none of -proxy, -onion or -listenonion is given</source> + <translation>Connexions sortantes restreintes à Tor (-onlynet=onion) mais le proxy pour atteindre le réseau Tor n'est pas indiqué : aucun -proxy, -onion ou -listenonion n'est fourni</translation> + </message> <message> <source>Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly.</source> <translation>Veuillez vérifier que l’heure et la date de votre ordinateur sont justes ! Si votre horloge n’est pas à l’heure, %s ne fonctionnera pas correctement.</translation> @@ -4449,6 +5186,10 @@ <source>Please contribute if you find %s useful. Visit %s for further information about the software.</source> <translation>Si vous trouvez %s utile, vous pouvez y contribuer. Vous trouverez davantage d’informations à propos du logiciel sur %s.</translation> </message> + <message> + <source>This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection.</source> + <translation>Ceci sont les frais de transaction maximaux que vous payez (en addition des frais normaux) pour prioriser l'évitement de dépense partielle sur le choix normal de pièces.</translation> + </message> <message> <source>This is the transaction fee you may discard if change is smaller than dust at this level</source> <translation>Il s’agit des frais de transaction auxquels vous pouvez renoncer si la monnaie rendue est inférieure à ce qui est considéré comme "poussière" à ce niveau</translation> @@ -4461,10 +5202,22 @@ <source>Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate.</source> <translation>Impossible de repasser les blocs. Vous devez reconstruire la base de données en utilisant -reindex-chainstate.</translation> </message> + <message> + <source>Unknown wallet file format "%s" provided. Please provide one of "bdb" or "sqlite".</source> + <translation>Format de fichier portefeuille "%s" inconnu. Veuillez fournir "bdb" ou "sqlite".</translation> + </message> + <message> + <source>Warning: Dumpfile wallet format "%s" does not match command line specified format "%s".</source> + <translation>Avertissement : le format de portefeuille dumpfile "%s" ne correspond pas au format "%s" spécifié en ligne de commande.</translation> + </message> <message> <source>Warning: Private keys detected in wallet {%s} with disabled private keys</source> <translation>Avertissement : clés privées détectées dans le portefeuille {%s} avec des clés privées désactivées</translation> </message> + <message> + <source>%s -- Incorrect seed, it should be a hex string</source> + <translation>%s -- graine incorrecte, elle devrait être une chaîne hexadécimale</translation> + </message> <message> <source>%s is not a valid backup folder!</source> <translation>%s n'est pas un répertoire de sauvegarde valide !</translation> @@ -4513,6 +5266,14 @@ <source>Disk space is too low!</source> <translation>L'espace-disque est trop faible !</translation> </message> + <message> + <source>Dump file %s does not exist.</source> + <translation>Le dumpfile %s n'existe pas.</translation> + </message> + <message> + <source>Error creating %s</source> + <translation>Erreur en créant %s</translation> + </message> <message> <source>Error loading %s</source> <translation>Erreur de chargement de %s</translation> @@ -4529,6 +5290,10 @@ <source>Error loading %s: You can't disable HD on an already existing HD wallet</source> <translation>Erreur au chargement de %s : Impossible de désactiver HD sur un portefeuille HD déjà existant</translation> </message> + <message> + <source>Error reading next record from wallet database</source> + <translation>Erreur à la lecture de l'enregistrement suivant sur la base de données du portefeuille</translation> + </message> <message> <source>Error upgrading chainstate database</source> <translation>Erreur de mise à niveau de la base de données d’état de la chaîne</translation> @@ -4601,6 +5366,14 @@ <source>Inputs vs outputs size mismatch.</source> <translation>Différence de taille entre entrées et sorties.</translation> </message> + <message> + <source>Invalid '%s'. Allowed values: 128, 160, 192, 224, 256.</source> + <translation>'%s' invalide. Valeurs autorisées : 128, 160, 192, 224, 256.</translation> + </message> + <message> + <source>Invalid -i2psam address or hostname: '%s'</source> + <translation>Adresse ou nom d'hôte -i2psam invalide : '%s'</translation> + </message> <message> <source>Invalid -onion address or hostname: '%s'</source> <translation>Adresse ou nom d’hôte -onion invalide : « %s »</translation> @@ -4653,6 +5426,10 @@ <source>The source code is available from %s.</source> <translation>Le code source se trouve sur %s.</translation> </message> + <message> + <source>The specified config file %s does not exist</source> + <translation>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>Le montant de la transaction est trop bas pour payer les frais</translation> @@ -4709,10 +5486,6 @@ <source>Unsupported logging category %s=%s.</source> <translation>Catégorie de journalisation non supportée %s=%s.</translation> </message> - <message> - <source>Upgrading txindex database</source> - <translation>Mise à jour de la base de données txindex</translation> - </message> <message> <source>Very low number of keys left: %d</source> <translation>Très peu de clefs restantes : %d</translation> @@ -4745,5 +5518,5 @@ <source>Your entries added successfully.</source> <translation>Vos entrées ajoutées avec succès.</translation> </message> -</context> + </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/dash_it.ts b/src/qt/locale/dash_it.ts index 7061404ff9cbb..c36cb1698d009 100644 --- a/src/qt/locale/dash_it.ts +++ b/src/qt/locale/dash_it.ts @@ -93,10 +93,6 @@ <source>&Edit</source> <translation>&Modifica</translation> </message> - <message> - <source>&Show address QR code</source> - <translation>&Mostra l'indirizzo del codice QR</translation> - </message> <message> <source>QR code</source> <translation>codice QR</translation> @@ -107,7 +103,7 @@ </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> + <extracomment>Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</extracomment> <translation>File separato da virgole</translation> </message> <message> @@ -390,11 +386,11 @@ </message> <message> <source>Open Wallet</source> - <translation>Portafoglio aperto</translation> + <translation>Apri Wallet</translation> </message> <message> <source>Open a wallet</source> - <translation>Apri un portafoglio</translation> + <translation>Apri Wallet</translation> </message> <message> <source>Close wallet</source> @@ -656,6 +652,7 @@ </message> <message numerus="yes"> <source>%n active connection(s) to Dash network</source> + <extracomment>A substring of the tooltip.</extracomment> <translation><numerusform>%n connessione attiva alla rete Dash</numerusform><numerusform>%n connessioni attive alla rete Dash</numerusform><numerusform>%n connessioni attive alla rete Dash</numerusform></translation> </message> <message> @@ -915,30 +912,10 @@ <source>Confirmed</source> <translation>Confermato</translation> </message> - <message> - <source>Copy address</source> - <translation>Copia l'indirizzo</translation> - </message> - <message> - <source>Copy label</source> - <translation>Copia l'etichetta</translation> - </message> <message> <source>Copy amount</source> <translation>Copia l'importo</translation> </message> - <message> - <source>Copy transaction ID</source> - <translation>Copia l'ID della transazione</translation> - </message> - <message> - <source>Lock unspent</source> - <translation>Blocca i non spesi</translation> - </message> - <message> - <source>Unlock unspent</source> - <translation>Sblocca i non spesi</translation> - </message> <message> <source>Copy quantity</source> <translation>Copia quantità</translation> @@ -1028,6 +1005,7 @@ <name>CreateWalletActivity</name> <message> <source>Creating Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</extracomment> <translation>Creazione del portafoglio<b>%1</b>…</translation> </message> <message> @@ -1490,6 +1468,7 @@ </message> <message> <source>Opening Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</extracomment> <translation>Apertura Portafoglio <b>%1</b>…</translation> </message> </context> @@ -2231,14 +2210,6 @@ <source>'dash://' is not a valid URI. Use 'dash:' instead.</source> <translation>"dash: //" non è un URI valido. Utilizza "dash:".</translation> </message> - <message> - <source>Cannot process payment request as BIP70 is no longer supported.</source> - <translation>Impossibile elaborare la richiesta di pagamento in quanto BIP70 non è più supportato.</translation> - </message> - <message> - <source>Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> - <translation>A causa dell'interruzione del supporto, dovresti richiedere al commerciante di fornirti un URI compatibile con BIP21 o utilizzare un portafoglio che continui a supportare BIP70.</translation> - </message> <message> <source>URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</source> <translation>Impossibile interpretare l'URI! La causa puó essere un indirizzo Dash non valido o parametri URI non corretti.</translation> @@ -2280,7 +2251,7 @@ <extracomment>Title of Peers Table column which states the network the peer connected through.</extracomment> <translation>Network</translation> </message> -</context> + </context> <context> <name>Proposal</name> <message> @@ -2338,11 +2309,6 @@ <extracomment>Explanatory text shown on startup when the settings file cannot be read. Prompts user to make a choice between resetting or aborting.</extracomment> <translation>Desideri ripristinare le impostazioni sui valori predefiniti o interrompere senza apportare modifiche?</translation> </message> - <message> - <source>A fatal error occured. Check that settings file is writable, or try running with -nosettings.</source> - <extracomment>Explanatory text shown on startup when the settings file could not be written. Prompts user to check that we have the ability to write to the file. Explains that the user has the option of running without a settings file.</extracomment> - <translation>Si è verificato un errore irreversibile. Controlla che il file delle impostazioni sia scrivibile o prova a eseguirlo con -nosettings.</translation> - </message> <message> <source>Choose data directory on startup (default: %u)</source> <translation>Seleziona la directory dei dati all'avvio (default: %u)</translation> @@ -2511,10 +2477,6 @@ <source>%1 B</source> <translation>%1 B</translation> </message> - <message> - <source>%1 KB</source> - <translation>%1 KB</translation> - </message> <message> <source>%1 MB</source> <translation>%1 MB</translation> @@ -2571,7 +2533,7 @@ </message> <message> <source>PNG Image</source> - <extracomment>Expanded name of the PNG file format. See https://en.wikipedia.org/wiki/Portable_Network_Graphics</extracomment> + <extracomment>Expanded name of the PNG file format. See: https://en.wikipedia.org/wiki/Portable_Network_Graphics.</extracomment> <translation>Immagine PNG</translation> </message> </context> @@ -2869,10 +2831,6 @@ <source>1 &hour</source> <translation>1 &ora</translation> </message> - <message> - <source>1 &day</source> - <translation>1 &giorno</translation> - </message> <message> <source>1 &week</source> <translation>1 &settimana</translation> @@ -2885,26 +2843,6 @@ <source>&Unban</source> <translation>&Elimina Ban</translation> </message> - <message> - <source>Welcome to the %1 RPC console.</source> - <translation>Benvenuto nella console RPC di %1.</translation> - </message> - <message> - <source>Use up and down arrows to navigate history, and %1 to clear screen.</source> - <translation>Usa le frecce direzionali per navigare nella cronologia, e %1 per cancellarla.</translation> - </message> - <message> - <source>Type %1 for an overview of available commands.</source> - <translation>Digita %1 per una panoramica dei comandi disponibili.</translation> - </message> - <message> - <source>For more information on using this console type %1.</source> - <translation>Per ulteriori informazioni sull'utilizzo di questo tipo di console %1.</translation> - </message> - <message> - <source>WARNING: 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.</source> - <translation>ATTENZIONE: truffatori sono stati attivi, chiedendo agli utenti di digitare comandi qui, rubando il contenuto del loro portafoglio. Non utilizzare questa console senza comprendere appieno la diramazione di un comando.</translation> - </message> <message> <source>In:</source> <translation>Entrata:</translation> @@ -3028,26 +2966,6 @@ <source>Enter a message to attach to the payment request</source> <translation>Inserisci un messaggio da allegare alla richiesta di pagamento</translation> </message> - <message> - <source>Copy URI</source> - <translation>Copia URI</translation> - </message> - <message> - <source>Copy address</source> - <translation>Copia Indirizzo</translation> - </message> - <message> - <source>Copy label</source> - <translation>Copia l'etichetta</translation> - </message> - <message> - <source>Copy message</source> - <translation>Copia messaggio</translation> - </message> - <message> - <source>Copy amount</source> - <translation>Copia l'importo</translation> - </message> </context> <context> <name>ReceiveRequestDialog</name> @@ -3740,12 +3658,11 @@ <translation>Messaggio verificato.</translation> </message> </context> +<context> + <name>SplashScreen</name> + </context> <context> <name>TrafficGraphWidget</name> - <message> - <source>KB/s</source> - <translation>KB/s</translation> - </message> <message> <source>Total</source> <translation>Totale</translation> @@ -4158,57 +4075,13 @@ <source>Min amount</source> <translation>Importo minimo</translation> </message> - <message> - <source>Abandon transaction</source> - <translation>Abbandona transazione </translation> - </message> - <message> - <source>Resend transaction</source> - <translation>Invia nuovamente la transazione</translation> - </message> - <message> - <source>Copy address</source> - <translation>Copia l'indirizzo</translation> - </message> - <message> - <source>Copy label</source> - <translation>Copia l'etichetta</translation> - </message> - <message> - <source>Copy amount</source> - <translation>Copia l'importo</translation> - </message> - <message> - <source>Copy transaction ID</source> - <translation>Copia l'ID transazione</translation> - </message> - <message> - <source>Copy raw transaction</source> - <translation>Copia la transazione raw</translation> - </message> - <message> - <source>Copy full transaction details</source> - <translation>Copia i dettagli dell'intera transazione</translation> - </message> - <message> - <source>Edit address label</source> - <translation>Modifica etichetta indirizzo</translation> - </message> - <message> - <source>Show transaction details</source> - <translation>Mostra i dettagli della transazione</translation> - </message> - <message> - <source>Show address QR code</source> - <translation>Mostra indirizzo del codice QR</translation> - </message> <message> <source>Export Transaction History</source> <translation>Esporta lo storico delle transazioni</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> + <extracomment>Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</extracomment> <translation>File separato da virgole</translation> </message> <message> @@ -4312,7 +4185,7 @@ Vai su File > Apri Wallet per caricare un Wallet. <source>Create a new wallet</source> <translation>Crea un nuovo Wallet</translation> </message> -</context> + </context> <context> <name>WalletModel</name> <message> @@ -4338,35 +4211,11 @@ Vai su File > Apri Wallet per caricare un Wallet. <source>Selected amount:</source> <translation>Importo selezionato:</translation> </message> - <message> - <source>Unable to decode PSBT from clipboard (invalid base64)</source> - <translation>Impossibile decodificare PSBT dagli appunti (base64 non valido)</translation> - </message> - <message> - <source>Load Transaction Data</source> - <translation>Carica i Dati della Transazione</translation> - </message> - <message> - <source>Partially Signed Transaction (*.psbt)</source> - <translation>Transazione parzialmente firmata (*.psbt)</translation> - </message> - <message> - <source>Unable to decode PSBT</source> - <translation>Impossibile decodificare PSBT</translation> - </message> <message> <source>Wallet Data</source> <extracomment>Name of the wallet data file format.</extracomment> <translation>Dati del wallet</translation> </message> - <message> - <source>Error</source> - <translation>Errore</translation> - </message> - <message> - <source>PSBT file must be smaller than 100 MiB</source> - <translation>Il file PSBT deve essere inferiore a 100 MiB</translation> - </message> <message> <source>Backup Wallet</source> <translation>Backup Portafoglio</translation> @@ -4674,10 +4523,6 @@ Vai su File > Apri Wallet per caricare un Wallet. <source>Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</source> <translation>Il Portafoglio è bloccato, non può ricostituire il keypool! I backup e il mixaggio automatici sono disabilitati, sblocca il tuo portafoglio per ricostituire il keypool.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -timestampindex</source> - <translation>È necessario ricostruire il database usando -reindex per cambiare -timestampindex</translation> - </message> <message> <source>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <translation>Per ritornare alla modalità unpruned sarà necessario ricostruire il database utilizzando l'opzione -reindex. L'intera blockchain sarà riscaricata.</translation> @@ -4942,14 +4787,6 @@ Vai su File > Apri Wallet per caricare un Wallet. <source>You can not start a masternode with wallet enabled.</source> <translation>Non è possibile avviare un nodo principale con il wallet abilitato.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -addressindex</source> - <translation>È necessario ricostruire il database usando -reindex per cambiare -addressindex</translation> - </message> - <message> - <source>You need to rebuild the database using -reindex to change -spentindex</source> - <translation>È necessario ricostruire il database usando -reindex per cambiare -spentindex</translation> - </message> <message> <source>no mixing available.</source> <translation>nessun mixing disponibile.</translation> @@ -5170,10 +5007,6 @@ Vai su File > Apri Wallet per caricare un Wallet. <source>Invalid spork address specified with -sporkaddr</source> <translation>Indirizzo di spork non valido specificato con -sporkaddr</translation> </message> - <message> - <source>Prune mode is incompatible with -coinstatsindex.</source> - <translation>La modalità Prune è incompatibile con -coinstatsindex.</translation> - </message> <message> <source>Reducing -maxconnections from %d to %d, because of system limitations.</source> <translation>Riduzione -maxconnections da %d a %d a causa di limitazioni di sistema.</translation> @@ -5270,10 +5103,6 @@ Vai su File > Apri Wallet per caricare un Wallet. <source>Unsupported logging category %s=%s.</source> <translation>Categoria di registrazione non supportata %s=%s.</translation> </message> - <message> - <source>Upgrading txindex database</source> - <translation>Aggiornamento del database txindex</translation> - </message> <message> <source>Very low number of keys left: %d</source> <translation>Il numero di chiavi rimaste è molto basso: %d</translation> @@ -5306,5 +5135,5 @@ Vai su File > Apri Wallet per caricare un Wallet. <source>Your entries added successfully.</source> <translation>Le tue voci sono state aggiunte con successo.</translation> </message> -</context> + </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/dash_pl.ts b/src/qt/locale/dash_pl.ts index b62abdcbf52c0..86c272e3fa035 100644 --- a/src/qt/locale/dash_pl.ts +++ b/src/qt/locale/dash_pl.ts @@ -93,10 +93,6 @@ <source>&Edit</source> <translation>&Edytuj</translation> </message> - <message> - <source>&Show address QR code</source> - <translation>&Pokaż adres kodu QR</translation> - </message> <message> <source>QR code</source> <translation>Kod QR</translation> @@ -618,6 +614,7 @@ </message> <message numerus="yes"> <source>%n active connection(s) to Dash network</source> + <extracomment>A substring of the tooltip.</extracomment> <translation><numerusform>%n aktywne połączenie z siecią Dash</numerusform><numerusform>%n aktywne połączenia z siecią Dash</numerusform><numerusform>%n aktywnych połączeń z siecią Dash</numerusform><numerusform>%n aktywne połączenia z siecią Dash</numerusform></translation> </message> <message> @@ -873,30 +870,10 @@ <source>Confirmed</source> <translation>Potwierdzony</translation> </message> - <message> - <source>Copy address</source> - <translation>Kopiuj adres</translation> - </message> - <message> - <source>Copy label</source> - <translation>Kopiuj etykietę</translation> - </message> <message> <source>Copy amount</source> <translation>Kopiuj kwotę</translation> </message> - <message> - <source>Copy transaction ID</source> - <translation>Skopiuj ID transakcji</translation> - </message> - <message> - <source>Lock unspent</source> - <translation>Zablokuj</translation> - </message> - <message> - <source>Unlock unspent</source> - <translation>Odblokuj</translation> - </message> <message> <source>Copy quantity</source> <translation>Skopiuj ilość</translation> @@ -986,6 +963,7 @@ <name>CreateWalletActivity</name> <message> <source>Creating Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</extracomment> <translation>Tworzenie Portfela <b>%1</b>…</translation> </message> <message> @@ -1424,6 +1402,7 @@ </message> <message> <source>Opening Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</extracomment> <translation>Otwieranie Portfela <b>%1</b>…</translation> </message> </context> @@ -1990,14 +1969,6 @@ <source>'dash://' is not a valid URI. Use 'dash:' instead.</source> <translation>'Dash: //' nie jest prawidłowym identyfikatorem URI. Zamiast tego użyj 'Dash:'.</translation> </message> - <message> - <source>Cannot process payment request as BIP70 is no longer supported.</source> - <translation>Nie można przetworzyć żądania płatności, ponieważ BIP70 nie jest już obsługiwany.</translation> - </message> - <message> - <source>Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> - <translation>Ze względu na wycofanie wsparcia należy poprosić sprzedawcę o dostarczenie identyfikatora URI zgodnego z BIP21 lub skorzystać z portfela, który nadal obsługuje BIP70.</translation> - </message> <message> <source>URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</source> <translation>URI nie może zostać przeanalizowany! Mogło to być spowodowane przez niewłaściwy adres Dash lub niewłaściwe parametry URI</translation> @@ -2242,10 +2213,6 @@ <source>%1 B</source> <translation>%1 B</translation> </message> - <message> - <source>%1 KB</source> - <translation>%1 KB</translation> - </message> <message> <source>%1 MB</source> <translation>%1 MB</translation> @@ -2571,10 +2538,6 @@ <source>1 &hour</source> <translation>1 &godzinę</translation> </message> - <message> - <source>1 &day</source> - <translation>1 &dzień</translation> - </message> <message> <source>1 &week</source> <translation>1 &tydzień</translation> @@ -2587,26 +2550,6 @@ <source>&Unban</source> <translation>&Miejski</translation> </message> - <message> - <source>Welcome to the %1 RPC console.</source> - <translation>Witaj w konsoli %1 RPC.</translation> - </message> - <message> - <source>Use up and down arrows to navigate history, and %1 to clear screen.</source> - <translation>Użyj strzałek do przewijania historii i %1 aby wyczyścić ekran</translation> - </message> - <message> - <source>Type %1 for an overview of available commands.</source> - <translation>Wpisz %1 aby uzyskać listę dostępnych komend.</translation> - </message> - <message> - <source>For more information on using this console type %1.</source> - <translation>Aby uzyskać więcej informacji jak używać tę konsolę wpisz %1.</translation> - </message> - <message> - <source>WARNING: 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.</source> - <translation>UWAGA: Oszuści często mówią użytkownikom aby wpisywali tutaj komendy, co umożliwia kradzież monet. Nie używaj tej konsoli, jeśli nie rozumiesz funkcji używanych komend.</translation> - </message> <message> <source>In:</source> <translation>Wejście:</translation> @@ -2730,26 +2673,6 @@ <source>Enter a message to attach to the payment request</source> <translation>Wprowadź wiadomość, którą chcesz dołączyć do żądania zapłaty</translation> </message> - <message> - <source>Copy URI</source> - <translation>Kopiuj URI</translation> - </message> - <message> - <source>Copy address</source> - <translation>Kopiuj adres</translation> - </message> - <message> - <source>Copy label</source> - <translation>Kopiuj etykietę</translation> - </message> - <message> - <source>Copy message</source> - <translation>Kopiuj wiadomość</translation> - </message> - <message> - <source>Copy amount</source> - <translation>Kopiuj kwotę</translation> - </message> </context> <context> <name>ReceiveRequestDialog</name> @@ -3389,12 +3312,11 @@ <translation>Wiadomość zweryfikowana.</translation> </message> </context> +<context> + <name>SplashScreen</name> + </context> <context> <name>TrafficGraphWidget</name> - <message> - <source>KB/s</source> - <translation>KB/s</translation> - </message> <message> <source>Total</source> <translation>Całkowity</translation> @@ -3807,50 +3729,6 @@ <source>Min amount</source> <translation>Min suma</translation> </message> - <message> - <source>Abandon transaction</source> - <translation>Porzuć transakcję</translation> - </message> - <message> - <source>Resend transaction</source> - <translation>Wyślij ponownie transakcje</translation> - </message> - <message> - <source>Copy address</source> - <translation>Kopiuj adres</translation> - </message> - <message> - <source>Copy label</source> - <translation>Kopiuj etykietę</translation> - </message> - <message> - <source>Copy amount</source> - <translation>Kopiuj kwotę</translation> - </message> - <message> - <source>Copy transaction ID</source> - <translation>Skopiuj ID transakcji</translation> - </message> - <message> - <source>Copy raw transaction</source> - <translation>Kopiuj surowa transakcje</translation> - </message> - <message> - <source>Copy full transaction details</source> - <translation>Skopiuj wszystkie szczegóły transakcji.</translation> - </message> - <message> - <source>Edit address label</source> - <translation>Zmień nazwę adresu</translation> - </message> - <message> - <source>Show transaction details</source> - <translation>Pokaż szczegóły transakcji</translation> - </message> - <message> - <source>Show address QR code</source> - <translation>Pokaż adres kodu QR</translation> - </message> <message> <source>Export Transaction History</source> <translation>Eksport historii transakcji</translation> @@ -3948,7 +3826,7 @@ Przejdź do Plik > Otwórz portfel, aby załadować portfel. <source>Create a new wallet</source> <translation>Stwórz nowy portfel</translation> </message> -</context> + </context> <context> <name>WalletModel</name> <message> @@ -4273,10 +4151,6 @@ Przejdź do Plik > Otwórz portfel, aby załadować portfel. <source>Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</source> <translation>Portfel jest zamknięty , nie można uzupełnić pul* kluczy! Automatyczne tworzenie kopi zapasowych oraz miksowanie są wyłączone. Otwórz porfel aby uzupełnić pul* kluczy.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -timestampindex</source> - <translation>Musisz odnowić bazę danych używając -reindex aby zmienić -timestampindex</translation> - </message> <message> <source>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <translation>Aby wrócić do trybu bez bez obcinki, musisz odtworzyć bazę danych za pomocą komendy -reindex. Cały blockchain zostanie ponownie ściągnięty.</translation> @@ -4521,14 +4395,6 @@ Przejdź do Plik > Otwórz portfel, aby załadować portfel. <source>You can not start a masternode with wallet enabled.</source> <translation>Nie możesz uruchomić masternode z włączonym portfelem.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -addressindex</source> - <translation>Musisz odnowić bazę danych używając -reindex aby zmienić -addressindex</translation> - </message> - <message> - <source>You need to rebuild the database using -reindex to change -spentindex</source> - <translation>Musisz odnowić bazę danych używając -reindex aby zmienić -spentindex</translation> - </message> <message> <source>no mixing available.</source> <translation>Mieszanie niedostępne.</translation> @@ -4833,10 +4699,6 @@ Przejdź do Plik > Otwórz portfel, aby załadować portfel. <source>Unsupported logging category %s=%s.</source> <translation>Nieobsługiwana kategoria rejestrowania %s=%s.</translation> </message> - <message> - <source>Upgrading txindex database</source> - <translation>Aktualizowanie bazy danych txindex</translation> - </message> <message> <source>Very low number of keys left: %d</source> <translation>Pozostało bardzo mało kluczy: %d</translation> @@ -4869,5 +4731,5 @@ Przejdź do Plik > Otwórz portfel, aby załadować portfel. <source>Your entries added successfully.</source> <translation>Twoje wejścia zostały dodane z powodzeniem.</translation> </message> -</context> + </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/dash_ru.ts b/src/qt/locale/dash_ru.ts index 1ad64f4281261..8aa611db50fd6 100644 --- a/src/qt/locale/dash_ru.ts +++ b/src/qt/locale/dash_ru.ts @@ -94,8 +94,8 @@ <translation>&Правка</translation> </message> <message> - <source>&Show address QR code</source> - <translation>&Показать QR-код адреса</translation> + <source>Show address &QR code</source> + <translation>Показать QR-&код адреса</translation> </message> <message> <source>QR code</source> @@ -107,7 +107,7 @@ </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> + <extracomment>Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</extracomment> <translation>Текст, разделённый запятыми</translation> </message> <message> @@ -313,6 +313,10 @@ </context> <context> <name>BitcoinApplication</name> + <message> + <source>Runaway exception</source> + <translation>Неконтролируемое исключение</translation> + </message> <message> <source>A fatal error occurred. %1 can no longer continue safely and will quit.</source> <translation>Произошла критическая ошибка. Дальнейшая безопасная работа %1 невозможна, программа будет закрыта.</translation> @@ -321,7 +325,11 @@ <source>Internal error</source> <translation>Внутренняя ошибка</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>Произошла внутренняя ошибка. %1 попытается продолжить работу в безопасном режиме. Это неожиданная ошибка, о которой можно сообщить, как описано ниже.</translation> + </message> +</context> <context> <name>BitcoinGUI</name> <message> @@ -348,6 +356,10 @@ <source>Request payments (generates QR codes and dash: URIs)</source> <translation>Запросить платежи (создать QR-коды и dash: URI)</translation> </message> + <message> + <source>Ctrl+Q</source> + <translation>Ctrl+Q</translation> + </message> <message> <source>&Options…</source> <translation>&Параметры…</translation> @@ -664,6 +676,7 @@ </message> <message numerus="yes"> <source>%n active connection(s) to Dash network</source> + <extracomment>A substring of the tooltip.</extracomment> <translation><numerusform>%n активное соединение с сетью Dash</numerusform><numerusform>%n активных соединения с сетью Dash</numerusform><numerusform>%n активных соединений с сетью Dash</numerusform><numerusform>%n активных соединений с сетью Dash</numerusform></translation> </message> <message> @@ -690,6 +703,34 @@ <source>Close All Wallets…</source> <translation>Закрыть все кошельки…</translation> </message> + <message> + <source>Ctrl+Shift+D</source> + <translation>Ctrl+Shift+D</translation> + </message> + <message> + <source>Ctrl+M</source> + <translation>Ctrl+M</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>Нажмите, для других действий</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>Показать вкладку с пирами</translation> + </message> + <message> + <source>Disable network activity</source> + <extracomment>A context menu item.</extracomment> + <translation>Отключить сеть</translation> + </message> + <message> + <source>Enable network activity</source> + <extracomment>A context menu item. The network activity was disabled previously.</extracomment> + <translation>Включить сеть</translation> + </message> <message> <source>Syncing Headers (%1%)…</source> <translation>Синхронизация заголовков (%1%)…</translation> @@ -924,28 +965,32 @@ <translation>Подтверждено</translation> </message> <message> - <source>Copy address</source> - <translation>Копировать адрес</translation> + <source>Copy amount</source> + <translation>Скопировать сумму</translation> </message> <message> - <source>Copy label</source> - <translation>Копировать метку</translation> + <source>&Copy address</source> + <translation>&Копировать адрес</translation> </message> <message> - <source>Copy amount</source> - <translation>Скопировать сумму</translation> + <source>Copy &label</source> + <translation>Копировать &метку</translation> + </message> + <message> + <source>Copy &amount</source> + <translation>Скопировать &сумму</translation> </message> <message> - <source>Copy transaction ID</source> - <translation>Скопировать ID транзакции</translation> + <source>Copy transaction &ID and output index</source> + <translation>Скопировать ID &транзакции</translation> </message> <message> - <source>Lock unspent</source> - <translation>Заблокировать непотраченное</translation> + <source>L&ock unspent</source> + <translation>&Заблокировать непотраченное</translation> </message> <message> - <source>Unlock unspent</source> - <translation>Разблокировать непотраченное</translation> + <source>&Unlock unspent</source> + <translation>&Разблокировать непотраченное</translation> </message> <message> <source>Copy quantity</source> @@ -1034,8 +1079,14 @@ </context> <context> <name>CreateWalletActivity</name> + <message> + <source>Create Wallet</source> + <extracomment>Title of window indicating the progress of creation of a new wallet.</extracomment> + <translation>Создать кошелёк</translation> + </message> <message> <source>Creating Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</extracomment> <translation>Создается кошелёк<b>%1</b>…</translation> </message> <message> @@ -1089,11 +1140,23 @@ <source>Make Blank Wallet</source> <translation>Создать пустой кошелёк</translation> </message> + <message> + <source>Use descriptors for scriptPubKey management. This feature is well-tested but still considered experimental and not recommended for use yet.</source> + <translation>Используйте дескрипторы для управления scriptPubKey. Эта функция хорошо протестирована, но все еще считается экспериментальной и пока не рекомендуется к использованию.</translation> + </message> + <message> + <source>Descriptor Wallet (EXPERIMENTAL)</source> + <translation>Descriptor Wallet (ЭКСПЕРИМЕНТАЛЬНО)</translation> + </message> <message> <source>Create</source> <translation>Создать</translation> </message> - </context> + <message> + <source>Compiled without sqlite support (required for descriptor wallets)</source> + <translation>Скомпилировано без поддержки sqlite (требуется для дескрипторных кошельков).</translation> + </message> +</context> <context> <name>EditAddressDialog</name> <message> @@ -1517,8 +1580,14 @@ <source>default wallet</source> <translation>кошелек по умолчанию</translation> </message> + <message> + <source>Open Wallet</source> + <extracomment>Title of window indicating the progress of opening of a wallet.</extracomment> + <translation>Открыть кошелёк</translation> + </message> <message> <source>Opening Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</extracomment> <translation>Открывается кошелёк<b>%1</b>…</translation> </message> </context> @@ -1586,6 +1655,26 @@ <extracomment>Tooltip text for Options window setting that sets the number of script verification threads. Explains that negative values mean to leave these many cores free to the system.</extracomment> <translation>Установить количество потоков проверки скриптов. Отрицательные значения соответствуют количеству ядер, которые останутся доступными для системы.</translation> </message> + <message> + <source>This allows you or a third party tool to communicate with the node through command-line and JSON-RPC commands.</source> + <extracomment>Tooltip text for Options window setting that enables the RPC server.</extracomment> + <translation>Это позволит вам или стороннему инструменту взаимодействовать с нодой через команды командной строки и JSON-RPC.</translation> + </message> + <message> + <source>Enable R&PC server</source> + <extracomment>An Options window setting to enable the RPC server.</extracomment> + <translation>Включить сервер R&PC</translation> + </message> + <message> + <source>Whether to set subtract fee from amount as default or not.</source> + <extracomment>Tooltip text for Options window setting that sets subtracting the fee from a sending amount as default.</extracomment> + <translation>Вычитать комиссию из суммы по умолчанию или нет</translation> + </message> + <message> + <source>Subtract &fee from amount by default</source> + <extracomment>An Options window setting to set subtracting the fee from a sending amount as default.</extracomment> + <translation>Вычесть &комиссию из суммы по умолчанию</translation> + </message> <message> <source>Whether to keep the specified custom change address or not.</source> <translation>Сохранять указанный свой адрес для сдачи или нет.</translation> @@ -2211,6 +2300,10 @@ https://explore.transifex.com/dash/dash/</translation> <source> * Sends %1 to %2</source> <translation> * отправляет %1 на %2</translation> </message> + <message> + <source>own address</source> + <translation>свой адрес</translation> + </message> <message> <source>Unable to calculate transaction fee or total transaction amount.</source> <translation>Невозможно вычислить комиссию или полную сумму транзакции.</translation> @@ -2239,6 +2332,10 @@ https://explore.transifex.com/dash/dash/</translation> <source>Transaction still needs signature(s).</source> <translation>Транзакции все еще нужны подписи.</translation> </message> + <message> + <source>(But no wallet is loaded.)</source> + <translation>(Нету загруженных кошельков)</translation> + </message> <message> <source>(But this wallet cannot sign transactions.)</source> <translation>(Но этот кошелёк не может подписывать транзакции.)</translation> @@ -2275,12 +2372,10 @@ https://explore.transifex.com/dash/dash/</translation> <translation>'dash://' не является валидным URI. Используйте 'dash:'.</translation> </message> <message> - <source>Cannot process payment request as BIP70 is no longer supported.</source> - <translation>Невозможно обработать запрос платежа так как BIP70 больше не поддерживается.</translation> - </message> - <message> - <source>Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> - <translation>В связи с прекращением поддержки следует запросить у мерчанта URI, совместимый с BIP21, или использовать кошелек, который продолжает поддерживать BIP70.</translation> + <source>Cannot process payment request as BIP70 is no longer supported. +Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> + <translation>Невозможно обработать запрос так как BIP70 больше не поддерживается. +В связи с прекращением поддержки следует запросить у мерчанта URI, совместимый с BIP21, или использовать кошелек, который продолжает поддерживать BIP70.</translation> </message> <message> <source>URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</source> @@ -2308,6 +2403,16 @@ https://explore.transifex.com/dash/dash/</translation> <extracomment>Title of Peers Table column which contains a unique number used to identify a connection.</extracomment> <translation>Пир</translation> </message> + <message> + <source>Age</source> + <extracomment>Title of Peers Table column which indicates the duration (length of time) since the peer connection started.</extracomment> + <translation>Возраст</translation> + </message> + <message> + <source>Direction</source> + <extracomment>Title of Peers Table column which indicates the direction the peer connection was initiated from.</extracomment> + <translation>Направление</translation> + </message> <message> <source>Type</source> <extracomment>Title of Peers Table column which describes the type of peer connection. The "type" describes why the connection exists.</extracomment> @@ -2333,6 +2438,16 @@ https://explore.transifex.com/dash/dash/</translation> <extracomment>Title of Peers Table column which states the network the peer connected through.</extracomment> <translation>Сеть</translation> </message> + <message> + <source>Inbound</source> + <extracomment>An Inbound Connection from a Peer.</extracomment> + <translation>Входящее</translation> + </message> + <message> + <source>Outbound</source> + <extracomment>An Outbound Connection to a Peer.</extracomment> + <translation>Исходящее</translation> + </message> </context> <context> <name>Proposal</name> @@ -2392,7 +2507,7 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Вы хотите сбросить настройки в значения по умолчанию или прервать без внесения изменений?</translation> </message> <message> - <source>A fatal error occured. Check that settings file is writable, or try running with -nosettings.</source> + <source>A fatal error occurred. Check that settings file is writable, or try running with -nosettings.</source> <extracomment>Explanatory text shown on startup when the settings file could not be written. Prompts user to check that we have the ability to write to the file. Explains that the user has the option of running without a settings file.</extracomment> <translation>Произошла критическая ошибка. Убедитесь, что файл настроек доступен для записи или попробуйте запустить с флагом -nosettings.</translation> </message> @@ -2496,6 +2611,10 @@ https://explore.transifex.com/dash/dash/</translation> <source>This can also be adjusted later in the "Appearance" tab of the preferences.</source> <translation>Вы также можете поменять их позже на закладке "Внешний вид" в настройках.</translation> </message> + <message> + <source>Ctrl+W</source> + <translation>Ctrl+W</translation> + </message> <message> <source>Unroutable</source> <translation>Немаршрутизируемый</translation> @@ -2514,6 +2633,31 @@ https://explore.transifex.com/dash/dash/</translation> <extracomment>An outbound connection to a peer. An outbound connection is a connection initiated by us.</extracomment> <translation>Исходящее</translation> </message> + <message> + <source>Full Relay</source> + <extracomment>Peer connection type that relays all network information.</extracomment> + <translation>Полная трансляция</translation> + </message> + <message> + <source>Block Relay</source> + <extracomment>Peer connection type that relays network information about blocks and not transactions or addresses.</extracomment> + <translation>Трансляция блоков</translation> + </message> + <message> + <source>Manual</source> + <extracomment>Peer connection type established manually through one of several methods.</extracomment> + <translation>Ручное</translation> + </message> + <message> + <source>Feeler</source> + <extracomment>Short-lived peer connection type that tests the aliveness of known addresses.</extracomment> + <translation>Пробное</translation> + </message> + <message> + <source>Address Fetch</source> + <extracomment>Short-lived peer connection type that solicits known addresses from a peer.</extracomment> + <translation>Запрос адресов</translation> + </message> <message> <source>%1 d</source> <translation>%1 д</translation> @@ -2575,8 +2719,8 @@ https://explore.transifex.com/dash/dash/</translation> <translation>%1 Б</translation> </message> <message> - <source>%1 KB</source> - <translation>%1 КБ</translation> + <source>%1 kB</source> + <translation>%1 кБ</translation> </message> <message> <source>%1 MB</source> @@ -2634,7 +2778,7 @@ https://explore.transifex.com/dash/dash/</translation> </message> <message> <source>PNG Image</source> - <extracomment>Expanded name of the PNG file format. See https://en.wikipedia.org/wiki/Portable_Network_Graphics</extracomment> + <extracomment>Expanded name of the PNG file format. See: https://en.wikipedia.org/wiki/Portable_Network_Graphics.</extracomment> <translation>PNG изображение</translation> </message> </context> @@ -2744,6 +2888,22 @@ https://explore.transifex.com/dash/dash/</translation> <source>Version</source> <translation>Версия</translation> </message> + <message> + <source>Whether the peer requested us to relay transactions.</source> + <translation>Запрашивал ли пир ретрансляцию транзакций.</translation> + </message> + <message> + <source>Wants Tx Relay</source> + <translation>Хочет ретрансляцию Tx</translation> + </message> + <message> + <source>High bandwidth BIP152 compact block relay: %1</source> + <translation>Компактное блочное реле BIP152 с высокой пропускной способностью: %1</translation> + </message> + <message> + <source>High Bandwidth</source> + <translation>Высокая пропускная способность</translation> + </message> <message> <source>Starting Block</source> <translation>Начальный блок</translation> @@ -2756,10 +2916,19 @@ https://explore.transifex.com/dash/dash/</translation> <source>Synced Blocks</source> <translation>Синхронизированные блоки</translation> </message> + <message> + <source>Elapsed time since a novel block passing initial validity checks was received from this peer.</source> + <translation>Прошло время с тех пор, как от этого однорангового узла был получен новый блок, прошедший первоначальную проверку на достоверность.</translation> + </message> <message> <source>Last Block</source> <translation>Последний блок</translation> </message> + <message> + <source>Elapsed time since a novel transaction accepted into our mempool was received from this peer.</source> + <extracomment>Tooltip text for the Last Transaction field in the peer details area.</extracomment> + <translation>Прошло время с тех пор, как от этого однорангового узла была получена новая транзакция, принятая в наш mempool.</translation> + </message> <message> <source>Last Transaction</source> <translation>Последняя транзакция</translation> @@ -2772,6 +2941,26 @@ https://explore.transifex.com/dash/dash/</translation> <source>Mapped AS</source> <translation>Сопоставление AS</translation> </message> + <message> + <source>Whether we relay addresses to this peer.</source> + <extracomment>Tooltip text for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</extracomment> + <translation>Будем ли мы передавать адреса этому пиру.</translation> + </message> + <message> + <source>Address Relay</source> + <extracomment>Text title for the Address Relay field in the peer details area, which displays whether we relay addresses to this peer (Yes/No).</extracomment> + <translation>Трансляция адресов</translation> + </message> + <message> + <source>Addresses Processed</source> + <extracomment>Text title for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</extracomment> + <translation>Обработано адресов</translation> + </message> + <message> + <source>Addresses Rate-Limited</source> + <extracomment>Text title for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</extracomment> + <translation>Отброшено адресов</translation> + </message> <message> <source>Rescan blockchain files 1</source> <translation>Пересканировать цепочку блоков 1</translation> @@ -2868,6 +3057,22 @@ https://explore.transifex.com/dash/dash/</translation> <source>PoSe Score</source> <translation>PoSe штраф</translation> </message> + <message> + <source>The transport layer version: %1</source> + <translation>Версия транспортного уровня: %1</translation> + </message> + <message> + <source>Transport</source> + <translation>Транспорт</translation> + </message> + <message> + <source>The BIP324 session ID string in hex.</source> + <translation>Строка идентификатора сеанса BIP324 в HEX формате.</translation> + </message> + <message> + <source>Session ID</source> + <translation>ID сессии</translation> + </message> <message> <source>The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS.</source> <translation>Сетевой протокол, через который подсоединён этот пир: IPv4, IPv6, Onion, I2P или CJDNS.</translation> @@ -2876,6 +3081,10 @@ https://explore.transifex.com/dash/dash/</translation> <source>Permissions</source> <translation>Разрешения</translation> </message> + <message> + <source>The direction and type of peer connection: %1</source> + <translation>Направление и тип одноранговой связи: %1</translation> + </message> <message> <source>Direction/Type</source> <translation>Направление/тип</translation> @@ -2920,6 +3129,16 @@ https://explore.transifex.com/dash/dash/</translation> <source>&Wallet Repair</source> <translation>Ремонт &кошелька</translation> </message> + <message> + <source>The total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</source> + <extracomment>Tooltip text for the Addresses Processed field in the peer details area, which displays the total number of addresses received from this peer that were processed (excludes addresses that were dropped due to rate-limiting).</extracomment> + <translation>Общее количество адресов, полученных от этого узла и обработанных (не включая адреса, отброшенные из-за ограничения скорости).</translation> + </message> + <message> + <source>The total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</source> + <extracomment>Tooltip text for the Addresses Rate-Limited field in the peer details area, which displays the total number of addresses received from this peer that were dropped (not processed) due to rate-limiting.</extracomment> + <translation>Общее количество адресов, полученных от этого пира и отброшенных (не обработанных) из-за ограничения скорости.</translation> + </message> <message> <source>Wallet repair options.</source> <translation>Варианты ремонта кошелька.</translation> @@ -2932,14 +3151,60 @@ https://explore.transifex.com/dash/dash/</translation> <source>-reindex: Rebuild block chain index from current blk000??.dat files.</source> <translation>-reindex: Перестроить индекс цепочки блоков из текущих файлов blk000??.dat.</translation> </message> + <message> + <source>Inbound: initiated by peer</source> + <extracomment>Explanatory text for an inbound peer connection.</extracomment> + <translation>Входящее: инициируются одноранговым узлом</translation> + </message> + <message> + <source>Outbound Full Relay: default</source> + <extracomment>Explanatory text for an outbound peer connection that relays all network information. This is the default behavior for outbound connections.</extracomment> + <translation>Исходящее полное соединение: по умолчанию</translation> + </message> + <message> + <source>Outbound Block Relay: does not relay transactions or addresses</source> + <extracomment>Explanatory text for an outbound peer connection that relays network information about blocks and not transactions or addresses.</extracomment> + <translation>Исходящее соединение для передачи блоков: не передает транзакции или адреса</translation> + </message> + <message> + <source>Outbound Manual: added using RPC %1 or %2/%3 configuration options</source> + <extracomment>Explanatory text for an outbound peer connection that was established manually through one of several methods. The numbered arguments are stand-ins for the methods available to establish manual connections.</extracomment> + <translation>Исходящее соединение вручную: добавлено с использованием RPC %1 или параметров конфигурации %2/%3</translation> + </message> + <message> + <source>Outbound Feeler: short-lived, for testing addresses</source> + <extracomment>Explanatory text for a short-lived outbound peer connection that is used to test the aliveness of known addresses.</extracomment> + <translation>Исходящее тестовое соединение: кратковременное, для проверки активности адресов</translation> + </message> + <message> + <source>Outbound Address Fetch: short-lived, for soliciting addresses</source> + <extracomment>Explanatory text for a short-lived outbound peer connection that is used to request addresses from a peer.</extracomment> + <translation>Исходящее соединение для получения адресов: кратковременное, используется для запроса адресов у узла."</translation> + </message> + <message> + <source>To</source> + <translation>Для</translation> + </message> + <message> + <source>we selected the peer for high bandwidth relay</source> + <translation>Мы выбрали этот узел для высокоскоростной передачи данных</translation> + </message> <message> <source>From</source> <translation>От</translation> </message> + <message> + <source>the peer selected us for high bandwidth relay</source> + <translation>Этот узел выбрал нас для высокоскоростной передачи данных.</translation> + </message> <message> <source>No</source> <translation>Нет</translation> </message> + <message> + <source>no high bandwidth relay selected</source> + <translation>Высокоскоростная передача данных не выбрана.</translation> + </message> <message> <source>&Disconnect</source> <translation>&Отключить</translation> @@ -2952,10 +3217,6 @@ https://explore.transifex.com/dash/dash/</translation> <source>1 &hour</source> <translation>1 &час</translation> </message> - <message> - <source>1 &day</source> - <translation>1 &день</translation> - </message> <message> <source>1 &week</source> <translation>1 &неделя</translation> @@ -2968,26 +3229,6 @@ https://explore.transifex.com/dash/dash/</translation> <source>&Unban</source> <translation>&Разблокировать</translation> </message> - <message> - <source>Welcome to the %1 RPC console.</source> - <translation>Добро пожаловать в RPC-консоль %1.</translation> - </message> - <message> - <source>Use up and down arrows to navigate history, and %1 to clear screen.</source> - <translation>Используйте стрелки вверх и вниз для просмотра истории и %1 для очистки экрана.</translation> - </message> - <message> - <source>Type %1 for an overview of available commands.</source> - <translation>Введите %1 для просмотра доступных команд.</translation> - </message> - <message> - <source>For more information on using this console type %1.</source> - <translation>Для получения дополнительной информации по использованию этой консоли введите %1.</translation> - </message> - <message> - <source>WARNING: 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.</source> - <translation>ВНИМАНИЕ: Мошенники могут попросить Вас ввести сюда команды и таким образом украсть Ваши средства. Не используйте эту консоль, если Вы не до конца понимаете последствия вводимых команд.</translation> - </message> <message> <source>In:</source> <translation>Вход:</translation> @@ -3008,10 +3249,101 @@ https://explore.transifex.com/dash/dash/</translation> <source>Executing command without any wallet</source> <translation>Выполнение команд без какого либо кошелька</translation> </message> + <message> + <source>Ctrl++</source> + <extracomment>Main shortcut to increase the RPC console font size.</extracomment> + <translation>Ctrl++</translation> + </message> + <message> + <source>Ctrl+=</source> + <extracomment>Secondary shortcut to increase the RPC console font size.</extracomment> + <translation>Ctrl+=</translation> + </message> + <message> + <source>Ctrl+-</source> + <extracomment>Main shortcut to decrease the RPC console font size.</extracomment> + <translation>Ctrl+-</translation> + </message> + <message> + <source>Ctrl+_</source> + <extracomment>Secondary shortcut to decrease the RPC console font size.</extracomment> + <translation>Ctrl+_</translation> + </message> + <message> + <source>Ctrl+Shift+I</source> + <translation>Ctrl+Shift+I</translation> + </message> + <message> + <source>Ctrl+Shift+C</source> + <translation>Ctrl+Shift+C</translation> + </message> + <message> + <source>Ctrl+Shift+G</source> + <translation>Ctrl+Shift+G</translation> + </message> + <message> + <source>Ctrl+Shift+P</source> + <translation>Ctrl+Shift+P</translation> + </message> + <message> + <source>Ctrl+Shift+R</source> + <translation>Ctrl+Shift+R</translation> + </message> <message> <source>Executing command using "%1" wallet</source> <translation>Выполнение команд, используя "%1" кошелек</translation> </message> + <message> + <source>detecting: peer could be v1 or v2</source> + <extracomment>Explanatory text for "detecting" transport type.</extracomment> + <translation>Обнаружение: узел может использовать версию протокола v1 или v2.</translation> + </message> + <message> + <source>v1: unencrypted, plaintext transport protocol</source> + <extracomment>Explanatory text for v1 transport type.</extracomment> + <translation>v1: нешифрованный протокол передачи данных в открытом виде.</translation> + </message> + <message> + <source>v2: BIP324 encrypted transport protocol</source> + <extracomment>Explanatory text for v2 transport type.</extracomment> + <translation>v2: зашифрованный протокол передачи данных BIP324.</translation> + </message> + <message> + <source>&Copy address</source> + <extracomment>Context menu action to copy the address of a peer</extracomment> + <translation>&Копировать адрес</translation> + </message> + <message> + <source>1 d&ay</source> + <translation>1 &день</translation> + </message> + <message> + <source>&Copy IP/Netmask</source> + <extracomment>Context menu action to copy the IP/Netmask of a banned peer. IP/Netmask is the combination of a peer's IP address and its Netmask. For IP address see: https://en.wikipedia.org/wiki/IP_address</extracomment> + <translation>&Копировать IP/Маску сети</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>Добро пожаловать в RPC-консоль %1. +Используйте стрелки вверх и вниз для навигации по истории, и %2 для очистки экрана. +Используйте %3 и %4 для увеличения или уменьшения размера шрифта. +Введите %5 для просмотра списка доступных команд. +Для получения дополнительной информации о работе с этой консолью введите %6. + +%7ВНИМАНИЕ: Мошенники активно используют команды, вводимые в этой консоли, чтобы похищать содержимое кошельков. Не используйте эту консоль без полного понимания последствий выполнения команд.%8</translation> + </message> + <message> + <source>Executing…</source> + <extracomment>A console message indicating an entered command is currently being executed.</extracomment> + <translation>Выполняется…</translation> + </message> <message> <source>(peer: %1)</source> <translation>(id пира: %1)</translation> @@ -3032,6 +3364,10 @@ https://explore.transifex.com/dash/dash/</translation> <source>Verified Masternode</source> <translation>Проверенная мастернода</translation> </message> + <message> + <source>Yes</source> + <translation>Да</translation> + </message> <message> <source>Unknown</source> <translation>Неизвестно</translation> @@ -3120,30 +3456,34 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Введите сообщение для прикрепления к запросу платежа</translation> </message> <message> - <source>Copy URI</source> - <translation>Копировать URI</translation> + <source>Copy &URI</source> + <translation>Копировать &URI</translation> </message> <message> - <source>Copy address</source> - <translation>Копировать адрес</translation> + <source>&Copy address</source> + <translation>&Копировать адрес</translation> </message> <message> - <source>Copy label</source> - <translation>Копировать метку</translation> + <source>Copy &label</source> + <translation>Копировать &метку</translation> </message> <message> - <source>Copy message</source> - <translation>Копировать сообщение</translation> + <source>Copy &message</source> + <translation>Копировать &сообщение</translation> </message> <message> - <source>Copy amount</source> - <translation>Скопировать сумму</translation> + <source>Copy &amount</source> + <translation>Скопировать &сумму</translation> </message> <message> <source>Could not unlock wallet.</source> <translation>Не удается разблокировать кошелёк.</translation> </message> - </context> + <message> + <source>Could not generate new address</source> + <translation>Не удалось сгенерировать новый адрес</translation> + </message> +</context> <context> <name>ReceiveRequestDialog</name> <message> @@ -3835,11 +4175,22 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Сообщение проверено.</translation> </message> </context> +<context> + <name>SplashScreen</name> + <message> + <source>(press q to shutdown and continue later)</source> + <translation>(нажмите q для завершения и продолжите позже)</translation> + </message> + <message> + <source>press q to shutdown</source> + <translation>нажмите q для завершения</translation> + </message> +</context> <context> <name>TrafficGraphWidget</name> <message> - <source>KB/s</source> - <translation>КБ/сек</translation> + <source>kB/s</source> + <translation>кБ/с</translation> </message> <message> <source>Total</source> @@ -3916,6 +4267,10 @@ https://explore.transifex.com/dash/dash/</translation> <source>Generated</source> <translation>Сгенерированно</translation> </message> + <message> + <source>Platform Transfer</source> + <translation>Перевод платформы</translation> + </message> <message> <source>From</source> <translation>От</translation> @@ -4114,6 +4469,10 @@ https://explore.transifex.com/dash/dash/</translation> <source>Mined</source> <translation>Добыто</translation> </message> + <message> + <source>Platform Transfer</source> + <translation>Перевод платформы</translation> + </message> <message> <source>%1 Mixing</source> <translation>%1 Перемешивание</translation> @@ -4241,6 +4600,10 @@ https://explore.transifex.com/dash/dash/</translation> <source>Mined</source> <translation>Добытые</translation> </message> + <message> + <source>Platform Transfer</source> + <translation>Перевод платформы</translation> + </message> <message> <source>Other</source> <translation>Другое</translation> @@ -4254,48 +4617,48 @@ https://explore.transifex.com/dash/dash/</translation> <translation>Мин. сумма</translation> </message> <message> - <source>Abandon transaction</source> - <translation>Сбросить транзакцию</translation> + <source>&Copy address</source> + <translation>Копировать &адрес</translation> </message> <message> - <source>Resend transaction</source> - <translation>Отправить транзакцию еще раз</translation> + <source>Copy &label</source> + <translation>Копировать &метку</translation> </message> <message> - <source>Copy address</source> - <translation>Копировать адрес</translation> + <source>Copy &amount</source> + <translation>Скопировать &сумму</translation> </message> <message> - <source>Copy label</source> - <translation>Копировать метку</translation> + <source>Copy transaction &ID</source> + <translation>Скопировать ID &транзакции</translation> </message> <message> - <source>Copy amount</source> - <translation>Скопировать сумму</translation> + <source>Copy &raw transaction</source> + <translation>Скопировать код тран&закции</translation> </message> <message> - <source>Copy transaction ID</source> - <translation>Скопировать ID транзакции</translation> + <source>Copy full transaction &details</source> + <translation>Скопировать все &детали транзакции</translation> </message> <message> - <source>Copy raw transaction</source> - <translation>Скопировать код транзакции</translation> + <source>&Show transaction details</source> + <translation>&Показать подробности транзакции</translation> </message> <message> - <source>Copy full transaction details</source> - <translation>Скопировать все детали транзакции</translation> + <source>A&bandon transaction</source> + <translation>С&бросить транзакцию</translation> </message> <message> - <source>Edit address label</source> - <translation>Изменить метку адреса</translation> + <source>Rese&nd transaction</source> + <translation>&Отправить транзакцию еще раз</translation> </message> <message> - <source>Show transaction details</source> - <translation>Показать подробности транзакции</translation> + <source>&Edit address label</source> + <translation>&Изменить метку адреса</translation> </message> <message> - <source>Show address QR code</source> - <translation>Показать QR-код адреса</translation> + <source>Show address &QR code</source> + <translation>Показать QR-&код адреса</translation> </message> <message> <source>Export Transaction History</source> @@ -4303,7 +4666,7 @@ https://explore.transifex.com/dash/dash/</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> + <extracomment>Expanded name of the CSV file format. See: https://en.wikipedia.org/wiki/Comma-separated_values.</extracomment> <translation>Текст, разделённый запятыми</translation> </message> <message> @@ -4407,6 +4770,30 @@ Go to File > Open Wallet to load a wallet. <source>Create a new wallet</source> <translation>Создать новый кошелёк</translation> </message> + <message> + <source>Error</source> + <translation>Ошибка</translation> + </message> + <message> + <source>Unable to decode PSBT from clipboard (invalid base64)</source> + <translation>Невозможно декодировать PSBT из буфера обмена (некорректный base64)</translation> + </message> + <message> + <source>Load Transaction Data</source> + <translation>Загрузить данные транзакции</translation> + </message> + <message> + <source>Partially Signed Transaction (*.psbt)</source> + <translation>Частично подписанная транзакция (*.psbt)</translation> + </message> + <message> + <source>PSBT file must be smaller than 100 MiB</source> + <translation>Файл PSBT должен быть меньше 100 МиБ</translation> + </message> + <message> + <source>Unable to decode PSBT</source> + <translation>Невозможно декодировать PSBT</translation> + </message> </context> <context> <name>WalletModel</name> @@ -4433,35 +4820,11 @@ Go to File > Open Wallet to load a wallet. <source>Selected amount:</source> <translation>Сумма выбранных:</translation> </message> - <message> - <source>Unable to decode PSBT from clipboard (invalid base64)</source> - <translation>Невозможно декодировать PSBT из буфера обмена (некорректный base64)</translation> - </message> - <message> - <source>Load Transaction Data</source> - <translation>Загрузить данные транзакции</translation> - </message> - <message> - <source>Partially Signed Transaction (*.psbt)</source> - <translation>Частично подписанная транзакция (*.psbt)</translation> - </message> - <message> - <source>Unable to decode PSBT</source> - <translation>Невозможно декодировать PSBT</translation> - </message> <message> <source>Wallet Data</source> <extracomment>Name of the wallet data file format.</extracomment> <translation>Данные кошелька</translation> </message> - <message> - <source>Error</source> - <translation>Ошибка</translation> - </message> - <message> - <source>PSBT file must be smaller than 100 MiB</source> - <translation>Файл PSBT должен быть меньше 100 МиБ</translation> - </message> <message> <source>Backup Wallet</source> <translation>Сделать резервную копию кошелька</translation> @@ -4553,6 +4916,18 @@ Go to File > Open Wallet to load a wallet. <source>Error reading from database, shutting down.</source> <translation>Ошибка чтения базы данных, завершение работы.</translation> </message> + <message> + <source>Error: Missing checksum</source> + <translation>Ошибка: Отсутствует контрольная сумма</translation> + </message> + <message> + <source>Error: Unable to parse version %u as a uint32_t</source> + <translation>Ошибка: Не удалось проанализировать версию %u как uint32_t</translation> + </message> + <message> + <source>Error: Unable to write record to new wallet</source> + <translation>Ошибка: не удалось импортировать данные в новый wallet.</translation> + </message> <message> <source>Failed to listen on any port. Use -listen=0 if you want this.</source> <translation>Не удалось начать прослушивание на порту. Используйте -listen=0, если вас это устраивает.</translation> @@ -4769,10 +5144,6 @@ Go to File > Open Wallet to load a wallet. <source>Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</source> <translation>Кошелек заблокирован, невозможно пополнить пул ключей! Автоматические резервные копии и перемешивание отключены. Пожалуйста, разблокируйте кошелек для пополнения пула ключей.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -timestampindex</source> - <translation>Вам необходимо пересобрать базы данных с помощью -reindex, чтобы изменить -timestampindex</translation> - </message> <message> <source>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <translation>Вам необходимо пересоздать базы данных, запустив клиент с ключом -reindex, чтобы вернуться в полный режим. Это приведет к повторному скачиванию всей цепи блоков.</translation> @@ -4817,14 +5188,34 @@ Go to File > Open Wallet to load a wallet. <source>Error upgrading evo database</source> <translation>Ошибка обновления базы данных evo</translation> </message> + <message> + <source>Error: Couldn't create cursor into database</source> + <translation>Ошибка: Не удалось создать cursor в базе данных</translation> + </message> <message> <source>Error: Disk space is low for %s</source> <translation>Ошибка: мало места на диске для %s</translation> </message> + <message> + <source>Error: Dumpfile checksum does not match. Computed %s, expected %s</source> + <translation>Ошибка: Контрольная сумма файла дампа не совпадает. Вычисленный %s, ожидаемый %s</translation> + </message> + <message> + <source>Error: Got key that was not hex: %s</source> + <translation>Ошибка: Получен ключ, который не был HEX: %s</translation> + </message> + <message> + <source>Error: Got value that was not hex: %s</source> + <translation>Ошибка: Получено значение, которое не было HEX: %s</translation> + </message> <message> <source>Error: Keypool ran out, please call keypoolrefill first</source> <translation>Ошибка: Не осталось ключей, пожалуйста, выполните команду keypoolrefill</translation> </message> + <message> + <source>Error: No addresses available.</source> + <translation>Ошибка: Нет доступных адресов.</translation> + </message> <message> <source>Exceeded max tries.</source> <translation>Превышено максимальное количество попыток.</translation> @@ -4853,6 +5244,10 @@ Go to File > Open Wallet to load a wallet. <source>Failed to verify database</source> <translation>Ошибка проверки базы данных</translation> </message> + <message> + <source>Fee rate (%s) is lower than the minimum fee rate setting (%s)</source> + <translation>Указанная комиссия (%s) ниже минимальной установленной комиссии (%s)</translation> + </message> <message> <source>Found enough users, signing…</source> <translation>Найдено достаточное количество участников, подписываем…</translation> @@ -4861,6 +5256,10 @@ Go to File > Open Wallet to load a wallet. <source>Ignoring duplicate -wallet %s.</source> <translation>Игнорирование дублирования -wallet %s.</translation> </message> + <message> + <source>Input not found or already spent</source> + <translation>Вход не найден или уже израсходован</translation> + </message> <message> <source>Invalid P2P permission: '%s'</source> <translation>Некорректные разрешения P2P : '%s'</translation> @@ -4889,6 +5288,10 @@ Go to File > Open Wallet to load a wallet. <source>Mixing in progress…</source> <translation>Выполняется перемешивание…</translation> </message> + <message> + <source>No addresses available</source> + <translation>Нету доступных адресов</translation> + </message> <message> <source>No errors detected.</source> <translation>Ошибок не обнаружено.</translation> @@ -5001,6 +5404,14 @@ Go to File > Open Wallet to load a wallet. <source>Unable to generate initial keys</source> <translation>Не удалось сгенерировать начальные ключи</translation> </message> + <message> + <source>Unable to open %s for writing</source> + <translation>Невозможно открыть %s для записи</translation> + </message> + <message> + <source>Unable to parse -maxuploadtarget: '%s' (possible integer overflow?)</source> + <translation>Невозможно пропарсить -maxuploadtarget: '%s' (возможно integer overflow?)</translation> + </message> <message> <source>Unknown -blockfilterindex value %s.</source> <translation>Неизвестное значение -blockfilterindex %s.</translation> @@ -5037,14 +5448,6 @@ Go to File > Open Wallet to load a wallet. <source>You can not start a masternode with wallet enabled.</source> <translation>Вы не можете запустить мастерноду с включенным кошельком.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -addressindex</source> - <translation>Вам необходимо пересобрать базы данных с помощью -reindex, чтобы изменить -addressindex</translation> - </message> - <message> - <source>You need to rebuild the database using -reindex to change -spentindex</source> - <translation>Вам необходимо пересобрать базы данных с помощью -reindex, чтобы изменить -spentindex</translation> - </message> <message> <source>no mixing available.</source> <translation>перемешивание недоступно.</translation> @@ -5061,10 +5464,30 @@ Go to File > Open Wallet to load a wallet. <source>%s uses exact denominated amounts to send funds, you might simply need to mix some more coins.</source> <translation>%s использует только номиналы, возможно, Вам просто нужно перемешать немного больше монет.</translation> </message> + <message> + <source>-reindex-chainstate option is not compatible with -blockfilterindex. Please temporarily disable blockfilterindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <translation>опция -reindex-chainstate несовместима с -blockfilterindex. Пожалуйста, временно отключите blockfilterindex при использовании -reindex-chainstate или замените -reindex-chainstate на -reindex для полного восстановления всех индексов.</translation> + </message> + <message> + <source>-reindex-chainstate option is not compatible with -coinstatsindex. Please temporarily disable coinstatsindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <translation>Опция -reindex-chainstate несовместима с -coinstatsindex. Пожалуйста, временно отключите coinstatsindex при использовании -reindex-chainstate или замените -reindex-chainstate на -reindex для полного восстановления всех индексов.</translation> + </message> + <message> + <source>-reindex-chainstate option is not compatible with -txindex. Please temporarily disable txindex while using -reindex-chainstate, or replace -reindex-chainstate with -reindex to fully rebuild all indexes.</source> + <translation>Опция -reindex-chainstate несовместима с -txindex. Пожалуйста, временно отключите txindex при использовании -reindex-chainstate или замените -reindex-chainstate на -reindex для полного восстановления всех индексов.</translation> + </message> + <message> + <source>Cannot downgrade wallet from version %i to version %i. Wallet version unchanged.</source> + <translation>Невозможно понизить версию кошелька с %i до %i. Версия кошелька не изменена.</translation> + </message> <message> <source>Cannot obtain a lock on data directory %s. %s is probably already running.</source> <translation>Не удалось установить блокировку на каталог данных %s. Возможно, %s уже запущен.</translation> </message> + <message> + <source>Cannot upgrade a non HD wallet from version %i to version %i which is non-HD wallet. Use upgradetohd RPC</source> + <translation>Невозможно обновить не-HD кошелек с версии %i до версии %i, которая также является не-HD кошельком. Используйте команду upgradetohd RPC.</translation> + </message> <message> <source>Distributed under the MIT software license, see the accompanying file %s or %s</source> <translation>Распространяется под лицензией на программное обеспечение MIT, смотрите прилагаемый файл %s или %s.</translation> @@ -5073,14 +5496,66 @@ Go to File > Open Wallet to load a wallet. <source>Error loading %s: You can't enable HD on an already existing non-HD wallet</source> <translation>Ошибка загрузки %s: Вы не можете включить HD режим для существующего не-HD кошелька</translation> </message> + <message> + <source>Error loading wallet. Wallet requires blocks to be downloaded, and software does not currently support loading wallets while blocks are being downloaded out of order when using assumeutxo snapshots. Wallet should be able to load successfully after node sync reaches height %s</source> + <translation>Ошибка загрузки кошелька. Для работы кошелька требуется загрузка блоков, а текущее программное обеспечение не поддерживает загрузку кошельков во время загрузки блоков вне порядка при использовании снимков assumeutxo. Кошелек должен успешно загрузиться после того, как синхронизация ноды достигнет высоты %s.</translation> + </message> <message> <source>Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</source> <translation>Ошибка чтения %s! Все ключи прочитаны верно, но данные транзакций или записи адресной книги могут отсутствовать или быть неправильными.</translation> </message> + <message> + <source>Error: Dumpfile format record is incorrect. Got "%s", expected "format".</source> + <translation>Ошибка: формат записи файла дампа некорректен. Получено: "%s", ожидалось: "format".</translation> + </message> + <message> + <source>Error: Dumpfile identifier record is incorrect. Got "%s", expected "%s".</source> + <translation>Ошибка: идентификатор записи файла дампа некорректен. Получено: "%s", ожидалось: "%s".</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>Ошибка: версия файла дампа не поддерживается. Эта версия bitcoin-wallet поддерживает только файлы дампа версии 1. Получен файл дампа версии %s.</translation> + </message> + <message> + <source>Failed to rename invalid peers.dat file. Please move or delete it and try again.</source> + <translation>Не удалось переименовать некорректный файл peers.dat. Пожалуйста, переместите или удалите его и повторите попытку.</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>Файл %s уже существует. Если вы уверены, что это необходимо, сначала переместите его в другое место.</translation> + </message> + <message> + <source>Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet forbids connections to IPv4/IPv6</source> + <translation>Несовместимые параметры: указано -dnsseed=1, но параметр -onlynet запрещает подключения к IPv4/IPv6.</translation> + </message> <message> <source>Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?</source> <translation>Неверный или отсутствующий начальный блок devnet. Неправильный каталог данных для devnet?</translation> </message> + <message> + <source>Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start.</source> + <translation>Некорректный или поврежденный файл peers.dat (%s). Если вы считаете, что это ошибка, пожалуйста, сообщите об этом на %s. В качестве временного решения вы можете переместить файл (%s) (переименовать, переместить или удалить), чтобы при следующем запуске был создан новый файл.</translation> + </message> + <message> + <source>No dump file provided. To use createfromdump, -dumpfile=<filename> must be provided.</source> + <translation>Файл дампа не указан. Для использования createfromdump необходимо указать -dumpfile=<filename>.</translation> + </message> + <message> + <source>No dump file provided. To use dump, -dumpfile=<filename> must be provided.</source> + <translation>Файл дампа не указан. Для использования команды dump необходимо задать параметр -dumpfile=<filename>.</translation> + </message> + <message> + <source>No wallet file format provided. To use createfromdump, -format=<format> must be provided.</source> + <translation>Формат файла кошелька не указан. Для использования команды createfromdump необходимо задать параметр -format=<format>.</translation> + </message> + <message> + <source>Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is explicitly forbidden: -onion=0</source> + <translation>Исходящие подключения ограничены сетью Tor (-onlynet=onion), но прокси для подключения к сети Tor явно запрещен: -onion=0.</translation> + </message> + <message> + <source>Outbound connections restricted to Tor (-onlynet=onion) but the proxy for reaching the Tor network is not provided: none of -proxy, -onion or -listenonion is given</source> + <translation>Исходящие подключения ограничены сетью Tor (-onlynet=onion), но прокси для подключения к сети Tor не указан: отсутствуют параметры -proxy, -onion или -listenonion.</translation> + </message> <message> <source>Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly.</source> <translation>Пожалуйста, убедитесь что дата и время на Вашем компьютере выставлены правильно! %s не сможет работать корректно, если часы настроены неверно.</translation> @@ -5089,6 +5564,22 @@ Go to File > Open Wallet to load a wallet. <source>Please contribute if you find %s useful. Visit %s for further information about the software.</source> <translation>Пожалуйста, поддержите нас, если считаете %s полезным. Посетите %s для дополнительной информации.</translation> </message> + <message> + <source>Prune mode is incompatible with -reindex-chainstate. Use full -reindex instead.</source> + <translation>Режим prune несовместим с параметром -reindex-chainstate. Используйте полный параметр -reindex вместо этого.</translation> + </message> + <message> + <source>The -txindex upgrade started by a previous version can not be completed. Restart with the previous version or run a full -reindex.</source> + <translation>Обновление -txindex, начатое предыдущей версией, не может быть завершено. Перезапустите с предыдущей версией или выполните полный -reindex.</translation> + </message> + <message> + <source>The block index db contains a legacy 'txindex'. To clear the occupied disk space, run a full -reindex, otherwise ignore this error. This error message will not be displayed again.</source> + <translation>База данных индекса блоков содержит устаревший 'txindex'. Чтобы освободить занятое дисковое пространство, выполните полный -reindex, в противном случае игнорируйте эту ошибку. Это сообщение об ошибке больше не будет отображаться.</translation> + </message> + <message> + <source>This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection.</source> + <translation>Это максимальная комиссия за транзакцию, которую вы платите (в дополнение к обычной комиссии), чтобы отдать приоритет частичному избеганию траты монет по сравнению с обычным выбором монет.</translation> + </message> <message> <source>This is the transaction fee you may discard if change is smaller than dust at this level</source> <translation>Это комиссия, которую Вы заплатите дополнительно, если сдача меньше "пыли" при таком уровне комиссии</translation> @@ -5101,10 +5592,26 @@ Go to File > Open Wallet to load a wallet. <source>Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate.</source> <translation>Невозможно повторить блоки. Необходимо перестроить базы даных с помощью -reindex-chainstate.</translation> </message> + <message> + <source>Unknown wallet file format "%s" provided. Please provide one of "bdb" or "sqlite".</source> + <translation>Указан неизвестный формат файла кошелька "%s". Пожалуйста, укажите один из следующих: "bdb" или "sqlite".</translation> + </message> + <message> + <source>Warning: Dumpfile wallet format "%s" does not match command line specified format "%s".</source> + <translation>Предупреждение: формат кошелька в файле дампа "%s" не соответствует указанному в командной строке формату "%s".</translation> + </message> <message> <source>Warning: Private keys detected in wallet {%s} with disabled private keys</source> <translation>Внимание: Закрытые ключи обнаружены в кошельке {%s} с отключенными закрытыми ключами</translation> </message> + <message> + <source>You need to rebuild the database using -reindex to enable -timestampindex</source> + <translation>Для включения параметра -timestampindex необходимо перестроить базу данных с использованием параметра -reindex.</translation> + </message> + <message> + <source>%s -- Incorrect seed, it should be a hex string</source> + <translation>%s — Некорректный seed, он должен быть строкой в HEX формате.</translation> + </message> <message> <source>%s is not a valid backup folder!</source> <translation>%s не является корректной директорией для резервной копии!</translation> @@ -5153,6 +5660,14 @@ Go to File > Open Wallet to load a wallet. <source>Disk space is too low!</source> <translation>Слишком мало места на диске!</translation> </message> + <message> + <source>Dump file %s does not exist.</source> + <translation>Файл %s дампа не существует.</translation> + </message> + <message> + <source>Error creating %s</source> + <translation>Ошибка при создании %s.</translation> + </message> <message> <source>Error loading %s</source> <translation>Ошибка при загрузке %s</translation> @@ -5169,6 +5684,10 @@ Go to File > Open Wallet to load a wallet. <source>Error loading %s: You can't disable HD on an already existing HD wallet</source> <translation>Ошибка загрузки %s: Вы не можете отключить HD режим для существующего HD кошелька</translation> </message> + <message> + <source>Error reading next record from wallet database</source> + <translation>Ошибка чтения следующей записи из базы данных кошелька.</translation> + </message> <message> <source>Error upgrading chainstate database</source> <translation>Ошибка обновления базы данных состояний цепочки</translation> @@ -5265,10 +5784,6 @@ Go to File > Open Wallet to load a wallet. <source>Invalid spork address specified with -sporkaddr</source> <translation>В -sporkaddr указан некорректный адрес</translation> </message> - <message> - <source>Prune mode is incompatible with -coinstatsindex.</source> - <translation>Режим удаления блоков несовместим с -coinstatsindex.</translation> - </message> <message> <source>Reducing -maxconnections from %d to %d, because of system limitations.</source> <translation>Настройка -maxconnections снижена с %d до %d из-за ограничений системы.</translation> @@ -5365,10 +5880,6 @@ Go to File > Open Wallet to load a wallet. <source>Unsupported logging category %s=%s.</source> <translation>Неподдерживаемая категория отладочной информации %s=%s.</translation> </message> - <message> - <source>Upgrading txindex database</source> - <translation>Обновление базы txindex</translation> - </message> <message> <source>Very low number of keys left: %d</source> <translation>Осталось очень мало ключей: %d</translation> @@ -5397,9 +5908,25 @@ Go to File > Open Wallet to load a wallet. <source>You can not disable governance validation on a masternode.</source> <translation>Вы не можете отключить проверку данных управления на мастерноде.</translation> </message> + <message> + <source>You need to rebuild the database using -reindex to enable -addressindex</source> + <translation>Вам необходимо перестроить базы данных с помощью -reindex, чтобы включить -addressindex</translation> + </message> + <message> + <source>You need to rebuild the database using -reindex to enable -spentindex</source> + <translation>Вам необходимо перестроить базы данных с помощью -reindex, чтобы включить -spentindex</translation> + </message> <message> <source>Your entries added successfully.</source> <translation>Ваши записи успешно добавлены.</translation> </message> + <message> + <source>Settings file could not be read</source> + <translation>Не удалось прочитать файл настроек.</translation> + </message> + <message> + <source>Settings file could not be written</source> + <translation>Не удалось записать файл настроек.</translation> + </message> </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/dash_th.ts b/src/qt/locale/dash_th.ts index 5e72856c9452a..d51d06e075292 100644 --- a/src/qt/locale/dash_th.ts +++ b/src/qt/locale/dash_th.ts @@ -93,10 +93,6 @@ <source>&Edit</source> <translation>&แก้ไข</translation> </message> - <message> - <source>&Show address QR code</source> - <translation>&แสดง ที่อยู่ QR code</translation> - </message> <message> <source>QR code</source> <translation>โค้ด QR</translation> @@ -618,6 +614,7 @@ </message> <message numerus="yes"> <source>%n active connection(s) to Dash network</source> + <extracomment>A substring of the tooltip.</extracomment> <translation><numerusform>%n เชื่อมต่อใช้งานกับเครือข่าย Dash</numerusform></translation> </message> <message> @@ -873,30 +870,10 @@ <source>Confirmed</source> <translation>ยืนยันแล้ว</translation> </message> - <message> - <source>Copy address</source> - <translation>คัดลอกที่อยู่</translation> - </message> - <message> - <source>Copy label</source> - <translation>คัดลอกป้ายชื่อ</translation> - </message> <message> <source>Copy amount</source> <translation>คัดลอกจำนวน</translation> </message> - <message> - <source>Copy transaction ID</source> - <translation>คัดลอก ID ธุรกรรม</translation> - </message> - <message> - <source>Lock unspent</source> - <translation>Lock unspent</translation> - </message> - <message> - <source>Unlock unspent</source> - <translation>Unlock unspent</translation> - </message> <message> <source>Copy quantity</source> <translation>ปริมาณการคัดลอก</translation> @@ -986,6 +963,7 @@ <name>CreateWalletActivity</name> <message> <source>Creating Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</extracomment> <translation>การสร้างกระเป๋าเงิน <b>%1</b>…</translation> </message> <message> @@ -1424,6 +1402,7 @@ </message> <message> <source>Opening Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</extracomment> <translation>เปิดกระเป๋า <b>%1</b>…</translation> </message> </context> @@ -1990,14 +1969,6 @@ <source>'dash://' is not a valid URI. Use 'dash:' instead.</source> <translation>'dash://' ไม่ใช่ URI ที่ถูกต้องใช้ 'dash:' แทน</translation> </message> - <message> - <source>Cannot process payment request as BIP70 is no longer supported.</source> - <translation>ไม่สามารถดำเนินการคำขอชำระเงินได้เนื่องจากไม่รองรับ BIP70 อีกต่อไป</translation> - </message> - <message> - <source>Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> - <translation>เนื่องจากการสนับสนุนถูกยกเลิก คุณควรขอให้ผู้ค้าจัดเตรียม URI ที่เข้ากันได้กับ BIP21 หรือใช้กระเป๋าเงินที่รองรับ BIP70 ต่อไป</translation> - </message> <message> <source>URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</source> <translation>ไม่สามารถประมวลผล URI ได้สำเร็จ ! ซึ่งอาจเกิดจากที่อยู่ Dash ไม่ถูกต้องหรือพารามิเตอร์ URI ที่มีรูปแบบไม่ถูกต้อง</translation> @@ -2242,10 +2213,6 @@ <source>%1 B</source> <translation>%1 B</translation> </message> - <message> - <source>%1 KB</source> - <translation>%1 KB</translation> - </message> <message> <source>%1 MB</source> <translation>%1 MB</translation> @@ -2571,10 +2538,6 @@ <source>1 &hour</source> <translation>1 &ชั่วโมง</translation> </message> - <message> - <source>1 &day</source> - <translation>1 &วัน</translation> - </message> <message> <source>1 &week</source> <translation>1 &สัปดาห์</translation> @@ -2587,26 +2550,6 @@ <source>&Unban</source> <translation>&Unban</translation> </message> - <message> - <source>Welcome to the %1 RPC console.</source> - <translation>ยินดีต้อนรับสู่คอนโซล %1 RPC</translation> - </message> - <message> - <source>Use up and down arrows to navigate history, and %1 to clear screen.</source> - <translation>ใช้ลูกศรขึ้นและลงเพื่อเลื่อนดูประวัติ และ %1 เพื่อเคลียร์หน้าจอ</translation> - </message> - <message> - <source>Type %1 for an overview of available commands.</source> - <translation>พิมพ์ %1 สำหรับภาพรวมของคำสั่งที่ใช้ได้</translation> - </message> - <message> - <source>For more information on using this console type %1.</source> - <translation>สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการใช้คอนโซลประเภทนี้พิมพ์ %1</translation> - </message> - <message> - <source>WARNING: 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.</source> - <translation>คำเตือน: สแกมเมอร์กำลังใช้งานอยู่, กำลังบอกให้ผู้ใช้พิมพ์คำสั่งที่นี่, ขโมยเนื้อหาใน wallet ได้ ห้ามใช้คอนโซลนี้โดยไม่เข้าใจส่วนย่อยของคำสั่ง</translation> - </message> <message> <source>In:</source> <translation>ใน:</translation> @@ -2730,26 +2673,6 @@ <source>Enter a message to attach to the payment request</source> <translation>ป้อนข้อความที่จะแนบไปร้องขอการชำระเงิน</translation> </message> - <message> - <source>Copy URI</source> - <translation>คัดลอก URI</translation> - </message> - <message> - <source>Copy address</source> - <translation>คัดลอกที่อยู่</translation> - </message> - <message> - <source>Copy label</source> - <translation>คัดลอกป้ายชื่อ</translation> - </message> - <message> - <source>Copy message</source> - <translation>คัดลอกข้อความ</translation> - </message> - <message> - <source>Copy amount</source> - <translation>คัดลอกจำนวน</translation> - </message> </context> <context> <name>ReceiveRequestDialog</name> @@ -3389,12 +3312,11 @@ <translation>ข้อความได้รับการยืนยัน</translation> </message> </context> +<context> + <name>SplashScreen</name> + </context> <context> <name>TrafficGraphWidget</name> - <message> - <source>KB/s</source> - <translation>KB/s</translation> - </message> <message> <source>Total</source> <translation>ยอดรวม: </translation> @@ -3807,50 +3729,6 @@ <source>Min amount</source> <translation>จำนวนเงินขั้นต่ำ</translation> </message> - <message> - <source>Abandon transaction</source> - <translation>ยกเลิกรายการ</translation> - </message> - <message> - <source>Resend transaction</source> - <translation>ส่งการทำธุรกรรมอีกครั้ง</translation> - </message> - <message> - <source>Copy address</source> - <translation>คัดลอกที่อยู่</translation> - </message> - <message> - <source>Copy label</source> - <translation>คัดลอกป้ายชื่อ</translation> - </message> - <message> - <source>Copy amount</source> - <translation>คัดลอกจำนวน</translation> - </message> - <message> - <source>Copy transaction ID</source> - <translation>คัดลอก ID ธุรกรรม</translation> - </message> - <message> - <source>Copy raw transaction</source> - <translation>คัดลอกธุรกรรมดิบ</translation> - </message> - <message> - <source>Copy full transaction details</source> - <translation>คัดลอกรายละเอียดธุรกรรมทั้งหมด</translation> - </message> - <message> - <source>Edit address label</source> - <translation>แก้ไขที่อยู่ฉลาก</translation> - </message> - <message> - <source>Show transaction details</source> - <translation>แสดงรายละเอียดธุรกรรม</translation> - </message> - <message> - <source>Show address QR code</source> - <translation>แสดงที่อยู่ของ QR code</translation> - </message> <message> <source>Export Transaction History</source> <translation>ส่งออกประวัติการทำธุรกรรม</translation> @@ -3948,7 +3826,7 @@ Go to File > Open Wallet to load a wallet. <source>Create a new wallet</source> <translation>สร้างกระเป๋าเงินใหม่</translation> </message> -</context> + </context> <context> <name>WalletModel</name> <message> @@ -4273,10 +4151,6 @@ Go to File > Open Wallet to load a wallet. <source>Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</source> <translation>กระเป๋าสตางค์ถูกล็อคไม่สามารถเติม keypool! ปิดใช้งานการสำรองข้อมูลและการผสมข้อมูลอัตโนมัติ โปรดปลดล็อกเพื่อใส่พวง keypool</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -timestampindex</source> - <translation>คุณจำเป็นต้องสร้างฐานข้อมูลโดยใช้ -reindex เพื่อเปลี่ยน -timestampindex</translation> - </message> <message> <source>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <translation>คุณจำเป็นต้องสร้างฐานข้อมูลโดยใช้ -reindex ที่จะกลับไปที่โหมด unpruned และนี่จะดาวน์โหลด blockchain ที่เหลือใหม่ทั้งหมด</translation> @@ -4521,14 +4395,6 @@ Go to File > Open Wallet to load a wallet. <source>You can not start a masternode with wallet enabled.</source> <translation>คุณไม่สามารถเริ่มต้น masternode กับกระเป๋าสตางค์เปิดการใช้งาน</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -addressindex</source> - <translation>คุณจำเป็นต้องสร้างฐานข้อมูลโดยใช้ -reindex เพื่อเปลี่ยน -addressindex</translation> - </message> - <message> - <source>You need to rebuild the database using -reindex to change -spentindex</source> - <translation>คุณจำเป็นต้องสร้างฐานข้อมูลโดยใช้ -reindex เพื่อเปลี่ยน -spentindex</translation> - </message> <message> <source>no mixing available.</source> <translation>ไม่มีการผสม</translation> @@ -4833,10 +4699,6 @@ Go to File > Open Wallet to load a wallet. <source>Unsupported logging category %s=%s.</source> <translation>การบันทึกประเภทที่ไม่ได้รับการสนับสนุน %s=%s</translation> </message> - <message> - <source>Upgrading txindex database</source> - <translation>การอัพเกรดฐานข้อมูล txindex</translation> - </message> <message> <source>Very low number of keys left: %d</source> <translation>จำนวนคีย์ที่เหลืออยู่ต่ำมาก: %d</translation> @@ -4869,5 +4731,5 @@ Go to File > Open Wallet to load a wallet. <source>Your entries added successfully.</source> <translation>เพิ่มรายการของคุณเรียบร้อยแล้ว</translation> </message> -</context> + </context> </TS> \ No newline at end of file diff --git a/src/qt/locale/dash_zh_CN.ts b/src/qt/locale/dash_zh_CN.ts index 6322eaf0e620a..fae029a8bee3d 100644 --- a/src/qt/locale/dash_zh_CN.ts +++ b/src/qt/locale/dash_zh_CN.ts @@ -93,10 +93,6 @@ <source>&Edit</source> <translation>编辑(&E)</translation> </message> - <message> - <source>&Show address QR code</source> - <translation>&显示地址二维码</translation> - </message> <message> <source>QR code</source> <translation>二维码</translation> @@ -618,6 +614,7 @@ </message> <message numerus="yes"> <source>%n active connection(s) to Dash network</source> + <extracomment>A substring of the tooltip.</extracomment> <translation><numerusform>%n个有效的Dash网络连接</numerusform></translation> </message> <message> @@ -873,30 +870,10 @@ <source>Confirmed</source> <translation>已确认</translation> </message> - <message> - <source>Copy address</source> - <translation>复制地址</translation> - </message> - <message> - <source>Copy label</source> - <translation>复制标签</translation> - </message> <message> <source>Copy amount</source> <translation>复制金额</translation> </message> - <message> - <source>Copy transaction ID</source> - <translation>复制交易编号</translation> - </message> - <message> - <source>Lock unspent</source> - <translation>锁定未花费</translation> - </message> - <message> - <source>Unlock unspent</source> - <translation>解锁未花费</translation> - </message> <message> <source>Copy quantity</source> <translation>复制金额</translation> @@ -986,6 +963,7 @@ <name>CreateWalletActivity</name> <message> <source>Creating Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the create wallet progress window which indicates to the user which wallet is currently being created.</extracomment> <translation>正在创建钱包 <b>%1</b>…</translation> </message> <message> @@ -1424,6 +1402,7 @@ </message> <message> <source>Opening Wallet <b>%1</b>…</source> + <extracomment>Descriptive text of the open wallet progress window which indicates to the user which wallet is currently being opened.</extracomment> <translation>正在打开钱包 <b>%1</b>…</translation> </message> </context> @@ -1990,14 +1969,6 @@ <source>'dash://' is not a valid URI. Use 'dash:' instead.</source> <translation>'dash://' 不是一个有效链接. 请使用'dash:'</translation> </message> - <message> - <source>Cannot process payment request as BIP70 is no longer supported.</source> - <translation>无法处理付款请求因为不再支持BIP70.</translation> - </message> - <message> - <source>Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70.</source> - <translation>由于终止支持, 您应当要求商家为您提供一个兼容BIP21的URI, 或使用仍支持BIP70的钱包.</translation> - </message> <message> <source>URI cannot be parsed! This can be caused by an invalid Dash address or malformed URI parameters.</source> <translation>URI不能被解析! 原因可能是无效的Dash地址或URI参数格式错误。</translation> @@ -2242,10 +2213,6 @@ <source>%1 B</source> <translation>%1 B</translation> </message> - <message> - <source>%1 KB</source> - <translation>%1 KB</translation> - </message> <message> <source>%1 MB</source> <translation>%1 MB</translation> @@ -2571,10 +2538,6 @@ <source>1 &hour</source> <translation>1 小时(&H)</translation> </message> - <message> - <source>1 &day</source> - <translation>1 天(&D)</translation> - </message> <message> <source>1 &week</source> <translation>1 周(&W)</translation> @@ -2587,26 +2550,6 @@ <source>&Unban</source> <translation>解禁(&U)</translation> </message> - <message> - <source>Welcome to the %1 RPC console.</source> - <translation>欢迎使用 %1 的 RPC 控制台。</translation> - </message> - <message> - <source>Use up and down arrows to navigate history, and %1 to clear screen.</source> - <translation>使用上下方向键浏览历史, %1清除屏幕。</translation> - </message> - <message> - <source>Type %1 for an overview of available commands.</source> - <translation>输入 %1 以获得可用命令描述.</translation> - </message> - <message> - <source>For more information on using this console type %1.</source> - <translation>关于使用此控制台的更多信息, 请输入 %1.</translation> - </message> - <message> - <source>WARNING: 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.</source> - <translation>警告: 骗子总是积极地劝说用户在此输入指令, 以窃取用户钱包中的资金. 在没有完全理解各命令行作用前, 请不要使用控制台。</translation> - </message> <message> <source>In:</source> <translation>输入:</translation> @@ -2730,26 +2673,6 @@ <source>Enter a message to attach to the payment request</source> <translation>输入消息以添加到支付请求中</translation> </message> - <message> - <source>Copy URI</source> - <translation>复制URI</translation> - </message> - <message> - <source>Copy address</source> - <translation>复制地址</translation> - </message> - <message> - <source>Copy label</source> - <translation>复制标签</translation> - </message> - <message> - <source>Copy message</source> - <translation>复制消息 </translation> - </message> - <message> - <source>Copy amount</source> - <translation>复制金额</translation> - </message> </context> <context> <name>ReceiveRequestDialog</name> @@ -3389,12 +3312,11 @@ <translation>消息验证成功。</translation> </message> </context> +<context> + <name>SplashScreen</name> + </context> <context> <name>TrafficGraphWidget</name> - <message> - <source>KB/s</source> - <translation>KB/s</translation> - </message> <message> <source>Total</source> <translation>总额</translation> @@ -3807,50 +3729,6 @@ <source>Min amount</source> <translation>最小金额</translation> </message> - <message> - <source>Abandon transaction</source> - <translation>放弃交易</translation> - </message> - <message> - <source>Resend transaction</source> - <translation>重新发送交易</translation> - </message> - <message> - <source>Copy address</source> - <translation>复制地址</translation> - </message> - <message> - <source>Copy label</source> - <translation>复制标签</translation> - </message> - <message> - <source>Copy amount</source> - <translation>复制金额</translation> - </message> - <message> - <source>Copy transaction ID</source> - <translation>复制交易编号</translation> - </message> - <message> - <source>Copy raw transaction</source> - <translation>复制原始交易</translation> - </message> - <message> - <source>Copy full transaction details</source> - <translation>复制完整交易详情</translation> - </message> - <message> - <source>Edit address label</source> - <translation>编辑地址标签</translation> - </message> - <message> - <source>Show transaction details</source> - <translation>显示交易详情</translation> - </message> - <message> - <source>Show address QR code</source> - <translation>显示地址二维码</translation> - </message> <message> <source>Export Transaction History</source> <translation>导出交易历史</translation> @@ -3948,7 +3826,7 @@ Go to File > Open Wallet to load a wallet. <source>Create a new wallet</source> <translation>创建一个新钱包</translation> </message> -</context> + </context> <context> <name>WalletModel</name> <message> @@ -4273,10 +4151,6 @@ Go to File > Open Wallet to load a wallet. <source>Wallet is locked, can't replenish keypool! Automatic backups and mixing are disabled, please unlock your wallet to replenish keypool.</source> <translation>钱包被锁定,无法补充keypool!自动备份和混合功能被禁用,请解锁您的钱包以补充keypool。</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -timestampindex</source> - <translation>您需要通过使用-reindex改变-timestampindex来重新建立数据库</translation> - </message> <message> <source>You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain</source> <translation>您需要使用 -reindex 重新构建数据库以返回未修剪的模式。这将重新下载整个区块链</translation> @@ -4521,14 +4395,6 @@ Go to File > Open Wallet to load a wallet. <source>You can not start a masternode with wallet enabled.</source> <translation>您无法在开启钱包时启动主节点.</translation> </message> - <message> - <source>You need to rebuild the database using -reindex to change -addressindex</source> - <translation>您需要通过使用-reindex改变-addressindex来重新建立数据库</translation> - </message> - <message> - <source>You need to rebuild the database using -reindex to change -spentindex</source> - <translation>您需要通过使用-reindex改变-spentindex来重新建立数据库</translation> - </message> <message> <source>no mixing available.</source> <translation>无法进行混合。</translation> @@ -4833,10 +4699,6 @@ Go to File > Open Wallet to load a wallet. <source>Unsupported logging category %s=%s.</source> <translation>不支持的日志记录类别 %s=%s.</translation> </message> - <message> - <source>Upgrading txindex database</source> - <translation>正在升级交易指数数据库</translation> - </message> <message> <source>Very low number of keys left: %d</source> <translation>尚余少量的密匙:%d</translation> @@ -4869,5 +4731,5 @@ Go to File > Open Wallet to load a wallet. <source>Your entries added successfully.</source> <translation>您的词条已添加成功.</translation> </message> -</context> + </context> </TS> \ No newline at end of file From 212f91c35f237aa3a3b068ae2538b4b35f4adbd7 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Sat, 7 Dec 2024 12:27:25 -0600 Subject: [PATCH 20/24] Merge #6461: docs: update supported versions in SECURITY.md 87b3c7f5d19291c80c078a3a63ceb2f22cc3b666 docs: update supported versions in SECURITY.md (Kittywhiskers Van Gogh) Pull request description: ## Additional Information Updates the supported versions list in `SECURITY.md` ## Checklist: - [x] I have performed a self-review of my own code **(note: N/A)** - [x] I have commented my code, particularly in hard-to-understand areas **(note: N/A)** - [x] I have added or updated relevant unit/integration/functional/e2e tests **(note: N/A)** - [x] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: knst: utACK 87b3c7f5d19291c80c078a3a63ceb2f22cc3b666 UdjinM6: utACK 87b3c7f5d19291c80c078a3a63ceb2f22cc3b666 Tree-SHA512: 2a196b0e07e40a557f87a5137ede7d3984f14f48dedbec742e540c9ff1a9a762eccb317b35d102154745756cb83145ce5577495c2a2e581691edcfb0fa18553c --- SECURITY.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index e88192ddc03b7..36f39013d9381 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,9 +4,8 @@ | Version | Supported | | ------- | ------------------ | -| 21 | :white_check_mark: | -| 20.1 | :white_check_mark: | -| < 20.1 | :x: | +| 22 | :white_check_mark: | +| < 22 | :x: | ## Reporting a Vulnerability From d7cd9f10fdfb45473076f113e9aea161efc9f1d3 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 10 Dec 2024 09:25:40 -0600 Subject: [PATCH 21/24] Merge #6464: chore: update man pages for v22 2dabd7895636b881fa97d8db79f5c70ddcc2cf7d chore: update man pages for v22 (UdjinM6) Pull request description: ## Issue being fixed or feature implemented ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK 2dabd7895636b881fa97d8db79f5c70ddcc2cf7d knst: utACK 2dabd7895636b881fa97d8db79f5c70ddcc2cf7d Tree-SHA512: fc03af689e9c5be54f150d6727772038c70e1fafad0f450b431203aa0e662873e17095e702c8d970eafdd92e386bb471d7894ba51bb72b166fadefabdfaad116 --- doc/man/dash-cli.1 | 8 ++-- doc/man/dash-qt.1 | 95 ++++++++++++++++++++++++++----------------- doc/man/dash-tx.1 | 8 ++-- doc/man/dash-wallet.1 | 6 +-- doc/man/dashd.1 | 95 ++++++++++++++++++++++++++----------------- 5 files changed, 129 insertions(+), 83 deletions(-) diff --git a/doc/man/dash-cli.1 b/doc/man/dash-cli.1 index 508646ba254c0..48977e9aa33bf 100644 --- a/doc/man/dash-cli.1 +++ b/doc/man/dash-cli.1 @@ -1,7 +1,7 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3. -.TH DASH-CLI "1" "August 2024" "dash-cli v21.1.0" "User Commands" +.TH DASH-CLI "1" "December 2024" "dash-cli v22.0.0" "User Commands" .SH NAME -dash-cli \- manual page for dash-cli v21.1.0 +dash-cli \- manual page for dash-cli v22.0.0 .SH SYNOPSIS .B dash-cli [\fI\,options\/\fR] \fI\,<command> \/\fR[\fI\,params\/\fR] \fI\,Send command to Dash Core\/\fR @@ -15,7 +15,7 @@ dash-cli \- manual page for dash-cli v21.1.0 .B dash-cli [\fI\,options\/\fR] \fI\,help <command> Get help for a command\/\fR .SH DESCRIPTION -Dash Core RPC client version v21.1.0 +Dash Core RPC client version v22.0.0 .SH OPTIONS .HP \-? @@ -136,6 +136,8 @@ for the wallet passphrase. .IP Print version and exit .PP +Debugging/Testing options: +.PP Chain selection options: .HP \fB\-chain=\fR<chain> diff --git a/doc/man/dash-qt.1 b/doc/man/dash-qt.1 index 43a0b48486e1f..833ac4c6ca98c 100644 --- a/doc/man/dash-qt.1 +++ b/doc/man/dash-qt.1 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3. -.TH DASH-QT "1" "August 2024" "dash-qt v21.1.0" "User Commands" +.TH DASH-QT "1" "December 2024" "dash-qt v22.0.0" "User Commands" .SH NAME -dash-qt \- manual page for dash-qt v21.1.0 +dash-qt \- manual page for dash-qt v22.0.0 .SH SYNOPSIS .B dash-qt [\fI\,command-line options\/\fR] .SH DESCRIPTION -Dash Core version v21.1.0 +Dash Core version v22.0.0 .SH OPTIONS .HP \-? @@ -23,9 +23,9 @@ message) 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: -000000000000001889bd33ef019065e250d32bd46911f4003d3fdd8128b5358d, +000000000000001cf26547602d982dcaa909231bbcd1e70c0eb3c65de25473ba, testnet: -00000034bfeb926662ba547c0b8dd4ba8cbb6e0c581f4e7d1bddce8f9ca3a608) +000000eef20eb0062abd4e799967e98bdebb165dd1c567ab4118c1c86c6e948f) .HP \fB\-blockfilterindex=\fR<type> .IP @@ -140,12 +140,11 @@ 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, \fB\-rescan\fR and -\fB\-disablegovernance\fR=\fI\,false\/\fR. Warning: Reverting this setting -requires re\-downloading the entire blockchain. (default: 0 = -disable pruning blocks, 1 = allow manual pruning via RPC, >945 = -automatically prune block files to stay under the specified -target size in MiB) +incompatible with \fB\-txindex\fR, \fB\-rescan\fR and \fB\-disablegovernance\fR=\fI\,false\/\fR. +Warning: Reverting this setting requires re\-downloading the +entire blockchain. (default: 0 = disable pruning blocks, 1 = +allow manual pruning via RPC, >945 = automatically prune block +files to stay under the specified target size in MiB) .HP \fB\-settings=\fR<file> .IP @@ -277,7 +276,8 @@ 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) +Maximum per\-connection memory usage for the send buffer, <n>*1000 bytes +(default: 1000) .HP \fB\-maxtimeadjustment\fR .IP @@ -287,9 +287,11 @@ 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) +Tries to keep outbound traffic under the given target per 24h. Limit +does not apply to peers with 'download' permission or blocks +created within past week. 0 = no limit (default: 0M). Optional +suffix units [k|K|m|M|g|G|t|T] (default: M). Lowercase is 1000 +base while uppercase is 1024 base .HP \fB\-natpmp\fR .IP @@ -379,6 +381,10 @@ Tor control port password (default: empty) Use UPnP to map the listening port (default: 1 when listening and no \fB\-proxy\fR) .HP +\fB\-v2transport\fR +.IP +Support v2 transport (default: 0) +.HP \fB\-whitebind=\fR<[permissions@]addr> .IP Bind to the given address and add permission flags to the peers @@ -410,13 +416,14 @@ unspent outputs for addresses (default: 0) .HP \fB\-reindex\fR .IP -Rebuild chain state and block index from the blk*.dat files on disk +Rebuild chain state and block index from the blk*.dat files on disk. +This will also rebuild active optional indexes. .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. +instead. Deactivate all optional indexes before running this. .HP \fB\-spentindex\fR .IP @@ -435,6 +442,11 @@ call (default: 1) .PP Masternode options: .HP +\fB\-deprecated\-platform\-user=\fR<user> +.IP +Set the username for the "platform user", a restricted user intended to +be used by Dash Platform, to the specified username. +.HP \fB\-llmq\-data\-recovery=\fR<n> .IP Enable automated quorum data recovery (default: 1) @@ -451,29 +463,21 @@ defined by <quorum_name> if a member of any of the quorums) .IP Set the masternode BLS private key and enable the client to act as a masternode -.HP -\fB\-platform\-user=\fR<user> -.IP -Set the username for the "platform user", a restricted user intended to -be used by Dash Platform, to the specified username. .PP Statsd options: .HP -\fB\-statsenabled\fR -.IP -Publish internal stats to statsd (default: 0) -.HP -\fB\-statshost=\fR<ip> +\fB\-statsbatchsize=\fR<bytes> .IP -Specify statsd host (default: 127.0.0.1) +Specify the size of each batch of stats messages (default: 1024) .HP -\fB\-statshostname=\fR<ip> +\fB\-statsduration=\fR<ms> .IP -Specify statsd host name (default: ) +Specify the number of milliseconds between stats messages (default: +1000) .HP -\fB\-statsns=\fR<ns> +\fB\-statshost=\fR<ip> .IP -Specify additional namespace prefix (default: ) +Specify statsd host (default: ) .HP \fB\-statsperiod=\fR<seconds> .IP @@ -483,6 +487,14 @@ Specify the number of seconds between periodic measurements (default: \fB\-statsport=\fR<port> .IP Specify statsd port (default: 8125) +.HP +\fB\-statsprefix=\fR<string> +.IP +Specify an optional string prepended to every stats key (default: ) +.HP +\fB\-statssuffix=\fR<string> +.IP +Specify an optional string appended to every stats key (default: ) .PP Wallet options: .HP @@ -831,6 +843,14 @@ Enable publish raw transaction (locked via InstantSend) and ISLOCK in .IP Set publish raw transaction lock signature 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 @@ -840,11 +860,12 @@ 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: addrman, bench, chainlocks, cmpctblock, coindb, coinjoin, creditpool, ehf, -estimatefee, gobject, http, i2p, instantsend, leveldb, libevent, -llmq, llmq\-dkg, llmq\-sigs, lock, mempool, mempoolrej, mnpayments, -mnsync, net, netconn, proxy, prune, qt, rand, reindex, rpc, -selectcoins, spork, tor, validation, walletdb, zmq. This option -can be specified multiple times to output multiple categories. +estimatefee, gobject, http, i2p, instantsend, ipc, leveldb, +libevent, llmq, llmq\-dkg, llmq\-sigs, lock, mempool, mempoolrej, +mnpayments, mnsync, net, netconn, proxy, prune, qt, rand, +reindex, rpc, selectcoins, spork, tor, txreconciliation, +validation, walletdb, zmq. This option can be specified multiple +times to output multiple categories. .HP \fB\-debugexclude=\fR<category> .IP diff --git a/doc/man/dash-tx.1 b/doc/man/dash-tx.1 index c0ab3a5308bca..2053e6ddcb4ba 100644 --- a/doc/man/dash-tx.1 +++ b/doc/man/dash-tx.1 @@ -1,7 +1,7 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3. -.TH DASH-TX "1" "August 2024" "dash-tx v21.1.0" "User Commands" +.TH DASH-TX "1" "December 2024" "dash-tx v22.0.0" "User Commands" .SH NAME -dash-tx \- manual page for dash-tx v21.1.0 +dash-tx \- manual page for dash-tx v22.0.0 .SH SYNOPSIS .B dash-tx [\fI\,options\/\fR] \fI\,<hex-tx> \/\fR[\fI\,commands\/\fR] \fI\,Update hex-encoded dash transaction\/\fR @@ -9,7 +9,7 @@ dash-tx \- manual page for dash-tx v21.1.0 .B dash-tx [\fI\,options\/\fR] \fI\,-create \/\fR[\fI\,commands\/\fR] \fI\,Create hex-encoded dash transaction\/\fR .SH DESCRIPTION -Dash Core dash\-tx utility version v21.1.0 +Dash Core dash\-tx utility version v22.0.0 .SH OPTIONS .HP \-? @@ -32,6 +32,8 @@ Output only the hex\-encoded transaction id of the resultant transaction. .IP Print version and exit .PP +Debugging/Testing options: +.PP Chain selection options: .HP \fB\-chain=\fR<chain> diff --git a/doc/man/dash-wallet.1 b/doc/man/dash-wallet.1 index 24d317153370e..bfc45e025235d 100644 --- a/doc/man/dash-wallet.1 +++ b/doc/man/dash-wallet.1 @@ -1,9 +1,9 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3. -.TH DASH-WALLET "1" "August 2024" "dash-wallet v21.1.0" "User Commands" +.TH DASH-WALLET "1" "December 2024" "dash-wallet v22.0.0" "User Commands" .SH NAME -dash-wallet \- manual page for dash-wallet v21.1.0 +dash-wallet \- manual page for dash-wallet v22.0.0 .SH DESCRIPTION -Dash Core dash\-wallet version v21.1.0 +Dash Core dash\-wallet version v22.0.0 .PP dash\-wallet is an offline tool for creating and interacting with Dash Core wallet files. By default dash\-wallet will act on wallets in the default mainnet wallet directory in the datadir. diff --git a/doc/man/dashd.1 b/doc/man/dashd.1 index 66cbadb8b27d2..e7e5b52ac142d 100644 --- a/doc/man/dashd.1 +++ b/doc/man/dashd.1 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3. -.TH DASHD "1" "August 2024" "dashd v21.1.0" "User Commands" +.TH DASHD "1" "December 2024" "dashd v22.0.0" "User Commands" .SH NAME -dashd \- manual page for dashd v21.1.0 +dashd \- manual page for dashd v22.0.0 .SH SYNOPSIS .B dashd [\fI\,options\/\fR] \fI\,Start Dash Core\/\fR .SH DESCRIPTION -Dash Core version v21.1.0 +Dash Core version v22.0.0 Copyright \(co 2014\-2024 The Dash Core developers Copyright \(co 2009\-2024 The Bitcoin Core developers .PP @@ -33,9 +33,9 @@ message) 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: -000000000000001889bd33ef019065e250d32bd46911f4003d3fdd8128b5358d, +000000000000001cf26547602d982dcaa909231bbcd1e70c0eb3c65de25473ba, testnet: -00000034bfeb926662ba547c0b8dd4ba8cbb6e0c581f4e7d1bddce8f9ca3a608) +000000eef20eb0062abd4e799967e98bdebb165dd1c567ab4118c1c86c6e948f) .HP \fB\-blockfilterindex=\fR<type> .IP @@ -150,12 +150,11 @@ 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, \fB\-rescan\fR and -\fB\-disablegovernance\fR=\fI\,false\/\fR. Warning: Reverting this setting -requires re\-downloading the entire blockchain. (default: 0 = -disable pruning blocks, 1 = allow manual pruning via RPC, >945 = -automatically prune block files to stay under the specified -target size in MiB) +incompatible with \fB\-txindex\fR, \fB\-rescan\fR and \fB\-disablegovernance\fR=\fI\,false\/\fR. +Warning: Reverting this setting requires re\-downloading the +entire blockchain. (default: 0 = disable pruning blocks, 1 = +allow manual pruning via RPC, >945 = automatically prune block +files to stay under the specified target size in MiB) .HP \fB\-settings=\fR<file> .IP @@ -287,7 +286,8 @@ 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) +Maximum per\-connection memory usage for the send buffer, <n>*1000 bytes +(default: 1000) .HP \fB\-maxtimeadjustment\fR .IP @@ -297,9 +297,11 @@ 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) +Tries to keep outbound traffic under the given target per 24h. Limit +does not apply to peers with 'download' permission or blocks +created within past week. 0 = no limit (default: 0M). Optional +suffix units [k|K|m|M|g|G|t|T] (default: M). Lowercase is 1000 +base while uppercase is 1024 base .HP \fB\-natpmp\fR .IP @@ -389,6 +391,10 @@ Tor control port password (default: empty) Use UPnP to map the listening port (default: 1 when listening and no \fB\-proxy\fR) .HP +\fB\-v2transport\fR +.IP +Support v2 transport (default: 0) +.HP \fB\-whitebind=\fR<[permissions@]addr> .IP Bind to the given address and add permission flags to the peers @@ -420,13 +426,14 @@ unspent outputs for addresses (default: 0) .HP \fB\-reindex\fR .IP -Rebuild chain state and block index from the blk*.dat files on disk +Rebuild chain state and block index from the blk*.dat files on disk. +This will also rebuild active optional indexes. .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. +instead. Deactivate all optional indexes before running this. .HP \fB\-spentindex\fR .IP @@ -445,6 +452,11 @@ call (default: 1) .PP Masternode options: .HP +\fB\-deprecated\-platform\-user=\fR<user> +.IP +Set the username for the "platform user", a restricted user intended to +be used by Dash Platform, to the specified username. +.HP \fB\-llmq\-data\-recovery=\fR<n> .IP Enable automated quorum data recovery (default: 1) @@ -461,29 +473,21 @@ defined by <quorum_name> if a member of any of the quorums) .IP Set the masternode BLS private key and enable the client to act as a masternode -.HP -\fB\-platform\-user=\fR<user> -.IP -Set the username for the "platform user", a restricted user intended to -be used by Dash Platform, to the specified username. .PP Statsd options: .HP -\fB\-statsenabled\fR -.IP -Publish internal stats to statsd (default: 0) -.HP -\fB\-statshost=\fR<ip> +\fB\-statsbatchsize=\fR<bytes> .IP -Specify statsd host (default: 127.0.0.1) +Specify the size of each batch of stats messages (default: 1024) .HP -\fB\-statshostname=\fR<ip> +\fB\-statsduration=\fR<ms> .IP -Specify statsd host name (default: ) +Specify the number of milliseconds between stats messages (default: +1000) .HP -\fB\-statsns=\fR<ns> +\fB\-statshost=\fR<ip> .IP -Specify additional namespace prefix (default: ) +Specify statsd host (default: ) .HP \fB\-statsperiod=\fR<seconds> .IP @@ -493,6 +497,14 @@ Specify the number of seconds between periodic measurements (default: \fB\-statsport=\fR<port> .IP Specify statsd port (default: 8125) +.HP +\fB\-statsprefix=\fR<string> +.IP +Specify an optional string prepended to every stats key (default: ) +.HP +\fB\-statssuffix=\fR<string> +.IP +Specify an optional string appended to every stats key (default: ) .PP Wallet options: .HP @@ -841,6 +853,14 @@ Enable publish raw transaction (locked via InstantSend) and ISLOCK in .IP Set publish raw transaction lock signature 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 @@ -850,11 +870,12 @@ 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: addrman, bench, chainlocks, cmpctblock, coindb, coinjoin, creditpool, ehf, -estimatefee, gobject, http, i2p, instantsend, leveldb, libevent, -llmq, llmq\-dkg, llmq\-sigs, lock, mempool, mempoolrej, mnpayments, -mnsync, net, netconn, proxy, prune, qt, rand, reindex, rpc, -selectcoins, spork, tor, validation, walletdb, zmq. This option -can be specified multiple times to output multiple categories. +estimatefee, gobject, http, i2p, instantsend, ipc, leveldb, +libevent, llmq, llmq\-dkg, llmq\-sigs, lock, mempool, mempoolrej, +mnpayments, mnsync, net, netconn, proxy, prune, qt, rand, +reindex, rpc, selectcoins, spork, tor, txreconciliation, +validation, walletdb, zmq. This option can be specified multiple +times to output multiple categories. .HP \fB\-debugexclude=\fR<category> .IP From a6f1fc590cb12fe85e3a3c64bec26bbaf21d0ad1 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 10 Dec 2024 09:19:18 -0600 Subject: [PATCH 22/24] Merge #6475: chore: bumped chain assumed sizes based on latest usage 2712968384fce646598199d9ab3c1ea1b36e96cf chore: bumped chain assumed sizes based on latest usage (pasta) Pull request description: ## Issue being fixed or feature implemented Release process item to bump assumed size ## What was done? bump sizes as manually calculated ## How Has This Been Tested? n/a ## Breaking Changes none ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: knst: ACK 2712968384fce646598199d9ab3c1ea1b36e96cf kwvg: utACK 2712968384fce646598199d9ab3c1ea1b36e96cf Tree-SHA512: d0131d692f4ccc858dcc4fff3c494b44bf9f702e2e7a9172d166c53dc693d6eb90e9c86ff412b31defa4cff13e21099808d9fb2ea2174032e6fe79339b1a57d4 --- src/chainparams.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 616f4e650f42c..bff4c5dcd23a6 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -237,7 +237,7 @@ class CMainParams : public CChainParams { nDefaultPlatformP2PPort = 26656; nDefaultPlatformHTTPPort = 443; nPruneAfterHeight = 100000; - m_assumed_blockchain_size = 45; + m_assumed_blockchain_size = 50; m_assumed_chain_state_size = 1; genesis = CreateGenesisBlock(1390095618, 28917698, 0x1e0ffff0, 1, 50 * COIN); @@ -430,7 +430,7 @@ class CTestNetParams : public CChainParams { nDefaultPlatformP2PPort = 22000; nDefaultPlatformHTTPPort = 22001; nPruneAfterHeight = 1000; - m_assumed_blockchain_size = 4; + m_assumed_blockchain_size = 5; m_assumed_chain_state_size = 1; genesis = CreateGenesisBlock(1390666206UL, 3861367235UL, 0x1e0ffff0, 1, 50 * COIN); From c90339eb6125e9b25ec6974376297eff4a89cb27 Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 10 Dec 2024 09:28:32 -0600 Subject: [PATCH 23/24] Merge #6459: docs: add release notes for v22.0.0 3404fa02471e9dd0e602bab7c679d7b747ef88ac docs: add release notes for v22.0.0 (pasta) Pull request description: ## Issue being fixed or feature implemented Release notes for v22 ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ Top commit has no ACKs. Tree-SHA512: b1fca9297814ab3497cc87512eb2a66daff22a17802c6cd87ef9af75c48fbecda8963c332191c3e3e7abdf495817da3e505b12baa646e97d388cb1aee74a67a7 --- doc/release-notes-154.md | 4 - doc/release-notes-20755.md | 7 - doc/release-notes-21141.md | 6 - doc/release-notes-24806.md | 5 - doc/release-notes-6093.md | 4 - doc/release-notes-6107.md | 4 - doc/release-notes-6108.md | 4 - doc/release-notes-6147.md | 12 - doc/release-notes-6148.md | 6 - doc/release-notes-6183.md | 4 - doc/release-notes-6187.md | 3 - doc/release-notes-6189.md | 6 - doc/release-notes-6209.md | 3 - doc/release-notes-6229.md | 4 - doc/release-notes-6239.md | 5 - doc/release-notes-6247.md | 3 - doc/release-notes-6267.md | 25 -- doc/release-notes-6279.md | 8 - doc/release-notes-6281.md | 4 - doc/release-notes-6296.md | 6 - doc/release-notes-6297.md | 5 - doc/release-notes-6337.md | 5 - doc/release-notes-6365.md | 8 - doc/release-notes-6383.md | 5 - doc/release-notes.md | 219 ++++++++++++++++-- .../dash/release-notes-21.1.1.md | 116 ++++++++++ 26 files changed, 314 insertions(+), 167 deletions(-) delete mode 100644 doc/release-notes-154.md delete mode 100644 doc/release-notes-20755.md delete mode 100644 doc/release-notes-21141.md delete mode 100644 doc/release-notes-24806.md delete mode 100644 doc/release-notes-6093.md delete mode 100644 doc/release-notes-6107.md delete mode 100644 doc/release-notes-6108.md delete mode 100644 doc/release-notes-6147.md delete mode 100644 doc/release-notes-6148.md delete mode 100644 doc/release-notes-6183.md delete mode 100644 doc/release-notes-6187.md delete mode 100644 doc/release-notes-6189.md delete mode 100644 doc/release-notes-6209.md delete mode 100644 doc/release-notes-6229.md delete mode 100644 doc/release-notes-6239.md delete mode 100644 doc/release-notes-6247.md delete mode 100644 doc/release-notes-6267.md delete mode 100644 doc/release-notes-6279.md delete mode 100644 doc/release-notes-6281.md delete mode 100644 doc/release-notes-6296.md delete mode 100644 doc/release-notes-6297.md delete mode 100644 doc/release-notes-6337.md delete mode 100644 doc/release-notes-6365.md delete mode 100644 doc/release-notes-6383.md create mode 100644 doc/release-notes/dash/release-notes-21.1.1.md diff --git a/doc/release-notes-154.md b/doc/release-notes-154.md deleted file mode 100644 index a31e82433b94b..0000000000000 --- a/doc/release-notes-154.md +++ /dev/null @@ -1,4 +0,0 @@ -Compatibility -============== - -Dash Core change appearance when macOS "dark mode" is activated. diff --git a/doc/release-notes-20755.md b/doc/release-notes-20755.md deleted file mode 100644 index f0b4ca0cd3a7f..0000000000000 --- a/doc/release-notes-20755.md +++ /dev/null @@ -1,7 +0,0 @@ -Updated RPCs ------------- -- `getpeerinfo` no longer returns the following fields: `addnode`, - and `whitelisted`, which were previously deprecated in v21. Instead of - `addnode`, the `connection_type` field returns manual. Instead of - `whitelisted`, the `permissions` field indicates if the peer has special - privileges. (#20755) diff --git a/doc/release-notes-21141.md b/doc/release-notes-21141.md deleted file mode 100644 index c69da4f1c1b26..0000000000000 --- a/doc/release-notes-21141.md +++ /dev/null @@ -1,6 +0,0 @@ -## Command-line options -### Changes in existing cmd-line options: - -- `-walletnotify=<cmd>` has a new format options "%h" and "%b". -%b is replaced by the hash of the block including the transaction (set to 'unconfirmed' if the transaction is not included). -%h is replaced by the block height (-1 if not included). diff --git a/doc/release-notes-24806.md b/doc/release-notes-24806.md deleted file mode 100644 index 1d2fe1996b827..0000000000000 --- a/doc/release-notes-24806.md +++ /dev/null @@ -1,5 +0,0 @@ -## RPC changes - -- `getblockfrompeer`, introduced in v21.0.0, named argument `block_hash` has been - renamed `blockhash` to be aligned with the rest of the codebase. This is a breaking - change if using named parameters. (#6149) diff --git a/doc/release-notes-6093.md b/doc/release-notes-6093.md deleted file mode 100644 index a61b40c9a69f9..0000000000000 --- a/doc/release-notes-6093.md +++ /dev/null @@ -1,4 +0,0 @@ -New functionality ------------ - -- A new RPC command, `coinjoinsalt`, allows for manipulating a CoinJoin salt stored in a wallet. `coinjoinsalt get` will fetch an existing salt, `coinjoinsalt set` will allow setting a custom salt and `coinjoinsalt generate` will set a random hash as the new salt. diff --git a/doc/release-notes-6107.md b/doc/release-notes-6107.md deleted file mode 100644 index d8299b2ee4697..0000000000000 --- a/doc/release-notes-6107.md +++ /dev/null @@ -1,4 +0,0 @@ -RPC changes ------------ - -- `coinjoin stop` will now return an error if there is no CoinJoin mixing session to stop diff --git a/doc/release-notes-6108.md b/doc/release-notes-6108.md deleted file mode 100644 index 13b81240fcc83..0000000000000 --- a/doc/release-notes-6108.md +++ /dev/null @@ -1,4 +0,0 @@ -RPC changes ------------ - -- `getcoinjoininfo` will no longer report `keys_left` and will not incorrectly warn about keypool depletion with descriptor wallets diff --git a/doc/release-notes-6147.md b/doc/release-notes-6147.md deleted file mode 100644 index c7b4df7b92784..0000000000000 --- a/doc/release-notes-6147.md +++ /dev/null @@ -1,12 +0,0 @@ -P2P and Network Changes ------------------------ - -### Improved Onion Connectivity - -To enhance censorship resistance and mitigate network partitioning risks, Dash Core now aims to maintain at least two -outbound onion connections and generally protects these connections from eviction. As a result of the low percentage -of gossiped addresses being onion nodes, it was often the case where, unless you specify `onlynet=onion`, a node -would rarely if ever establish any outbound onion connections. This change ensures that nodes which can access the -onion network maintain a few onion connections. As a result, network messages could continue to propagate across -the network even if non-onion IPv4 traffic is blocked, reducing the risk of partitioning. Additionally, this update improves -security by enabling p2p encryption for these peers. (#6147) \ No newline at end of file diff --git a/doc/release-notes-6148.md b/doc/release-notes-6148.md deleted file mode 100644 index ad447eba5b0fc..0000000000000 --- a/doc/release-notes-6148.md +++ /dev/null @@ -1,6 +0,0 @@ -P2P and Network Changes ------------------------ - -The DSQ message, starting in protocol version 70234, is broadcast using the inventory system, and not simply -relaying to all connected peers. This should reduce the bandwidth needs for all nodes, however, this affect will -be most noticeable on highly connected masternodes. (#6148) diff --git a/doc/release-notes-6183.md b/doc/release-notes-6183.md deleted file mode 100644 index e559050f40f46..0000000000000 --- a/doc/release-notes-6183.md +++ /dev/null @@ -1,4 +0,0 @@ -New functionality ------------ - -- LLMQ type LLMQ_50_60 is enabled for Devnet networks. This is needed when testing on a large Devnet. diff --git a/doc/release-notes-6187.md b/doc/release-notes-6187.md deleted file mode 100644 index 848bfb6b2092c..0000000000000 --- a/doc/release-notes-6187.md +++ /dev/null @@ -1,3 +0,0 @@ -## Devnet Breaking Changes - -`BRR` (`realloc`), `DIP0020`, `DIP0024`, `V19`, `V20` and `MN_R` hardforks are activated at block 2 instead of block 300 on devnets now. Please note that this is a breaking change so you will no longer be able to sync on devnets created with earlier Dash Core versions and vice versa. diff --git a/doc/release-notes-6189.md b/doc/release-notes-6189.md deleted file mode 100644 index b4b2678516dfe..0000000000000 --- a/doc/release-notes-6189.md +++ /dev/null @@ -1,6 +0,0 @@ -Tests ------ - -- For the `regtest` network the activation heights of several softforks were - set to block height 1. They can be changed by the runtime setting - `-testactivationheight=name@height`. (dash#6214) diff --git a/doc/release-notes-6209.md b/doc/release-notes-6209.md deleted file mode 100644 index 06b99f27249ba..0000000000000 --- a/doc/release-notes-6209.md +++ /dev/null @@ -1,3 +0,0 @@ -## Command-line options - -- `-platform-user` is deprecated in favor of the whitelist feature. In releases 22.x of Dash Core it has been renamed to `-deprecated-platform-user` and will be removed in version 23.x diff --git a/doc/release-notes-6229.md b/doc/release-notes-6229.md deleted file mode 100644 index 9400e96606b37..0000000000000 --- a/doc/release-notes-6229.md +++ /dev/null @@ -1,4 +0,0 @@ -RPC changes ------------ - -- `creditOutputs` entries in various RPCs that output transaction JSON are shown as objects now instead of being shown as strings. diff --git a/doc/release-notes-6239.md b/doc/release-notes-6239.md deleted file mode 100644 index fbfaff2f9a00e..0000000000000 --- a/doc/release-notes-6239.md +++ /dev/null @@ -1,5 +0,0 @@ -P2P and Network Changes ------------------------ - -The max number of compressed block headers which can be requested at once has been increased from 2000 to 8000. This -change activates with the protocol version `70235` and only applies to compressed block headers. diff --git a/doc/release-notes-6247.md b/doc/release-notes-6247.md deleted file mode 100644 index fe90973791201..0000000000000 --- a/doc/release-notes-6247.md +++ /dev/null @@ -1,3 +0,0 @@ -### RPC changes - -- Deprecated `protx *_hpmn` RPC entry points have been droppepd in favor of `protx *_evo`. The following have been removed: `protx register_fund_hpmn`, `protx register_hpmn`, `protx register_prepare_hpmn`, `protx update_service_hpmn` diff --git a/doc/release-notes-6267.md b/doc/release-notes-6267.md deleted file mode 100644 index 73881366a382a..0000000000000 --- a/doc/release-notes-6267.md +++ /dev/null @@ -1,25 +0,0 @@ -Statistics ------------ - -### New Features - -- The Statsd client now supports queueing and batching messages, reducing the number of packets and the rate at which - they are sent to the Statsd daemon. - -- The maximum size of each batch of messages (default, 1KiB) can be adjusted using `-statsbatchsize` (in bytes) - and the frequency at which queued messages are sent to the daemon (default, 1 second) can be adjusted using - `-statsduration` (in milliseconds) - - `-statsduration` has no bearing on `-statsperiod`, which dictates how frequently some stats are _collected_. - -### Deprecations - -- `-statsenabled` has been deprecated and enablement will now be implied by the presence of `-statshost`. `-statsenabled` - will be removed in a future release. - -- `-statshostname` has been deprecated and replaced with `-statssuffix` as the latter is better representative of the - argument's purpose. They behave identically to each other. `-statshostname` will be removed in a future - release. - -- `-statsns` has been deprecated and replaced with `-statsprefix` as the latter is better representative of the - argument's purpose. `-statsprefix`, unlike `-statsns`, will enforce the usage of a delimiter between the prefix - and key. `-statsns` will be removed in a future release. diff --git a/doc/release-notes-6279.md b/doc/release-notes-6279.md deleted file mode 100644 index f7c73d3cf1182..0000000000000 --- a/doc/release-notes-6279.md +++ /dev/null @@ -1,8 +0,0 @@ -# Notable changes - -## Asset Unlock transactions (platform transfer) - -This version introduces a new fork `withdrawals` that changes consensus rules. -New logic of validation of Asset Unlock transactions's signature. It let to use all 24 active quorums and the most recent inactive, while previous version of Dash Core may refuse withdrawal with error `bad-assetunlock-not-active-quorum` even if quorum is active. - -Limits for withdrawals has been increased to flat 2000 Dash per 576 latest blocks. diff --git a/doc/release-notes-6281.md b/doc/release-notes-6281.md deleted file mode 100644 index 8958cd8b815da..0000000000000 --- a/doc/release-notes-6281.md +++ /dev/null @@ -1,4 +0,0 @@ -P2P and Network Changes ------------------------ - -`MIN_PEER_PROTO_VERSION` has been bumped to `70216` diff --git a/doc/release-notes-6296.md b/doc/release-notes-6296.md deleted file mode 100644 index e3838f990cd2f..0000000000000 --- a/doc/release-notes-6296.md +++ /dev/null @@ -1,6 +0,0 @@ -Updated settings ----------------- - -- `-maxuploadtarget` now allows human readable byte units [k|K|m|M|g|G|t|T]. - E.g. `-maxuploadtarget=500g`. No whitespace, +- or fractions allowed. - Default is `M` if no suffix provided. diff --git a/doc/release-notes-6297.md b/doc/release-notes-6297.md deleted file mode 100644 index 970e02ad6a850..0000000000000 --- a/doc/release-notes-6297.md +++ /dev/null @@ -1,5 +0,0 @@ -RPC changes ------------ - -- `quorum dkgsimerror` will no longer accept a decimal value between 0 and 1 for the `rate` argument, it will now - expect an integer between 0 to 100. diff --git a/doc/release-notes-6337.md b/doc/release-notes-6337.md deleted file mode 100644 index e10943ee2a1f0..0000000000000 --- a/doc/release-notes-6337.md +++ /dev/null @@ -1,5 +0,0 @@ -GUI changes ------------ - -A new option has been added in to the "Main" tab in "Options" that allow -users to enable RPC server functionality. diff --git a/doc/release-notes-6365.md b/doc/release-notes-6365.md deleted file mode 100644 index 3b478f11b7929..0000000000000 --- a/doc/release-notes-6365.md +++ /dev/null @@ -1,8 +0,0 @@ -P2P and network changes ------- - -- Nodes with multiple reachable networks will actively try to have at least one - outbound connection to each network. This improves individual resistance to - eclipse attacks and network level resistance to partition attacks. Users no - longer need to perform active measures to ensure being connected to multiple - enabled networks. diff --git a/doc/release-notes-6383.md b/doc/release-notes-6383.md deleted file mode 100644 index c6f685f2b4520..0000000000000 --- a/doc/release-notes-6383.md +++ /dev/null @@ -1,5 +0,0 @@ -Compatibility -============= - -The minimum required glibc to run Dash Core is now 2.31. This means that RHEL 8 and Ubuntu 18.04 (Bionic) -are no-longer supported. diff --git a/doc/release-notes.md b/doc/release-notes.md index 06f26776e08a4..d03dd201b50b0 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,8 +1,9 @@ -# Dash Core version v21.1.1 +# Dash Core version v22.0.0 -This is a new patch version release, bringing important bugfixes. +This is a new major version release, bringing new features, various bugfixes +and other improvements. -This release is **optional** but recommended for all nodes. +This release is **mandatory** for all nodes, as it includes a hard fork. Please report bugs using the issue tracker at GitHub: @@ -20,28 +21,200 @@ dashd/dash-qt (on Linux). ## Downgrade warning -### Downgrade to a version < v21.0.0 +### Downgrade to a version < v22.0.0 -Downgrading to a version older than v21.0.0 may not be supported due to changes -if you are using descriptor wallets. +Downgrading to a version older than v22.0.0 may not be supported, and will +likely require a reindex. -### Downgrade to a version < v19.2.0 +# Release Notes -Downgrading to a version older than v19.2.0 is not supported due to changes -in the evodb database. If you need to use an older version, you must either -reindex or re-sync the whole chain. +## Notable Changes -# Notable changes +- **Asset Unlock Transactions (Platform Transfer)** + - Introduces a new fork, `withdrawals`, that changes consensus rules. + - **Validation Logic Update:** + - Allows using all **24 active quorums** and the most recent inactive quorum. + - Previous versions may refuse withdrawals with `bad-assetunlock-not-active-quorum` even if the quorum is active. + - **Withdrawal Limits Increased:** + - Flat **2000 Dash** per **576 latest blocks**. The previous limit was 1000 Dash. +- **Increased Minimum Protocol Version** + - The minimum protocol version has been increased to **70216**. + - Masternode minimum protocol version has increased to **70235**. -- Core now categorizes asset unlock transactions as "Platform Transfers" on the Transactions tab in Dash-Qt and in the output of the `gettransaction` RPC (#6131) -- Persist Coinjoin Denoms options changes made via GUI over restarts (#6208) -- Fix incorrect payment predictions for evonodes in Dash-Qt and in RPC `masternode winners` (#6222) -- `creditOutputs` entries in various RPCs that output transaction JSON are shown as objects now instead of being shown as strings (#6229) -- Updated PGP key for builder 'pasta' to reflect new subkeys. You may need to reimport this key to validate signatures. (#6290) -- Build failures on Ubuntu 24.10 / clang 19.1.1 resolved (#6328) -- RPC errors in `masternode payments`, `getblock`, `getblockstats` related to Asset Unlock parsing have been fixed (#6336) +## P2P and Network Changes -# v21.1.0 Change log +- **Improved Onion Connectivity** + - Nodes with onion connectivity will attempt to maintain at least **two outbound onion connections** and will protect these connections from eviction. + - **Benefit:** Ensures nodes capable of accessing the onion network maintain a few onion connections, allowing network messages to propagate even if non-onion IPv4 traffic is blocked. + - **Security Enhancement:** Enables P2P encryption for these peers. + +- **DSQ Message Broadcast Update** + - Starting in protocol version **70234**, DSQ messages are broadcast using the inventory system instead of relaying to all connected peers. + - **Benefit:** Reduces bandwidth needs for all nodes, especially noticeable on highly connected masternodes. + +- **Compressed Block Headers Request Limit** + - Starting in protocol version **70235**, the maximum number of compressed block headers that can be requested at once has been increased from **2000** to **8000**. + - **Applies to:** Compressed block headers only. + - **Benefit:** Potential for improved header sync performance. + +- **Multi-Network Connectivity Enhancement** + - Nodes with multiple reachable networks will actively try to maintain at least one outbound connection to each network. + - **Benefits:** + - Improves resistance to eclipse attacks. + - Enhances network-level resistance to partition attacks. + - **User Impact:** Users no longer need to perform active measures to ensure connections to multiple enabled networks. + +- **BIP324 Encrypted Communication (Experimental)** + - Dash Core now experimentally implements [BIP324](https://github.com/bitcoin/bips/blob/master/bip-0324.mediawiki), introducing encrypted communication for P2P network traffic. + - **Opt-In Adoption** + - **Enable Encryption:** Users can opt-in to use BIP324 by adding `v2transport=1` to their Dash Core configuration. + - **Default Behavior:** Encryption is **disabled by default** as this is currently experimental. + - **Benefits** + - **Enhanced Privacy:** Encrypts P2P messages for v2 connections, reducing the risk of traffic analysis and eavesdropping. + - **Improved Security:** Protects against certain types of network attacks by ensuring that communication between nodes is confidential and tamper-proof. + - **Limitations and Considerations** + - **Compatibility:** Encrypted connections may only be established between nodes that have BIP324 enabled. Nodes without encryption support will continue to communicate over unencrypted channels. + - **Status and Future Plans** + - **Experimental Phase:** This feature is currently in an experimental phase. Users are encouraged to test and provide feedback to ensure stability. + - **Future Development:** BIP324 will likely be enabled by default in the next minor version, v22.1.0. + +## Compatibility + +- **Dark Mode Appearance** + - Dash Core changes appearance when macOS "dark mode" is activated. + +- **glibc Requirement** + - The minimum required glibc to run Dash Core is now **2.31**. This means that **RHEL 8** and **Ubuntu 18.04 (Bionic)** are no longer supported. + +## New RPCs + +- **`quorum platformsign`** + - A new subcommand has been introduced, offering a structured way to perform platform-related quorum signing operations. + +- **`coinjoinsalt`** + - Allows manipulation of a CoinJoin salt stored in a wallet. + - `coinjoinsalt get`: Fetches an existing salt. + - `coinjoinsalt set`: Allows setting a custom salt. + - `coinjoinsalt generate`: Sets a random hash as the new salt. + +## Updated RPCs + +- **`getpeerinfo` Changes** + - `getpeerinfo` no longer returns the following fields: `addnode` and `whitelisted`, which were previously deprecated in v21. + - Instead of `addnode`, the `connection_type` field returns `manual`. + - Instead of `whitelisted`, the `permissions` field indicates if the peer has special privileges. + +- **`getblockfrompeer` Parameter Renaming** + - The named argument `block_hash` has been renamed to `blockhash` to align with the rest of the codebase. + - **Breaking Change:** If using named parameters, make sure to update them accordingly. + +- **`coinjoin stop` Error Handling** + - `coinjoin stop` will now return an error if there is no CoinJoin mixing session to stop. + +- **`getcoinjoininfo` Adjustments** + - `getcoinjoininfo` will no longer report `keys_left` and will not incorrectly warn about keypool depletion with descriptor wallets. + +- **`creditOutputs` Format Change** + - `creditOutputs` entries in various RPCs that output transactions as JSON are now shown as objects instead of strings. + +- **`quorum dkgsimerror` Argument Update** + - `quorum dkgsimerror` will no longer accept a decimal value between 0 and 1 for the `rate` argument. + - It will now expect an integer between **0** to **100**. + +- **Deprecated `protx *_hpmn` RPC Endpoints** + - Deprecated `protx *_hpmn` RPC entry points have been dropped in favor of `protx *_evo`. + - **Removed Endpoints:** + - `protx register_fund_hpmn` + - `protx register_hpmn` + - `protx register_prepare_hpmn` + - `protx update_service_hpmn` + +- **`governance` Descriptor Wallet Support** + - The `governance votemany` and `governance votealias` RPC commands now support descriptor-based wallets. + +- **`createwallet` Behavior for Descriptor Wallets** + - When creating descriptor wallets, `createwallet` now requires explicitly setting `load_on_startup`. + +## Command-line Options + +### Changes in Existing Command-line Options + +- **`-walletnotify=<cmd>` Enhancements** + - Introduces new format options `%h` and `%b`. + - `%b`: Replaced by the hash of the block including the transaction (set to `'unconfirmed'` if the transaction is not included). + - `%h`: Replaced by the block height (**-1** if not included). + +- **`-maxuploadtarget` Format Update** + - Now allows human-readable byte units `[k|K|m|M|g|G|t|T]`. + - **Example:** `-maxuploadtarget=500g`. + - **Constraints:** No whitespace, `+`, `-`, or fractions allowed. + - **Default:** `M` if no suffix is provided. + +## Devnet Breaking Changes + +- **Hardfork Activation Changes** + - `BRR` (`realloc`), `DIP0020`, `DIP0024`, `V19`, `V20`, and `MN_R` hardforks are now activated at **block 2** instead of block **300** on devnets. + - **Implications:** + - Breaking change. + - Inability to sync on devnets created with earlier Dash Core versions and vice versa. + +- **LLMQ Type Enhancement** + - **LLMQ_50_60** is enabled for **Devnet** networks. + - Necessary for testing on a large Devnet. + +## Tests + +- **Regtest Network Softfork Activation Heights** + - For the `regtest` network, the activation heights of several softforks have been set to **block height 1**. + - **Customization:** Can be changed using the runtime setting `-testactivationheight=name@height`. + - *(dash#6214)* + +## Statistics + +### New Features + +- **Statsd Client Enhancements** + - Supports queueing and batching messages. + - **Benefits:** + - Reduces the number of packets. + - Lowers the rate at which messages are sent to the Statsd daemon. + +- **Batch Configuration Options** + - **Maximum Batch Size:** + - Adjustable using `-statsbatchsize` (in bytes). + - **Default:** **1KiB**. + - **Batch Send Frequency:** + - Adjustable using `-statsduration` (in milliseconds). + - **Default:** **1 second**. + - **Note:** `-statsduration` does not affect `-statsperiod`, which dictates how frequently some stats are *collected*. + +### Deprecations + +- **Deprecation of `-platform-user`** + - `-platform-user` is deprecated in favor of the whitelist feature. + - In releases **22.x** of Dash Core, it has been renamed to `-deprecated-platform-user`. + - It will be removed in version **23.x**. + +- **`-statsenabled` Deprecation** + - Now implied by the presence of `-statshost`. + - It will be removed in version **23.x**. + +- **`-statshostname` Replacement** + - Deprecated and replaced with `-statssuffix` for better representation of the argument's purpose. + - **Behavior:** Behave identically to each other. + - It will be removed in version **23.x**. + +- **`-statsns` Replacement** + - Deprecated and replaced with `-statsprefix` for better representation of the argument's purpose. + - **Behavior:** `-statsprefix` enforces the usage of a delimiter between the prefix and key. + - It will be removed in version **23.x**. + +## GUI Changes + +- **RPC Server Functionality Option** + - A new option has been added to the "Main" tab in "Options" that allows users to enable RPC server functionality. + +# v22.0.0 Change log See detailed [set of changes][set-of-changes]. @@ -49,18 +222,22 @@ See detailed [set of changes][set-of-changes]. Thanks to everyone who directly contributed to this release: +- AJ ONeal - Kittywhiskers Van Gogh - Konstantin Akimov +- Odysseas Gabrielides - PastaPastaPasta - UdjinM6 +- Vijaydasmp As well as everyone that submitted issues, reviewed pull requests and helped debug the release candidates. # Older releases -These release are considered obsolete. Old release notes can be found here: +These releases are considered obsolete. Old release notes can be found here: +- [v21.1.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-21.1.1.md) released Oct/22/2024 - [v21.1.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-21.1.0.md) released Aug/8/2024 - [v21.0.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-21.0.2.md) released Aug/1/2024 - [v21.0.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-21.0.0.md) released Jul/25/2024 @@ -113,4 +290,4 @@ These release are considered obsolete. Old release notes can be found here: - [v0.10.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.10.0.md) released Sep/25/2014 - [v0.9.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.9.0.md) released Mar/13/2014 -[set-of-changes]: https://github.com/dashpay/dash/compare/v21.1.0...dashpay:v21.1.1 +[set-of-changes]: https://github.com/dashpay/dash/compare/v21.1.1...dashpay:v22.0.0 diff --git a/doc/release-notes/dash/release-notes-21.1.1.md b/doc/release-notes/dash/release-notes-21.1.1.md new file mode 100644 index 0000000000000..06f26776e08a4 --- /dev/null +++ b/doc/release-notes/dash/release-notes-21.1.1.md @@ -0,0 +1,116 @@ +# Dash Core version v21.1.1 + +This is a new patch version release, bringing important bugfixes. + +This release is **optional** but recommended for all nodes. + +Please report bugs using the issue tracker at GitHub: + + <https://github.com/dashpay/dash/issues> + + +# Upgrading and downgrading + +## How to Upgrade + +If you are running an older version, shut it down. Wait until it has completely +shut down (which might take a few minutes for older versions), then run the +installer (on Windows) or just copy over /Applications/Dash-Qt (on Mac) or +dashd/dash-qt (on Linux). + +## Downgrade warning + +### Downgrade to a version < v21.0.0 + +Downgrading to a version older than v21.0.0 may not be supported due to changes +if you are using descriptor wallets. + +### Downgrade to a version < v19.2.0 + +Downgrading to a version older than v19.2.0 is not supported due to changes +in the evodb database. If you need to use an older version, you must either +reindex or re-sync the whole chain. + +# Notable changes + +- Core now categorizes asset unlock transactions as "Platform Transfers" on the Transactions tab in Dash-Qt and in the output of the `gettransaction` RPC (#6131) +- Persist Coinjoin Denoms options changes made via GUI over restarts (#6208) +- Fix incorrect payment predictions for evonodes in Dash-Qt and in RPC `masternode winners` (#6222) +- `creditOutputs` entries in various RPCs that output transaction JSON are shown as objects now instead of being shown as strings (#6229) +- Updated PGP key for builder 'pasta' to reflect new subkeys. You may need to reimport this key to validate signatures. (#6290) +- Build failures on Ubuntu 24.10 / clang 19.1.1 resolved (#6328) +- RPC errors in `masternode payments`, `getblock`, `getblockstats` related to Asset Unlock parsing have been fixed (#6336) + +# v21.1.0 Change log + +See detailed [set of changes][set-of-changes]. + +# Credits + +Thanks to everyone who directly contributed to this release: + +- Kittywhiskers Van Gogh +- Konstantin Akimov +- PastaPastaPasta +- UdjinM6 + +As well as everyone that submitted issues, reviewed pull requests and helped +debug the release candidates. + +# Older releases + +These release are considered obsolete. Old release notes can be found here: + +- [v21.1.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-21.1.0.md) released Aug/8/2024 +- [v21.0.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-21.0.2.md) released Aug/1/2024 +- [v21.0.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-21.0.0.md) released Jul/25/2024 +- [v20.1.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-20.1.1.md) released April/3/2024 +- [v20.1.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-20.1.0.md) released March/5/2024 +- [v20.0.4](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-20.0.4.md) released Jan/13/2024 +- [v20.0.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-20.0.3.md) released December/26/2023 +- [v20.0.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-20.0.2.md) released December/06/2023 +- [v20.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-20.0.1.md) released November/18/2023 +- [v20.0.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-20.0.0.md) released November/15/2023 +- [v19.3.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-19.3.0.md) released July/31/2023 +- [v19.2.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-19.2.0.md) released June/19/2023 +- [v19.1.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-19.1.0.md) released May/22/2023 +- [v19.0.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-19.0.0.md) released Apr/14/2023 +- [v18.2.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-18.2.2.md) released Mar/21/2023 +- [v18.2.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-18.2.1.md) released Jan/17/2023 +- [v18.2.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-18.2.0.md) released Jan/01/2023 +- [v18.1.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-18.1.1.md) released January/08/2023 +- [v18.1.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-18.1.0.md) released October/09/2022 +- [v18.0.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-18.0.2.md) released October/09/2022 +- [v18.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-18.0.1.md) released August/17/2022 +- [v0.17.0.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.17.0.3.md) released June/07/2021 +- [v0.17.0.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.17.0.2.md) released May/19/2021 +- [v0.16.1.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.16.1.1.md) released November/17/2020 +- [v0.16.1.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.16.1.0.md) released November/14/2020 +- [v0.16.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.16.0.1.md) released September/30/2020 +- [v0.15.0.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.15.0.0.md) released Febrary/18/2020 +- [v0.14.0.5](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.5.md) released December/08/2019 +- [v0.14.0.4](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.4.md) released November/22/2019 +- [v0.14.0.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.3.md) released August/15/2019 +- [v0.14.0.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.2.md) released July/4/2019 +- [v0.14.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.1.md) released May/31/2019 +- [v0.14.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.md) released May/22/2019 +- [v0.13.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.3.md) released Apr/04/2019 +- [v0.13.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.2.md) released Mar/15/2019 +- [v0.13.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.1.md) released Feb/9/2019 +- [v0.13.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.0.md) released Jan/14/2019 +- [v0.12.3.4](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.4.md) released Dec/14/2018 +- [v0.12.3.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.3.md) released Sep/19/2018 +- [v0.12.3.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.2.md) released Jul/09/2018 +- [v0.12.3.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.1.md) released Jul/03/2018 +- [v0.12.2.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.3.md) released Jan/12/2018 +- [v0.12.2.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.2.md) released Dec/17/2017 +- [v0.12.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.md) released Nov/08/2017 +- [v0.12.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.1.md) released Feb/06/2017 +- [v0.12.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.0.md) released Aug/15/2015 +- [v0.11.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.2.md) released Mar/04/2015 +- [v0.11.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.1.md) released Feb/10/2015 +- [v0.11.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.0.md) released Jan/15/2015 +- [v0.10.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.10.0.md) released Sep/25/2014 +- [v0.9.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.9.0.md) released Mar/13/2014 + +[set-of-changes]: https://github.com/dashpay/dash/compare/v21.1.0...dashpay:v21.1.1 From 1c7bfcbde18d6c8f5f8e64bc41466fd275e3e1ef Mon Sep 17 00:00:00 2001 From: pasta <pasta@dashboost.org> Date: Tue, 19 Nov 2024 21:08:20 -0600 Subject: [PATCH 24/24] chore: set release true --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b5b4ea541a398..1e084dc0be00d 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ dnl Don't forget to push a corresponding tag when updating any of _CLIENT_VERSIO define(_CLIENT_VERSION_MAJOR, 22) define(_CLIENT_VERSION_MINOR, 0) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_IS_RELEASE, false) +define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2024) define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Dash Core]])