From f28a85f91b8c4575cf67f49e2d55461d23187973 Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 2 Aug 2021 16:53:50 +0900 Subject: [PATCH 01/11] Hush a noisy bisq error message down to info --- backend/src/api/bisq/bisq.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/bisq/bisq.ts b/backend/src/api/bisq/bisq.ts index 4f253e7bb..df8314fc1 100644 --- a/backend/src/api/bisq/bisq.ts +++ b/backend/src/api/bisq/bisq.ts @@ -162,7 +162,7 @@ class Bisq { this.buildIndex(); this.calculateStats(); } catch (e) { - logger.err('loadBisqDumpFile() error.' + e.message || e); + logger.info('loadBisqDumpFile() error.' + e.message || e); } } From 1c01094e07aaaab880bc200c5496c48fa3b23182 Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 2 Aug 2021 14:48:08 +0300 Subject: [PATCH 02/11] Removing duplicate i18n string. --- .../components/footer/footer.component.html | 2 +- frontend/src/locale/messages.xlf | 64 +++++++++---------- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/frontend/src/app/components/footer/footer.component.html b/frontend/src/app/components/footer/footer.component.html index b8a73288e..c6662e65b 100644 --- a/frontend/src/app/components/footer/footer.component.html +++ b/frontend/src/app/components/footer/footer.component.html @@ -4,7 +4,7 @@
Tx vBytes per second: -  Backend is synchronizing +  Backend is synchronizing
diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 6021a61aa..1e09f3156 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -406,7 +406,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -430,7 +430,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -755,7 +755,7 @@ src/app/dashboard/dashboard.component.html - 140,149 + 140,146 Terms of Service shared.terms-of-service @@ -2457,11 +2457,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2517,7 +2517,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 169,173 sat/vB shared.sat-vbyte @@ -2707,9 +2707,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 194,196 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2719,7 +2719,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 199,205 vB/s shared.vbytes-per-second @@ -2732,7 +2732,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 173,174 Unconfirmed count dashboard.unconfirmed @@ -2758,7 +2758,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 215,216 shared.blocks @@ -2770,7 +2770,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 216,217 shared.block @@ -2822,7 +2822,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3110,11 +3110,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3142,7 +3138,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3168,6 +3164,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3601,7 +3601,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 175,179 dashboard.latest-blocks.transaction-count @@ -3649,7 +3649,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 162,163 + 166,167 Minimum mempool fee dashboard.minimum-fee @@ -3658,7 +3658,7 @@ Purging src/app/dashboard/dashboard.component.html - 163,165 + 167,168 Purgin below fee dashboard.purging @@ -3667,7 +3667,7 @@ Memory usage src/app/dashboard/dashboard.component.html - 175,177 + 179,180 Memory usage dashboard.memory-usage @@ -3676,7 +3676,7 @@ Incoming transactions src/app/dashboard/dashboard.component.html - 187,189 + 191,192 dashboard.incoming-transactions @@ -3684,7 +3684,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 206,209 dashboard.difficulty-adjustment @@ -3692,11 +3692,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 212,214 src/app/dashboard/dashboard.component.html - 255,258 + 261,264 difficulty-box.remaining @@ -3704,11 +3704,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 221,222 src/app/dashboard/dashboard.component.html - 262,265 + 268,271 difficulty-box.estimate @@ -3716,7 +3716,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 233,234 difficulty-box.previous @@ -3724,11 +3724,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 245,246 src/app/dashboard/dashboard.component.html - 269,272 + 275,278 difficulty-box.current-period From d92827a4119219911d7615e7ff3864ee6ed6d04d Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 2 Aug 2021 14:49:02 +0300 Subject: [PATCH 03/11] Upgrade deprecated xi18n command to extract-i18n. --- frontend/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index aafab84fd..44028bb37 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -22,7 +22,7 @@ "scripts": { "ng": "./node_modules/@angular/cli/bin/ng", "tsc": "./node_modules/typescript/bin/tsc", - "i18n-extract-from-source": "./node_modules/@angular/cli/bin/ng xi18n --ivy --out-file ./src/locale/messages.xlf", + "i18n-extract-from-source": "./node_modules/@angular/cli/bin/ng extract-i18n --ivy --out-file ./src/locale/messages.xlf", "i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1 --force", "serve": "npm run generate-config && ng serve -c local", "serve:stg": "npm run generate-config && ng serve -c staging", From 10fa39634eb531cd11306772ddb2fa5e1160e25e Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 2 Aug 2021 18:42:18 +0900 Subject: [PATCH 04/11] Update our Terms of Service, split Privacy Policy into its own page --- frontend/src/app/app-routing.module.ts | 5 ++ frontend/src/app/app.module.ts | 2 + .../api-docs/api-docs.component.html | 4 +- .../privacy-policy.component.html | 51 +++++++++++++++++++ .../privacy-policy.component.scss | 0 .../privacy-policy.component.ts | 15 ++++++ .../terms-of-service.component.html | 47 +++++++++-------- .../terms-of-service.component.scss | 1 - .../app/dashboard/dashboard.component.html | 2 + 9 files changed, 103 insertions(+), 24 deletions(-) create mode 100644 frontend/src/app/components/privacy-policy/privacy-policy.component.html create mode 100644 frontend/src/app/components/privacy-policy/privacy-policy.component.scss create mode 100644 frontend/src/app/components/privacy-policy/privacy-policy.component.ts diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index 91d37f1eb..2e7a5d7a6 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -16,6 +16,7 @@ import { DashboardComponent } from './dashboard/dashboard.component'; import { LatestBlocksComponent } from './components/latest-blocks/latest-blocks.component'; import { ApiDocsComponent } from './components/api-docs/api-docs.component'; import { TermsOfServiceComponent } from './components/terms-of-service/terms-of-service.component'; +import { PrivacyPolicyComponent } from './components/privacy-policy/privacy-policy.component'; import { TrademarkPolicyComponent } from './components/trademark-policy/trademark-policy.component'; import { BisqMasterPageComponent } from './components/bisq-master-page/bisq-master-page.component'; import { SponsorComponent } from './components/sponsor/sponsor.component'; @@ -67,6 +68,10 @@ let routes: Routes = [ path: 'terms-of-service', component: TermsOfServiceComponent }, + { + path: 'privacy-policy', + component: PrivacyPolicyComponent + }, { path: 'trademark-policy', component: TrademarkPolicyComponent diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index a5a732b3b..c9d6145b6 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -49,6 +49,7 @@ import { faAngleDown, faAngleUp, faBolt, faChartArea, faCogs, faCubes, faDatabas import { ApiDocsComponent } from './components/api-docs/api-docs.component'; import { CodeTemplateComponent } from './components/api-docs/code-template.component'; import { TermsOfServiceComponent } from './components/terms-of-service/terms-of-service.component'; +import { PrivacyPolicyComponent } from './components/privacy-policy/privacy-policy.component'; import { TrademarkPolicyComponent } from './components/trademark-policy/trademark-policy.component'; import { StorageService } from './services/storage.service'; import { HttpCacheInterceptor } from './services/http-cache.interceptor'; @@ -89,6 +90,7 @@ import { SponsorComponent } from './components/sponsor/sponsor.component'; ApiDocsComponent, CodeTemplateComponent, TermsOfServiceComponent, + PrivacyPolicyComponent, TrademarkPolicyComponent, SponsorComponent, ], diff --git a/frontend/src/app/components/api-docs/api-docs.component.html b/frontend/src/app/components/api-docs/api-docs.component.html index a08c6cffc..7d44a7da9 100644 --- a/frontend/src/app/components/api-docs/api-docs.component.html +++ b/frontend/src/app/components/api-docs/api-docs.component.html @@ -876,7 +876,9 @@
- \ No newline at end of file + diff --git a/frontend/src/app/components/privacy-policy/privacy-policy.component.html b/frontend/src/app/components/privacy-policy/privacy-policy.component.html new file mode 100644 index 000000000..1184fb00b --- /dev/null +++ b/frontend/src/app/components/privacy-policy/privacy-policy.component.html @@ -0,0 +1,51 @@ +
+
+
+ +

+ +

Privacy Policy

+
Updated: August 2, 2021
+ +

+ +
+ +

TRUSTED THIRD PARTIES ARE SECURITY HOLES

+ +
    +
  • We do not use any third-party analytics, trackers, or cookies.
  • +
  • We do not share any private user data with third-parties.
  • +
+ +

TRUSTED FIRST PARTIES ARE ALSO SECURITY HOLES

+ +
    +
  • Your IP address may be collected in our webserver logs used for sysadmin purposes.
  • +
  • Your IP address may be collected in our self-hosted statistics matomo app.
  • +
+ +

DON'T TRUST US, PROTECT YOUR PRIVACY

+ +
    +
  • Use a Tor Browser or a privacy VPN service to hide your IP address from us.
  • +
  • Use a self-hosted instance of The Mempool Open Source Project™ on your own hardware.
  • +
+ +

IF YOU DONATE TO MEMPOOL.SPACE

+ +
    +
  • Your payment information, together with your Twitter identity (if provided) will be collected.
  • +
  • We display sponsor profiles publicly on mempool.space/about.
  • +
  • Thank you :)
  • +
+ +

EOF

+ +
+ +
+ +

+ +
diff --git a/frontend/src/app/components/privacy-policy/privacy-policy.component.scss b/frontend/src/app/components/privacy-policy/privacy-policy.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/frontend/src/app/components/privacy-policy/privacy-policy.component.ts b/frontend/src/app/components/privacy-policy/privacy-policy.component.ts new file mode 100644 index 000000000..f84903043 --- /dev/null +++ b/frontend/src/app/components/privacy-policy/privacy-policy.component.ts @@ -0,0 +1,15 @@ +import { Component } from '@angular/core'; +import { Env, StateService } from '../../services/state.service'; + +@Component({ + selector: 'app-privacy-policy', + templateUrl: './privacy-policy.component.html', + styleUrls: ['./privacy-policy.component.scss'] +}) +export class PrivacyPolicyComponent { + officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE; + + constructor( + private stateService: StateService, + ) { } +} diff --git a/frontend/src/app/components/terms-of-service/terms-of-service.component.html b/frontend/src/app/components/terms-of-service/terms-of-service.component.html index 95d977e88..44643c855 100644 --- a/frontend/src/app/components/terms-of-service/terms-of-service.component.html +++ b/frontend/src/app/components/terms-of-service/terms-of-service.component.html @@ -5,65 +5,68 @@

Terms of Service

-
Updated: March 09, 2021
+
Updated: August 02, 2021


-

The official mempool.space website and its API service are operated by Mempool Space K.K.

-

This website and its API service are operated by an individual member of the Bitcoin community, who is not affiliated with Mempool Space K.K.
Mempool Space K.K. has no affiliation with and does not sponsor or endorse the information provided herein.

+

The mempool.space website, the liquid.network website, the bisq.markets website, their associated API services, and related network and server infrastructure (collectively, the "Website") are operated by Mempool Space K.K. in Japan ("Mempool", "We", or "Us") and self-hosted from AS142052.

-
By using this website or accessing its API, you agree to these Terms of Service:
+

This website and its API service (collectively, the "Website") are operated by a member of the Bitcoin community ("We" or "Us"). Mempool Space K.K. in Japan ("Mempool") has no affiliation with the operator of this Website, and does not sponsor or endorse the information provided herein.

+ +
By accessing this Website, you agree to the following Terms of Service:

NO WARRANTY

-

This website is operated in the hope that it will be useful, but all services and data are provided on an "AS IS, AS AVAILABLE" basis, WITHOUT ANY WARRANTY OR REPRESENTATIONS; express or implied, without even the implied warranties of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, CONTINUOUS AVAILABILITY, or UNINTERRUPTED SERVICE. The operators of this website make NO GUARANTEE to the accuracy of any data on this website or its API, and it is your responsibility to VERIFY ALL DATA obtained for inaccuracies and omissions.

+

THIS WEBSITE IS PROVIDED ON AN "AS IS, AS AVAILABLE" BASIS, WITHOUT ANY WARRANTY OR REPRESENTATIONS; EXPRESS OR IMPLIED, WITHOUT EVEN THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, CONTINUOUS AVAILABILITY, OR UNINTERRUPTED SERVICE. WE MAKE NO GUARANTEE TO THE ACCURACY OF ANY DATA ON THIS WEBSITE, AND IT IS YOUR RESPONSIBILITY TO VERIFY ALL DATA OBTAINED FOR INACCURACIES AND OMISSIONS.


NO LIABILITY

-

THE OPERATORS OF THIS WEBSITE WILL NOT BE HELD LIABLE FOR ANY LOSS OR DAMAGES, whether direct, indirect, or any other nature, that are deemed or alleged to have resulted from or been caused by this website or its contents, including, but without limitation to, errors, inaccuracies or ambiguity in this website or its contents, failures, malfunctions, delays or interruptions in operation or transmission, any persons use or misuse of this website or its content, any errors or omissions in content, damage for loss of Bitcoin or other crypto assets, loss of business, loss of profits, business interruption, loss of information, or any other pecuniary or consequential loss or damage (even if the operators of this website have been notified of such risk of loss or damage).

+

WE WILL NOT BE HELD LIABLE FOR ANY LOSS OR DAMAGES, WHETHER DIRECT, INDIRECT, OR ANY OTHER NATURE, THAT ARE DEEMED OR ALLEGED TO HAVE RESULTED FROM OR BEEN CAUSED BY THIS WEBSITE OR ITS CONTENTS, INCLUDING, BUT WITHOUT LIMITATION TO, ERRORS, INACCURACIES OR AMBIGUITY IN THIS WEBSITE OR ITS CONTENTS, FAILURES, MALFUNCTIONS, DELAYS OR INTERRUPTIONS IN OPERATION OR TRANSMISSION, ANY PERSONS USE OR MISUSE OF THIS WEBSITE OR ITS CONTENT, ANY ERRORS OR OMISSIONS IN CONTENT, DAMAGE FOR LOSS OF BITCOIN OR OTHER CRYPTO ASSETS, LOSS OF BUSINESS, LOSS OF PROFITS, BUSINESS INTERRUPTION, LOSS OF INFORMATION, OR ANY OTHER PECUNIARY OR CONSEQUENTIAL LOSS OR DAMAGE (EVEN IF WE HAVE BEEN NOTIFIED OF SUCH RISK OF LOSS OR DAMAGE).


-

PRIVACY POLICY

+

NO ADVERTISING

-

Out of respect for the Bitcoin community, this website does not utilize any third-party trackers or cookies, and the operators of this website do not share any user data with third-parties. However, your IP address may be collected as part of basic webserver logs necessary for systems administration purposes, and as part of an anonymized self-hosted statistics application for analytics. To protect your privacy, use Tor browser to access this website's Tor V3 onion hostname to conceal your IP address, or alternatively install and use your own self-hosted instance of this website.

- -
- -

BITCOIN ONLY POLICY

- -

Out of respect for the Bitcoin community, this website does not support altcoins, and is generally "Bitcoin Only". The IOU tokens for Bitcoin and fiat currencies on the Liquid network, and the BSQ colored Bitcoin for DAO governance on the Bisq Network, are not considered altcoins as they do not distract users from Bitcoin and are part of our stated mission to support the entire Bitcoin ecosystem including Bitcoin Layer 2 Networks.

- -
- -

EXTERNAL LINK POLICY

- -

Out of respect for the Bitcoin community, this website does not display advertising, and generally does not link to external websites. However, exceptions are made for references to Bitcoin's technical documentation, for acknowledgements of individual members and open-source projects within the Bitcoin community, and for direct contributors and supporters of The Mempool Open Source Project, as follows:

+

Out of respect for the Bitcoin community, this website does not display advertising, and generally does not link to external websites. However, external links are made for references to Bitcoin's technical documentation, for acknowledgements of individual members and open-source projects within the Bitcoin community, and for direct contributors and supporters of The Mempool Open Source Project, as follows:

However, we reserve the right to remove any links from our website that in our sole discretion are inappropriate. All donations are non-refundable.


+ + +

NO ALTCOINS

+ +

The mempool.space explorer is Bitcoin Only.

+ +

Unfortunately, the liquid.network and bisq.markets explorers cannot be considered Bitcoin Only, as they may display altcoins as part of their core network functionality. We do not endorse any altcoins and encourage you to stay Bitcoin Only. Please see bitcoin-only.com for more Bitcoin Only resources.

+ +
+ +
+

EOF

diff --git a/frontend/src/app/components/terms-of-service/terms-of-service.component.scss b/frontend/src/app/components/terms-of-service/terms-of-service.component.scss index 8d1c8b69c..e69de29bb 100644 --- a/frontend/src/app/components/terms-of-service/terms-of-service.component.scss +++ b/frontend/src/app/components/terms-of-service/terms-of-service.component.scss @@ -1 +0,0 @@ - diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 611e00866..fa7e87a87 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -138,6 +138,8 @@
From 5548d08a9e6db78aaea9c2657bb65a2fc5665855 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 3 Aug 2021 12:19:51 +0900 Subject: [PATCH 05/11] Remove debug env var for cypress testsuite runs --- .github/workflows/cypress.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index eeda07c7d..51bedc38c 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -37,4 +37,3 @@ jobs: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }} - DEBUG: 'cypress:*' From 43e222b9dfb6c407ace5ad023d45d4c288ba8d44 Mon Sep 17 00:00:00 2001 From: Priyansh <43826321+priyanshiiit@users.noreply.github.com> Date: Tue, 3 Aug 2021 16:57:02 +0530 Subject: [PATCH 06/11] Raw Hex of Objects in Details Tab #616 (#682) * Added Block Hex in Details * Added Raw Tx in Transaction Details * Backend Updates --- .../bitcoin/bitcoin-api-abstract-factory.ts | 2 ++ backend/src/api/bitcoin/bitcoin-api.ts | 5 ++++ backend/src/api/bitcoin/esplora-api.ts | 6 +++++ backend/src/api/transaction-utils.ts | 5 ++++ backend/src/index.ts | 2 ++ backend/src/mempool.interfaces.ts | 1 + backend/src/routes.ts | 24 +++++++++++++++++++ frontend/angular.json | 3 +++ .../app/components/block/block.component.html | 4 ++++ .../transaction/transaction.component.html | 4 ++++ 10 files changed, 56 insertions(+) diff --git a/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts b/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts index 906cc0f95..9cdf052f2 100644 --- a/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts +++ b/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts @@ -7,8 +7,10 @@ export interface AbstractBitcoinApi { $getTxIdsForBlock(hash: string): Promise; $getBlockHash(height: number): Promise; $getBlockHeader(hash: string): Promise; + $getRawBlock(hash: string): Promise; $getBlock(hash: string): Promise; $getAddress(address: string): Promise; $getAddressTransactions(address: string, lastSeenTxId: string): Promise; $getAddressPrefix(prefix: string): string[]; + } diff --git a/backend/src/api/bitcoin/bitcoin-api.ts b/backend/src/api/bitcoin/bitcoin-api.ts index 0af44d2a8..2110dc659 100644 --- a/backend/src/api/bitcoin/bitcoin-api.ts +++ b/backend/src/api/bitcoin/bitcoin-api.ts @@ -56,6 +56,11 @@ class BitcoinApi implements AbstractBitcoinApi { .then((rpcBlock: IBitcoinApi.Block) => rpcBlock.tx); } + $getRawBlock(hash: string): Promise { + return this.bitcoindClient.getBlock(hash, 0); + } + + $getBlockHash(height: number): Promise { return this.bitcoindClient.getBlockHash(height); } diff --git a/backend/src/api/bitcoin/esplora-api.ts b/backend/src/api/bitcoin/esplora-api.ts index 86d4179ad..aa1d46e04 100644 --- a/backend/src/api/bitcoin/esplora-api.ts +++ b/backend/src/api/bitcoin/esplora-api.ts @@ -40,6 +40,12 @@ class ElectrsApi implements AbstractBitcoinApi { .then((response) => response.data); } + $getRawBlock(hash: string): Promise { + return axios.get(config.ESPLORA.REST_API_URL + '/block/' + hash + '/raw', this.axiosConfig) + .then((response) => response.data); + } + + $getBlock(hash: string): Promise { return axios.get(config.ESPLORA.REST_API_URL + '/block/' + hash, this.axiosConfig) .then((response) => response.data); diff --git a/backend/src/api/transaction-utils.ts b/backend/src/api/transaction-utils.ts index 2a5d3a9ad..cb84396ba 100644 --- a/backend/src/api/transaction-utils.ts +++ b/backend/src/api/transaction-utils.ts @@ -25,6 +25,11 @@ class TransactionUtils { return this.extendTransaction(transaction); } + public async $getRawTransactionExtended(txId: string, addPrevouts = false): Promise { + const transaction: IEsploraApi.Transaction = await bitcoinApi.$getRawTransaction(txId, true, addPrevouts); + return this.extendTransaction(transaction); + } + private extendTransaction(transaction: IEsploraApi.Transaction): TransactionExtended { // @ts-ignore if (transaction.vsize) { diff --git a/backend/src/index.ts b/backend/src/index.ts index 2d1ed5456..3b1e4e1d8 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -235,10 +235,12 @@ class Server { .get(config.MEMPOOL.API_URL_PREFIX + 'mempool/txids', routes.getMempoolTxIds) .get(config.MEMPOOL.API_URL_PREFIX + 'mempool/recent', routes.getRecentMempoolTransactions) .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId', routes.getTransaction) + .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId/raw', routes.getRawTransaction) .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId/status', routes.getTransactionStatus) .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId/outspends', routes.getTransactionOutspends) .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash', routes.getBlock) .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash/header', routes.getBlockHeader) + .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash/raw', routes.getRawBlock) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks', routes.getBlocks) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks/:height', routes.getBlocks) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks/tip/height', routes.getBlockTipHeight) diff --git a/backend/src/mempool.interfaces.ts b/backend/src/mempool.interfaces.ts index fae78ef9b..bac267a05 100644 --- a/backend/src/mempool.interfaces.ts +++ b/backend/src/mempool.interfaces.ts @@ -31,6 +31,7 @@ export interface TransactionExtended extends IEsploraApi.Transaction { bestDescendant?: BestDescendant | null; cpfpChecked?: boolean; deleteAfter?: number; + hex?:string } interface Ancestor { diff --git a/backend/src/routes.ts b/backend/src/routes.ts index bc42a9868..2bfc9b4fd 100644 --- a/backend/src/routes.ts +++ b/backend/src/routes.ts @@ -484,6 +484,20 @@ class Routes { } } + public async getRawTransaction(req: Request, res: Response) { + try { + const transaction = await transactionUtils.$getRawTransactionExtended(req.params.txId, true); + res.setHeader('content-type', 'text/plain'); + res.send(transaction.hex); + } catch (e) { + let statusCode = 500; + if (e.message && e.message.indexOf('No such mempool or blockchain transaction') > -1) { + statusCode = 404; + } + res.status(statusCode).send(e.message || e); + } + } + public async getTransactionStatus(req: Request, res: Response) { try { const transaction = await transactionUtils.$getTransactionExtended(req.params.txId, true); @@ -516,6 +530,16 @@ class Routes { } } + public async getRawBlock(req: Request, res: Response) { + try { + const blockHeader = await bitcoinApi.$getRawBlock(req.params.hash); + res.setHeader('content-type', 'text/plain'); + res.send(blockHeader); + } catch (e) { + res.status(500).send(e.message || e); + } + } + public async getBlocks(req: Request, res: Response) { try { loadingIndicators.setProgress('blocks', 0); diff --git a/frontend/angular.json b/frontend/angular.json index 3a2c2d94c..1e4fdfc8a 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -1,5 +1,8 @@ { "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "cli": { + "analytics": false + }, "version": 1, "newProjectRoot": "projects", "projects": { diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 51740e636..5e98d712d 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -118,6 +118,10 @@ Block Header Hex + + Raw Block + + diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 88d85fe87..80ad6d5f8 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -216,6 +216,10 @@ Weight + + Raw Tx + + From b9246a72f27c33613575d611eeb233d06fd603e7 Mon Sep 17 00:00:00 2001 From: wiz Date: Wed, 4 Aug 2021 00:00:18 +0900 Subject: [PATCH 07/11] Add Foundry as Enterprise Sponsor (#685) --- frontend/src/app/components/about/about.component.html | 4 ++++ frontend/src/resources/profile/foundry.svg | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 frontend/src/resources/profile/foundry.svg diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 2622d04b0..82ae65af4 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -43,6 +43,10 @@ Exodus + + + Foundry + diff --git a/frontend/src/resources/profile/foundry.svg b/frontend/src/resources/profile/foundry.svg new file mode 100644 index 000000000..3647e994a --- /dev/null +++ b/frontend/src/resources/profile/foundry.svg @@ -0,0 +1,9 @@ + + + + + + + + + From 8eb70416da99ef5379370b0684f9f8204e0fcb9a Mon Sep 17 00:00:00 2001 From: softsimon Date: Tue, 3 Aug 2021 18:15:33 +0300 Subject: [PATCH 08/11] Removing "raw block". --- .../src/api/bitcoin/bitcoin-api-abstract-factory.ts | 2 -- backend/src/api/bitcoin/esplora-api.interface.ts | 1 + backend/src/api/bitcoin/esplora-api.ts | 6 ------ backend/src/api/transaction-utils.ts | 5 ----- backend/src/index.ts | 3 +-- backend/src/mempool.interfaces.ts | 1 - backend/src/routes.ts | 12 +----------- .../src/app/components/block/block.component.html | 4 ---- .../transaction/transaction.component.html | 4 ++-- 9 files changed, 5 insertions(+), 33 deletions(-) diff --git a/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts b/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts index 9cdf052f2..906cc0f95 100644 --- a/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts +++ b/backend/src/api/bitcoin/bitcoin-api-abstract-factory.ts @@ -7,10 +7,8 @@ export interface AbstractBitcoinApi { $getTxIdsForBlock(hash: string): Promise; $getBlockHash(height: number): Promise; $getBlockHeader(hash: string): Promise; - $getRawBlock(hash: string): Promise; $getBlock(hash: string): Promise; $getAddress(address: string): Promise; $getAddressTransactions(address: string, lastSeenTxId: string): Promise; $getAddressPrefix(prefix: string): string[]; - } diff --git a/backend/src/api/bitcoin/esplora-api.interface.ts b/backend/src/api/bitcoin/esplora-api.interface.ts index 9ca3cfb75..7ac4e1675 100644 --- a/backend/src/api/bitcoin/esplora-api.interface.ts +++ b/backend/src/api/bitcoin/esplora-api.interface.ts @@ -9,6 +9,7 @@ export namespace IEsploraApi { vin: Vin[]; vout: Vout[]; status: Status; + hex?: string; } export interface Recent { diff --git a/backend/src/api/bitcoin/esplora-api.ts b/backend/src/api/bitcoin/esplora-api.ts index aa1d46e04..86d4179ad 100644 --- a/backend/src/api/bitcoin/esplora-api.ts +++ b/backend/src/api/bitcoin/esplora-api.ts @@ -40,12 +40,6 @@ class ElectrsApi implements AbstractBitcoinApi { .then((response) => response.data); } - $getRawBlock(hash: string): Promise { - return axios.get(config.ESPLORA.REST_API_URL + '/block/' + hash + '/raw', this.axiosConfig) - .then((response) => response.data); - } - - $getBlock(hash: string): Promise { return axios.get(config.ESPLORA.REST_API_URL + '/block/' + hash, this.axiosConfig) .then((response) => response.data); diff --git a/backend/src/api/transaction-utils.ts b/backend/src/api/transaction-utils.ts index cb84396ba..2a5d3a9ad 100644 --- a/backend/src/api/transaction-utils.ts +++ b/backend/src/api/transaction-utils.ts @@ -25,11 +25,6 @@ class TransactionUtils { return this.extendTransaction(transaction); } - public async $getRawTransactionExtended(txId: string, addPrevouts = false): Promise { - const transaction: IEsploraApi.Transaction = await bitcoinApi.$getRawTransaction(txId, true, addPrevouts); - return this.extendTransaction(transaction); - } - private extendTransaction(transaction: IEsploraApi.Transaction): TransactionExtended { // @ts-ignore if (transaction.vsize) { diff --git a/backend/src/index.ts b/backend/src/index.ts index 3b1e4e1d8..f3a06d7d5 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -235,12 +235,11 @@ class Server { .get(config.MEMPOOL.API_URL_PREFIX + 'mempool/txids', routes.getMempoolTxIds) .get(config.MEMPOOL.API_URL_PREFIX + 'mempool/recent', routes.getRecentMempoolTransactions) .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId', routes.getTransaction) - .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId/raw', routes.getRawTransaction) + .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId/hex', routes.getRawTransaction) .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId/status', routes.getTransactionStatus) .get(config.MEMPOOL.API_URL_PREFIX + 'tx/:txId/outspends', routes.getTransactionOutspends) .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash', routes.getBlock) .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash/header', routes.getBlockHeader) - .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash/raw', routes.getRawBlock) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks', routes.getBlocks) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks/:height', routes.getBlocks) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks/tip/height', routes.getBlockTipHeight) diff --git a/backend/src/mempool.interfaces.ts b/backend/src/mempool.interfaces.ts index bac267a05..fae78ef9b 100644 --- a/backend/src/mempool.interfaces.ts +++ b/backend/src/mempool.interfaces.ts @@ -31,7 +31,6 @@ export interface TransactionExtended extends IEsploraApi.Transaction { bestDescendant?: BestDescendant | null; cpfpChecked?: boolean; deleteAfter?: number; - hex?:string } interface Ancestor { diff --git a/backend/src/routes.ts b/backend/src/routes.ts index 2bfc9b4fd..cf4caeec8 100644 --- a/backend/src/routes.ts +++ b/backend/src/routes.ts @@ -486,7 +486,7 @@ class Routes { public async getRawTransaction(req: Request, res: Response) { try { - const transaction = await transactionUtils.$getRawTransactionExtended(req.params.txId, true); + const transaction: IEsploraApi.Transaction = await bitcoinApi.$getRawTransaction(req.params.txId, true); res.setHeader('content-type', 'text/plain'); res.send(transaction.hex); } catch (e) { @@ -530,16 +530,6 @@ class Routes { } } - public async getRawBlock(req: Request, res: Response) { - try { - const blockHeader = await bitcoinApi.$getRawBlock(req.params.hash); - res.setHeader('content-type', 'text/plain'); - res.send(blockHeader); - } catch (e) { - res.status(500).send(e.message || e); - } - } - public async getBlocks(req: Request, res: Response) { try { loadingIndicators.setProgress('blocks', 0); diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 5e98d712d..51740e636 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -118,10 +118,6 @@ Block Header Hex - - Raw Block - - diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 80ad6d5f8..fb184b99b 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -217,8 +217,8 @@ - Raw Tx - + Transaction Hex + From 96f14d2781058c8b65c9e117bb0d2754a721eaf2 Mon Sep 17 00:00:00 2001 From: softsimon Date: Tue, 3 Aug 2021 18:35:49 +0300 Subject: [PATCH 09/11] Flipping Merkle root and Bits location for more table alignment. --- frontend/src/app/components/block/block.component.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 51740e636..df92af6b2 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -92,14 +92,14 @@ Version {{ block.version | decimal2hex }} Taproot - - Merkle root -

{{ block.merkle_root }}

- Bits {{ block.bits | decimal2hex }} + + Merkle root +

{{ block.merkle_root }}

+ From cb5877ba0a947e7e7ef196f7985f5a92457c7642 Mon Sep 17 00:00:00 2001 From: softsimon Date: Tue, 3 Aug 2021 18:37:31 +0300 Subject: [PATCH 10/11] Update i18n. --- frontend/src/locale/messages.xlf | 115 ++++++++++++++++++------------- 1 file changed, 68 insertions(+), 47 deletions(-) diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 1e09f3156..e0c8a4706 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -747,15 +747,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,146 + 140,142 Terms of Service shared.terms-of-service @@ -1079,7 +1079,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1286,7 +1286,7 @@ Community Sponsors ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1294,7 +1294,7 @@ Become a sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1302,7 +1302,7 @@ Navigate to https://mempool.space/sponsor to sponsor src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1314,7 +1314,7 @@ Community Integrations src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1322,7 +1322,7 @@ Community Alliances src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1330,7 +1330,7 @@ Project Contributors src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1338,7 +1338,7 @@ Project Maintainers src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2182,6 +2182,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API @@ -2501,11 +2514,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2517,7 +2530,7 @@ src/app/dashboard/dashboard.component.html - 169,173 + 171,175 sat/vB shared.sat-vbyte @@ -2580,22 +2593,22 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty @@ -2707,7 +2720,7 @@ src/app/dashboard/dashboard.component.html - 194,196 + 196,198 dashboard.backend-is-synchronizing @@ -2719,7 +2732,7 @@ src/app/dashboard/dashboard.component.html - 199,205 + 201,207 vB/s shared.vbytes-per-second @@ -2732,7 +2745,7 @@ src/app/dashboard/dashboard.component.html - 173,174 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2758,7 +2771,7 @@ src/app/dashboard/dashboard.component.html - 215,216 + 217,218 shared.blocks @@ -2770,7 +2783,7 @@ src/app/dashboard/dashboard.component.html - 216,217 + 218,219 shared.block @@ -3248,7 +3261,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3289,11 +3302,19 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3301,7 +3322,7 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3309,7 +3330,7 @@ Fee src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3318,7 +3339,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3327,7 +3348,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3601,7 +3622,7 @@ src/app/dashboard/dashboard.component.html - 175,179 + 177,181 dashboard.latest-blocks.transaction-count @@ -3649,7 +3670,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 166,167 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3658,7 +3679,7 @@ Purging src/app/dashboard/dashboard.component.html - 167,168 + 169,170 Purgin below fee dashboard.purging @@ -3667,7 +3688,7 @@ Memory usage src/app/dashboard/dashboard.component.html - 179,180 + 181,182 Memory usage dashboard.memory-usage @@ -3676,7 +3697,7 @@ Incoming transactions src/app/dashboard/dashboard.component.html - 191,192 + 193,194 dashboard.incoming-transactions @@ -3684,7 +3705,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 206,209 + 208,211 dashboard.difficulty-adjustment @@ -3692,11 +3713,11 @@ Remaining src/app/dashboard/dashboard.component.html - 212,214 + 214,216 src/app/dashboard/dashboard.component.html - 261,264 + 263,266 difficulty-box.remaining @@ -3704,11 +3725,11 @@ Estimate src/app/dashboard/dashboard.component.html - 221,222 + 223,224 src/app/dashboard/dashboard.component.html - 268,271 + 270,273 difficulty-box.estimate @@ -3716,7 +3737,7 @@ Previous src/app/dashboard/dashboard.component.html - 233,234 + 235,236 difficulty-box.previous @@ -3724,11 +3745,11 @@ Current Period src/app/dashboard/dashboard.component.html - 245,246 + 247,248 src/app/dashboard/dashboard.component.html - 275,278 + 277,280 difficulty-box.current-period From f03249761b1ada0d3c6281957a1d93160eeb0b2e Mon Sep 17 00:00:00 2001 From: softsimon Date: Tue, 3 Aug 2021 18:38:34 +0300 Subject: [PATCH 11/11] Updating i18n from transifex. --- frontend/src/locale/messages.ar.xlf | 146 +++++++++++--------- frontend/src/locale/messages.ca.xlf | 139 ++++++++++--------- frontend/src/locale/messages.cs.xlf | 141 +++++++++++--------- frontend/src/locale/messages.de.xlf | 147 +++++++++++--------- frontend/src/locale/messages.en_US.xlf | 139 ++++++++++--------- frontend/src/locale/messages.es.xlf | 141 +++++++++++--------- frontend/src/locale/messages.fa.xlf | 141 +++++++++++--------- frontend/src/locale/messages.fi.xlf | 177 ++++++++++++++----------- frontend/src/locale/messages.fr.xlf | 139 ++++++++++--------- frontend/src/locale/messages.he.xlf | 141 +++++++++++--------- frontend/src/locale/messages.hi.xlf | 139 ++++++++++--------- frontend/src/locale/messages.hr.xlf | 139 ++++++++++--------- frontend/src/locale/messages.hu.xlf | 151 ++++++++++++--------- frontend/src/locale/messages.it.xlf | 141 +++++++++++--------- frontend/src/locale/messages.ja.xlf | 141 +++++++++++--------- frontend/src/locale/messages.ka.xlf | 139 ++++++++++--------- frontend/src/locale/messages.ko.xlf | 141 +++++++++++--------- frontend/src/locale/messages.nb.xlf | 141 +++++++++++--------- frontend/src/locale/messages.nl.xlf | 141 +++++++++++--------- frontend/src/locale/messages.pl.xlf | 141 +++++++++++--------- frontend/src/locale/messages.pt.xlf | 141 +++++++++++--------- frontend/src/locale/messages.ru.xlf | 141 +++++++++++--------- frontend/src/locale/messages.sl.xlf | 141 +++++++++++--------- frontend/src/locale/messages.sv.xlf | 141 +++++++++++--------- frontend/src/locale/messages.tr.xlf | 141 +++++++++++--------- frontend/src/locale/messages.uk.xlf | 141 +++++++++++--------- frontend/src/locale/messages.vi.xlf | 141 +++++++++++--------- frontend/src/locale/messages.zh.xlf | 139 ++++++++++--------- 28 files changed, 2298 insertions(+), 1693 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 41054e257..72b89eb52 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ رعاة من المجتمع ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ كن راعياً ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ انتقل إلى https://mempool.space/sponsor الى الرعاة src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ التكامل المجتمعي src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ التحالفات المجتمعية src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ المساهمون في المشروع src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ فريق صيانة المشروع src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -1934,6 +1934,7 @@ Returns details about difficulty adjustment. + تفاصيل عوائد صعوبة التعديل. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2047,6 +2048,7 @@ Returns the hex-encoded block header. + عوائد سلسلة أرقام سداسية عشرية مشفرة كعنوان كتله. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2371,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2673,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2717,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2733,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2800,24 +2815,24 @@ block.miner - - Merkle root - جذع ميركيل - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits وحدات صغيرة. src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + جذع ميركيل + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty الصعوبه @@ -2838,6 +2853,7 @@ Block Header Hex + عنوان الكتلة HEX src/app/components/block/block.component.html 118,119 @@ -2940,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2953,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2967,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2995,7 +3011,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3008,7 +3024,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3065,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3376,11 +3392,7 @@ في ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3408,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3434,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3522,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3567,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. الحوالة غير موجودة. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3581,7 +3605,7 @@ في انتظار ظهورها على mempool src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3590,7 +3614,7 @@ الرسوم src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3600,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3610,7 +3634,7 @@ معدل الرسوم الفعلي src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3884,6 +3908,7 @@ Transaction Fees + رسوم التحويل src/app/dashboard/dashboard.component.html 6,9 @@ -3912,7 +3937,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3966,7 +3991,7 @@ الحد الادنى للعمولة src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3976,7 +4001,7 @@ تطهير src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3986,7 +4011,7 @@ استخدام الذاكرة src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3996,7 +4021,7 @@ الحوالات الواردة src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4005,7 +4030,7 @@ تعديل الصعوبة src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4014,11 +4039,11 @@ متبقي src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4027,19 +4052,20 @@ متوقعه src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate Previous + السابق src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4048,11 +4074,11 @@ الفترة الحالية src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.ca.xlf b/frontend/src/locale/messages.ca.xlf index bc8790283..ef581c77b 100644 --- a/frontend/src/locale/messages.ca.xlf +++ b/frontend/src/locale/messages.ca.xlf @@ -450,7 +450,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -475,7 +475,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -815,15 +815,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1172,7 +1172,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1392,7 +1392,7 @@ Patrocinadors de la comunitat ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1401,7 +1401,7 @@ Feu-vos patrocinador ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1410,7 +1410,7 @@ Anar ahttps://mempool.space/sponsorper a patrocinar src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1422,7 +1422,7 @@ Community Integrations src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1430,7 +1430,7 @@ Community Alliances src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1439,7 +1439,7 @@ Col·laboradors del projecte src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1447,7 +1447,7 @@ Project Maintainers src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2307,6 +2307,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2597,11 +2610,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2641,11 +2654,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2657,7 +2670,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2721,23 +2734,23 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Dificultat @@ -2857,9 +2870,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2870,7 +2883,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2883,7 +2896,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2909,7 +2922,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2921,7 +2934,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -2973,7 +2986,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3265,11 +3278,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3297,7 +3306,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3323,6 +3332,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3404,7 +3417,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3445,11 +3458,19 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3457,7 +3478,7 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3465,7 +3486,7 @@ Fee src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3475,7 +3496,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3484,7 +3505,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3769,7 +3790,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3818,7 +3839,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3827,7 +3848,7 @@ Purging src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3836,7 +3857,7 @@ Memory usage src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3845,7 +3866,7 @@ Incoming transactions src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3853,7 +3874,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3861,11 +3882,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3873,11 +3894,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -3885,7 +3906,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -3893,11 +3914,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index e94d95603..dcb12c20c 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Komunitní sponzoři ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Staňte se sponzorem ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Přejděte na https://mempool.space/sponsor a sponzorujte nás src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Komunitní integrace src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Komunitní aliance src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Přispěvatelé projektu src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Správci projektu src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2370,6 +2370,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2672,11 +2685,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2716,11 +2729,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2732,7 +2745,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2799,24 +2812,24 @@ block.miner - - Merkle root - Merklův kořen - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bity src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merklův kořen + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Obtížnost @@ -2939,9 +2952,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2952,7 +2965,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2966,7 +2979,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2993,7 +3006,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3005,7 +3018,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3062,7 +3075,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3369,11 +3382,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3401,7 +3410,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3427,6 +3436,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3515,7 +3528,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3560,12 +3573,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transakce nebyla nalezena. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3574,7 +3595,7 @@ Čekání na to, až se objeví v mempoolu... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3583,7 +3604,7 @@ Poplatek src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3593,7 +3614,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3603,7 +3624,7 @@ Efektivní poplatek src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3905,7 +3926,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3959,7 +3980,7 @@ Minimální poplatek src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3969,7 +3990,7 @@ Čištění src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3979,7 +4000,7 @@ Využití paměti src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3989,7 +4010,7 @@ Příchozí transakce src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3997,7 +4018,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4005,11 +4026,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4017,11 +4038,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4029,7 +4050,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4037,11 +4058,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index b1c180ee6..c5e2e488d 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Community-Sponsoren ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Werde ein Sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Gehen Sie zu https://mempool.space/sponsor um zu sponsern src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Community-Integrationen src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Community-Allianzen src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Projektmitwirkende src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Projektbetreuer src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2373,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2675,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2719,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2735,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2802,24 +2815,24 @@ block.miner - - Merkle root - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Schwierigkeit @@ -2943,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2956,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2970,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2998,7 +3011,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3011,7 +3024,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3068,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3379,11 +3392,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3411,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3437,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3525,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3570,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transaktion nicht gefunden. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3584,7 +3605,7 @@ Warten bis sie im Mempool erscheint... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3593,7 +3614,7 @@ Gebühr src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3603,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3613,7 +3634,7 @@ Effektiver Gebührensatz src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3887,6 +3908,7 @@ Transaction Fees + Transaktionsgebühr src/app/dashboard/dashboard.component.html 6,9 @@ -3915,7 +3937,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3969,7 +3991,7 @@ Mindestgebühr src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3979,17 +4001,17 @@ Streichung src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging Memory usage - Speicherausnutzung + Speichernutzung src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3999,7 +4021,7 @@ Eingehende Transaktionen src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4008,7 +4030,7 @@ Schwierigkeitsanpassung src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4017,11 +4039,11 @@ Verbleibend src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4030,19 +4052,20 @@ Schätzung src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate Previous + Vorherige src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4051,11 +4074,11 @@ Laufende Periode src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period @@ -4117,7 +4140,7 @@ days - Tage + Tagen src/app/shared/i18n/dates.ts 10 diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 03d0c1627..e66b53d27 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -405,7 +405,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -429,7 +429,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -746,15 +746,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1078,7 +1078,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1285,7 +1285,7 @@ Community Sponsors ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1293,7 +1293,7 @@ Become a sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1301,7 +1301,7 @@ Navigate to https://mempool.space/sponsor to sponsor src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1313,7 +1313,7 @@ Community Integrations src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1321,7 +1321,7 @@ Community Alliances src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1329,7 +1329,7 @@ Project Contributors src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1337,7 +1337,7 @@ Project Maintainers src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2181,6 +2181,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API @@ -2456,11 +2469,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2500,11 +2513,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2516,7 +2529,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2579,22 +2592,22 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty @@ -2706,9 +2719,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2718,7 +2731,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2731,7 +2744,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2757,7 +2770,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2769,7 +2782,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -2821,7 +2834,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3109,11 +3122,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3141,7 +3150,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3167,6 +3176,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3247,7 +3260,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3288,11 +3301,19 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3300,7 +3321,7 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3308,7 +3329,7 @@ Fee src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3317,7 +3338,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3326,7 +3347,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3600,7 +3621,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3648,7 +3669,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3657,7 +3678,7 @@ Purging src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3666,7 +3687,7 @@ Memory usage src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3675,7 +3696,7 @@ Incoming transactions src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3683,7 +3704,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3691,11 +3712,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3703,11 +3724,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -3715,7 +3736,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -3723,11 +3744,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 5d9041411..c37de506e 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Patrocinadores de la comunidad ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Sé patrocinador ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Navega a https://mempool.space/sponsor para patrocinar src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Integraciones de la comunidad src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Alianzas de la comunidad src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Contribuyentes al proyecto src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Mantenedores del proyecto src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2373,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2675,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2719,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2735,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2802,24 +2815,24 @@ block.miner - - Merkle root - Raíz de Merkle - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Raíz de Merkle + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Dificultad @@ -2943,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2956,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2970,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2998,7 +3011,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3011,7 +3024,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3068,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3379,11 +3392,7 @@ En ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3411,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3437,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3525,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3570,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transacción no encontrada src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3584,7 +3605,7 @@ Esperando a que aparezca en la mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3593,7 +3614,7 @@ Tasa src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3603,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3613,7 +3634,7 @@ Ratio de tasa efectiva src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3916,7 +3937,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3970,7 +3991,7 @@ Tarifa mínima src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3980,7 +4001,7 @@ Purga src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3990,7 +4011,7 @@ Uso de memoria src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -4000,7 +4021,7 @@ Transacciones entrantes src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4009,7 +4030,7 @@ Ajuste de Dificultad src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4018,11 +4039,11 @@ Restante src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4031,11 +4052,11 @@ Estimar src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4044,7 +4065,7 @@ Previo src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4053,11 +4074,11 @@ Período Actual src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index ea3adf28b..ea093b3bd 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ حامیان جامعه ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ حامی شوید ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ برای حامی شدن به اینجا برو https://mempool.space/sponsor src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ پیاده‌سازی‌ها src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ متحدین جامعه src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ مشارکت کنندگان src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ نگهدارندگان پروژه src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2377,6 +2377,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API رابط برنامه‌نویسی نرم‌افزار (API) @@ -2679,11 +2692,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2723,11 +2736,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2739,7 +2752,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2806,24 +2819,24 @@ block.miner - - Merkle root - ریشه درخت مرکل - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits بیت src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + ریشه درخت مرکل + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty سختی شبکه @@ -2947,9 +2960,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2960,7 +2973,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2974,7 +2987,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -3002,7 +3015,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3015,7 +3028,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3072,7 +3085,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3383,11 +3396,7 @@ در حدود src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3415,7 +3424,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3441,6 +3450,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3529,7 +3542,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3574,12 +3587,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. تراکنش پیدا نشد. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3588,7 +3609,7 @@ منتظر دیده‌شدن در mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3597,7 +3618,7 @@ کارمزد src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3607,7 +3628,7 @@ ساتوشی src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3617,7 +3638,7 @@ نرخ کارمزد مؤثر src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3920,7 +3941,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3974,7 +3995,7 @@ حداقل کارمزد src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3984,7 +4005,7 @@ آستانه حذف src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3994,7 +4015,7 @@ حافظه مصرف‌شده src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -4004,7 +4025,7 @@ تراکنش‌های منتشرشده src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4013,7 +4034,7 @@ تنظیم سختی بلاک‌ها src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4022,11 +4043,11 @@ باقیمانده src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4035,11 +4056,11 @@ تخمین src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4048,7 +4069,7 @@ قبلی src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4057,11 +4078,11 @@ دوره فعلی src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index 675484663..18c7d3509 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Yhteisön sponsorit ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Ryhdy sponsoriksi ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Siirry osoitteeseen https://mempool.space/sponsor sponsoroidaksesi src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Yhteisön integraatiot src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Yhteisöliittoumat src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Projektin avustajat src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Projektin ylläpitäjät src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2373,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2675,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2719,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2735,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2802,24 +2815,24 @@ block.miner - - Merkle root - Merkle-juuri - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bitit src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle-juuri + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Vaikeus @@ -2943,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2956,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2970,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2987,7 +3000,7 @@ blocks - lohkot + lohkoa src/app/components/footer/footer.component.html 22,23 @@ -2998,20 +3011,20 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks block - lohkot + lohkoa src/app/components/footer/footer.component.html 23,24 src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3068,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3376,14 +3389,10 @@ In ~ - sisällä~ + ~ sisällä src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3411,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3437,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3525,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3570,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Siirtotapahtumaa ei löydy. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3584,7 +3605,7 @@ Odotetaan sen ilmestymistä mempooliin... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3593,7 +3614,7 @@ Siirtokulu src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3603,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3613,7 +3634,7 @@ Todellinen siirtokulutaso src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3887,6 +3908,7 @@ Transaction Fees + Siirtokulut src/app/dashboard/dashboard.component.html 6,9 @@ -3915,7 +3937,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3969,7 +3991,7 @@ Vähimmäiskulu src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3979,7 +4001,7 @@ Tyhjennys src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3989,7 +4011,7 @@ Muistin käyttö src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3999,7 +4021,7 @@ Saapuvat siirtotapahtumat src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4008,7 +4030,7 @@ Vaikeudensäätö src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4017,11 +4039,11 @@ Jäljellä src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4030,19 +4052,20 @@ Arvio src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate Previous + Edellinen src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4051,17 +4074,17 @@ Nykyinen jakso src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period year - vuosi + vuosi src/app/shared/i18n/dates.ts 3 @@ -4069,7 +4092,7 @@ years - vuodet + vuotta src/app/shared/i18n/dates.ts 4 @@ -4077,7 +4100,7 @@ month - kuukausi + kuukausi src/app/shared/i18n/dates.ts 5 @@ -4085,7 +4108,7 @@ months - kuukautta + kuukautta src/app/shared/i18n/dates.ts 6 @@ -4093,7 +4116,7 @@ week - viikko + viikko src/app/shared/i18n/dates.ts 7 @@ -4101,7 +4124,7 @@ weeks - viikkoa + viikkoa src/app/shared/i18n/dates.ts 8 @@ -4109,7 +4132,7 @@ day - päivä + päivä src/app/shared/i18n/dates.ts 9 @@ -4117,7 +4140,7 @@ days - päivät + päivää src/app/shared/i18n/dates.ts 10 @@ -4125,7 +4148,7 @@ hour - tunti + tunti src/app/shared/i18n/dates.ts 11 @@ -4133,7 +4156,7 @@ hours - tunnit + tuntia src/app/shared/i18n/dates.ts 12 @@ -4141,7 +4164,7 @@ minute - minuutti + minuutti src/app/shared/i18n/dates.ts 13 @@ -4149,7 +4172,7 @@ minutes - minuutteja + minuuttia src/app/shared/i18n/dates.ts 14 @@ -4157,7 +4180,7 @@ second - sekuntti + sekuntti src/app/shared/i18n/dates.ts 15 @@ -4165,7 +4188,7 @@ seconds - sekunnit + sekuntia src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 28bf331ea..52200450a 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -437,7 +437,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -462,7 +462,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -802,15 +802,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1159,7 +1159,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1385,7 +1385,7 @@ Sponsors de la communauté ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1394,7 +1394,7 @@ Devenir sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1403,7 +1403,7 @@ Rendez-vous sur https://mempool.space/sponsor pour soutenir le projet src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1415,7 +1415,7 @@ Community Integrations src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1423,7 +1423,7 @@ Community Alliances src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1431,7 +1431,7 @@ Project Contributors src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1439,7 +1439,7 @@ Project Maintainers src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2325,6 +2325,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2622,11 +2635,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2666,11 +2679,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2682,7 +2695,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2749,22 +2762,22 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty @@ -2885,9 +2898,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2898,7 +2911,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2912,7 +2925,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2939,7 +2952,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2951,7 +2964,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3008,7 +3021,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3314,11 +3327,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3346,7 +3355,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3372,6 +3381,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3459,7 +3472,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3502,12 +3515,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transaction introuvable. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3516,7 +3537,7 @@ Veuillez patienter pendant que nous attendons qu'elle apparaisse dans le mempool src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3525,7 +3546,7 @@ Frais src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3535,7 +3556,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3544,7 +3565,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3842,7 +3863,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3896,7 +3917,7 @@ Frais minimums src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3906,7 +3927,7 @@ Purgées src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3916,7 +3937,7 @@ Mémoire utilisée src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3926,7 +3947,7 @@ Transactions entrantes src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3934,7 +3955,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3942,11 +3963,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3954,11 +3975,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -3966,7 +3987,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -3974,11 +3995,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf index 78275da27..e4acaa345 100644 --- a/frontend/src/locale/messages.he.xlf +++ b/frontend/src/locale/messages.he.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1404,7 +1404,7 @@ נותני חסות מהקהילה ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1413,7 +1413,7 @@ הצטרף כנותן חסות ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1421,7 +1421,7 @@ Navigate to https://mempool.space/sponsor to sponsor src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1434,7 +1434,7 @@ שיתופי פעולה עם הקהילה src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1443,7 +1443,7 @@ בני ברית מהקהילה src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1452,7 +1452,7 @@ תורמי הפרוייקט src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1461,7 +1461,7 @@ מתחזקי הפרוייקט src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2349,6 +2349,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2647,11 +2660,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2691,11 +2704,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2707,7 +2720,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2774,24 +2787,24 @@ block.miner - - Merkle root - שורש מרקל - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits ביטים src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + שורש מרקל + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty קושי @@ -2913,9 +2926,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2926,7 +2939,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2940,7 +2953,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2967,7 +2980,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2979,7 +2992,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3036,7 +3049,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3347,11 +3360,7 @@ תוך ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3379,7 +3388,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3405,6 +3414,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3493,7 +3506,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3538,12 +3551,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. טרנזקציה לא נמצאה. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3552,7 +3573,7 @@ ממתין להופעתה בממפול.. src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3561,7 +3582,7 @@ עמלה src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3571,7 +3592,7 @@ סאטושיז src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3581,7 +3602,7 @@ שיעור עמלה אפקטיבי src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3883,7 +3904,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3937,7 +3958,7 @@ עמלה מינימלית src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3947,7 +3968,7 @@ סף עמלה src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3957,7 +3978,7 @@ שימוש בזיכרון src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3967,7 +3988,7 @@ טרנזקציות נכנסות src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3976,7 +3997,7 @@ התאמת קשי src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3985,11 +4006,11 @@ נותרו src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3998,11 +4019,11 @@ הערכה src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4010,7 +4031,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4019,11 +4040,11 @@ מחזור נוכחי src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf index efbee3c9f..8f82d49ba 100644 --- a/frontend/src/locale/messages.hi.xlf +++ b/frontend/src/locale/messages.hi.xlf @@ -447,7 +447,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -472,7 +472,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -812,15 +812,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1169,7 +1169,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1402,7 +1402,7 @@ समुदाय प्रायोजक ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1411,7 +1411,7 @@ प्रायोजक बनें ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1420,7 +1420,7 @@ प्रायोजक के लिए https://mempool.space/sponsor पर नेविगेट करें src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1433,7 +1433,7 @@ सामुदायिक एकीकरण src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1442,7 +1442,7 @@ सामुदायिक गठबंधन src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1451,7 +1451,7 @@ परियोजना योगदानकर्ता src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1460,7 +1460,7 @@ परियोजना अनुरक्षक src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2339,6 +2339,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API एपीआई @@ -2628,11 +2641,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2672,11 +2685,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2688,7 +2701,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2751,22 +2764,22 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty @@ -2878,9 +2891,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2890,7 +2903,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2903,7 +2916,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2929,7 +2942,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2941,7 +2954,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -2993,7 +3006,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3281,11 +3294,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3313,7 +3322,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3339,6 +3348,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3419,7 +3432,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3460,11 +3473,19 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3472,7 +3493,7 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3480,7 +3501,7 @@ Fee src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3489,7 +3510,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3498,7 +3519,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3772,7 +3793,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3820,7 +3841,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3829,7 +3850,7 @@ Purging src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3838,7 +3859,7 @@ Memory usage src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3847,7 +3868,7 @@ Incoming transactions src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3855,7 +3876,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3863,11 +3884,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3875,11 +3896,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -3887,7 +3908,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -3895,11 +3916,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index 844715093..dc221b20f 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -405,7 +405,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -429,7 +429,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -747,15 +747,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1083,7 +1083,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1291,7 +1291,7 @@ Community Sponsors ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1299,7 +1299,7 @@ Become a sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1307,7 +1307,7 @@ Navigate to https://mempool.space/sponsor to sponsor src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1319,7 +1319,7 @@ Community Integrations src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1327,7 +1327,7 @@ Community Alliances src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1335,7 +1335,7 @@ Project Contributors src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1343,7 +1343,7 @@ Project Maintainers src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2187,6 +2187,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API @@ -2463,11 +2476,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2507,11 +2520,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2523,7 +2536,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2586,22 +2599,22 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty @@ -2714,9 +2727,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2726,7 +2739,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2739,7 +2752,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2765,7 +2778,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2777,7 +2790,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -2829,7 +2842,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3117,11 +3130,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3149,7 +3158,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3175,6 +3184,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3260,7 +3273,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3303,11 +3316,19 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3315,7 +3336,7 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3324,7 +3345,7 @@ Naknada src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3334,7 +3355,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3343,7 +3364,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3617,7 +3638,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3665,7 +3686,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3674,7 +3695,7 @@ Purging src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3683,7 +3704,7 @@ Memory usage src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3692,7 +3713,7 @@ Incoming transactions src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3700,7 +3721,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3708,11 +3729,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3720,11 +3741,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -3732,7 +3753,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -3740,11 +3761,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index 85d2a60c3..4227f92c9 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Közösségi Szponzorok ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Legyél te is támogatónk! ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Navigálj a https://mempool.space/sponsor-ra hogy támogasd a projektet src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Közösségi Integrációk src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Közösségi Szövetségesek src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Projekt Kontribútorok src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Projekt Fenntartók src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -1583,6 +1583,7 @@ General + Általános src/app/components/api-docs/api-docs.component.html 9,11 @@ -1933,6 +1934,7 @@ Returns details about difficulty adjustment. + Részleteket ad vissza a bányászási nehézségifokról. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2024,7 +2026,7 @@ Blocks - Blokkok + Blokkok src/app/components/api-docs/api-docs.component.html 197,199 @@ -2046,6 +2048,7 @@ Returns the hex-encoded block header. + Visszaírja a hex-kódolt blokk fejlécet. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2370,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2672,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2716,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2732,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2799,24 +2815,24 @@ block.miner - - Merkle root - Merkle törzs - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle törzs + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Nehézség @@ -2837,6 +2853,7 @@ Block Header Hex + Blokk Fejcím Hex src/app/components/block/block.component.html 118,119 @@ -2939,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2952,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2966,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2994,7 +3011,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3007,7 +3024,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3064,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3372,13 +3389,10 @@ In ~ + ~ percen belül src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3406,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3432,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3520,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3565,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Nem található tranzakció. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3579,7 +3605,7 @@ Várakozás arra hogy a mempoolban feltünjön... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3588,7 +3614,7 @@ Díj src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3598,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3608,7 +3634,7 @@ Effektív díj ráta src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3882,6 +3908,7 @@ Transaction Fees + Tranzakciós Díjjak src/app/dashboard/dashboard.component.html 6,9 @@ -3910,7 +3937,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3964,7 +3991,7 @@ Minimum Díj src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3974,7 +4001,7 @@ Törlés src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3984,7 +4011,7 @@ Memória használat src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3994,7 +4021,7 @@ Beérkező tranzakciók src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4003,7 +4030,7 @@ Bányászási Nehézségifok src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4012,11 +4039,11 @@ Hátramaradt src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4025,19 +4052,20 @@ Becslés src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate Previous + Előző src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4046,11 +4074,11 @@ Mostani Periódus src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period @@ -4136,6 +4164,7 @@ minute + perc src/app/shared/i18n/dates.ts 13 diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index a3103bebb..69512e50f 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Sponsor comunitari ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Diventa uno sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Vai a https://mempool.space/sponsor per sponsorizzare src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Integrazioni della comunità src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Alleanze della comunità src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Hanno contribuito al progetto src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Manutentori del progetto src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2371,6 +2371,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2673,11 +2686,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2717,11 +2730,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2733,7 +2746,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2800,24 +2813,24 @@ block.miner - - Merkle root - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Difficoltà @@ -2940,9 +2953,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2953,7 +2966,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2967,7 +2980,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2994,7 +3007,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3006,7 +3019,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3063,7 +3076,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3370,11 +3383,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3402,7 +3411,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3428,6 +3437,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3516,7 +3529,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3561,12 +3574,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transazione non trovata. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3575,7 +3596,7 @@ Aspettando che appaia nella mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3584,7 +3605,7 @@ Commissione src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3594,7 +3615,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3604,7 +3625,7 @@ Prezzo effettivo della commissione src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3906,7 +3927,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3960,7 +3981,7 @@ Commissione minima src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3970,7 +3991,7 @@ Eliminazione src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3980,7 +4001,7 @@ Memoria in uso src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3990,7 +4011,7 @@ Transazioni in arrivo src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3998,7 +4019,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4006,11 +4027,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4018,11 +4039,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4030,7 +4051,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4038,11 +4059,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 355749231..c86a9aa8e 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ コミュニティーのスポンサー❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ スポンサーになる❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ スポンサーになるのに、https://mempool.space/sponsorを訪れる src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ コミュニティーの結合 src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ コミュニティーの提携 src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ プロジェクト貢献者 src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ プロジェクトメンテナー src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2370,6 +2370,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2672,11 +2685,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2716,11 +2729,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2732,7 +2745,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2799,24 +2812,24 @@ block.miner - - Merkle root - マークル・ルート - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits ビット src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + マークル・ルート + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty 難易度 @@ -2939,9 +2952,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2952,7 +2965,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2966,7 +2979,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2993,7 +3006,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3005,7 +3018,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3062,7 +3075,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3369,11 +3382,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3401,7 +3410,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3427,6 +3436,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3515,7 +3528,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3560,12 +3573,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. トランザクションが見つかりません。 src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3574,7 +3595,7 @@ mempoolに表示されるのを待っています... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3583,7 +3604,7 @@ 手数料 src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3593,7 +3614,7 @@ サトシ src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3603,7 +3624,7 @@ 実効手数料レート src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3905,7 +3926,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3959,7 +3980,7 @@ 最低料金 src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3969,7 +3990,7 @@ 削除中 src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3979,7 +4000,7 @@ メモリ使用量 src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3989,7 +4010,7 @@ 着信トランザクション src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3997,7 +4018,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4005,11 +4026,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4017,11 +4038,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4029,7 +4050,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4037,11 +4058,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index d7eb05bd4..f4e896188 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -420,7 +420,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -445,7 +445,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -774,15 +774,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1126,7 +1126,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1339,7 +1339,7 @@ Community Sponsors ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1348,7 +1348,7 @@ გახდი სპონსორი ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1356,7 +1356,7 @@ Navigate to https://mempool.space/sponsor to sponsor src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1368,7 +1368,7 @@ Community Integrations src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1376,7 +1376,7 @@ Community Alliances src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1384,7 +1384,7 @@ Project Contributors src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1392,7 +1392,7 @@ Project Maintainers src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2252,6 +2252,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2548,11 +2561,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2592,11 +2605,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2608,7 +2621,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2675,22 +2688,22 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty @@ -2811,9 +2824,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2824,7 +2837,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2838,7 +2851,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2865,7 +2878,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2877,7 +2890,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -2934,7 +2947,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3240,11 +3253,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3272,7 +3281,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3298,6 +3307,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3385,7 +3398,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3428,12 +3441,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. ტრანსაქცია ვერ მოიძებნა. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3442,7 +3463,7 @@ დაელოდეთ mempool-ში რომ გამოჩნდეს... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3451,7 +3472,7 @@ საკომისიო src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3461,7 +3482,7 @@ სატ src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3470,7 +3491,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3757,7 +3778,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3811,7 +3832,7 @@ მინ. საკომისიო src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3821,7 +3842,7 @@ წაშლა src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3831,7 +3852,7 @@ მეხსიერება src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3841,7 +3862,7 @@ მიმდინარე ტრანზაქციები src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3849,7 +3870,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3857,11 +3878,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3869,11 +3890,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -3881,7 +3902,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -3889,11 +3910,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index a6ee4c0d0..19a202b88 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1408,7 +1408,7 @@ 커뮤니티 스폰서❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1417,7 +1417,7 @@ 후원하기 ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1426,7 +1426,7 @@ 후원하려면 https://mempool.space/sponsor 으로 이동하십시오. src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1439,7 +1439,7 @@ 커뮤니티 통합 src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1448,7 +1448,7 @@ 커뮤니티 연합 src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1457,7 +1457,7 @@ 프로젝트 참여자 목록 src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1466,7 +1466,7 @@ 프로젝트 관리자 목록 src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2380,6 +2380,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2682,11 +2695,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2726,11 +2739,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2742,7 +2755,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2809,24 +2822,24 @@ block.miner - - Merkle root - 머클 루트 - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits 비트 src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + 머클 루트 + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty 난이도 @@ -2949,9 +2962,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2962,7 +2975,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2976,7 +2989,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -3003,7 +3016,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3015,7 +3028,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3072,7 +3085,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3379,11 +3392,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3411,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3437,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3525,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3570,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. 트랜잭션을 찾을 수 없음 src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3584,7 +3605,7 @@ 멤풀에 포함될때까지 대기하는 중... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3593,7 +3614,7 @@ 수수료 src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3603,7 +3624,7 @@ 사토시 src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3613,7 +3634,7 @@ 유효 수수료율 src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3915,7 +3936,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3969,7 +3990,7 @@ 최소 수수료 src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3979,7 +4000,7 @@ 퍼징 src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3989,7 +4010,7 @@ 멤풀 메모리 사용량 src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3999,7 +4020,7 @@ 들어오는 트랜잭션 src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4007,7 +4028,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4015,11 +4036,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4027,11 +4048,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4039,7 +4060,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4047,11 +4068,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 0450d774c..a563e8dbd 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Samfunnssponsorer ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Bli en sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Gå til https://mempool.space/sponsor for å sponse src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Samfunnsintegrasjoner src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Samfunnsallianser src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Bidragsytere til prosjektet src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Prosjektvedlikeholdere src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2373,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2675,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2719,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2735,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2802,24 +2815,24 @@ block.miner - - Merkle root - Merklerot - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merklerot + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Vanskelighetsgrad @@ -2943,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2956,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2970,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2998,7 +3011,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3011,7 +3024,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3068,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3379,11 +3392,7 @@ Om ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3411,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3437,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3525,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3570,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transaksjon ikke funnet src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3584,7 +3605,7 @@ Venter på at den kommer inn i mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3593,7 +3614,7 @@ Avgift src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3603,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3613,7 +3634,7 @@ Effektiv avgift src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3915,7 +3936,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3969,7 +3990,7 @@ Minimumsavgift src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3979,7 +4000,7 @@ Fjerner src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3989,7 +4010,7 @@ Minnebruk src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3999,7 +4020,7 @@ Innkommende transaksjoner src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4008,7 +4029,7 @@ Vanskelighetsgradjustering src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4017,11 +4038,11 @@ Gjenstående src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4030,11 +4051,11 @@ Anslag src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4042,7 +4063,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4051,11 +4072,11 @@ Nåværende periode src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 4ed4a19c5..e4a4ff3fd 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1404,7 +1404,7 @@ Community Sponsoren ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1413,7 +1413,7 @@ Wordt een sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1422,7 +1422,7 @@ Navigeer naar https://mempool.space/sponsor om te sponsoren src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1435,7 +1435,7 @@ Community-integraties src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1444,7 +1444,7 @@ Community-allianties src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1453,7 +1453,7 @@ Projectbijdragers src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1462,7 +1462,7 @@ Projectonderhouders src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2368,6 +2368,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2669,11 +2682,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2713,11 +2726,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2729,7 +2742,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2796,24 +2809,24 @@ block.miner - - Merkle root - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Moeilijkheid @@ -2936,9 +2949,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2949,7 +2962,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2963,7 +2976,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2990,7 +3003,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3002,7 +3015,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3059,7 +3072,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3366,11 +3379,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3398,7 +3407,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3424,6 +3433,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3512,7 +3525,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3557,12 +3570,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transactie niet gevonden. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3571,7 +3592,7 @@ Wachten tot het in de mempool verschijnt... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3580,7 +3601,7 @@ Vergoeding src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3590,7 +3611,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3600,7 +3621,7 @@ Effectief vergoedingstarief src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3902,7 +3923,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3956,7 +3977,7 @@ Minimumvergoeding src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3966,7 +3987,7 @@ Weggooien src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3976,7 +3997,7 @@ Geheugengebruik src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3986,7 +4007,7 @@ Inkomende transacties src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3994,7 +4015,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4002,11 +4023,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4014,11 +4035,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4026,7 +4047,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4034,11 +4055,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 28e30537d..a9960c187 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Sponsorzy społecznościowy ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Zostań sponsorem ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Przejdź pod adres https://mempool.space/sponsor aby zostać sponsorem src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Integracje społecznościowe src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Sojusze społecznościowe src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Współtwórcy projektu src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Opiekunowie projektu src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2370,6 +2370,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2672,11 +2685,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2716,11 +2729,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2732,7 +2745,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2799,24 +2812,24 @@ block.miner - - Merkle root - Korzeń Merkle'a - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bity src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Korzeń Merkle'a + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Trudność @@ -2939,9 +2952,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2952,7 +2965,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2966,7 +2979,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2993,7 +3006,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3005,7 +3018,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3062,7 +3075,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3369,11 +3382,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3401,7 +3410,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3427,6 +3436,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3515,7 +3528,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3560,12 +3573,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transakcja nie odnaleziona. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3574,7 +3595,7 @@ Oczekiwanie aż pojawi się w mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3583,7 +3604,7 @@ Opłata src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3593,7 +3614,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3603,7 +3624,7 @@ Efektywny poziom opłaty src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3905,7 +3926,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3959,7 +3980,7 @@ Minimalna opłata src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3969,7 +3990,7 @@ Próg odrzucenia src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3979,7 +4000,7 @@ Zużycie pamięci src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3989,7 +4010,7 @@ Transakcje przychodzące src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3997,7 +4018,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4005,11 +4026,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4017,11 +4038,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4029,7 +4050,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4037,11 +4058,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 33d7b274c..e64bc78ed 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Patrocinadores da comunidade ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Seja um patrocinador ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Navegue para https://mempool.space/sponsor para patrocinar src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Integrações da comunidade src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Alianças da comunidade src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Contribuidores do projeto src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Mantenedores do projeto src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2373,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2675,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2719,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2735,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2802,24 +2815,24 @@ block.miner - - Merkle root - Árvore Merkle - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Árvore Merkle + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Dificuldade @@ -2943,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2956,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2970,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2998,7 +3011,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3011,7 +3024,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3068,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3379,11 +3392,7 @@ Em ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3411,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3437,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3525,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3570,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transação não encontrada. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3584,7 +3605,7 @@ Aguardando que apareça no mempool... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3593,7 +3614,7 @@ Taxa src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3603,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3613,7 +3634,7 @@ Taxa de transação efetiva src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3916,7 +3937,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3970,7 +3991,7 @@ Mínimo exigido src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3980,7 +4001,7 @@ Mínimo exigido src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3990,7 +4011,7 @@ Uso do Mempool src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -4000,7 +4021,7 @@ Transações de entrada src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4009,7 +4030,7 @@ Ajuste de Dificuldade src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4018,11 +4039,11 @@ Faltando src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4031,11 +4052,11 @@ Estimativa src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4044,7 +4065,7 @@ Anterior src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4053,11 +4074,11 @@ Período Atual src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index 3ae19dc85..413387532 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Спонсоры из сообщества ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Стать спонсором ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Перейдите на страницу https://mempool.space/sponsor , чтобы стать спонсором src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Интеграции Сообщества src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Обьединения Сообщества src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Участники проекта src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Разработчики проекта src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2371,6 +2371,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2673,11 +2686,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2717,11 +2730,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2733,7 +2746,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2800,24 +2813,24 @@ block.miner - - Merkle root - Корень Меркла - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Биты src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Корень Меркла + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Сложность @@ -2943,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2956,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2970,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2997,7 +3010,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3009,7 +3022,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3066,7 +3079,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3373,11 +3386,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3405,7 +3414,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3431,6 +3440,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3519,7 +3532,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3564,12 +3577,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Транзакция не найдена. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3578,7 +3599,7 @@ Ожидаем ее появления в мемпуле ... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3587,7 +3608,7 @@ Комиссия src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3597,7 +3618,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3607,7 +3628,7 @@ Эффективная комиссионная ставка src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3909,7 +3930,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3963,7 +3984,7 @@ Мин. комиссия src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3973,7 +3994,7 @@ Очистка src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3983,7 +4004,7 @@ Использование памяти src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3993,7 +4014,7 @@ Входящие транзакции src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4001,7 +4022,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4009,11 +4030,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4021,11 +4042,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4033,7 +4054,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4041,11 +4062,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 609e880b0..79679d846 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Sponzorji - posamezniki ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Postanite sponzor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Pojdite na https://mempool.space/sponsor za sponzorstvo. src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Integracije src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Zavezništva skupnosti src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Sodelujoči src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Vzdrževalci src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2370,6 +2370,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2672,11 +2685,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2716,11 +2729,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2732,7 +2745,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2799,24 +2812,24 @@ block.miner - - Merkle root - Merkle koren - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle koren + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Težavnost @@ -2939,9 +2952,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2952,7 +2965,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2966,7 +2979,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2994,7 +3007,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3007,7 +3020,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3064,7 +3077,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3374,11 +3387,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3406,7 +3415,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3432,6 +3441,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3520,7 +3533,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3565,12 +3578,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transakcije ni mogoče najti. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3579,7 +3600,7 @@ Čakanje, da se prikaže v mempool-u... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3588,7 +3609,7 @@ Omrežnina src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3598,7 +3619,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3608,7 +3629,7 @@ Efektivna stopnja omrežnine src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3910,7 +3931,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3964,7 +3985,7 @@ Najnižja omrežnina src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3974,7 +3995,7 @@ Prag src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3984,7 +4005,7 @@ Velikost src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3994,7 +4015,7 @@ Pretočnost src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4003,7 +4024,7 @@ Prilagoditev težavnosti src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4012,11 +4033,11 @@ Preostalo src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4025,11 +4046,11 @@ Ocena src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4037,7 +4058,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4046,11 +4067,11 @@ Trenutno obdobje src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index b1453619c..2b6c0e50e 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Communitysponsorer ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Bli sponsor ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ Navigera till https://mempool.space/sponsor för att sponsra src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Communityintegrationer src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ Communityallianser src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Projektbidragare src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Projektunderhållare src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2373,6 +2373,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2675,11 +2688,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2719,11 +2732,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2735,7 +2748,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2802,24 +2815,24 @@ block.miner - - Merkle root - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bitar src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Svårighet @@ -2943,9 +2956,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2956,7 +2969,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2970,7 +2983,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2998,7 +3011,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3011,7 +3024,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3068,7 +3081,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3379,11 +3392,7 @@ Om ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3411,7 +3420,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3437,6 +3446,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3525,7 +3538,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3570,12 +3583,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Transaktionen hittades inte src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3584,7 +3605,7 @@ Väntar på den att dyka upp i mempoolen... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3593,7 +3614,7 @@ Avgift src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3603,7 +3624,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3613,7 +3634,7 @@ Effektiv avgiftssats src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3916,7 +3937,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3970,7 +3991,7 @@ Minimumavgift src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3980,7 +4001,7 @@ Förkastar src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3990,7 +4011,7 @@ Minnesanvändning src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -4000,7 +4021,7 @@ Inkommande transaktioner src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -4009,7 +4030,7 @@ Svårighetsjustering src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4018,11 +4039,11 @@ Återstående src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4031,11 +4052,11 @@ Estimat src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4044,7 +4065,7 @@ Föregående src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4053,11 +4074,11 @@ Nuvarande period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 2e2b4f800..7b699f16b 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1406,7 +1406,7 @@ Kömünite sponsorlarımız src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1415,7 +1415,7 @@ Sponsor olun ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1424,7 +1424,7 @@ linkine tıklayarak sponsoru ziyaret edebilirsiniz. src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1437,7 +1437,7 @@ Kömünite Entegrasyonları src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1446,7 +1446,7 @@ İşbirlikçi kömüniteler src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1455,7 +1455,7 @@ Proje Destekçileri src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1464,7 +1464,7 @@ Projeyi ayakta tutanlar src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2371,6 +2371,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2673,11 +2686,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2717,11 +2730,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2733,7 +2746,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2800,24 +2813,24 @@ block.miner - - Merkle root - Merkle kökü - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bit src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle kökü + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Zorluk @@ -2940,9 +2953,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2953,7 +2966,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2967,7 +2980,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2994,7 +3007,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3006,7 +3019,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3063,7 +3076,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3370,11 +3383,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3402,7 +3411,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3428,6 +3437,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3516,7 +3529,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3561,12 +3574,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. İşlem bulunamadı. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3575,7 +3596,7 @@ Mempool'a dahil olmayı bekliyor. src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3584,7 +3605,7 @@ Ücret src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3594,7 +3615,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3604,7 +3625,7 @@ Effektik ücret değeri src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3906,7 +3927,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3960,7 +3981,7 @@ Minimum ücret src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3970,7 +3991,7 @@ Temizleme src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3980,7 +4001,7 @@ Hafıza kullanımı src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3990,7 +4011,7 @@ Gelen işlemler src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3998,7 +4019,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4006,11 +4027,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4018,11 +4039,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4030,7 +4051,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4038,11 +4059,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 2c6e3f64b..b413dabe5 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1404,7 +1404,7 @@ Спонсори з спільноти ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1413,7 +1413,7 @@ Стати спонсором ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1422,7 +1422,7 @@ Перейдіть до https://mempool.space/sponsor щоб стати спонсором src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1435,7 +1435,7 @@ Інтеграції спільноти src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1444,7 +1444,7 @@ Союзи спільноти src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1453,7 +1453,7 @@ Учасники проекту src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1462,7 +1462,7 @@ Розробники проекту src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2366,6 +2366,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2664,11 +2677,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2708,11 +2721,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2724,7 +2737,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2791,24 +2804,24 @@ block.miner - - Merkle root - Корінь Меркле - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Біти src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Корінь Меркле + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Складність @@ -2931,9 +2944,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2944,7 +2957,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2958,7 +2971,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2985,7 +2998,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2997,7 +3010,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3054,7 +3067,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3361,11 +3374,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3393,7 +3402,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3419,6 +3428,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3507,7 +3520,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3552,12 +3565,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Транзакція не знайдена. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3566,7 +3587,7 @@ Чекаємо її появи в мемпулі... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3575,7 +3596,7 @@ Комісія src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3585,7 +3606,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3595,7 +3616,7 @@ Поточна ставка комісії src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3897,7 +3918,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3951,7 +3972,7 @@ Мінімальна комісія src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3961,7 +3982,7 @@ Очищення src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3971,7 +3992,7 @@ Використання пам'яті src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3981,7 +4002,7 @@ Вхідні транзакції src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3989,7 +4010,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3997,11 +4018,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4009,11 +4030,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4021,7 +4042,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4029,11 +4050,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 5e860ef5a..39ff78573 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -451,7 +451,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -476,7 +476,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -816,15 +816,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1173,7 +1173,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1404,7 +1404,7 @@ Nhà tài trợ cộng đồng ❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1413,7 +1413,7 @@ Trở thành nhà tài trợ ❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1422,7 +1422,7 @@ Chuyển sang https://mempool.space/sponsor để tài trợ src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1435,7 +1435,7 @@ Tích hợp cộng đồng src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1444,7 +1444,7 @@ Liên minh cộng đồng src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1453,7 +1453,7 @@ Người đóng góp dự án src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1462,7 +1462,7 @@ Người bảo trì dự án src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2368,6 +2368,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API API @@ -2669,11 +2682,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2713,11 +2726,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2729,7 +2742,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2796,24 +2809,24 @@ block.miner - - Merkle root - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty Độ khó @@ -2936,9 +2949,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2949,7 +2962,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2963,7 +2976,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2990,7 +3003,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -3002,7 +3015,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -3059,7 +3072,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3366,11 +3379,7 @@ In ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3398,7 +3407,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3424,6 +3433,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3512,7 +3525,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3557,12 +3570,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. Không tìm thấy giao dịch. src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3571,7 +3592,7 @@ Đang đợi nó xuất hiện trong mempool ... src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3580,7 +3601,7 @@ Phí src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3590,7 +3611,7 @@ sat src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3600,7 +3621,7 @@ Tỷ lệ phí hiệu quả src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3902,7 +3923,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3956,7 +3977,7 @@ Phí tối thiểu src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3966,7 +3987,7 @@ Thanh lọc src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3976,7 +3997,7 @@ Sử dụng bộ nhớ src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3986,7 +4007,7 @@ Giao dịch đến src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3994,7 +4015,7 @@ Difficulty Adjustment src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -4002,11 +4023,11 @@ Remaining src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -4014,11 +4035,11 @@ Estimate src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -4026,7 +4047,7 @@ Previous src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -4034,11 +4055,11 @@ Current Period src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index eb79dd89c..272fe961a 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -441,7 +441,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 18,19 + 18 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -466,7 +466,7 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 19,20 + 19 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -802,15 +802,15 @@ src/app/components/about/about.component.html - 212,216 + 216,220 src/app/components/api-docs/api-docs.component.html - 878,882 + 878,880 src/app/dashboard/dashboard.component.html - 140,149 + 140,142 Terms of Service shared.terms-of-service @@ -1157,7 +1157,7 @@ src/app/components/transaction/transaction.component.html - 279,281 + 283,285 transaction.details @@ -1388,7 +1388,7 @@ 社区赞助❤️ src/app/components/about/about.component.html - 50,53 + 54,57 about.sponsors.withHeart @@ -1397,7 +1397,7 @@ 成为赞助商❤️ src/app/components/about/about.component.html - 62,63 + 66,67 about.become-a-sponsor @@ -1405,7 +1405,7 @@ Navigate to https://mempool.space/sponsor to sponsor src/app/components/about/about.component.html - 63 + 67 src/app/components/sponsor/sponsor.component.html @@ -1418,7 +1418,7 @@ 社区整合 src/app/components/about/about.component.html - 67,70 + 71,74 about.integrations @@ -1427,7 +1427,7 @@ 社区联盟 src/app/components/about/about.component.html - 138,140 + 142,144 about.alliances @@ -1436,7 +1436,7 @@ 项目贡献者 src/app/components/about/about.component.html - 153,155 + 157,159 about.contributors @@ -1445,7 +1445,7 @@ 项目维护人员 src/app/components/about/about.component.html - 167,169 + 171,173 about.maintainers @@ -2308,6 +2308,19 @@ api-docs.websocket.websocket + + Privacy Policy + + src/app/components/api-docs/api-docs.component.html + 880,885 + + + src/app/dashboard/dashboard.component.html + 142,148 + + Privacy Policy + shared.privacy-policy + API 应用程序接口 @@ -2604,11 +2617,11 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html - 10,12 + 10 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 13,15 + 13 src/app/components/fees-box/fees-box.component.html @@ -2648,11 +2661,11 @@ src/app/components/transaction/transaction.component.html - 330,333 + 334,337 src/app/components/transaction/transaction.component.html - 341,343 + 345,347 src/app/components/transactions-list/transactions-list.component.html @@ -2664,7 +2677,7 @@ src/app/dashboard/dashboard.component.html - 165,169 + 171,175 sat/vB shared.sat-vbyte @@ -2731,22 +2744,22 @@ block.miner - - Merkle root - - src/app/components/block/block.component.html - 96,98 - - block.merkle-root - Bits src/app/components/block/block.component.html - 100,102 + 96,98 block.bits + + Merkle root + + src/app/components/block/block.component.html + 100,102 + + block.merkle-root + Difficulty 难度 @@ -2868,9 +2881,9 @@ src/app/dashboard/dashboard.component.html - 190,192 + 196,198 - footer.backend-is-synchronizing + dashboard.backend-is-synchronizing vB/s @@ -2881,7 +2894,7 @@ src/app/dashboard/dashboard.component.html - 195,201 + 201,207 vB/s shared.vbytes-per-second @@ -2895,7 +2908,7 @@ src/app/dashboard/dashboard.component.html - 169,171 + 175,176 Unconfirmed count dashboard.unconfirmed @@ -2923,7 +2936,7 @@ src/app/dashboard/dashboard.component.html - 211,212 + 217,218 shared.blocks @@ -2936,7 +2949,7 @@ src/app/dashboard/dashboard.component.html - 212,213 + 218,219 shared.block @@ -2993,7 +3006,7 @@ src/app/components/television/television.component.ts - 28 + 27 master-page.tvview @@ -3304,11 +3317,7 @@ ~ src/app/components/time-until/time-until.component.ts - 65 - - - src/app/components/time-until/time-until.component.ts - 79 + 66 src/app/components/time-until/time-until.component.ts @@ -3336,7 +3345,7 @@ src/app/components/time-until/time-until.component.ts - 89 + 86 src/app/components/time-until/time-until.component.ts @@ -3362,6 +3371,10 @@ src/app/components/time-until/time-until.component.ts 95 + + src/app/components/time-until/time-until.component.ts + 96 + This transaction has been replaced by: @@ -3450,7 +3463,7 @@ src/app/components/transaction/transaction.component.html - 328,330 + 332,334 Transaction fee rate transaction.fee-rate @@ -3495,12 +3508,20 @@ Transaction Weight transaction.weight + + Transaction Hex + + src/app/components/transaction/transaction.component.html + 220,221 + + transaction.hex + Transaction not found. 交易未找到 src/app/components/transaction/transaction.component.html - 304,305 + 308,309 transaction.error.transaction-not-found @@ -3509,7 +3530,7 @@ 等待交易出现在内存池 src/app/components/transaction/transaction.component.html - 305,309 + 309,313 transaction.error.waiting-for-it-to-appear @@ -3518,7 +3539,7 @@ 手续费 src/app/components/transaction/transaction.component.html - 324,325 + 328,329 Transaction fee transaction.fee @@ -3528,7 +3549,7 @@ src/app/components/transaction/transaction.component.html - 325,328 + 329,332 Transaction Fee sat transaction.fee.sat @@ -3538,7 +3559,7 @@ 有效收费率 src/app/components/transaction/transaction.component.html - 338,341 + 342,345 Effective transaction fee rate transaction.effective-fee-rate @@ -3833,7 +3854,7 @@ src/app/dashboard/dashboard.component.html - 171,175 + 177,181 dashboard.latest-blocks.transaction-count @@ -3887,7 +3908,7 @@ 最低费用 src/app/dashboard/dashboard.component.html - 162,163 + 168,169 Minimum mempool fee dashboard.minimum-fee @@ -3897,7 +3918,7 @@ 吹扫中 src/app/dashboard/dashboard.component.html - 163,165 + 169,170 Purgin below fee dashboard.purging @@ -3907,7 +3928,7 @@ 内存占用 src/app/dashboard/dashboard.component.html - 175,177 + 181,182 Memory usage dashboard.memory-usage @@ -3917,7 +3938,7 @@ 收款交易 src/app/dashboard/dashboard.component.html - 187,189 + 193,194 dashboard.incoming-transactions @@ -3926,7 +3947,7 @@ 难度调整 src/app/dashboard/dashboard.component.html - 202,205 + 208,211 dashboard.difficulty-adjustment @@ -3935,11 +3956,11 @@ 剩余 src/app/dashboard/dashboard.component.html - 208,210 + 214,216 src/app/dashboard/dashboard.component.html - 255,258 + 263,266 difficulty-box.remaining @@ -3948,11 +3969,11 @@ 预估 src/app/dashboard/dashboard.component.html - 217,218 + 223,224 src/app/dashboard/dashboard.component.html - 262,265 + 270,273 difficulty-box.estimate @@ -3961,7 +3982,7 @@ 前一段 src/app/dashboard/dashboard.component.html - 228,229 + 235,236 difficulty-box.previous @@ -3970,11 +3991,11 @@ 本期 src/app/dashboard/dashboard.component.html - 239,240 + 247,248 src/app/dashboard/dashboard.component.html - 269,272 + 277,280 difficulty-box.current-period