diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 7a43cd5ef..5c05c1d83 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username -custom: ['https://mempool.space/about'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] +custom: ['https://mempool.space/sponsor'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 51bedc38c..2cd892f60 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -10,12 +10,7 @@ jobs: matrix: containers: [1, 2, 3, 4, 5] os: ["ubuntu-latest"] - browser: [chrome, firefox] - include: - - browser: firefox - container: - image: cypress/browsers:node14.17.0-chrome88-ff89 - options: --user 1001 + browser: [chrome] name: E2E tests on ${{ matrix.browser }} - ${{ matrix.os }} steps: - name: Checkout diff --git a/backend/package-lock.json b/backend/package-lock.json index 815cee5bf..9cb6d20fc 100644 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -1,12 +1,12 @@ { "name": "mempool-backend", - "version": "2.2.1-dev", + "version": "2.2.2-dev", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mempool-backend", - "version": "2.2.1-dev", + "version": "2.2.2-dev", "license": "GNU Affero General Public License v3.0", "dependencies": { "@mempool/bitcoin": "^3.0.3", diff --git a/backend/package.json b/backend/package.json index d1d5ecbbd..24e6dfe2f 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "mempool-backend", - "version": "2.2.1-dev", + "version": "2.2.2-dev", "description": "Bitcoin mempool visualizer and blockchain explorer backend", "license": "GNU Affero General Public License v3.0", "homepage": "https://mempool.space", diff --git a/backend/src/api/websocket-handler.ts b/backend/src/api/websocket-handler.ts index 9a758f731..29a2ed363 100644 --- a/backend/src/api/websocket-handler.ts +++ b/backend/src/api/websocket-handler.ts @@ -53,18 +53,25 @@ class WebsocketHandler { if (parsedMessage['watch-mempool']) { const tx = memPool.getMempool()[client['track-tx']]; if (tx) { - if (config.MEMPOOL.BACKEND !== 'esplora') { + if (config.MEMPOOL.BACKEND === 'esplora') { + response['tx'] = tx; + } else { + // tx.prevouts is missing from transactions when in bitcoind mode try { const fullTx = await transactionUtils.$getTransactionExtended(tx.txid, true); response['tx'] = fullTx; } catch (e) { - logger.debug('Error finding transaction in mempool: ' + e.message || e); + logger.debug('Error finding transaction: ' + e.message || e); } - } else { - response['tx'] = tx; } } else { - client['track-mempool-tx'] = parsedMessage['track-tx']; + try { + const fullTx = await transactionUtils.$getTransactionExtended(client['track-tx'], true); + response['tx'] = fullTx; + } catch (e) { + logger.debug('Error finding transaction. ' + e.message || e); + client['track-mempool-tx'] = parsedMessage['track-tx']; + } } } } else { diff --git a/frontend/angular.json b/frontend/angular.json index 1e4fdfc8a..287d0ccaf 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -26,6 +26,10 @@ "translation": "src/locale/messages.ar.xlf", "baseHref": "/ar/" }, + "ca": { + "translation": "src/locale/messages.ca.xlf", + "baseHref": "/ca/" + }, "cs": { "translation": "src/locale/messages.cs.xlf", "baseHref": "/cs/" @@ -199,7 +203,7 @@ "proxyConfig": "proxy.prod.conf.json", "disableHostCheck": true, "host": "0.0.0.0", - "verbose": true + "verbose": false } } }, diff --git a/frontend/cypress.json b/frontend/cypress.json index cb6859f5c..3981dec63 100644 --- a/frontend/cypress.json +++ b/frontend/cypress.json @@ -7,6 +7,7 @@ "pluginsFile": "cypress/plugins/index.js", "fixturesFolder": "cypress/fixtures", "baseUrl": "http://localhost:4200", + "video": false, "retries": { "runMode": 3, "openMode": 0 diff --git a/frontend/cypress/integration/mainnet/mainnet.spec.ts b/frontend/cypress/integration/mainnet/mainnet.spec.ts index 91cce9868..614e9e9cd 100644 --- a/frontend/cypress/integration/mainnet/mainnet.spec.ts +++ b/frontend/cypress/integration/mainnet/mainnet.spec.ts @@ -1,4 +1,4 @@ -import { emitMempoolInfo, emitWithoutMempoolInfo } from "../../support/websocket"; +import { emitMempoolInfo, dropWebSocket } from "../../support/websocket"; describe('Mainnet', () => { beforeEach(() => { @@ -12,28 +12,57 @@ describe('Mainnet', () => { Cypress.Commands.add('waitForBlockData', () => { cy.wait('@tx-outspends'); cy.wait('@pools'); - }); + }); }); it('loads the status screen', () => { - cy.visit('/status'); - cy.get('#mempool-block-0').should('be.visible'); - cy.get('[id^="bitcoin-block-"]').should('have.length', 8); - cy.get('.footer').should('be.visible'); - cy.get('.row > :nth-child(1)').invoke('text').then((text) => { - expect(text).to.match(/Tx vBytes per second:.* vB\/s/); - }); - cy.get('.row > :nth-child(2)').invoke('text').then((text) => { - expect(text).to.match(/Unconfirmed:(.*)/); - }); - cy.get('.row > :nth-child(3)').invoke('text').then((text) => { - expect(text).to.match(/Mempool size:(.*) (kB|MB) \((\d+) (block|blocks)\)/); - }); + cy.visit('/status'); + cy.get('#mempool-block-0').should('be.visible'); + cy.get('[id^="bitcoin-block-"]').should('have.length', 8); + cy.get('.footer').should('be.visible'); + cy.get('.row > :nth-child(1)').invoke('text').then((text) => { + expect(text).to.match(/Tx vBytes per second:.* vB\/s/); + }); + cy.get('.row > :nth-child(2)').invoke('text').then((text) => { + expect(text).to.match(/Unconfirmed:(.*)/); + }); + cy.get('.row > :nth-child(3)').invoke('text').then((text) => { + expect(text).to.match(/Mempool size:(.*) (kB|MB) \((\d+) (block|blocks)\)/); + }); + }); + + it('loads dashboard, drop websocket and reconnect', () => { + cy.viewport('macbook-16'); + cy.mockMempoolSocket(); + cy.visit('/'); + cy.get('.badge').should('not.exist'); + dropWebSocket(); + cy.get('.badge').should('be.visible'); + cy.get('.badge', {timeout: 25000}).should('not.exist'); + emitMempoolInfo({ + 'params': { + loaded: true + } + }); + cy.get(':nth-child(1) > #bitcoin-block-0').should('not.exist'); + cy.get(':nth-child(2) > #bitcoin-block-0').should('not.exist'); + cy.get(':nth-child(3) > #bitcoin-block-0').should('not.exist'); }); it('loads the dashboard', () => { - cy.visit('/'); - cy.waitForSkeletonGone(); + cy.visit('/'); + cy.waitForSkeletonGone(); + }); + + it('loads skeleton when changes between networks', () => { + cy.visit('/'); + cy.waitForSkeletonGone(); + + cy.changeNetwork("testnet"); + cy.changeNetwork("signet"); + cy.changeNetwork("liquid"); + cy.changeNetwork("mainnet"); + cy.changeNetwork("bisq"); }); it('loads the dashboard with the skeleton blocks', () => { diff --git a/frontend/cypress/support/commands.ts b/frontend/cypress/support/commands.ts index 96e2270fe..b240a7bc4 100644 --- a/frontend/cypress/support/commands.ts +++ b/frontend/cypress/support/commands.ts @@ -64,3 +64,14 @@ Cypress.Commands.add( Cypress.Commands.add('mockMempoolSocket', () => { mockWebSocket(); }); + +Cypress.Commands.add('changeNetwork', (network: "testnet"|"signet"|"liquid"|"bisq"|"mainnet" ) => { + cy.get('.dropdown-toggle').click().then(() => { + cy.get(`.${network}`).click().then(() => { + cy.waitForPageIdle(); + if(network !== 'bisq'){ + cy.waitForSkeletonGone(); + } + }); + }); +}); diff --git a/frontend/cypress/support/index.d.ts b/frontend/cypress/support/index.d.ts new file mode 100644 index 000000000..a6bef9f7c --- /dev/null +++ b/frontend/cypress/support/index.d.ts @@ -0,0 +1,10 @@ + +/// +declare namespace Cypress { + interface Chainable { + waitForSkeletonGone(): Chainable + waitForPageIdle(): Chainable + mockMempoolSocket(): Chainable + changeNetwork(network: "testnet"|"signet"|"liquid"|"bisq"|"mainnet"): Chainable + } +} \ No newline at end of file diff --git a/frontend/cypress/support/websocket.ts b/frontend/cypress/support/websocket.ts index ce971fae9..03f4a54f1 100644 --- a/frontend/cypress/support/websocket.ts +++ b/frontend/cypress/support/websocket.ts @@ -38,6 +38,7 @@ export const mockWebSocket = () => { win.mockServer = server; win.mockServer.on('connection', (socket) => { win.mockSocket = socket; + win.mockSocket.send('{"action":"init"}'); }); win.mockServer.on('message', (message) => { @@ -81,4 +82,11 @@ export const emitMempoolInfo = ({ }); cy.waitForSkeletonGone(); return cy.get('#mempool-block-0'); -}; \ No newline at end of file +}; + +export const dropWebSocket = (() => { + cy.window().then((win) => { + win.mockServer.simulate("error"); + }); + return cy.wait(500); +}); \ No newline at end of file diff --git a/frontend/cypress/tsconfig.json b/frontend/cypress/tsconfig.json index 79d78d7ec..8f044958a 100644 --- a/frontend/cypress/tsconfig.json +++ b/frontend/cypress/tsconfig.json @@ -2,7 +2,9 @@ "extends": "../tsconfig.json", "include": ["**/*.ts"], "compilerOptions": { - "sourceMap": false, - "types": ["cypress"] + "types": ["cypress"], + "lib": ["es2015", "dom"], + "allowJs": true, + "noEmit": true, } } diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 392c0b55f..ff1bbfc9b 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "mempool-frontend", - "version": "2.2.1-dev", + "version": "2.2.2-dev", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mempool-frontend", - "version": "2.2.1-dev", + "version": "2.2.2-dev", "license": "GNU Affero General Public License v3.0", "dependencies": { "@angular/animations": "~11.2.8", @@ -24,7 +24,7 @@ "@fortawesome/fontawesome-svg-core": "^1.2.35", "@fortawesome/free-solid-svg-icons": "^5.15.3", "@mempool/chartist": "^0.11.4", - "@mempool/mempool.js": "^2.2.3", + "@mempool/mempool.js": "^2.2.4", "@ng-bootstrap/ng-bootstrap": "^7.0.0", "@nguniversal/express-engine": "11.2.1", "@types/qrcode": "^1.3.4", @@ -2309,10 +2309,9 @@ } }, "node_modules/@mempool/mempool.js": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@mempool/mempool.js/-/mempool.js-2.2.3.tgz", - "integrity": "sha512-s7cj0jXfdBb47R0DkMJlaJ4LPF31hdvBqhINyml/5u6UP97qYUnjVb+crtUflo4XddXz8iW+Ze0DGKw9HCKOcQ==", - "license": "MIT", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@mempool/mempool.js/-/mempool.js-2.2.4.tgz", + "integrity": "sha512-G9Ga2jHLfAuU/qXikRBtTecYr7BhLJH1WbIahefnGpgP48DCQaj1jizvuRZHhoElUvUT5flRt/O9kLjlbToqhw==", "dependencies": { "axios": "^0.21.1", "ws": "^7.4.3" @@ -16730,9 +16729,9 @@ } }, "node_modules/tar": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", - "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.6.tgz", + "integrity": "sha512-oaWyu5dQbHaYcyZCTfyPpC+VmI62/OM2RTUYavTk1MDr1cwW5Boi3baeYQKiZbY2uSQJGr+iMOzb/JFxLrft+g==", "dev": true, "dependencies": { "chownr": "^2.0.0", @@ -22159,9 +22158,9 @@ "integrity": "sha512-wSemsw2NIWS7/SHxjDe9upSdUETxNRebY0ByaJzcONKUzJSUzMuSNmKEdD3kr/g02H++JvsXR2znLC6tYEAbPA==" }, "@mempool/mempool.js": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@mempool/mempool.js/-/mempool.js-2.2.3.tgz", - "integrity": "sha512-s7cj0jXfdBb47R0DkMJlaJ4LPF31hdvBqhINyml/5u6UP97qYUnjVb+crtUflo4XddXz8iW+Ze0DGKw9HCKOcQ==", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@mempool/mempool.js/-/mempool.js-2.2.4.tgz", + "integrity": "sha512-G9Ga2jHLfAuU/qXikRBtTecYr7BhLJH1WbIahefnGpgP48DCQaj1jizvuRZHhoElUvUT5flRt/O9kLjlbToqhw==", "requires": { "axios": "^0.21.1", "ws": "^7.4.3" @@ -34180,9 +34179,9 @@ "dev": true }, "tar": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", - "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.6.tgz", + "integrity": "sha512-oaWyu5dQbHaYcyZCTfyPpC+VmI62/OM2RTUYavTk1MDr1cwW5Boi3baeYQKiZbY2uSQJGr+iMOzb/JFxLrft+g==", "dev": true, "requires": { "chownr": "^2.0.0", diff --git a/frontend/package.json b/frontend/package.json index 44028bb37..60430a08e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "mempool-frontend", - "version": "2.2.1-dev", + "version": "2.2.2-dev", "description": "Bitcoin mempool visualizer and blockchain explorer backend", "license": "GNU Affero General Public License v3.0", "homepage": "https://mempool.space", @@ -66,7 +66,7 @@ "@fortawesome/fontawesome-svg-core": "^1.2.35", "@fortawesome/free-solid-svg-icons": "^5.15.3", "@mempool/chartist": "^0.11.4", - "@mempool/mempool.js": "^2.2.3", + "@mempool/mempool.js": "^2.2.4", "@ng-bootstrap/ng-bootstrap": "^7.0.0", "@nguniversal/express-engine": "11.2.1", "@types/qrcode": "^1.3.4", @@ -109,11 +109,11 @@ "typescript": "~4.1.5" }, "optionalDependencies": { - "cypress": "^7.7.0", "@cypress/schematic": "^1.3.0", + "cypress": "^7.7.0", "cypress-fail-on-console-error": "^2.1.0", "cypress-wait-until": "^1.7.1", - "start-server-and-test": "^1.12.6", - "mock-socket": "^9.0.3" + "mock-socket": "^9.0.3", + "start-server-and-test": "^1.12.6" } } diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index f89318a1f..74d4bf780 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -43,7 +43,7 @@ export const languages: Language[] = [ { code: 'ar', name: 'العربية' }, // Arabic // { code: 'bg', name: 'Български' }, // Bulgarian // { code: 'bs', name: 'Bosanski' }, // Bosnian -// { code: 'ca', name: 'Català' }, // Catalan + { code: 'ca', name: 'Català' }, // Catalan { code: 'cs', name: 'Čeština' }, // Czech // { code: 'da', name: 'Dansk' }, // Danish { code: 'de', name: 'Deutsch' }, // German diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html index 51e06d7c8..172ac6861 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html @@ -1,98 +1,102 @@
+
- - - -

Transaction

- - -
- -
-
-
- - - - - - - - - - - - - - - -
Timestamp - {{ bisqTx.time | date:'yyyy-MM-dd HH:mm' }} -
- () -
-
Included in block - {{ bisqTx.blockHeight }} -
Features - - - - -
-
-
- - - - - - - - - - - - - -
Burnt amount - {{ bisqTx.burntFee / 100 | number: '1.2-2' }} BSQ -
Fee per vByte - {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB -   - -
-
- +
+
+

Transaction

+ + +
+ +
+
+ +
+
+
+ + + + + + + + + + + + + + + +
Timestamp + {{ bisqTx.time | date:'yyyy-MM-dd HH:mm' }} +
+ () +
+
Included in block + {{ bisqTx.blockHeight }} +
Features + + + + +
+
+
+ + + + + + + + + + + + + +
Burnt amount + {{ bisqTx.burntFee / 100 | number: '1.2-2' }} BSQ +
Fee per vByte + {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB +   + +
+
+ +
+
+ +
+ +

Details

+ + + + +
+ +

Inputs & Outputs

+ + + +
- -
- -

Details

- - - - -
- -

Inputs & Outputs

- - - -
- diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.scss b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.scss index d9081a6de..477c27c1d 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.scss +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.scss @@ -1,126 +1 @@ -.adjust-btn-padding { - padding: 0.55rem; -} - -.title-block { - padding-top: 1px; -} - -@media (max-width: 767.98px) { - .mobile-bottomcol { - margin-top: 15px; - } -} - -.td-width { - width: 150px; - @media (min-width: 768px) { - width: 175px; - } -} - - -h1 { - margin-bottom: 0; -} - -.badge { - position: relative; - top: -1px; -} - -.btn-small-height { - line-height: 1.1; -} - -.arrow-green { - color: #1a9436; -} - -.arrow-red { - color: #dc3545; -} - -.btn-success { - float: right; - margin-bottom: 0px; - margin-top: 5px; -} - -.tx-link { - display: block; - width: auto; - margin-bottom: 10px; - margin-left: 2px; - margin-top: 40px; - position: absolute; - @media (min-width: 700px) { - margin-top: 14px; - margin-left: 10px; - position: relative; - text-align: left; - width: 100%; - top: 14px; - left: 10px; - } - } - -.container-xl { - margin-bottom: 40px; -} - -.row{ - flex-direction: column; - @media (min-width: 768px) { - flex-direction: row; - } -} - -@media (max-width: 767.98px) { - .mobile-bottomcol { - margin-top: 15px; - } - .details-table td:first-child { - white-space: pre-wrap; - } -} - -.fiat { - display: block; - font-size: 13px; - @media (min-width: 576px){ - display: inline-block; - margin-left: 15px; - font-size: 14px; - text-align: left; - } -} - -h1{ - font-size: 1.75rem; - margin-top: 2px; - margin-bottom: 0; - float: left; - padding-bottom: 40px; - @media (min-width: 375px){ - margin-top: 0px; - font-size: 2rem; - } - @media (min-width: 768px){ - padding-bottom: 10px; - } -} -.transaction-container { - font-size: 14px; - @media (min-width: 576px){ - font-size: 16px; - } - tr td { - &:last-child{ - text-align: right; - @media (min-width: 768px){ - text-align: left; - } - } - } -} \ No newline at end of file +@import "./../../components/transaction/transaction.component.scss"; \ No newline at end of file diff --git a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.scss b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.scss index 72d305d08..a42d55e5e 100644 --- a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.scss +++ b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.scss @@ -15,12 +15,6 @@ label { } } -h1{ - font-size: 1.5rem; - @media(min-width: 375px){ - font-size: 2rem; - } -} .container-xl { padding-bottom: 60px; @media(min-width: 400px){ diff --git a/frontend/src/app/components/api-docs/code-template.component.scss b/frontend/src/app/components/api-docs/code-template.component.scss index 448ddc6aa..4d3288dfd 100644 --- a/frontend/src/app/components/api-docs/code-template.component.scss +++ b/frontend/src/app/components/api-docs/code-template.component.scss @@ -91,5 +91,7 @@ pre { padding: 30px; code{ background-color: transparent; + white-space: break-spaces; + word-break: break-all; } } \ No newline at end of file diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index df92af6b2..34cc270c0 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -116,7 +116,7 @@ Block Header Hex - + diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html index d56e77a87..181bb1a51 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -1,4 +1,4 @@ -
+
  @@ -25,11 +25,13 @@
-
-
-
-
+ +
+
+
+
+
-
+ diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts index d4c427cce..629195955 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef, Input } from '@angular/core'; -import { Subscription } from 'rxjs'; +import { Observable, Subscription } from 'rxjs'; import { Block } from 'src/app/interfaces/electrs.interface'; import { StateService } from 'src/app/services/state.service'; import { Router } from '@angular/router'; @@ -13,18 +13,19 @@ import { Router } from '@angular/router'; export class BlockchainBlocksComponent implements OnInit, OnDestroy { network = ''; - blocks: Block[] = this.mountEmptyBlocks(); + blocks: Block[] = []; + emptyBlocks: Block[] = this.mountEmptyBlocks(); markHeight: number; blocksSubscription: Subscription; - networkSubscriotion: Subscription; + networkSubscription: Subscription; tabHiddenSubscription: Subscription; markBlockSubscription: Subscription; + loadingBlocks$: Observable; blockStyles = []; + emptyBlockStyles = []; interval: any; tabHidden = false; - loadingBlocks = false; feeRounding = '1.0-0'; - arrowVisible = false; arrowLeftPx = 30; blocksFilled = false; @@ -48,18 +49,16 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy { if (this.stateService.network === 'liquid') { this.feeRounding = '1.0-1'; } - this.blocks.forEach((b) => this.blockStyles.push(this.getStyleForBlock(b))); - this.networkSubscriotion = this.stateService.networkChanged$.subscribe((network) => this.network = network); + this.emptyBlocks.forEach((b) => this.emptyBlockStyles.push(this.getStyleForEmptyBlock(b))); + this.loadingBlocks$ = this.stateService.isLoadingWebSocket$; + this.networkSubscription = this.stateService.networkChanged$.subscribe((network) => this.network = network); this.tabHiddenSubscription = this.stateService.isTabHidden$.subscribe((tabHidden) => this.tabHidden = tabHidden); - this.blocksSubscription = this.stateService.blocks$ .subscribe(([block, txConfirmed]) => { if (this.blocks.some((b) => b.height === block.height)) { return; } - this.loadingBlocks = true; - if (this.blocks.length && block.height !== this.blocks[0].height + 1) { this.blocks = []; this.blocksFilled = false; @@ -128,7 +127,7 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy { ngOnDestroy() { this.blocksSubscription.unsubscribe(); - this.networkSubscriotion.unsubscribe(); + this.networkSubscription.unsubscribe(); this.tabHiddenSubscription.unsubscribe(); this.markBlockSubscription.unsubscribe(); clearInterval(this.interval); @@ -187,6 +186,21 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy { )`, }; } + + getStyleForEmptyBlock(block: Block) { + let addLeft = 0; + + if (block.stage === 1) { + block.stage = 2; + addLeft = -205; + } + + return { + left: addLeft + 155 * this.emptyBlocks.indexOf(block) + 'px', + background: "#2d3348", + }; + } + mountEmptyBlocks() { const emptyBlocks = []; for (let i = 0; i < this.stateService.env.KEEP_BLOCKS_AMOUNT; i++) { diff --git a/frontend/src/app/components/master-page/master-page.component.html b/frontend/src/app/components/master-page/master-page.component.html index 4e53764b2..2eb6fd0df 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -20,8 +20,8 @@ - Bisq - + Bisq + Liquid
diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html index e1d55d0d1..c3c06e7aa 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -1,47 +1,51 @@ -
-
- -
-   -
-
- ~{{ projectedBlock.medianFee | number:feeRounding }} sat/vB -
-
- {{ projectedBlock.feeRange[0] | number:feeRounding }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:feeRounding }} sat/vB -
-
-
- - {{ i }} transaction - {{ i }} transactions -
-
- - - - - - -
- -
- () - {{ i }} blocks + +
+
+ +
+   +
+
+ ~{{ projectedBlock.medianFee | number:feeRounding }} sat/vB
- +
+ {{ projectedBlock.feeRange[0] | number:feeRounding }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:feeRounding }} sat/vB +
+
+
+ + {{ i }} transaction + {{ i }} transactions +
+
+ + + + + + +
+ +
+ () + {{ i }} blocks +
+
+
+
- -
- + +
+
-
-
+ -
-
- -
-
+ +
+
+ +
+
+
-
+ diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts index 1d7a02f06..635bfa175 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts @@ -3,7 +3,7 @@ import { Subscription, Observable, fromEvent, merge, of, combineLatest, timer } import { MempoolBlock } from 'src/app/interfaces/websocket.interface'; import { StateService } from 'src/app/services/state.service'; import { Router } from '@angular/router'; -import { take, map, switchMap } from 'rxjs/operators'; +import { take, map, switchMap, share } from 'rxjs/operators'; import { feeLevels, mempoolFeeColors } from 'src/app/app.constants'; @Component({ @@ -14,13 +14,17 @@ import { feeLevels, mempoolFeeColors } from 'src/app/app.constants'; }) export class MempoolBlocksComponent implements OnInit, OnDestroy { - mempoolBlocks: MempoolBlock[] = this.mountEmptyBlocks(); + mempoolBlocks: MempoolBlock[] = []; + mempoolEmptyBlocks: MempoolBlock[] = this.mountEmptyBlocks(); mempoolBlocks$: Observable; timeAvg$: Observable; + loadingBlocks$: Observable; - mempoolBlocksFull: MempoolBlock[] = this.mountEmptyBlocks(); + mempoolBlocksFull: MempoolBlock[] = []; mempoolBlockStyles = []; + mempoolEmptyBlockStyles = []; markBlocksSubscription: Subscription; + isLoadingWebsocketSubscription: Subscription; blockSubscription: Subscription; networkSubscription: Subscription; network = ''; @@ -30,7 +34,6 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { blockPadding = 30; arrowVisible = false; tabHidden = false; - loadingMempoolBlocks = true; feeRounding = '1.0-0'; rightPosition = 0; @@ -53,12 +56,18 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { if (this.stateService.network === 'liquid') { this.feeRounding = '1.0-1'; } + this.mempoolEmptyBlocks.forEach((b) => { + this.mempoolEmptyBlockStyles.push(this.getStyleForMempoolEmptyBlock(b.index)); + }); + this.reduceMempoolBlocksToFitScreen(this.mempoolEmptyBlocks); + this.mempoolBlocks.map(() => { this.updateMempoolBlockStyles(); this.calculateTransactionPosition(); }); this.reduceMempoolBlocksToFitScreen(this.mempoolBlocks); this.stateService.isTabHidden$.subscribe((tabHidden) => this.tabHidden = tabHidden); + this.loadingBlocks$ = this.stateService.isLoadingWebSocket$; this.mempoolBlocks$ = merge( of(true), @@ -109,8 +118,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { } else { timeAvgMins += Math.abs(timeAvgDiff); } - - this.loadingMempoolBlocks = false; + return timeAvgMins * 60 * 1000; }) ); @@ -234,6 +242,13 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { }; } + getStyleForMempoolEmptyBlock(index: number) { + return { + 'right': 40 + index * 155 + 'px', + 'background': '#554b45', + }; + } + calculateTransactionPosition() { if ((!this.txFeePerVSize && (this.markIndex === undefined || this.markIndex === -1)) || !this.mempoolBlocks) { this.arrowVisible = false; @@ -286,7 +301,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { blockSize: 0, blockVSize: 0, feeRange: [], - index: 0, + index: i, medianFee: 0, nTx: 0, totalFees: 0 diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index fb184b99b..529400540 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -218,7 +218,7 @@ Transaction Hex - + diff --git a/frontend/src/app/components/transaction/transaction.component.scss b/frontend/src/app/components/transaction/transaction.component.scss index cea65ab51..b9c7b23f7 100644 --- a/frontend/src/app/components/transaction/transaction.component.scss +++ b/frontend/src/app/components/transaction/transaction.component.scss @@ -16,15 +16,13 @@ } } - h1{ - font-size: 1.75rem; margin-top: 2px; margin-bottom: 0; float: left; - @media (min-width: 375px){ - margin-top: 0px; - font-size: 2rem; + margin-top: 2px; + @media (min-width: 768px){ + margin-top: -8px; } } diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 0fde8306e..6df13027a 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -10,6 +10,9 @@
+
+ +
@@ -24,9 +27,6 @@
-
- -
diff --git a/frontend/src/app/services/websocket.service.ts b/frontend/src/app/services/websocket.service.ts index cdcbf5cbe..dc65cf8f7 100644 --- a/frontend/src/app/services/websocket.service.ts +++ b/frontend/src/app/services/websocket.service.ts @@ -25,6 +25,7 @@ export class WebsocketService { private goneOffline = false; private lastWant: string | null = null; private isTrackingTx = false; + private trackingTxId: string; private latestGitCommit = ''; private onlineCheckTimeout: number; private onlineCheckTimeoutTwo: number; @@ -97,6 +98,9 @@ export class WebsocketService { if (this.lastWant) { this.want(JSON.parse(this.lastWant), true); } + if (this.isTrackingTx) { + this.startMultiTrackTransaction(this.trackingTxId); + } this.stateService.connectionState$.next(2); } @@ -119,11 +123,13 @@ export class WebsocketService { } this.websocketSubject.next({ 'track-tx': txId }); this.isTrackingTx = true; + this.trackingTxId = txId; } startMultiTrackTransaction(txId: string) { this.websocketSubject.next({ 'track-tx': txId, 'watch-mempool': true }); this.isTrackingTx = true; + this.trackingTxId = txId; } stopTrackingTransaction() { diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 72b89eb52..dec8aec20 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -2375,6 +2375,7 @@ Privacy Policy + سياسة الخصوصية src/app/components/api-docs/api-docs.component.html 880,885 @@ -3585,6 +3586,7 @@ Transaction Hex + تحويلة سلسلة ارقام سداسية عشرية src/app/components/transaction/transaction.component.html 220,221 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index dcb12c20c..e8af76556 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -1583,6 +1583,7 @@ General + Obecné src/app/components/api-docs/api-docs.component.html 9,11 @@ -1933,6 +1934,7 @@ Returns details about difficulty adjustment. + Vrátí podrobnosti o nastavení obtížnosti. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2046,6 +2048,7 @@ Returns the hex-encoded block header. + Vrátí hexadecimálně zakódovanou hlavičku bloku. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2372,6 +2375,7 @@ Privacy Policy + Ochrana osobních údajů src/app/components/api-docs/api-docs.component.html 880,885 @@ -2850,6 +2854,7 @@ Block Header Hex + Hlavička bloku Hex src/app/components/block/block.component.html 118,119 @@ -2996,6 +3001,7 @@ blocks + bloky src/app/components/footer/footer.component.html 22,23 @@ -3012,6 +3018,7 @@ block + blok src/app/components/footer/footer.component.html 23,24 @@ -3251,6 +3258,7 @@ Just now + Právě teď src/app/components/time-since/time-since.component.ts 57 @@ -3262,6 +3270,7 @@ ago + před src/app/components/time-since/time-since.component.ts 67 @@ -3321,6 +3330,7 @@ After + Po src/app/components/time-span/time-span.component.ts 67 @@ -3380,6 +3390,7 @@ In ~ + V ~ src/app/components/time-until/time-until.component.ts 66 @@ -3575,6 +3586,7 @@ Transaction Hex + Transakční Hex src/app/components/transaction/transaction.component.html 220,221 @@ -3898,6 +3910,7 @@ Transaction Fees + Transakční poplatky src/app/dashboard/dashboard.component.html 6,9 @@ -4016,6 +4029,7 @@ Difficulty Adjustment + Změna obtížnosti src/app/dashboard/dashboard.component.html 208,211 @@ -4024,6 +4038,7 @@ Remaining + Zbývá src/app/dashboard/dashboard.component.html 214,216 @@ -4036,6 +4051,7 @@ Estimate + Odhad src/app/dashboard/dashboard.component.html 223,224 @@ -4048,6 +4064,7 @@ Previous + Předchozí src/app/dashboard/dashboard.component.html 235,236 @@ -4056,6 +4073,7 @@ Current Period + Současné období src/app/dashboard/dashboard.component.html 247,248 @@ -4068,6 +4086,7 @@ year + rok src/app/shared/i18n/dates.ts 3 @@ -4075,6 +4094,7 @@ years + roky src/app/shared/i18n/dates.ts 4 @@ -4082,6 +4102,7 @@ month + měsíc src/app/shared/i18n/dates.ts 5 @@ -4089,6 +4110,7 @@ months + měsíce src/app/shared/i18n/dates.ts 6 @@ -4096,6 +4118,7 @@ week + týden src/app/shared/i18n/dates.ts 7 @@ -4103,6 +4126,7 @@ weeks + týdny src/app/shared/i18n/dates.ts 8 @@ -4110,6 +4134,7 @@ day + den src/app/shared/i18n/dates.ts 9 @@ -4117,6 +4142,7 @@ days + dny src/app/shared/i18n/dates.ts 10 @@ -4124,6 +4150,7 @@ hour + hodina src/app/shared/i18n/dates.ts 11 @@ -4131,6 +4158,7 @@ hours + hodiny src/app/shared/i18n/dates.ts 12 @@ -4138,6 +4166,7 @@ minute + minuta src/app/shared/i18n/dates.ts 13 @@ -4145,6 +4174,7 @@ minutes + minuty src/app/shared/i18n/dates.ts 14 @@ -4152,6 +4182,7 @@ second + sekunda src/app/shared/i18n/dates.ts 15 @@ -4159,6 +4190,7 @@ seconds + sekundy src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index c5e2e488d..b5f714dde 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -2375,6 +2375,7 @@ Privacy Policy + Datenschutzbestimmungen src/app/components/api-docs/api-docs.component.html 880,885 @@ -3585,6 +3586,7 @@ Transaction Hex + Transaktion Hexadezimal src/app/components/transaction/transaction.component.html 220,221 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index c37de506e..22273d159 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -2375,6 +2375,7 @@ Privacy Policy + Política de Privacidad src/app/components/api-docs/api-docs.component.html 880,885 @@ -3585,6 +3586,7 @@ Transaction Hex + Hex de Transacción src/app/components/transaction/transaction.component.html 220,221 diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index 18c7d3509..aa1ba75a5 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -1148,7 +1148,7 @@ Fee per vByte - Siirtokulu per vBitti + Siirtokulu per vByte src/app/bisq/bisq-transaction/bisq-transaction.component.html 64,66 @@ -2375,6 +2375,7 @@ Privacy Policy + Tietosuojakäytäntö src/app/components/api-docs/api-docs.component.html 880,885 @@ -2755,7 +2756,7 @@ Based on average native segwit transaction of 140 vBytes - Perustuu keskimääräiseen natiiviin 140 vBittiseen segwit-siirtotapahtumaan + Perustuu keskimääräiseen natiiviin 140 vByte segwit-siirtotapahtumaan src/app/components/block/block.component.html 46,48 @@ -2940,7 +2941,7 @@ Tx vBytes per second: - Tx vBittiä per sekuntti: + Tx vByte:ä per sekuntti: src/app/components/footer/footer.component.html 5,7 @@ -3000,7 +3001,7 @@ blocks - lohkoa + lohkoa src/app/components/footer/footer.component.html 22,23 @@ -3017,7 +3018,7 @@ block - lohkoa + lohkoa src/app/components/footer/footer.component.html 23,24 @@ -3230,7 +3231,7 @@ Mempool by vBytes (sat/vByte) - Mempool vBitteinä (sat/vBitti) + Mempool vByte:inä (sat/vByte) src/app/components/statistics/statistics.component.html 13 @@ -3248,7 +3249,7 @@ Transaction vBytes per second (vB/s) - Siirtotapahtuma vBittiä sekunnissa (vB/s) + Siirtotapahtuma vByte:ä sekunnissa (vB/s) src/app/components/statistics/statistics.component.html 53 @@ -3269,7 +3270,7 @@ ago - sitten + sitten src/app/components/time-since/time-since.component.ts 67 @@ -3389,7 +3390,7 @@ In ~ - ~ sisällä + ~ src/app/components/time-until/time-until.component.ts 66 @@ -3585,6 +3586,7 @@ Transaction Hex + Transaktio heksa src/app/components/transaction/transaction.component.html 220,221 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 52200450a..cd56ee38b 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -75,6 +75,7 @@ «« + «« node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -82,6 +83,7 @@ « + « node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -89,6 +91,7 @@ » + » node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -96,6 +99,7 @@ »» + »» node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -175,6 +179,7 @@ Increment hours + Incrémenter les heures node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -182,6 +187,7 @@ Decrement hours + Décrémenter les heures node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -189,6 +195,7 @@ Increment minutes + Incrémenter les minutes node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -196,6 +203,7 @@ Decrement minutes + Décrémenter les minutes node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -203,6 +211,7 @@ SS + SS node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -210,6 +219,7 @@ Seconds + Secondes node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -217,6 +227,7 @@ Increment seconds + Incrémenter les secondes node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -224,6 +235,7 @@ Decrement seconds + Décrémenter les secondes node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -231,6 +243,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -238,6 +251,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -1291,6 +1305,7 @@ Reimbursement request + Demande de remboursement src/app/bisq/bisq-transactions/bisq-transactions.component.ts 39 @@ -1298,6 +1313,7 @@ Transfer BSQ + Transférer BSQ src/app/bisq/bisq-transactions/bisq-transactions.component.ts 40 @@ -1305,6 +1321,7 @@ Unlock + Déverrouillé src/app/bisq/bisq-transactions/bisq-transactions.component.ts 41 @@ -1312,6 +1329,7 @@ Vote reveal + Révéle du vote src/app/bisq/bisq-transactions/bisq-transactions.component.ts 42 @@ -1343,6 +1361,7 @@ Trades + Echange src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts 90 @@ -1350,6 +1369,7 @@ Volume + Volume src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts 91 @@ -1357,6 +1377,7 @@ The Mempool Open Source Project + Le Projet Open Source Mempool src/app/components/about/about.component.html 12 @@ -1413,6 +1434,7 @@ Community Integrations + Intégrations communautaires src/app/components/about/about.component.html 71,74 @@ -1421,6 +1443,7 @@ Community Alliances + Alliances communautaires src/app/components/about/about.component.html 142,144 @@ -1429,6 +1452,7 @@ Project Contributors + Contributeurs au projet src/app/components/about/about.component.html 157,159 @@ -1437,6 +1461,7 @@ Project Maintainers + Mainteneurs de projet src/app/components/about/about.component.html 171,173 @@ -1466,6 +1491,7 @@ Lightning + Lightning src/app/components/address-labels/address-labels.component.html 11 @@ -1474,6 +1500,7 @@ Liquid + Liquid src/app/components/address-labels/address-labels.component.html 17 @@ -1509,6 +1536,7 @@ The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead: + Le nombre de transactions sur cette adresse dépasse la limite du serveur ElectrumEnvisagez plutôt de consulter cette adresse sur le site web officiel de Mempool: src/app/components/address/address.component.html 127,130 @@ -1555,6 +1583,7 @@ General + Général src/app/components/api-docs/api-docs.component.html 9,11 @@ -1564,6 +1593,7 @@ Endpoint + Point de terminaison src/app/components/api-docs/api-docs.component.html 19,20 @@ -1728,6 +1758,7 @@ Description + Description src/app/components/api-docs/api-docs.component.html 23,24 @@ -1903,6 +1934,7 @@ Returns details about difficulty adjustment. + Renvoie des détails sur l'ajustement de la difficulté. src/app/components/api-docs/api-docs.component.html 24,26 @@ -1928,6 +1960,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Obtenez l'historique des transactions pour l'adresse/scripthash spécifié, trié par le plus récent en premier. Renvoie jusqu'à 50 transactions mempool plus les 25 premières transactions confirmées. Vous pouvez demander pour plus de transactions confirmées en utilisant:last_seen_txid(voir ci-dessous). src/app/components/api-docs/api-docs.component.html 68,69 @@ -2007,6 +2040,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Renvoie des détails sur un bloc. Champs disponibles : id, hauteur, version, horodatage, bits, nonce, merkle_root, tx_count, taille, poids,preuve, et blockhashprécédent. src/app/components/api-docs/api-docs.component.html 211,212 @@ -2014,6 +2048,7 @@ Returns the hex-encoded block header. + Renvoie l'en-tête de bloc codé en hexadécimal. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2037,6 +2072,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Renvoie l'état de confirmation d'un bloc. Champs disponibles : in_best_chain (booléen, faux pour les blocs orphelins), next_best (le hachage du bloc suivant, disponible uniquement pour les blocs de la meilleure chaîne). src/app/components/api-docs/api-docs.component.html 283,284 @@ -2060,6 +2096,7 @@ Returns the transaction at index :index within the specified block. + Renvoie la transaction à l'index :indice dans le bloc spécifié. src/app/components/api-docs/api-docs.component.html 342,343 @@ -2075,6 +2112,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Renvoie une liste des transactions dans le bloc (jusqu'à 25 transactions commençant à start_index). Les transactions retournées ici n'ont pas le champ destatut, car toutes les transactions partagent le même statut de blocage et de confirmation. src/app/components/api-docs/api-docs.component.html 381,382 @@ -2082,6 +2120,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Renvoie les 10 blocs les plus récents en commençant par la pointe ou à :start_heightsi spécifié. src/app/components/api-docs/api-docs.component.html 401,402 @@ -2099,6 +2138,7 @@ Returns current mempool as projected blocks. + Renvoie le mempool actuel sous forme de blocs projetés. src/app/components/api-docs/api-docs.component.html 426,428 @@ -2108,6 +2148,7 @@ Returns our currently suggested fees for new transactions. + Renvoie nos frais actuellement suggérés pour les nouvelles transactions. src/app/components/api-docs/api-docs.component.html 442,444 @@ -2203,6 +2244,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Obtenez la liste complète des txids dans le mempool sous forme de tableau. L'ordre des txids est arbitraire et ne correspond pas à bitcoind. src/app/components/api-docs/api-docs.component.html 632,635 @@ -2232,6 +2274,7 @@ Returns the ancestors and the best descendant fees for a transaction. + Renvoie les ancêtres et les meilleurs frais de descendants pour une transaction. src/app/components/api-docs/api-docs.component.html 676,678 @@ -2257,6 +2300,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Renvoie une preuve d'inclusion merkle pour la transaction en utilisant le format merkleblock de bitcoind . src/app/components/api-docs/api-docs.component.html 730,731 @@ -2272,6 +2316,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Renvoie le statut de dépense d'une sortie de transaction. Champs disponibles : dépensé (booléen), txid (optionnel), vin (optionnel), et statut (facultatif, le statut de la dépense tx). src/app/components/api-docs/api-docs.component.html 769,770 @@ -2295,6 +2340,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Renvoie le statut de confirmation d'une transaction. Champs disponibles :confirmé (booléen), block_height (optionnel), et block_hash (optionnel). src/app/components/api-docs/api-docs.component.html 826,827 @@ -2302,6 +2348,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Diffusez une transaction brute sur le réseau. La transaction doit être fournie sous forme hexadécimale dans le corps de la requête. Le txid sera renvoyé en cas de succès. src/app/components/api-docs/api-docs.component.html 846,847 @@ -2319,6 +2366,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Pousser par défaut : action: 'want', data: ['blocks', ...] tpour exprimer ce que vous voulez poussé. Disponible: blocs, blocs-mempool, live-2h-chart, et stats.Transactions push liées à l'adresse : 'track-address': '3PbJ...bF9B' pour recevoir toutes les nouvelles transactions contenant cette adresse en entrée ou en sortie. Renvoie un tableau de transactions. address-transactions pour les nouvelles transactions mempool, et block-transactions pour les nouvelles transactions confirmées en bloc. src/app/components/api-docs/api-docs.component.html 865,866 @@ -2327,6 +2375,7 @@ Privacy Policy + Politique de confidentialité src/app/components/api-docs/api-docs.component.html 880,885 @@ -2356,6 +2405,7 @@ Code Example + Exemple de code src/app/components/api-docs/code-template.component.html 6 @@ -2372,6 +2422,7 @@ Install Package + Paquet d'installation src/app/components/api-docs/code-template.component.html 23,24 @@ -2380,6 +2431,7 @@ Response + Réponse src/app/components/api-docs/code-template.component.html 36,37 @@ -2388,6 +2440,7 @@ Asset + Actif src/app/components/asset/asset.component.html 2 @@ -2481,6 +2534,7 @@ of   + de   src/app/components/asset/asset.component.html 76 @@ -2764,6 +2818,7 @@ Bits + Bits src/app/components/block/block.component.html 96,98 @@ -2772,6 +2827,7 @@ Merkle root + racine de Merkle src/app/components/block/block.component.html 100,102 @@ -2780,6 +2836,7 @@ Difficulty + Difficulté src/app/components/block/block.component.html 110,113 @@ -2788,6 +2845,7 @@ Nonce + Nonce src/app/components/block/block.component.html 114,116 @@ -2796,6 +2854,7 @@ Block Header Hex + Hex d'en-tête de bloc src/app/components/block/block.component.html 118,119 @@ -2942,6 +3001,7 @@ blocks + blocs src/app/components/footer/footer.component.html 22,23 @@ -2958,6 +3018,7 @@ block + bloc src/app/components/footer/footer.component.html 23,24 @@ -3112,6 +3173,7 @@ Sponsor + Parrainer src/app/components/sponsor/sponsor.component.html 3 @@ -3196,6 +3258,7 @@ Just now + Juste maintenant src/app/components/time-since/time-since.component.ts 57 @@ -3207,6 +3270,7 @@ ago + depuis src/app/components/time-since/time-since.component.ts 67 @@ -3266,6 +3330,7 @@ After + Après src/app/components/time-span/time-span.component.ts 67 @@ -3325,6 +3390,7 @@ In ~ + Dans ~ src/app/components/time-until/time-until.component.ts 66 @@ -3466,6 +3532,7 @@ Fee rate + Taux de frais src/app/components/transaction/transaction.component.html 156,160 @@ -3479,6 +3546,7 @@ Descendant + Descendant src/app/components/transaction/transaction.component.html 163,165 @@ -3488,6 +3556,7 @@ Ancestor + Ancêtre src/app/components/transaction/transaction.component.html 177,179 @@ -3517,6 +3586,7 @@ Transaction Hex + Hex de transaction src/app/components/transaction/transaction.component.html 220,221 @@ -3563,6 +3633,7 @@ Effective fee rate + Taux de frais effectif src/app/components/transaction/transaction.component.html 342,345 @@ -3725,6 +3796,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Cette transaction a économisé % sur les frais en utilisant SegWit-Bech32 natif src/app/components/tx-features/tx-features.component.html 1 @@ -3751,6 +3823,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Cette transaction a économisé % sur les frais en utilisant SegWit et pourrait économiser % plus en effectuant une mise à niveau complète vers SegWit-Bech32 natif src/app/components/tx-features/tx-features.component.html 3 @@ -3759,6 +3832,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Cette transaction pourrait économiser % sur les frais en passant à SegWit-Bech32 natif ou % en passant à SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -3809,6 +3883,7 @@ Only ~ sat/vB was needed to get into this block + Seulement ~ sat/vB était nécessaire pour entrer dans ce bloc src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -3835,6 +3910,7 @@ Transaction Fees + Frais de transaction src/app/dashboard/dashboard.component.html 6,9 @@ -3953,6 +4029,7 @@ Difficulty Adjustment + Ajustement de la difficulté src/app/dashboard/dashboard.component.html 208,211 @@ -3961,6 +4038,7 @@ Remaining + Restant src/app/dashboard/dashboard.component.html 214,216 @@ -3973,6 +4051,7 @@ Estimate + Estimation src/app/dashboard/dashboard.component.html 223,224 @@ -3985,6 +4064,7 @@ Previous + Précédent src/app/dashboard/dashboard.component.html 235,236 @@ -3993,6 +4073,7 @@ Current Period + Période actuelle src/app/dashboard/dashboard.component.html 247,248 @@ -4005,6 +4086,7 @@ year + année src/app/shared/i18n/dates.ts 3 @@ -4012,6 +4094,7 @@ years + années src/app/shared/i18n/dates.ts 4 @@ -4019,6 +4102,7 @@ month + mois src/app/shared/i18n/dates.ts 5 @@ -4026,6 +4110,7 @@ months + mois src/app/shared/i18n/dates.ts 6 @@ -4033,6 +4118,7 @@ week + semaine src/app/shared/i18n/dates.ts 7 @@ -4040,6 +4126,7 @@ weeks + semaine src/app/shared/i18n/dates.ts 8 @@ -4047,6 +4134,7 @@ day + journée src/app/shared/i18n/dates.ts 9 @@ -4054,6 +4142,7 @@ days + journées src/app/shared/i18n/dates.ts 10 @@ -4061,6 +4150,7 @@ hour + heure src/app/shared/i18n/dates.ts 11 @@ -4068,6 +4158,7 @@ hours + heures src/app/shared/i18n/dates.ts 12 @@ -4075,6 +4166,7 @@ minute + minute src/app/shared/i18n/dates.ts 13 @@ -4082,6 +4174,7 @@ minutes + minutes src/app/shared/i18n/dates.ts 14 @@ -4089,6 +4182,7 @@ second + seconde src/app/shared/i18n/dates.ts 15 @@ -4096,6 +4190,7 @@ seconds + secondes src/app/shared/i18n/dates.ts 16 @@ -4103,6 +4198,7 @@ Transaction fee + Frais de transaction src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts 11 diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf index e4acaa345..e886e2c22 100644 --- a/frontend/src/locale/messages.he.xlf +++ b/frontend/src/locale/messages.he.xlf @@ -3,7 +3,7 @@ Close - סגור + סגירה node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts 74 @@ -51,7 +51,7 @@ Select month - בחר חודש + בחירת חודש node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts 74 @@ -63,7 +63,7 @@ Select year - בחר שנה + בחירת שנה node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts 74 @@ -259,7 +259,7 @@ Close - סגור + סגירה node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts 137 @@ -276,7 +276,7 @@ Search asset - חפש נכס + חיפוש נכס src/app/assets/assets.component.html 9,11 @@ -285,7 +285,7 @@ Clear - נקה + ניקוי src/app/assets/assets.component.html 11,16 @@ -307,7 +307,7 @@ Ticker - Ticker + פסנוע src/app/assets/assets.component.html 20,21 @@ -346,7 +346,7 @@ Issuance TX - הנפקת טרנזקציה + פעולת הנפקה src/app/assets/assets.component.html 23,26 @@ -436,7 +436,7 @@ transaction - טרנזקציה + פעולה src/app/bisq/bisq-address/bisq-address.component.html 50 @@ -461,7 +461,7 @@ transactions - טרנזקציות + פעולות src/app/bisq/bisq-address/bisq-address.component.html 51 @@ -611,7 +611,7 @@ Transactions - טרנזקציות + פעולות src/app/bisq/bisq-blocks/bisq-blocks.component.html 15,18 @@ -656,7 +656,7 @@ Bisq Trading Volume - נפח עסקאות ביסק + נפח מסחר Bisq src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 3,7 @@ -792,7 +792,7 @@ View all » - צפה בהכל » + הצג הכל » src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 92,97 @@ -862,7 +862,7 @@ BSQ statistics - סטטיסטיקת BSQ + סטטיסטיקות BSQ src/app/bisq/bisq-stats/bisq-stats.component.html 2 @@ -888,7 +888,7 @@ Minted amount - Minted amount + כמות שהוטבעה src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -901,7 +901,7 @@ Burnt amount - Burnt amount + כמות שרופה src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -935,7 +935,7 @@ Unspent TXOs - פלטי טרנזקציות שלא בוזבזו + פלטי פעולה שלא בוזבזו src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -948,7 +948,7 @@ Spent TXOs - פלטי טרנזקציות שבוזבזו + פלטי פעולה שבוזבזו src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -1103,7 +1103,7 @@ Transaction - טרנזקציה + פעולה src/app/bisq/bisq-transaction/bisq-transaction.component.html 12,15 @@ -1197,7 +1197,7 @@ Transaction: - טרנזקציה: + פעולה: src/app/bisq/bisq-transaction/bisq-transaction.component.ts 50 @@ -1209,7 +1209,7 @@ BSQ Transactions - טרנזקציות BSQ + פעולות BSQ src/app/bisq/bisq-transactions/bisq-transactions.component.html 2,5 @@ -1217,7 +1217,7 @@ TXID - מזהה טרנזקציה + מזהה פעולה src/app/bisq/bisq-transactions/bisq-transactions.component.html 18,19 @@ -1273,7 +1273,7 @@ Lockup - נעל + נעילה src/app/bisq/bisq-transactions/bisq-transactions.component.ts 35 @@ -1281,7 +1281,7 @@ Pay trade fee - שלם עמלת עסקה + תשלום עמלת עסקה src/app/bisq/bisq-transactions/bisq-transactions.component.ts 36 @@ -1313,7 +1313,7 @@ Transfer BSQ - העבר BSQ + העברת BSQ src/app/bisq/bisq-transactions/bisq-transactions.component.ts 40 @@ -1321,7 +1321,7 @@ Unlock - בטל נעילה + ביטול נעילה src/app/bisq/bisq-transactions/bisq-transactions.component.ts 41 @@ -1329,7 +1329,7 @@ Vote reveal - חשוף הצבעה + חשיפת הצבעה src/app/bisq/bisq-transactions/bisq-transactions.component.ts 42 @@ -1337,7 +1337,7 @@ Filter - סנן + סינון src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56,55 @@ -1377,6 +1377,7 @@ The Mempool Open Source Project + פרויקט הקוד פתוח של Mempool src/app/components/about/about.component.html 12 @@ -1385,6 +1386,7 @@ Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers. + בונים מנוע מחקר ממפול ובלוקציין לקהילת הביטקוין, ממוקד על שוק העמלות העברות והאקוסיסטם ורב-שיכבתי, ללא פרסום, אלטקויינים, או מעקבים גוף שלישי. src/app/components/about/about.component.html 13,17 @@ -1410,7 +1412,7 @@ Become a sponsor ❤️ - הצטרף כנותן חסות ❤️ + הצטרפו כנותני חסות ❤️ src/app/components/about/about.component.html 66,67 @@ -1419,6 +1421,7 @@ Navigate to https://mempool.space/sponsor to sponsor + נווטו ל-https://mempool.space/sponsor לתת חסות. src/app/components/about/about.component.html 67 @@ -1479,7 +1482,7 @@ multisig of - multisig of + רב-חתימות מתוך src/app/components/address-labels/address-labels.component.html 5 @@ -1506,7 +1509,7 @@ of transaction - של עסקת + פעולת מתוך src/app/components/address/address.component.html 52,53 @@ -1515,7 +1518,7 @@ of transactions - של עסקאות + פעולות מתוך src/app/components/address/address.component.html 53,54 @@ -1533,6 +1536,7 @@ The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead: + מספר ההעברות בכתובת זו חורג הגבלת שרת אלקטרום שקול צפיית הכתובת באתר הרשמי של Mempool במקום. src/app/components/address/address.component.html 127,130 @@ -1570,7 +1574,7 @@ API Service - API Service + שירות API src/app/components/api-docs/api-docs.component.html 4,7 @@ -1579,6 +1583,7 @@ General + כללי src/app/components/api-docs/api-docs.component.html 9,11 @@ -1588,6 +1593,7 @@ Endpoint + נקודת קצה src/app/components/api-docs/api-docs.component.html 19,20 @@ -1752,6 +1758,7 @@ Description + תיאור src/app/components/api-docs/api-docs.component.html 23,24 @@ -1927,6 +1934,7 @@ Returns details about difficulty adjustment. + מחזיר פרטים לגבי התאמת הקושי. src/app/components/api-docs/api-docs.component.html 24,26 @@ -1934,7 +1942,7 @@ Addresses - Addresses + כתובות src/app/components/api-docs/api-docs.component.html 34,36 @@ -1952,6 +1960,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + קבל את היסטורית הטרנזקציות לכתובת/סקריפטהש, ממוין עם הכי חדש קודם. מחזיר עד 50 טנזקציות בממפול פלוס ה-25 טרנזקציות הלא מאושרות הראשונות. ניתן לבקש עוד טרנזקציות מאושרות עם last_seen_txid: (ראה למטה) src/app/components/api-docs/api-docs.component.html 68,69 @@ -1983,7 +1992,7 @@ Assets - Assets + נכסים src/app/components/api-docs/api-docs.component.html 135,137 @@ -2031,6 +2040,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + מחזירה פרטים על בלוק. שדות זמינים: id , גובה , גרסה , חותמת זמן , ביטים , נונס tx_count ,merkle_root גודל , משקל , הוכחה, ו-בלוקהש הקודם . src/app/components/api-docs/api-docs.component.html 211,212 @@ -2038,6 +2048,7 @@ Returns the hex-encoded block header. + מחזיר את כותרת הבלוק בקידוד הקס. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2061,6 +2072,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + מחזירה את סטטוס האישור של בלוק. שדות זמינים: in_best_chain (בוליאני, לא נכון עבור בלוקים מיותמים), next_best (ההש של הבלוק הבא, זמין רק עבור בלוקים בשרשרת הטובה ביותר). src/app/components/api-docs/api-docs.component.html 283,284 @@ -2084,6 +2096,7 @@ Returns the transaction at index :index within the specified block. + מחזירה את הטרנזקציה באינדקס index: בתוך הבלוק שצוין. src/app/components/api-docs/api-docs.component.html 342,343 @@ -2099,6 +2112,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + מחזירה רשימת טרנזקציות בבלוק (עד 25 טרנזקציות המתחילות ב- start_index). טרנזקציות המוחזרות כאן אינן בעלות השדה status , מכיוון שלכל טרנזקציות יש אותו בלוק ואותו סטטוס אישור. src/app/components/api-docs/api-docs.component.html 381,382 @@ -2106,6 +2120,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + מחזירה את 10 הבלוקים החדשים ביותר המתחילים בקצה או ב- start_height: אם צוין. src/app/components/api-docs/api-docs.component.html 401,402 @@ -2123,6 +2138,7 @@ Returns current mempool as projected blocks. + מחזירה את הממפול הנוכחי כבלוקים צפויים. src/app/components/api-docs/api-docs.component.html 426,428 @@ -2132,6 +2148,7 @@ Returns our currently suggested fees for new transactions. + מחזירה את העמלות המומלצות כרגע לטרנזקציות חדשות. src/app/components/api-docs/api-docs.component.html 442,444 @@ -2227,6 +2244,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + קבל את הרשימה המלאה של txids ב- mempool כמערך. סדר ה-txids הוא שרירותי ואינו תואם bitcoind. src/app/components/api-docs/api-docs.component.html 632,635 @@ -2246,7 +2264,7 @@ Transactions - Transactions + פעולות src/app/components/api-docs/api-docs.component.html 661,665 @@ -2256,6 +2274,7 @@ Returns the ancestors and the best descendant fees for a transaction. + מחזירה את האבות ואת העמלות הטובים ביותר לטרנזקציה. src/app/components/api-docs/api-docs.component.html 676,678 @@ -2281,6 +2300,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + מחזירה הוכחת הכללה של Merkle לטרנזקציה באמצעות פורמט merkleblock של bitcoind. src/app/components/api-docs/api-docs.component.html 730,731 @@ -2296,6 +2316,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + מחזירה את מצב ההוצאה של תפוקת טרנזקציה. שדות זמינים: שולם (בוליאני), txid (אופציונלי), vin (אופציונלי), ו-status (אופציונלי, הסטטוס שלי הטרנזקציה המשלם). src/app/components/api-docs/api-docs.component.html 769,770 @@ -2319,6 +2340,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + מחזירה את סטטוס האישור של הטרנזקציה. שדות זמינים: confirmed (בוליאני), block_height (אופציונלי) ו- block_hash (אופציונלי). src/app/components/api-docs/api-docs.component.html 826,827 @@ -2326,6 +2348,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + שדר טרנזקציה גולמית לרשת. יש לספק את הטרנזקציה כ-hex בגוף הבקשה. ה- txid יוחזר לאחר הצלחת הפעולה. src/app/components/api-docs/api-docs.component.html 846,847 @@ -2343,6 +2366,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + פעולת ברירת מחדל: [... ,'action: 'want', data: ['blocks להביע את מה שאתה רוצה לדחוף. זמין: live-2h-chart ,mempool-blocks,,blocks, ו- stats. דחוף טרנזקציות קשורות לכתובת: 'track-address': '3PbJ...bF9B' לקבל כל הטרנזקציות החדשות שכוללות הכתובת כקלט או כתפוקה. מחזיר מערך טרנזקציות. address-transactions לטרנזקציות חדשות לממפול, ו- block-transactions לטרנזקציות מאושרות חדשות לבלוק. src/app/components/api-docs/api-docs.component.html 865,866 @@ -2351,6 +2375,7 @@ Privacy Policy + מדיניות פרטיות src/app/components/api-docs/api-docs.component.html 880,885 @@ -2380,6 +2405,7 @@ Code Example + קוד לדוגמה src/app/components/api-docs/code-template.component.html 6 @@ -2396,6 +2422,7 @@ Install Package + התקנת חבילה src/app/components/api-docs/code-template.component.html 23,24 @@ -2404,6 +2431,7 @@ Response + תגובה src/app/components/api-docs/code-template.component.html 36,37 @@ -2506,6 +2534,7 @@ of   + מתוך src/app/components/asset/asset.component.html 76 @@ -2816,6 +2845,7 @@ Nonce + תוספתא src/app/components/block/block.component.html 114,116 @@ -2824,6 +2854,7 @@ Block Header Hex + קידוד כותר הבלוק src/app/components/block/block.component.html 118,119 @@ -2970,6 +3001,7 @@ blocks + בלוק src/app/components/footer/footer.component.html 22,23 @@ -2986,6 +3018,7 @@ block + בלוק src/app/components/footer/footer.component.html 23,24 @@ -3553,6 +3586,7 @@ Transaction Hex + קידוד טרנזקציה src/app/components/transaction/transaction.component.html 220,221 @@ -3876,6 +3910,7 @@ Transaction Fees + עמלת טרנזקציה src/app/dashboard/dashboard.component.html 6,9 @@ -4029,6 +4064,7 @@ Previous + הקודם src/app/dashboard/dashboard.component.html 235,236 diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf index 8f82d49ba..231193452 100644 --- a/frontend/src/locale/messages.hi.xlf +++ b/frontend/src/locale/messages.hi.xlf @@ -147,6 +147,7 @@ HH + एचएच node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -162,6 +163,7 @@ MM + एम्एम् node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -209,6 +211,7 @@ SS + एसएस node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -304,6 +307,7 @@ Ticker + टिकर src/app/assets/assets.component.html 20,21 @@ -342,7 +346,7 @@ Issuance TX - निर्गम TX + निर्गम टीएक्स src/app/assets/assets.component.html 23,26 @@ -632,7 +636,7 @@ Blocks - ब्लाकों + ब्लॉक src/app/bisq/bisq-blocks/bisq-blocks.component.ts 38 @@ -931,7 +935,7 @@ Unspent TXOs - अव्ययित TXOs + अव्ययित टीएक्सओ src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -944,7 +948,7 @@ Spent TXOs - खरचे गए TXOs + खरचे गए टीएक्सओ src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -1523,6 +1527,7 @@ Error loading address data. + डेटा लोड करने में त्रुटि. src/app/components/address/address.component.html 122,125 @@ -1578,6 +1583,7 @@ General + आम src/app/components/api-docs/api-docs.component.html 9,11 @@ -1928,6 +1934,7 @@ Returns details about difficulty adjustment. + कठिनाई समायोजन के बारे में विवरण देता है। src/app/components/api-docs/api-docs.component.html 24,26 @@ -1945,6 +1952,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + किसी पते के बारे में विवरण देता है। उपलब्ध फ़ील्ड: पता , चैन स्टैट्स , और मेम्पुल मेम्पुल . चेन, मेम्पुल _मेम्पुल प्रत्येक के साथ टी एक्स_काउंट , फंडेड_टी एक्स_काउंट , फंडेड_टी एक्स_सम , स्पेंट_टी एक्स_काउंट, और स्पेंट_टी एक्स_सम एक वस्तु होते हैं। src/app/components/api-docs/api-docs.component.html 50,51 @@ -1976,6 +1984,7 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + पते / स्क्रिप्टश से जुड़े अव्ययित लेनदेन आउटपुट की सूची प्राप्त करें। उपलब्ध फ़ील्ड: टीएक्सआईडी , वी आउट , मान , और फंडिंग की स्थिति के साथ)। वहाँ भी एक वैल्यूकमिटमेंट क्षेत्र है कि मूल्य के स्थान पर दिखाई दे सकते हैं, के साथ साथ निम्न अतिरिक्त फ़ील्ड: संपत्ति / एसेट कमिटमेंट , अस्थायी रूप से / नोन्स कमिटमेंट , सुरजेक्शन_प्रूफ , और रेंज_प्रूफ src/app/components/api-docs/api-docs.component.html 124,125 @@ -2009,6 +2018,7 @@ Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + निर्दिष्ट संपत्ति की वर्तमान कुल आपूर्ति प्राप्त करें। नेटिव एसेट (L-BTC) के लिए, इसकी गणना [चेन,मेमपूल]_स्टैट्स.पेग_इन_अमाउंट - [चेन,मेमपूल]_स्टैट्स.पेग_आउट_अमाउंट - [चेन,मेमपूल]_स्टैट्स.बर्नड_अमाउंट के रूप में की जाती है। जारी की गई संपत्तियों के लिए, इसकी गणना [श्रृंखला, मेमपूल] _स्टैट्स.एशुद_अमाउंट - [श्रृंखला, मेमपूल] _स्टैट्स.बर्नड_अमाउंट के रूप में की जाती है। ब्लाइंड इश्यू वाली संपत्तियों के लिए उपलब्ध नहीं है। यदि /दशमलव निर्दिष्ट है, तो संपत्ति की विभाज्यता के अनुसार आपूर्ति को दशमलव के रूप में लौटाता है। अन्यथा, आधार इकाइयों में वापस कर दिया। src/app/components/api-docs/api-docs.component.html 186,189 @@ -2016,6 +2026,7 @@ Blocks + ब्लॉक src/app/components/api-docs/api-docs.component.html 197,199 @@ -2029,6 +2040,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + किसी ब्लॉक के बारे में विवरण देता है। उपलब्ध क्षेत्रों: आईडी , ऊंचाई , संस्करण , टाइमस्टैम्प , बिट्स , नोन्स , मर्कल_रुट , टीएक्स_काउंट , आकार , वजन , सबूत , और पिछलाब्लॉकहैश src/app/components/api-docs/api-docs.component.html 211,212 @@ -2036,6 +2048,7 @@ Returns the hex-encoded block header. + हेक्स-एन्कोडेड ब्लॉक हेडर देता है। src/app/components/api-docs/api-docs.component.html 230,233 @@ -2043,6 +2056,7 @@ Returns the hash of the block currently at :height. + वर्तमान में :height पर ब्लॉक का हैश लौटाता है। src/app/components/api-docs/api-docs.component.html 248,249 @@ -2050,6 +2064,7 @@ Returns the raw block representation in binary. + बाइनरी में रॉ ब्लॉक का प्रतिनिधित्व देता है। src/app/components/api-docs/api-docs.component.html 264,267 @@ -2057,6 +2072,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + किसी ब्लॉक की पुष्टि स्थिति लौटाता है। उपलब्ध फ़ील्ड: in_best_chain (बूलियन, अनाथ ब्लॉक के लिए झूठा), next_best (अगले ब्लॉक का हैश, केवल सर्वश्रेष्ठ श्रृंखला में ब्लॉक के लिए उपलब्ध)। src/app/components/api-docs/api-docs.component.html 283,284 @@ -2064,6 +2080,7 @@ Returns the height of the last block. + अंतिम ब्लॉक की ऊंचाई लौटाता है। src/app/components/api-docs/api-docs.component.html 303,306 @@ -2071,6 +2088,7 @@ Returns the hash of the last block. + अंतिम ब्लॉक का हैश लौटाता है। src/app/components/api-docs/api-docs.component.html 322,325 @@ -2078,6 +2096,7 @@ Returns the transaction at index :index within the specified block. + निर्दिष्ट ब्लॉक के भीतर सूचकांक :index पर लेनदेन लौटाता है। src/app/components/api-docs/api-docs.component.html 342,343 @@ -2085,6 +2104,7 @@ Returns a list of all txids in the block. + ब्लॉक में सभी txid की सूची देता है। src/app/components/api-docs/api-docs.component.html 362,365 @@ -2092,6 +2112,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + ब्लॉक में लेन-देन की सूची देता है ( start_index से शुरू होने वाले 25 लेन-देन तक)। यहां लौटाए गए लेन-देन में स्थिति फ़ील्ड नहीं है, क्योंकि सभी लेन-देन समान ब्लॉक और पुष्टिकरण स्थिति साझा करते हैं। src/app/components/api-docs/api-docs.component.html 381,382 @@ -2099,6 +2120,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + टिप पर या :start_height पर निर्दिष्ट होने पर 10 नए ब्लॉक लौटाता है। src/app/components/api-docs/api-docs.component.html 401,402 @@ -2232,6 +2254,7 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + मेमपूल में प्रवेश करने के लिए पिछले 10 लेनदेन की सूची प्राप्त करें। प्रत्येक लेन-देन वस्तु में निम्नलिखित क्षेत्रों के साथ सरलीकृत अवलोकन डेटा होता है: txid , शुल्क , बनाम src/app/components/api-docs/api-docs.component.html 650,651 @@ -2261,6 +2284,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + लेन-देन के बारे में विवरण देता है। उपलब्ध क्षेत्रों: टीएक्सआईडी , संस्करण , लॉकटाइम , आकार , वजन , शुल्क , वी इन , वी आउट , और स्थिति src/app/components/api-docs/api-docs.component.html 693,694 @@ -2268,6 +2292,7 @@ Returns a transaction serialized as hex. + हेक्स के रूप में क्रमबद्ध एक लेनदेन देता है। src/app/components/api-docs/api-docs.component.html 712,715 @@ -2275,6 +2300,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + बिटकॉइन के मर्कलब्लॉक प्रारूप का उपयोग करके लेनदेन के लिए एक मर्कल समावेशन प्रमाण देता है। src/app/components/api-docs/api-docs.component.html 730,731 @@ -2282,6 +2308,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + एलेक्ट्रम के blockchain.transaction.get_merkle प्रारूप का उपयोग करके लेनदेन के लिए एक मर्कल समावेशन प्रमाण देता है। src/app/components/api-docs/api-docs.component.html 750,751 @@ -2289,6 +2316,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + लेन-देन आउटपुट की व्यय स्थिति लौटाता है। उपलब्ध फ़ील्ड: खर्च किया गया (बूलियन), txid (वैकल्पिक), vin (वैकल्पिक) (वैकल्पिक) लेन-देन की स्थिति। src/app/components/api-docs/api-docs.component.html 769,770 @@ -2296,6 +2324,7 @@ Returns the spending status of all transaction outputs. + सभी लेन-देन आउटपुट की व्यय स्थिति लौटाता है। src/app/components/api-docs/api-docs.component.html 788,791 @@ -2303,6 +2332,7 @@ Returns a transaction as binary data. + लेन-देन को बाइनरी डेटा के रूप में लौटाता है। src/app/components/api-docs/api-docs.component.html 807,810 @@ -2310,6 +2340,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + लेन-देन की पुष्टि की स्थिति लौटाता है। उपलब्ध फ़ील्ड: पुष्टि की गई (बूलियन), block_height (वैकल्पिक), और block_hash (वैकल्पिक)। src/app/components/api-docs/api-docs.component.html 826,827 @@ -2317,6 +2348,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + नेटवर्क पर एक कच्चा लेनदेन प्रसारित करें। लेन-देन अनुरोध निकाय में हेक्स के रूप में प्रदान किया जाना चाहिए। सफलता मिलने पर txid लौटा दिया जाएगा। src/app/components/api-docs/api-docs.component.html 846,847 @@ -2324,6 +2356,7 @@ Websocket + वेबसोकेट src/app/components/api-docs/api-docs.component.html 856,860 @@ -2333,6 +2366,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + डिफ़ॉल्ट पुश: क्रिया: 'चाहते हैं', डेटा: ['ब्लॉक', ...] जिसे आप पुश करना चाहते हैं उसे व्यक्त करने के लिए। उपलब्ध: ब्लॉक , मेमपूल-ब्लॉक , लाइव -2h-चार्ट और आँकड़े. पते से संबंधित लेनदेन को पुश करें: 'ट्रैक-एड्रेस': '3PbJ...bF9B' वाले सभी नए लेनदेन इनपुट या आउटपुट के रूप में प्राप्त करें। लेन-देन की एक सरणी देता है। पता-लेनदेन , और नए ब्लॉक पुष्टि लेनदेन के लिए ब्लॉक-लेनदेन src/app/components/api-docs/api-docs.component.html 865,866 @@ -2341,6 +2375,7 @@ Privacy Policy + गोपनीयता नीति src/app/components/api-docs/api-docs.component.html 880,885 @@ -2508,6 +2543,7 @@ Peg In/Out and Burn Transactions + पेग इन/आउट और बर्न ट्रांजैक्शन src/app/components/asset/asset.component.html 77 @@ -2516,6 +2552,7 @@ Issuance and Burn Transactions + जारी करना और जलाना लेनदेन src/app/components/asset/asset.component.html 78 @@ -2524,6 +2561,7 @@ Error loading asset data. + एसेट डेटा लोड करने में गड़बड़ी. src/app/components/asset/asset.component.html 136 @@ -2532,6 +2570,7 @@ Asset: + एसेट : src/app/components/asset/asset.component.ts 73 @@ -2539,6 +2578,7 @@ Offline + ऑफलाइन src/app/components/bisq-master-page/bisq-master-page.component.html 7,8 @@ -2551,6 +2591,7 @@ Reconnecting... + फिर से कनेक्ट हो रहा है... src/app/components/bisq-master-page/bisq-master-page.component.html 8,13 @@ -2563,6 +2604,7 @@ Dashboard + डैशबोर्ड src/app/components/bisq-master-page/bisq-master-page.component.html 16,18 @@ -2575,6 +2617,7 @@ Genesis + आरंभ src/app/components/block/block.component.html 4 @@ -2583,6 +2626,7 @@ Timestamp + समय-चिह्न src/app/components/block/block.component.html 22,24 @@ -2595,6 +2639,7 @@ Size + साइज src/app/components/block/block.component.html 31,33 @@ -2615,6 +2660,7 @@ Weight + वेइट src/app/components/block/block.component.html 35,37 @@ -2623,6 +2669,7 @@ Median fee + औसत शुल्क src/app/components/block/block.component.html 45,46 @@ -2635,6 +2682,7 @@ sat/vB + सैट/वीबी src/app/components/block/block.component.html 46 @@ -2708,6 +2756,7 @@ Based on average native segwit transaction of 140 vBytes + 140 वीबाइट्स के औसत नेटिव सेगविट लेनदेन के आधार पर src/app/components/block/block.component.html 46,48 @@ -2732,6 +2781,7 @@ Total fees + कुल शुल्क src/app/components/block/block.component.html 50,51 @@ -2745,6 +2795,7 @@ Subsidy + fees: + सब्सिडी + शुल्क: src/app/components/block/block.component.html 57,59 @@ -2758,6 +2809,7 @@ Miner + माइनर src/app/components/block/block.component.html 74,75 @@ -2766,6 +2818,7 @@ Bits + बिट्स src/app/components/block/block.component.html 96,98 @@ -2774,6 +2827,7 @@ Merkle root + मर्कल रुट src/app/components/block/block.component.html 100,102 @@ -2782,6 +2836,7 @@ Difficulty + कठिनाई src/app/components/block/block.component.html 110,113 @@ -2790,6 +2845,7 @@ Nonce + नोन्स src/app/components/block/block.component.html 114,116 @@ -2798,6 +2854,7 @@ Block Header Hex + ब्लॉक हैडर हेक्स src/app/components/block/block.component.html 118,119 @@ -2806,6 +2863,7 @@ Details + विवरण src/app/components/block/block.component.html 129,134 @@ -2819,6 +2877,7 @@ Error loading block data. + ब्लॉक डेटा लोड करने में गड़बड़ी. src/app/components/block/block.component.html 223,231 @@ -2827,6 +2886,7 @@ Block : + ब्लॉक : src/app/components/block/block.component.ts 106 @@ -2834,6 +2894,7 @@ Copied! + कोपीड! src/app/components/clipboard/clipboard.component.ts 15 @@ -2841,6 +2902,7 @@ Low priority + कम प्राथमिकता src/app/components/fees-box/fees-box.component.html 4,5 @@ -2853,6 +2915,7 @@ Medium priority + मध्यम प्राथमिकता src/app/components/fees-box/fees-box.component.html 10,11 @@ -2865,6 +2928,7 @@ High priority + उच्च प्राथमिकता src/app/components/fees-box/fees-box.component.html 16,17 @@ -2877,6 +2941,7 @@ Tx vBytes per second: + प्रति सेकंड टीएक्स वीबाइट्स: src/app/components/footer/footer.component.html 5,7 @@ -2885,6 +2950,7 @@ Backend is synchronizing + बैकएंड सिंक्रोनाइज़ कर रहा है src/app/components/footer/footer.component.html 7,11 @@ -2897,6 +2963,7 @@ vB/s + वीबी/एस src/app/components/footer/footer.component.html 11,15 @@ -2910,6 +2977,7 @@ Unconfirmed + अपुष्ट src/app/components/footer/footer.component.html 16,17 @@ -2923,6 +2991,7 @@ Mempool size + मेमपूल साइज src/app/components/footer/footer.component.html 20,21 @@ -2932,6 +3001,7 @@ blocks + ब्लॉक src/app/components/footer/footer.component.html 22,23 @@ -2948,6 +3018,7 @@ block + ब्लॉक src/app/components/footer/footer.component.html 23,24 @@ -2960,6 +3031,7 @@ Mined + माइंड src/app/components/latest-blocks/latest-blocks.component.html 11,12 @@ -2972,6 +3044,7 @@ Layer 2 Networks + लेयर 2 नेटवर्क्स src/app/components/master-page/master-page.component.html 22,23 @@ -2980,6 +3053,7 @@ Stats + आँकड़े src/app/components/master-page/master-page.component.html 41,45 @@ -2988,6 +3062,7 @@ Graphs + ग्राफ्स src/app/components/master-page/master-page.component.html 49,51 @@ -3000,6 +3075,7 @@ TV view + टीवी दृश्य src/app/components/master-page/master-page.component.html 52,55 @@ -3012,6 +3088,7 @@ Fee span + फी स्पेन src/app/components/mempool-block/mempool-block.component.html 20,21 @@ -3020,6 +3097,7 @@ Total fees + कुल शुल्क src/app/components/mempool-block/mempool-block.component.html 24,25 @@ -3028,6 +3106,7 @@ Next block + अगला ब्लॉक src/app/components/mempool-block/mempool-block.component.ts 71 @@ -3035,6 +3114,7 @@ Stack of mempool blocks + मेमपूल ब्लॉक का ढेर src/app/components/mempool-block/mempool-block.component.ts 73 @@ -3042,6 +3122,7 @@ Mempool block + मेमपूल ब्लॉक src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3049,6 +3130,7 @@ Unknown + अननोन src/app/components/miner/miner.component.html 10 @@ -3057,6 +3139,7 @@ Identified by payout address: '' + पेआउट पते से पहचाना गया: ' ' src/app/components/miner/miner.component.ts 42 @@ -3064,6 +3147,7 @@ Identified by coinbase tag: '' + कॉइनबेस टैग द्वारा पहचाना गया: '' src/app/components/miner/miner.component.ts 52 @@ -3071,6 +3155,7 @@ TXID, block height, hash or address + TXID, ब्लॉक ऊंचाई, हैश या पता src/app/components/search-form/search-form.component.html 4 @@ -3079,6 +3164,7 @@ Search + सर्च src/app/components/search-form/search-form.component.html 7 @@ -3087,6 +3173,7 @@ Sponsor + स्पॉंसर src/app/components/sponsor/sponsor.component.html 3 @@ -3099,6 +3186,7 @@ Request invoice + रिक्वेस्ट इनवॉइस src/app/components/sponsor/sponsor.component.html 49 @@ -3107,6 +3195,7 @@ Waiting for transaction... + ट्रांसेक्शन की प्रतीक्षा कर रहा है... src/app/components/sponsor/sponsor.component.html 138 @@ -3115,6 +3204,7 @@ Donation confirmed! + दान पुष्ट! src/app/components/sponsor/sponsor.component.html 144 @@ -3123,6 +3213,7 @@ Thank you! + शुक्रिया! src/app/components/sponsor/sponsor.component.html 145 @@ -3131,6 +3222,7 @@ Loading graphs... + ग्राफ़ लोड हो रहे हैं... src/app/components/statistics/statistics.component.html 5 @@ -3139,6 +3231,7 @@ Mempool by vBytes (sat/vByte) + vBytes द्वारा मेमपूल (sat/vByte) src/app/components/statistics/statistics.component.html 13 @@ -3147,6 +3240,7 @@ Invert + उल्टे src/app/components/statistics/statistics.component.html 39 @@ -3155,6 +3249,7 @@ Transaction vBytes per second (vB/s) + लेनदेन vBytes प्रति सेकंड (vB/s) src/app/components/statistics/statistics.component.html 53 @@ -3163,6 +3258,7 @@ Just now + अभी src/app/components/time-since/time-since.component.ts 57 @@ -3174,6 +3270,7 @@ ago + पहले src/app/components/time-since/time-since.component.ts 67 @@ -3233,6 +3330,7 @@ After + . के बाद src/app/components/time-span/time-span.component.ts 67 @@ -3292,6 +3390,7 @@ In ~ + ~ . में src/app/components/time-until/time-until.component.ts 66 @@ -3355,6 +3454,7 @@ This transaction has been replaced by: + इस लेन-देन को इसके द्वारा प्रतिस्थापित किया गया है: src/app/components/transaction/transaction.component.html 5,6 @@ -3364,6 +3464,7 @@ Unconfirmed + अपुष्ट src/app/components/transaction/transaction.component.html 34,41 @@ -3377,6 +3478,7 @@ Confirmed + पुष्ट src/app/components/transaction/transaction.component.html 67,68 @@ -3386,6 +3488,7 @@ First seen + प्रथम देखा src/app/components/transaction/transaction.component.html 103,104 @@ -3395,6 +3498,7 @@ ETA + इटीए src/app/components/transaction/transaction.component.html 109,111 @@ -3404,6 +3508,7 @@ In several hours (or more) + कई घंटों में (या अधिक) src/app/components/transaction/transaction.component.html 116,119 @@ -3413,6 +3518,7 @@ Virtual size + वर्चुअल साइज src/app/components/transaction/transaction.component.html 155,157 @@ -3426,6 +3532,7 @@ Fee rate + शुल्क दर src/app/components/transaction/transaction.component.html 156,160 @@ -3439,6 +3546,7 @@ Descendant + वंशज src/app/components/transaction/transaction.component.html 163,165 @@ -3448,6 +3556,7 @@ Ancestor + पूर्वज src/app/components/transaction/transaction.component.html 177,179 @@ -3457,6 +3566,7 @@ Size + साइज src/app/components/transaction/transaction.component.html 208,212 @@ -3466,6 +3576,7 @@ Weight + वेइट src/app/components/transaction/transaction.component.html 216,220 @@ -3475,6 +3586,7 @@ Transaction Hex + ट्रांसेक्शन हेक्स src/app/components/transaction/transaction.component.html 220,221 @@ -3483,6 +3595,7 @@ Transaction not found. + ट्रांसेक्शन नहीं मिला। src/app/components/transaction/transaction.component.html 308,309 @@ -3491,6 +3604,7 @@ Waiting for it to appear in the mempool... + मेमपूल में इसके प्रकट होने की प्रतीक्षा की जा रही है... src/app/components/transaction/transaction.component.html 309,313 @@ -3499,6 +3613,7 @@ Fee + शुल्क src/app/components/transaction/transaction.component.html 328,329 @@ -3508,6 +3623,7 @@ sat + सैट src/app/components/transaction/transaction.component.html 329,332 @@ -3517,6 +3633,7 @@ Effective fee rate + प्रभावी शुल्क दर src/app/components/transaction/transaction.component.html 342,345 @@ -3526,6 +3643,7 @@ Coinbase + कॉइनबेस src/app/components/transactions-list/transactions-list.component.html 44 @@ -3534,6 +3652,7 @@ (Newly Generated Coins) + (नए सृजित कोइन्स) src/app/components/transactions-list/transactions-list.component.html 44 @@ -3542,6 +3661,7 @@ Peg-in + पेग-इन src/app/components/transactions-list/transactions-list.component.html 46,48 @@ -3550,6 +3670,7 @@ ScriptSig (ASM) + स्क्रिप्टसिग (एएसएम) src/app/components/transactions-list/transactions-list.component.html 79,81 @@ -3559,6 +3680,7 @@ ScriptSig (HEX) + स्क्रिप्टसिग (हेक्स) src/app/components/transactions-list/transactions-list.component.html 83,85 @@ -3568,6 +3690,7 @@ Witness + विटनेस src/app/components/transactions-list/transactions-list.component.html 88,89 @@ -3576,6 +3699,7 @@ P2SH redeem script + P2SH रिडीम स्क्रिप्ट src/app/components/transactions-list/transactions-list.component.html 92,93 @@ -3584,6 +3708,7 @@ P2WSH witness script + P2WSH विटनेस स्क्रिप्ट src/app/components/transactions-list/transactions-list.component.html 96,97 @@ -3592,6 +3717,7 @@ nSequence + nसीक्वेंस src/app/components/transactions-list/transactions-list.component.html 100,101 @@ -3600,6 +3726,7 @@ Previous output script + पिछली आउटपुट स्क्रिप्ट src/app/components/transactions-list/transactions-list.component.html 104,105 @@ -3608,6 +3735,7 @@ Load all + सभी लोड करें src/app/components/transactions-list/transactions-list.component.html 114,117 @@ -3620,6 +3748,7 @@ Peg-out to + पेग-आउट टु src/app/components/transactions-list/transactions-list.component.html 133,134 @@ -3628,6 +3757,7 @@ ScriptPubKey (ASM) + स्क्रिप्टपबकी (एएसएम) src/app/components/transactions-list/transactions-list.component.html 184,186 @@ -3637,6 +3767,7 @@ ScriptPubKey (HEX) + स्क्रिप्टपबकी (हेक्स) src/app/components/transactions-list/transactions-list.component.html 188,190 @@ -3646,6 +3777,7 @@ data + डाटा src/app/components/transactions-list/transactions-list.component.html 192,193 @@ -3654,6 +3786,7 @@ sat + सैट src/app/components/transactions-list/transactions-list.component.html 212 @@ -3663,6 +3796,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + इस लेन-देन ने मूल SegWit-Bech32 का उपयोग करके शुल्क पर % बचाया src/app/components/tx-features/tx-features.component.html 1 @@ -3671,6 +3805,7 @@ SegWit + सेग्विट src/app/components/tx-features/tx-features.component.html 1 @@ -3688,6 +3823,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + इस लेन-देन ने SegWit का उपयोग करके शुल्क पर % बचाया और मूल SegWit-Bech32 में पूरी तरह से अपग्रेड करके % अधिक बचा सकता है src/app/components/tx-features/tx-features.component.html 3 @@ -3696,6 +3832,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + यह लेन-देन स्थानीय SegWit-Bech32 या % SegWit-P2SH में अपग्रेड करके शुल्क पर % बचा सकता है src/app/components/tx-features/tx-features.component.html 5 @@ -3704,6 +3841,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + यह लेन-देन प्रतिस्थापन-दर-शुल्क (आरबीएफ) का समर्थन करता है, जिससे शुल्क में वृद्धि होती है src/app/components/tx-features/tx-features.component.html 8 @@ -3712,6 +3850,7 @@ RBF + आरबीएफ src/app/components/tx-features/tx-features.component.html 8 @@ -3725,6 +3864,7 @@ This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method + यह लेन-देन प्रतिस्थापन-दर-शुल्क (आरबीएफ) का समर्थन नहीं करता है और इस पद्धति का उपयोग करके शुल्क में बाधा नहीं डाली जा सकती है src/app/components/tx-features/tx-features.component.html 9 @@ -3733,6 +3873,7 @@ Optimal + ऑप्टीमल src/app/components/tx-fee-rating/tx-fee-rating.component.html 1 @@ -3742,6 +3883,7 @@ Only ~ sat/vB was needed to get into this block + इस ब्लॉक में आने के लिए केवल ~ सैट/वीबी की जरूरत थी src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -3754,6 +3896,7 @@ Overpaid x + अधिक भुगतान x src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -3767,6 +3910,7 @@ Transaction Fees + ट्रांसेक्शन शुल्क src/app/dashboard/dashboard.component.html 6,9 @@ -3779,6 +3923,7 @@ Latest blocks + नई ब्लॉक src/app/dashboard/dashboard.component.html 76,79 @@ -3787,6 +3932,7 @@ TXs + TXs src/app/dashboard/dashboard.component.html 81,83 @@ -3799,6 +3945,7 @@ Latest transactions + नवीनतम ट्रांसक्शन्स src/app/dashboard/dashboard.component.html 105,108 @@ -3807,6 +3954,7 @@ USD + USD src/app/dashboard/dashboard.component.html 110,111 @@ -3815,6 +3963,7 @@ Fee + शुल्क src/app/dashboard/dashboard.component.html 111,114 @@ -3823,6 +3972,7 @@ Expand + विस्तार करें src/app/dashboard/dashboard.component.html 132,133 @@ -3831,6 +3981,7 @@ Collapse + छोटा करें src/app/dashboard/dashboard.component.html 133,137 @@ -3839,6 +3990,7 @@ Minimum fee + न्यूनतम शुल्क src/app/dashboard/dashboard.component.html 168,169 @@ -3848,6 +4000,7 @@ Purging + पर्जिंग src/app/dashboard/dashboard.component.html 169,170 @@ -3857,6 +4010,7 @@ Memory usage + मेमोरी उपयोग src/app/dashboard/dashboard.component.html 181,182 @@ -3866,6 +4020,7 @@ Incoming transactions + आने वाले ट्रांसक्शन्स src/app/dashboard/dashboard.component.html 193,194 @@ -3874,6 +4029,7 @@ Difficulty Adjustment + डिफीकल्टी एडजस्टमेंट src/app/dashboard/dashboard.component.html 208,211 @@ -3882,6 +4038,7 @@ Remaining + बचा हुआ src/app/dashboard/dashboard.component.html 214,216 @@ -3894,6 +4051,7 @@ Estimate + आकलन src/app/dashboard/dashboard.component.html 223,224 @@ -3906,6 +4064,7 @@ Previous + पिछला src/app/dashboard/dashboard.component.html 235,236 @@ -3914,6 +4073,7 @@ Current Period + वर्तमान अवधि src/app/dashboard/dashboard.component.html 247,248 @@ -3926,6 +4086,7 @@ year + वर्ष src/app/shared/i18n/dates.ts 3 @@ -3933,6 +4094,7 @@ years + वर्ष src/app/shared/i18n/dates.ts 4 @@ -3940,6 +4102,7 @@ month + माह src/app/shared/i18n/dates.ts 5 @@ -3947,6 +4110,7 @@ months + महीने src/app/shared/i18n/dates.ts 6 @@ -3954,6 +4118,7 @@ week + सप्ताह src/app/shared/i18n/dates.ts 7 @@ -3961,6 +4126,7 @@ weeks + सप्ताह src/app/shared/i18n/dates.ts 8 @@ -3968,6 +4134,7 @@ day + दिन src/app/shared/i18n/dates.ts 9 @@ -3975,6 +4142,7 @@ days + दिन src/app/shared/i18n/dates.ts 10 @@ -3982,6 +4150,7 @@ hour + घंटा src/app/shared/i18n/dates.ts 11 @@ -3989,6 +4158,7 @@ hours + घंटे src/app/shared/i18n/dates.ts 12 @@ -3996,6 +4166,7 @@ minute + मिनट src/app/shared/i18n/dates.ts 13 @@ -4003,6 +4174,7 @@ minutes + मिनट src/app/shared/i18n/dates.ts 14 @@ -4010,6 +4182,7 @@ second + सेकंड src/app/shared/i18n/dates.ts 15 @@ -4017,6 +4190,7 @@ seconds + सेकंड src/app/shared/i18n/dates.ts 16 @@ -4024,6 +4198,7 @@ Transaction fee + ट्रांसक्शन फी src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts 11 diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index 4227f92c9..645370b4a 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -2375,6 +2375,7 @@ Privacy Policy + Adatkezelési Szabályzat src/app/components/api-docs/api-docs.component.html 880,885 @@ -3585,6 +3586,7 @@ Transaction Hex + Tranzakciós Hex src/app/components/transaction/transaction.component.html 220,221 diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index 69512e50f..2ee003609 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -486,7 +486,7 @@ Address: - Infirizzo: + Indirizzo: src/app/bisq/bisq-address/bisq-address.component.ts 43 @@ -1583,6 +1583,7 @@ General + Generale src/app/components/api-docs/api-docs.component.html 9,11 @@ -1933,6 +1934,7 @@ Returns details about difficulty adjustment. + Mostra i dettagli sull'aggiustamento della difficoltà. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2047,6 +2049,7 @@ Returns the hex-encoded block header. + Mostra l'intestazione del blocco con codifica esadecimale. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2373,6 +2376,7 @@ Privacy Policy + Politica sulla Riservatezza src/app/components/api-docs/api-docs.component.html 880,885 @@ -2851,6 +2855,7 @@ Block Header Hex + Block Header Hex src/app/components/block/block.component.html 118,119 @@ -2997,6 +3002,7 @@ blocks + blocchi src/app/components/footer/footer.component.html 22,23 @@ -3013,6 +3019,7 @@ block + blocco src/app/components/footer/footer.component.html 23,24 @@ -3252,6 +3259,7 @@ Just now + Proprio adesso src/app/components/time-since/time-since.component.ts 57 @@ -3263,6 +3271,7 @@ ago + fa src/app/components/time-since/time-since.component.ts 67 @@ -3322,6 +3331,7 @@ After + Dopo src/app/components/time-span/time-span.component.ts 67 @@ -3381,6 +3391,7 @@ In ~ + In ~ src/app/components/time-until/time-until.component.ts 66 @@ -3576,6 +3587,7 @@ Transaction Hex + Hex di Transazione src/app/components/transaction/transaction.component.html 220,221 @@ -3899,6 +3911,7 @@ Transaction Fees + Commissioni di Transazione src/app/dashboard/dashboard.component.html 6,9 @@ -4017,6 +4030,7 @@ Difficulty Adjustment + Aggiustamento della Difficoltà src/app/dashboard/dashboard.component.html 208,211 @@ -4025,6 +4039,7 @@ Remaining + Rimanente src/app/dashboard/dashboard.component.html 214,216 @@ -4037,6 +4052,7 @@ Estimate + Stima src/app/dashboard/dashboard.component.html 223,224 @@ -4049,6 +4065,7 @@ Previous + Precedente src/app/dashboard/dashboard.component.html 235,236 @@ -4057,6 +4074,7 @@ Current Period + Periodo Attuale src/app/dashboard/dashboard.component.html 247,248 @@ -4069,6 +4087,7 @@ year + anno src/app/shared/i18n/dates.ts 3 @@ -4076,6 +4095,7 @@ years + anni src/app/shared/i18n/dates.ts 4 @@ -4083,6 +4103,7 @@ month + mese src/app/shared/i18n/dates.ts 5 @@ -4090,6 +4111,7 @@ months + mesi src/app/shared/i18n/dates.ts 6 @@ -4097,6 +4119,7 @@ week + settimana src/app/shared/i18n/dates.ts 7 @@ -4104,6 +4127,7 @@ weeks + settimane src/app/shared/i18n/dates.ts 8 @@ -4111,6 +4135,7 @@ day + giorno src/app/shared/i18n/dates.ts 9 @@ -4118,6 +4143,7 @@ days + giorni src/app/shared/i18n/dates.ts 10 @@ -4125,6 +4151,7 @@ hour + ora src/app/shared/i18n/dates.ts 11 @@ -4132,6 +4159,7 @@ hours + ore src/app/shared/i18n/dates.ts 12 @@ -4139,6 +4167,7 @@ minute + minuto src/app/shared/i18n/dates.ts 13 @@ -4146,6 +4175,7 @@ minutes + minuti src/app/shared/i18n/dates.ts 14 @@ -4153,6 +4183,7 @@ second + secondo src/app/shared/i18n/dates.ts 15 @@ -4160,6 +4191,7 @@ seconds + secondi src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index c86a9aa8e..64cd8c6d3 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -1583,6 +1583,7 @@ General + 一般的 src/app/components/api-docs/api-docs.component.html 9,11 @@ -1933,6 +1934,7 @@ Returns details about difficulty adjustment. + 難易度調節の詳細を返す。 src/app/components/api-docs/api-docs.component.html 24,26 @@ -2046,6 +2048,7 @@ Returns the hex-encoded block header. + 16進エンコードされたブロックヘッダーを返す。 src/app/components/api-docs/api-docs.component.html 230,233 @@ -2372,6 +2375,7 @@ Privacy Policy + プライバシー・ポリシー src/app/components/api-docs/api-docs.component.html 880,885 @@ -2850,6 +2854,7 @@ Block Header Hex + ブロックヘッダーの16進値 src/app/components/block/block.component.html 118,119 @@ -2996,6 +3001,7 @@ blocks + ブロック src/app/components/footer/footer.component.html 22,23 @@ -3012,6 +3018,7 @@ block + ブロック src/app/components/footer/footer.component.html 23,24 @@ -3251,6 +3258,7 @@ Just now + ちょうど今 src/app/components/time-since/time-since.component.ts 57 @@ -3262,6 +3270,7 @@ ago + src/app/components/time-since/time-since.component.ts 67 @@ -3321,6 +3330,7 @@ After + src/app/components/time-span/time-span.component.ts 67 @@ -3380,6 +3390,7 @@ In ~ + ~後に src/app/components/time-until/time-until.component.ts 66 @@ -3575,6 +3586,7 @@ Transaction Hex + トランザクションの16進値 src/app/components/transaction/transaction.component.html 220,221 @@ -3898,6 +3910,7 @@ Transaction Fees + トランザクション手数料 src/app/dashboard/dashboard.component.html 6,9 @@ -4016,6 +4029,7 @@ Difficulty Adjustment + 難易度調整 src/app/dashboard/dashboard.component.html 208,211 @@ -4024,6 +4038,7 @@ Remaining + 残り src/app/dashboard/dashboard.component.html 214,216 @@ -4036,6 +4051,7 @@ Estimate + 推定 src/app/dashboard/dashboard.component.html 223,224 @@ -4048,6 +4064,7 @@ Previous + 以前 src/app/dashboard/dashboard.component.html 235,236 @@ -4056,6 +4073,7 @@ Current Period + 当期 src/app/dashboard/dashboard.component.html 247,248 @@ -4068,6 +4086,7 @@ year + src/app/shared/i18n/dates.ts 3 @@ -4075,6 +4094,7 @@ years + src/app/shared/i18n/dates.ts 4 @@ -4082,6 +4102,7 @@ month + ヶ月 src/app/shared/i18n/dates.ts 5 @@ -4089,6 +4110,7 @@ months + ヶ月 src/app/shared/i18n/dates.ts 6 @@ -4096,6 +4118,7 @@ week + 週間 src/app/shared/i18n/dates.ts 7 @@ -4103,6 +4126,7 @@ weeks + 週間 src/app/shared/i18n/dates.ts 8 @@ -4110,6 +4134,7 @@ day + 日間 src/app/shared/i18n/dates.ts 9 @@ -4117,6 +4142,7 @@ days + 日間 src/app/shared/i18n/dates.ts 10 @@ -4124,6 +4150,7 @@ hour + 時間 src/app/shared/i18n/dates.ts 11 @@ -4131,6 +4158,7 @@ hours + 時間 src/app/shared/i18n/dates.ts 12 @@ -4138,6 +4166,7 @@ minute + src/app/shared/i18n/dates.ts 13 @@ -4145,6 +4174,7 @@ minutes + src/app/shared/i18n/dates.ts 14 @@ -4152,6 +4182,7 @@ second + src/app/shared/i18n/dates.ts 15 @@ -4159,6 +4190,7 @@ seconds + src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index f4e896188..ba5a33a44 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -3,6 +3,7 @@ Close + დახურვა node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts 74 @@ -10,6 +11,7 @@ Previous + წინა node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts 349 @@ -17,6 +19,7 @@ Next + შემდეგი node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts 349 @@ -24,6 +27,7 @@ Previous month + წინა თვე node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts 62,64 @@ -35,6 +39,7 @@ Next month + შემდეგი თვე node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts 72 @@ -46,6 +51,7 @@ Select month + აირჩიეთ თვე node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts 74 @@ -57,6 +63,7 @@ Select year + აირჩიეთ წელი node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts 74 @@ -68,6 +75,7 @@ «« + «« node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -75,6 +83,7 @@ « + « node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -82,6 +91,7 @@ » + » node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -89,6 +99,7 @@ »» + »» node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -96,6 +107,7 @@ First + პირველი node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -103,6 +115,7 @@ Previous + წინა node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -110,6 +123,7 @@ Next + შემდეგი node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -117,6 +131,7 @@ Last + წინა node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -124,6 +139,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts 101 @@ -131,6 +147,7 @@ HH + სთ node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -138,6 +155,7 @@ Hours + საათი node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -145,6 +163,7 @@ MM + თვე node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -152,6 +171,7 @@ Minutes + წუთის node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -159,6 +179,7 @@ Increment hours + ზრდადი საათები node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -166,6 +187,7 @@ Decrement hours + კლებადი საათები node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -173,6 +195,7 @@ Increment minutes + ზრდადი წუთები node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -180,6 +203,7 @@ Decrement minutes + კლებადი წუთები node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -187,6 +211,7 @@ SS + წმ node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -194,6 +219,7 @@ Seconds + წამები node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -201,6 +227,7 @@ Increment seconds + ზრდადი წამები node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -208,6 +235,7 @@ Decrement seconds + კლებადი წამები node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -215,6 +243,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -222,6 +251,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -229,6 +259,7 @@ Close + დახურვა node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts 137 @@ -515,6 +546,7 @@ Previous hash + წინა ჰაში src/app/bisq/bisq-block/bisq-block.component.html 35 @@ -536,6 +568,7 @@ BSQ Blocks + BSQ ბლოკები src/app/bisq/bisq-blocks/bisq-blocks.component.html 2,7 @@ -623,6 +656,7 @@ Bisq Trading Volume + Bisq ის ბრუნვა src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 3,7 @@ -635,6 +669,7 @@ Markets + ბაზარი src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 20,21 @@ -647,6 +682,7 @@ Bitcoin Markets + ბიტკოინის ბაზარი src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 21,23 @@ -659,6 +695,7 @@ Currency + ვალუტა src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 27 @@ -698,6 +735,7 @@ Volume (7d) + ბრუნვა 7d src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 29 @@ -706,6 +744,7 @@ Trades (7d) + ვაჭრობა 7d src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 30 @@ -718,6 +757,7 @@ Latest Trades + ბოლო ტრეიდები src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 52,55 @@ -734,6 +774,7 @@ Bisq Price Index + Bisq ფასის ინდექსი src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 9,11 @@ -742,6 +783,7 @@ Bisq Market Price + Bisq Market price src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 21,23 @@ -789,6 +831,7 @@ Buy Offers + ყიდვის შემოთავაზება src/app/bisq/bisq-market/bisq-market.component.html 73,74 @@ -797,6 +840,7 @@ Sell Offers + გაყიდვის შემოთავაზება src/app/bisq/bisq-market/bisq-market.component.html 74,77 @@ -805,6 +849,7 @@ Amount () + რაოდენობა src/app/bisq/bisq-market/bisq-market.component.html 112,113 @@ -925,6 +970,7 @@ Date + რიცხვი src/app/bisq/bisq-trades/bisq-trades.component.html 4,6 @@ -1000,6 +1046,7 @@ Version + ვერსია src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html 29 @@ -1162,6 +1209,7 @@ BSQ Transactions + BSQ გარიგებები src/app/bisq/bisq-transactions/bisq-transactions.component.html 2,5 @@ -1185,6 +1233,7 @@ Asset listing fee + ლისტინგის ფასი src/app/bisq/bisq-transactions/bisq-transactions.component.ts 30 @@ -1192,6 +1241,7 @@ Blind vote + ბრმად ხმის მიცემა src/app/bisq/bisq-transactions/bisq-transactions.component.ts 31 @@ -1199,6 +1249,7 @@ Compensation request + კომპენსაციის მოთხოვნა src/app/bisq/bisq-transactions/bisq-transactions.component.ts 32 @@ -1206,6 +1257,7 @@ Genesis + საწყისი ბლოკი src/app/bisq/bisq-transactions/bisq-transactions.component.ts 33 @@ -1213,6 +1265,7 @@ Irregular + არარეგულარული src/app/bisq/bisq-transactions/bisq-transactions.component.ts 34 @@ -1220,6 +1273,7 @@ Lockup + ჩაკეტვა src/app/bisq/bisq-transactions/bisq-transactions.component.ts 35 @@ -1227,6 +1281,7 @@ Pay trade fee + ტრეიდის საკომისიო src/app/bisq/bisq-transactions/bisq-transactions.component.ts 36 @@ -1234,6 +1289,7 @@ Proof of burn + განადგურების საბუთი src/app/bisq/bisq-transactions/bisq-transactions.component.ts 37 @@ -1241,6 +1297,7 @@ Proposal + შემოთავაზება src/app/bisq/bisq-transactions/bisq-transactions.component.ts 38 @@ -1248,6 +1305,7 @@ Reimbursement request + ანაზღაურების მოთხოვნა src/app/bisq/bisq-transactions/bisq-transactions.component.ts 39 @@ -1255,6 +1313,7 @@ Transfer BSQ + გადარიცხეთ BSQ src/app/bisq/bisq-transactions/bisq-transactions.component.ts 40 @@ -1262,6 +1321,7 @@ Unlock + გახსნა src/app/bisq/bisq-transactions/bisq-transactions.component.ts 41 @@ -1269,6 +1329,7 @@ Vote reveal + ხმის გამჟღავნება src/app/bisq/bisq-transactions/bisq-transactions.component.ts 42 @@ -1300,6 +1361,7 @@ Trades + ტრეიდები src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts 90 @@ -1307,6 +1369,7 @@ Volume + ბრუნვა src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts 91 @@ -1314,6 +1377,7 @@ The Mempool Open Source Project + The Mempool Open Source პროექტი src/app/components/about/about.component.html 12 @@ -1322,6 +1386,7 @@ Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers. + ვაწყობთ mempool ის და ბლოქჩეინის ექსპლორერს ბიტკოინის ეკოსისტემისთვის, რომელიც ფოკუსირებულია ტრანსაქციების საკომისიოზე და მრავალშრიან ეკოსისტემაზე, რეკლამის, ალტკოინების და დამატებითი სათვალთვალო ტრეკერების გარეშე. src/app/components/about/about.component.html 13,17 @@ -1329,6 +1394,7 @@ Enterprise Sponsors 🚀 + კორპორატიული სპონსორები src/app/components/about/about.component.html 32,34 @@ -1337,6 +1403,7 @@ Community Sponsors ❤️ + კერძო სპონსორები ❤️ src/app/components/about/about.component.html 54,57 @@ -1354,6 +1421,7 @@ Navigate to https://mempool.space/sponsor to sponsor + გადადით ამ ბმულზე https://mempool.space/sponsor რომ გახდეთ სპონსორი src/app/components/about/about.component.html 67 @@ -1366,6 +1434,7 @@ Community Integrations + ინტეგრაციები src/app/components/about/about.component.html 71,74 @@ -1374,6 +1443,7 @@ Community Alliances + ალიანსი src/app/components/about/about.component.html 142,144 @@ -1382,6 +1452,7 @@ Project Contributors + მოხალისეები src/app/components/about/about.component.html 157,159 @@ -1390,6 +1461,7 @@ Project Maintainers + პროექტის შემქმნელები src/app/components/about/about.component.html 171,173 @@ -1419,6 +1491,7 @@ Lightning + Lightning src/app/components/address-labels/address-labels.component.html 11 @@ -1427,6 +1500,7 @@ Liquid + Liquid src/app/components/address-labels/address-labels.component.html 17 @@ -1462,6 +1536,7 @@ The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead: + The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html 127,130 @@ -1508,6 +1583,7 @@ General + მთავარი src/app/components/api-docs/api-docs.component.html 9,11 @@ -1517,6 +1593,7 @@ Endpoint + დასასრული src/app/components/api-docs/api-docs.component.html 19,20 @@ -1681,6 +1758,7 @@ Description + აღწერა src/app/components/api-docs/api-docs.component.html 23,24 @@ -1856,6 +1934,7 @@ Returns details about difficulty adjustment. + იძლევა ინფორმაციას სირთულის რეგულირებაზე src/app/components/api-docs/api-docs.component.html 24,26 @@ -1873,6 +1952,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. src/app/components/api-docs/api-docs.component.html 50,51 @@ -1880,6 +1960,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). src/app/components/api-docs/api-docs.component.html 68,69 @@ -1887,6 +1968,7 @@ Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. src/app/components/api-docs/api-docs.component.html 85,87 @@ -1894,6 +1976,7 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). src/app/components/api-docs/api-docs.component.html 104,107 @@ -1901,6 +1984,7 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. src/app/components/api-docs/api-docs.component.html 124,125 @@ -1918,6 +2002,7 @@ Returns information about a Liquid asset. + Returns information about a Liquid asset. src/app/components/api-docs/api-docs.component.html 149,152 @@ -1925,6 +2010,7 @@ Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. src/app/components/api-docs/api-docs.component.html 167,170 @@ -1932,6 +2018,7 @@ Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. src/app/components/api-docs/api-docs.component.html 186,189 @@ -1953,6 +2040,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. src/app/components/api-docs/api-docs.component.html 211,212 @@ -1960,6 +2048,7 @@ Returns the hex-encoded block header. + Returns the hex-encoded block header. src/app/components/api-docs/api-docs.component.html 230,233 @@ -1967,6 +2056,7 @@ Returns the hash of the block currently at :height. + Returns the hash of the block currently at :height. src/app/components/api-docs/api-docs.component.html 248,249 @@ -1974,6 +2064,7 @@ Returns the raw block representation in binary. + Returns the raw block representation in binary. src/app/components/api-docs/api-docs.component.html 264,267 @@ -1981,6 +2072,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). src/app/components/api-docs/api-docs.component.html 283,284 @@ -1988,6 +2080,7 @@ Returns the height of the last block. + Returns the height of the last block. src/app/components/api-docs/api-docs.component.html 303,306 @@ -1995,6 +2088,7 @@ Returns the hash of the last block. + Returns the hash of the last block. src/app/components/api-docs/api-docs.component.html 322,325 @@ -2002,6 +2096,7 @@ Returns the transaction at index :index within the specified block. + Returns the transaction at index :index within the specified block. src/app/components/api-docs/api-docs.component.html 342,343 @@ -2009,6 +2104,7 @@ Returns a list of all txids in the block. + Returns a list of all txids in the block. src/app/components/api-docs/api-docs.component.html 362,365 @@ -2016,6 +2112,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. src/app/components/api-docs/api-docs.component.html 381,382 @@ -2023,6 +2120,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Returns the 10 newest blocks starting at the tip or at :start_height if specified. src/app/components/api-docs/api-docs.component.html 401,402 @@ -2040,6 +2138,7 @@ Returns current mempool as projected blocks. + Returns current mempool as projected blocks. src/app/components/api-docs/api-docs.component.html 426,428 @@ -2049,6 +2148,7 @@ Returns our currently suggested fees for new transactions. + Returns our currently suggested fees for new transactions. src/app/components/api-docs/api-docs.component.html 442,444 @@ -2058,6 +2158,7 @@ BSQ + BSQ src/app/components/api-docs/api-docs.component.html 452,454 @@ -2067,6 +2168,7 @@ Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. src/app/components/api-docs/api-docs.component.html 469,472 @@ -2074,6 +2176,7 @@ Returns all Bisq transactions that exist in a Bitcoin block. + Returns all Bisq transactions that exist in a Bitcoin block. src/app/components/api-docs/api-docs.component.html 489,492 @@ -2081,6 +2184,7 @@ Returns the most recently processed Bitcoin block height processed by Bisq. + Returns the most recently processed Bitcoin block height processed by Bisq. src/app/components/api-docs/api-docs.component.html 508,511 @@ -2088,6 +2192,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. src/app/components/api-docs/api-docs.component.html 528,531 @@ -2095,6 +2200,7 @@ Returns statistics about all Bisq transactions. + Returns statistics about all Bisq transactions. src/app/components/api-docs/api-docs.component.html 549,552 @@ -2102,6 +2208,7 @@ Returns details about a Bisq transaction. + Returns details about a Bisq transaction. src/app/components/api-docs/api-docs.component.html 569,572 @@ -2109,6 +2216,7 @@ Returns :length of latest Bisq transactions, starting from :index. + Returns :length of latest Bisq transactions, starting from :index. src/app/components/api-docs/api-docs.component.html 590,593 @@ -2136,6 +2244,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. src/app/components/api-docs/api-docs.component.html 632,635 @@ -2145,6 +2254,7 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. src/app/components/api-docs/api-docs.component.html 650,651 @@ -2164,6 +2274,7 @@ Returns the ancestors and the best descendant fees for a transaction. + Returns the ancestors and the best descendant fees for a transaction. src/app/components/api-docs/api-docs.component.html 676,678 @@ -2173,6 +2284,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. src/app/components/api-docs/api-docs.component.html 693,694 @@ -2180,6 +2292,7 @@ Returns a transaction serialized as hex. + Returns a transaction serialized as hex. src/app/components/api-docs/api-docs.component.html 712,715 @@ -2187,6 +2300,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. src/app/components/api-docs/api-docs.component.html 730,731 @@ -2194,6 +2308,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. src/app/components/api-docs/api-docs.component.html 750,751 @@ -2201,6 +2316,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). src/app/components/api-docs/api-docs.component.html 769,770 @@ -2208,6 +2324,7 @@ Returns the spending status of all transaction outputs. + Returns the spending status of all transaction outputs. src/app/components/api-docs/api-docs.component.html 788,791 @@ -2215,6 +2332,7 @@ Returns a transaction as binary data. + Returns a transaction as binary data. src/app/components/api-docs/api-docs.component.html 807,810 @@ -2222,6 +2340,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). src/app/components/api-docs/api-docs.component.html 826,827 @@ -2229,6 +2348,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. src/app/components/api-docs/api-docs.component.html 846,847 @@ -2246,6 +2366,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. src/app/components/api-docs/api-docs.component.html 865,866 @@ -2254,6 +2375,7 @@ Privacy Policy + Კონფიდენციალურობის პოლიტიკა src/app/components/api-docs/api-docs.component.html 880,885 @@ -2283,6 +2405,7 @@ Code Example + კოდის მაგალითი src/app/components/api-docs/code-template.component.html 6 @@ -2299,6 +2422,7 @@ Install Package + საინსტალაციო პაკეტი src/app/components/api-docs/code-template.component.html 23,24 @@ -2307,6 +2431,7 @@ Response + პასუხი src/app/components/api-docs/code-template.component.html 36,37 @@ -2315,6 +2440,7 @@ Asset + აქტივი src/app/components/asset/asset.component.html 2 @@ -2408,6 +2534,7 @@ of   + of   src/app/components/asset/asset.component.html 76 @@ -2416,6 +2543,7 @@ Peg In/Out and Burn Transactions + Peg In/Out and Burn Transactions src/app/components/asset/asset.component.html 77 @@ -2690,6 +2818,7 @@ Bits + Bits src/app/components/block/block.component.html 96,98 @@ -2698,6 +2827,7 @@ Merkle root + Merkle root src/app/components/block/block.component.html 100,102 @@ -2706,6 +2836,7 @@ Difficulty + სირთულე src/app/components/block/block.component.html 110,113 @@ -2714,6 +2845,7 @@ Nonce + Nonce src/app/components/block/block.component.html 114,116 @@ -2722,6 +2854,7 @@ Block Header Hex + Block Header Hex src/app/components/block/block.component.html 118,119 @@ -2868,6 +3001,7 @@ blocks + ბლოკი src/app/components/footer/footer.component.html 22,23 @@ -2884,6 +3018,7 @@ block + ბლოკი src/app/components/footer/footer.component.html 23,24 @@ -3038,6 +3173,7 @@ Sponsor + სპონსორები src/app/components/sponsor/sponsor.component.html 3 @@ -3086,7 +3222,7 @@ Loading graphs... - დაელოდეთ გრაფიკებს... + დაელოდეთ გრაფიკს... src/app/components/statistics/statistics.component.html 5 @@ -3122,6 +3258,7 @@ Just now + ახლა src/app/components/time-since/time-since.component.ts 57 @@ -3133,6 +3270,7 @@ ago + წინ src/app/components/time-since/time-since.component.ts 67 @@ -3192,6 +3330,7 @@ After + - ის შემდეგ src/app/components/time-span/time-span.component.ts 67 @@ -3251,6 +3390,7 @@ In ~ + ~ - ში src/app/components/time-until/time-until.component.ts 66 @@ -3392,6 +3532,7 @@ Fee rate + საკომისიო src/app/components/transaction/transaction.component.html 156,160 @@ -3405,6 +3546,7 @@ Descendant + კლებადი src/app/components/transaction/transaction.component.html 163,165 @@ -3414,6 +3556,7 @@ Ancestor + შთამომავალი src/app/components/transaction/transaction.component.html 177,179 @@ -3443,6 +3586,7 @@ Transaction Hex + Transaction Hex src/app/components/transaction/transaction.component.html 220,221 @@ -3489,6 +3633,7 @@ Effective fee rate + ეფექტური საკომისიო src/app/components/transaction/transaction.component.html 342,345 @@ -3525,6 +3670,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 79,81 @@ -3534,6 +3680,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 83,85 @@ -3543,6 +3690,7 @@ Witness + Witness src/app/components/transactions-list/transactions-list.component.html 88,89 @@ -3551,6 +3699,7 @@ P2SH redeem script + P2SH redeem script src/app/components/transactions-list/transactions-list.component.html 92,93 @@ -3559,6 +3708,7 @@ P2WSH witness script + P2WSH witness script src/app/components/transactions-list/transactions-list.component.html 96,97 @@ -3567,6 +3717,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 100,101 @@ -3575,6 +3726,7 @@ Previous output script + Previous output script src/app/components/transactions-list/transactions-list.component.html 104,105 @@ -3596,6 +3748,7 @@ Peg-out to + Peg-out to src/app/components/transactions-list/transactions-list.component.html 133,134 @@ -3604,6 +3757,7 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html 184,186 @@ -3613,6 +3767,7 @@ ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html 188,190 @@ -3641,6 +3796,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + This transaction saved % on fees by using native SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 1 @@ -3667,6 +3823,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 3 @@ -3675,6 +3832,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -3706,6 +3864,7 @@ This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method + This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method src/app/components/tx-features/tx-features.component.html 9 @@ -3724,6 +3883,7 @@ Only ~ sat/vB was needed to get into this block + Only ~ sat/vB was needed to get into this block src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -3750,6 +3910,7 @@ Transaction Fees + საკომისიო src/app/dashboard/dashboard.component.html 6,9 @@ -3868,6 +4029,7 @@ Difficulty Adjustment + სირთულე src/app/dashboard/dashboard.component.html 208,211 @@ -3876,6 +4038,7 @@ Remaining + დარჩა src/app/dashboard/dashboard.component.html 214,216 @@ -3888,6 +4051,7 @@ Estimate + დაახლოებით src/app/dashboard/dashboard.component.html 223,224 @@ -3900,6 +4064,7 @@ Previous + წინა src/app/dashboard/dashboard.component.html 235,236 @@ -3908,6 +4073,7 @@ Current Period + ეს პერიოდი src/app/dashboard/dashboard.component.html 247,248 @@ -3920,6 +4086,7 @@ year + წელი src/app/shared/i18n/dates.ts 3 @@ -3927,6 +4094,7 @@ years + წელი src/app/shared/i18n/dates.ts 4 @@ -3934,6 +4102,7 @@ month + თვე src/app/shared/i18n/dates.ts 5 @@ -3941,6 +4110,7 @@ months + თვე src/app/shared/i18n/dates.ts 6 @@ -3948,6 +4118,7 @@ week + კვირა src/app/shared/i18n/dates.ts 7 @@ -3955,6 +4126,7 @@ weeks + კვირა src/app/shared/i18n/dates.ts 8 @@ -3962,6 +4134,7 @@ day + დღე src/app/shared/i18n/dates.ts 9 @@ -3969,6 +4142,7 @@ days + დღე src/app/shared/i18n/dates.ts 10 @@ -3976,6 +4150,7 @@ hour + საათი src/app/shared/i18n/dates.ts 11 @@ -3983,6 +4158,7 @@ hours + საათი src/app/shared/i18n/dates.ts 12 @@ -3990,6 +4166,7 @@ minute + წუთი src/app/shared/i18n/dates.ts 13 @@ -3997,6 +4174,7 @@ minutes + წუთი src/app/shared/i18n/dates.ts 14 @@ -4004,6 +4182,7 @@ second + წამი src/app/shared/i18n/dates.ts 15 @@ -4011,6 +4190,7 @@ seconds + წამი src/app/shared/i18n/dates.ts 16 @@ -4018,6 +4198,7 @@ Transaction fee + საკომისიო src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts 11 diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index 19a202b88..5e4da9b67 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -1586,6 +1586,7 @@ General + 일반 src/app/components/api-docs/api-docs.component.html 9,11 @@ -1936,6 +1937,7 @@ Returns details about difficulty adjustment. + 난이도 조정에 대한 정보를 반환. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2055,6 +2057,7 @@ Returns the hex-encoded block header. + 16진수로 부호화된 블록헤더를 반환. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2382,6 +2385,7 @@ Privacy Policy + 개인정보처리방침 src/app/components/api-docs/api-docs.component.html 880,885 @@ -2860,6 +2864,7 @@ Block Header Hex + 블록헤더 16진수 src/app/components/block/block.component.html 118,119 @@ -3006,6 +3011,7 @@ blocks + 블록들 src/app/components/footer/footer.component.html 22,23 @@ -3022,6 +3028,7 @@ block + 블록 src/app/components/footer/footer.component.html 23,24 @@ -3261,6 +3268,7 @@ Just now + 방금 전 src/app/components/time-since/time-since.component.ts 57 @@ -3272,6 +3280,7 @@ ago + src/app/components/time-since/time-since.component.ts 67 @@ -3331,6 +3340,7 @@ After + 이후 src/app/components/time-span/time-span.component.ts 67 @@ -3390,6 +3400,7 @@ In ~ + ~안에 src/app/components/time-until/time-until.component.ts 66 @@ -3585,6 +3596,7 @@ Transaction Hex + 트랜잭션 16진수 src/app/components/transaction/transaction.component.html 220,221 @@ -3908,6 +3920,7 @@ Transaction Fees + 트랜잭션 수수료 src/app/dashboard/dashboard.component.html 6,9 @@ -4026,6 +4039,7 @@ Difficulty Adjustment + 난이도 조정 src/app/dashboard/dashboard.component.html 208,211 @@ -4034,6 +4048,7 @@ Remaining + 남은 src/app/dashboard/dashboard.component.html 214,216 @@ -4046,6 +4061,7 @@ Estimate + 추정 src/app/dashboard/dashboard.component.html 223,224 @@ -4058,6 +4074,7 @@ Previous + 이전 src/app/dashboard/dashboard.component.html 235,236 @@ -4066,6 +4083,7 @@ Current Period + 현재 기간 src/app/dashboard/dashboard.component.html 247,248 @@ -4078,6 +4096,7 @@ year + src/app/shared/i18n/dates.ts 3 @@ -4085,6 +4104,7 @@ years + src/app/shared/i18n/dates.ts 4 @@ -4092,6 +4112,7 @@ month + src/app/shared/i18n/dates.ts 5 @@ -4099,6 +4120,7 @@ months + src/app/shared/i18n/dates.ts 6 @@ -4106,6 +4128,7 @@ week + src/app/shared/i18n/dates.ts 7 @@ -4113,6 +4136,7 @@ weeks + src/app/shared/i18n/dates.ts 8 @@ -4120,6 +4144,7 @@ day + src/app/shared/i18n/dates.ts 9 @@ -4127,6 +4152,7 @@ days + src/app/shared/i18n/dates.ts 10 @@ -4134,6 +4160,7 @@ hour + 시간 src/app/shared/i18n/dates.ts 11 @@ -4141,6 +4168,7 @@ hours + 시간 src/app/shared/i18n/dates.ts 12 @@ -4148,6 +4176,7 @@ minute + src/app/shared/i18n/dates.ts 13 @@ -4155,6 +4184,7 @@ minutes + src/app/shared/i18n/dates.ts 14 @@ -4162,6 +4192,7 @@ second + src/app/shared/i18n/dates.ts 15 @@ -4169,6 +4200,7 @@ seconds + src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index e4a4ff3fd..f346cd128 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -1377,6 +1377,7 @@ The Mempool Open Source Project + Het Mempool Open Source Project src/app/components/about/about.component.html 12 @@ -1385,6 +1386,7 @@ Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers. + We bouwen een mempool- en blockchainverkenner voor de Bitcoingemeenschap, gericht op de transactiekostenmarkt en het meerlagige ecosysteem, zonder advertenties, altcoins of trackers van derden. src/app/components/about/about.component.html 13,17 @@ -1581,6 +1583,7 @@ General + Algemeen src/app/components/api-docs/api-docs.component.html 9,11 @@ -1931,6 +1934,7 @@ Returns details about difficulty adjustment. + Geeft de details over moeilijkheidsaanpassing. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2044,6 +2048,7 @@ Returns the hex-encoded block header. + Geeft de hex-gecodeerde blokheader. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2370,6 +2375,7 @@ Privacy Policy + Privacybeleid src/app/components/api-docs/api-docs.component.html 880,885 @@ -2528,6 +2534,7 @@ of   + van   src/app/components/asset/asset.component.html 76 @@ -2847,6 +2854,7 @@ Block Header Hex + Blokheader-hex src/app/components/block/block.component.html 118,119 @@ -2993,6 +3001,7 @@ blocks + blokken src/app/components/footer/footer.component.html 22,23 @@ -3009,6 +3018,7 @@ block + blok src/app/components/footer/footer.component.html 23,24 @@ -3248,6 +3258,7 @@ Just now + Zojuist src/app/components/time-since/time-since.component.ts 57 @@ -3259,6 +3270,7 @@ ago + geleden src/app/components/time-since/time-since.component.ts 67 @@ -3318,6 +3330,7 @@ After + Na src/app/components/time-span/time-span.component.ts 67 @@ -3377,6 +3390,7 @@ In ~ + In ~ src/app/components/time-until/time-until.component.ts 66 @@ -3572,6 +3586,7 @@ Transaction Hex + Transactiehex src/app/components/transaction/transaction.component.html 220,221 @@ -3895,6 +3910,7 @@ Transaction Fees + Transactiekosten src/app/dashboard/dashboard.component.html 6,9 @@ -4013,6 +4029,7 @@ Difficulty Adjustment + Moeilijkheidsaanpassing src/app/dashboard/dashboard.component.html 208,211 @@ -4021,6 +4038,7 @@ Remaining + Resterend src/app/dashboard/dashboard.component.html 214,216 @@ -4033,6 +4051,7 @@ Estimate + Schatting src/app/dashboard/dashboard.component.html 223,224 @@ -4045,6 +4064,7 @@ Previous + Vorige src/app/dashboard/dashboard.component.html 235,236 @@ -4053,6 +4073,7 @@ Current Period + Huidige Periode src/app/dashboard/dashboard.component.html 247,248 @@ -4065,6 +4086,7 @@ year + jaar src/app/shared/i18n/dates.ts 3 @@ -4072,6 +4094,7 @@ years + jaren src/app/shared/i18n/dates.ts 4 @@ -4079,6 +4102,7 @@ month + maand src/app/shared/i18n/dates.ts 5 @@ -4086,6 +4110,7 @@ months + maanden src/app/shared/i18n/dates.ts 6 @@ -4093,6 +4118,7 @@ week + week src/app/shared/i18n/dates.ts 7 @@ -4100,6 +4126,7 @@ weeks + weken src/app/shared/i18n/dates.ts 8 @@ -4107,6 +4134,7 @@ day + dag src/app/shared/i18n/dates.ts 9 @@ -4114,6 +4142,7 @@ days + dagen src/app/shared/i18n/dates.ts 10 @@ -4121,6 +4150,7 @@ hour + uur src/app/shared/i18n/dates.ts 11 @@ -4128,6 +4158,7 @@ hours + uren src/app/shared/i18n/dates.ts 12 @@ -4135,6 +4166,7 @@ minute + minuut src/app/shared/i18n/dates.ts 13 @@ -4142,6 +4174,7 @@ minutes + minuten src/app/shared/i18n/dates.ts 14 @@ -4149,6 +4182,7 @@ second + seconde src/app/shared/i18n/dates.ts 15 @@ -4156,6 +4190,7 @@ seconds + seconden src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index a9960c187..ce5981996 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -1583,6 +1583,7 @@ General + Ogólne src/app/components/api-docs/api-docs.component.html 9,11 @@ -1933,6 +1934,7 @@ Returns details about difficulty adjustment. + Zwraca szczegółowe informacje o dostosowaniu trudności. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2046,6 +2048,7 @@ Returns the hex-encoded block header. + Zwraca nagłówek bloku w postaci szesnastkowej. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2372,6 +2375,7 @@ Privacy Policy + Polityka prywatności src/app/components/api-docs/api-docs.component.html 880,885 @@ -2850,6 +2854,7 @@ Block Header Hex + Nagłówek bloku w postaci szesnastkowej src/app/components/block/block.component.html 118,119 @@ -2996,6 +3001,7 @@ blocks + bloki src/app/components/footer/footer.component.html 22,23 @@ -3012,6 +3018,7 @@ block + blok src/app/components/footer/footer.component.html 23,24 @@ -3251,6 +3258,7 @@ Just now + Przed chwilą src/app/components/time-since/time-since.component.ts 57 @@ -3262,6 +3270,7 @@ ago + temu src/app/components/time-since/time-since.component.ts 67 @@ -3321,6 +3330,7 @@ After + Po src/app/components/time-span/time-span.component.ts 67 @@ -3380,6 +3390,7 @@ In ~ + W ~ src/app/components/time-until/time-until.component.ts 66 @@ -3575,6 +3586,7 @@ Transaction Hex + Transakcja w postaci szesnastkowej src/app/components/transaction/transaction.component.html 220,221 @@ -3898,6 +3910,7 @@ Transaction Fees + Opłaty transakcyjne src/app/dashboard/dashboard.component.html 6,9 @@ -4016,6 +4029,7 @@ Difficulty Adjustment + Dostosowanie trudności src/app/dashboard/dashboard.component.html 208,211 @@ -4024,6 +4038,7 @@ Remaining + Pozostało src/app/dashboard/dashboard.component.html 214,216 @@ -4036,6 +4051,7 @@ Estimate + Estymata src/app/dashboard/dashboard.component.html 223,224 @@ -4048,6 +4064,7 @@ Previous + Poprzednia src/app/dashboard/dashboard.component.html 235,236 @@ -4056,6 +4073,7 @@ Current Period + Okres bieżący src/app/dashboard/dashboard.component.html 247,248 @@ -4068,6 +4086,7 @@ year + rok src/app/shared/i18n/dates.ts 3 @@ -4075,6 +4094,7 @@ years + lat src/app/shared/i18n/dates.ts 4 @@ -4082,6 +4102,7 @@ month + miesiąc src/app/shared/i18n/dates.ts 5 @@ -4089,6 +4110,7 @@ months + miesięcy src/app/shared/i18n/dates.ts 6 @@ -4096,6 +4118,7 @@ week + tydzień src/app/shared/i18n/dates.ts 7 @@ -4103,6 +4126,7 @@ weeks + tygodni src/app/shared/i18n/dates.ts 8 @@ -4110,6 +4134,7 @@ day + dzień src/app/shared/i18n/dates.ts 9 @@ -4117,6 +4142,7 @@ days + dni src/app/shared/i18n/dates.ts 10 @@ -4124,6 +4150,7 @@ hour + godzinę src/app/shared/i18n/dates.ts 11 @@ -4131,6 +4158,7 @@ hours + godzin src/app/shared/i18n/dates.ts 12 @@ -4138,6 +4166,7 @@ minute + minutę src/app/shared/i18n/dates.ts 13 @@ -4145,6 +4174,7 @@ minutes + minut src/app/shared/i18n/dates.ts 14 @@ -4152,6 +4182,7 @@ second + sekundę src/app/shared/i18n/dates.ts 15 @@ -4159,6 +4190,7 @@ seconds + sekund src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index e64bc78ed..f4c56302f 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -2375,6 +2375,7 @@ Privacy Policy + Política de Privacidade src/app/components/api-docs/api-docs.component.html 880,885 @@ -3585,6 +3586,7 @@ Transaction Hex + Hex da Transaçao src/app/components/transaction/transaction.component.html 220,221 diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index 413387532..fa0f33546 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -1933,6 +1933,7 @@ Returns details about difficulty adjustment. + Предоставляет подробности о корректировке сложности src/app/components/api-docs/api-docs.component.html 24,26 @@ -2046,6 +2047,7 @@ Returns the hex-encoded block header. + Предоставляет заголовок блока в шестнадцатиричном формате src/app/components/api-docs/api-docs.component.html 230,233 @@ -2061,7 +2063,7 @@ Returns the raw block representation in binary. - Возвращает сырое представление блока в двоичном формате. + Предоставляет сырое представление блока в двоичном формате. src/app/components/api-docs/api-docs.component.html 264,267 @@ -2189,7 +2191,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. - Предоставляет :length Биткоин-блоков, содержащих транзакции Bisq, начиная с :index. + Предоставляет :length (длину) Биткоин-блоков, содержащих транзакции Bisq, начиная с :index. src/app/components/api-docs/api-docs.component.html 528,531 @@ -2213,7 +2215,7 @@ Returns :length of latest Bisq transactions, starting from :index. - Предоставляет :length последних транзакций Bisq, начиная с :index. + Предоставляет :length (длину) последних транзакций Bisq, начиная с :index. src/app/components/api-docs/api-docs.component.html 590,593 @@ -2363,7 +2365,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. - Оповещения по умолчанию: action: 'want', data: ['blocks', ...] , чтобы сообщить какие оповещения вы бы хотели получть. Доступно: blocks, mempool-blocks, live-2h-chart, and stats. + Оповещения по умолчанию: action: 'want', data: ['blocks', ...] , чтобы сообщить какие оповещения вы бы хотели получить. Доступно: blocks, mempool-blocks, live-2h-chart, и stats. Оповещения о транзакциях, относящихся к адресу: 'track-address': '3PbJ...bF9B' для получения всех новых транзакций, содержащих этот адрес в качестве ввода или вывода. Возвращает массив транзакций. address-transactions для новых мемпул-транзакций и block-transactions для транзакций, подтвержденных в новом блоке. src/app/components/api-docs/api-docs.component.html @@ -2373,6 +2375,7 @@ Privacy Policy + Политика конфиденциальности src/app/components/api-docs/api-docs.component.html 880,885 @@ -2851,6 +2854,7 @@ Block Header Hex + Заголовок блока в шестнадцатиричном формате src/app/components/block/block.component.html 118,119 @@ -3000,6 +3004,7 @@ blocks + блоки src/app/components/footer/footer.component.html 22,23 @@ -3016,6 +3021,7 @@ block + блок src/app/components/footer/footer.component.html 23,24 @@ -3041,7 +3047,7 @@ Layer 2 Networks - Сети второго уровня + Сети 2 уровня src/app/components/master-page/master-page.component.html 22,23 @@ -3111,7 +3117,7 @@ Stack of mempool blocks - Стопка блоков в мемпуле + Стэк блоков в мемпуле src/app/components/mempool-block/mempool-block.component.ts 73 @@ -3228,7 +3234,7 @@ Mempool by vBytes (sat/vByte) - Мемпул в виде vBytes (sat/vByte) + Мемпул в vBytes (sat/vByte) src/app/components/statistics/statistics.component.html 13 @@ -3255,6 +3261,7 @@ Just now + Только что src/app/components/time-since/time-since.component.ts 57 @@ -3266,6 +3273,7 @@ ago + назад src/app/components/time-since/time-since.component.ts 67 @@ -3325,6 +3333,7 @@ After + Через src/app/components/time-span/time-span.component.ts 67 @@ -3384,6 +3393,7 @@ In ~ + Через ~ src/app/components/time-until/time-until.component.ts 66 @@ -3579,6 +3589,7 @@ Transaction Hex + Транзакция в шестнадцатиричном формате src/app/components/transaction/transaction.component.html 220,221 @@ -3902,6 +3913,7 @@ Transaction Fees + Транзакционные комиссии src/app/dashboard/dashboard.component.html 6,9 @@ -3963,7 +3975,7 @@ Expand - Расширить + Подробнее src/app/dashboard/dashboard.component.html 132,133 @@ -3972,7 +3984,7 @@ Collapse - Уменьшить + Скрыть src/app/dashboard/dashboard.component.html 133,137 @@ -4020,6 +4032,7 @@ Difficulty Adjustment + Корректировка сложности src/app/dashboard/dashboard.component.html 208,211 @@ -4028,6 +4041,7 @@ Remaining + Остаток src/app/dashboard/dashboard.component.html 214,216 @@ -4040,6 +4054,7 @@ Estimate + Приблизительно src/app/dashboard/dashboard.component.html 223,224 @@ -4052,6 +4067,7 @@ Previous + Предыдущий src/app/dashboard/dashboard.component.html 235,236 @@ -4060,6 +4076,7 @@ Current Period + Текущий период src/app/dashboard/dashboard.component.html 247,248 @@ -4072,6 +4089,7 @@ year + год src/app/shared/i18n/dates.ts 3 @@ -4079,6 +4097,7 @@ years + лет src/app/shared/i18n/dates.ts 4 @@ -4086,6 +4105,7 @@ month + месяц src/app/shared/i18n/dates.ts 5 @@ -4093,6 +4113,7 @@ months + месяцев src/app/shared/i18n/dates.ts 6 @@ -4100,6 +4121,7 @@ week + неделя src/app/shared/i18n/dates.ts 7 @@ -4107,6 +4129,7 @@ weeks + недель src/app/shared/i18n/dates.ts 8 @@ -4114,6 +4137,7 @@ day + день src/app/shared/i18n/dates.ts 9 @@ -4121,6 +4145,7 @@ days + дней src/app/shared/i18n/dates.ts 10 @@ -4128,6 +4153,7 @@ hour + час src/app/shared/i18n/dates.ts 11 @@ -4135,6 +4161,7 @@ hours + часов src/app/shared/i18n/dates.ts 12 @@ -4142,6 +4169,7 @@ minute + минута src/app/shared/i18n/dates.ts 13 @@ -4149,6 +4177,7 @@ minutes + минут src/app/shared/i18n/dates.ts 14 @@ -4156,6 +4185,7 @@ second + секунда src/app/shared/i18n/dates.ts 15 @@ -4163,6 +4193,7 @@ seconds + секунд src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 2b6c0e50e..fdff70ac2 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -2375,6 +2375,7 @@ Privacy Policy + Integritetspolicy src/app/components/api-docs/api-docs.component.html 880,885 @@ -3585,6 +3586,7 @@ Transaction Hex + Transaktionshex src/app/components/transaction/transaction.component.html 220,221 diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 7b699f16b..f025b764f 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -1583,6 +1583,7 @@ General + Genel src/app/components/api-docs/api-docs.component.html 9,11 @@ -1933,6 +1934,7 @@ Returns details about difficulty adjustment. + Zorluk seviyesi hakkındaki detayları gösterir. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2047,6 +2049,7 @@ Returns the hex-encoded block header. + Hex ile kodlanmış blok başlığını gösterir. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2373,6 +2376,7 @@ Privacy Policy + Gizlilik politikası src/app/components/api-docs/api-docs.component.html 880,885 @@ -2851,6 +2855,7 @@ Block Header Hex + Block Başlığı Hex'i src/app/components/block/block.component.html 118,119 @@ -2997,6 +3002,7 @@ blocks + blocks src/app/components/footer/footer.component.html 22,23 @@ -3013,6 +3019,7 @@ block + block src/app/components/footer/footer.component.html 23,24 @@ -3252,6 +3259,7 @@ Just now + Az önce src/app/components/time-since/time-since.component.ts 57 @@ -3263,6 +3271,7 @@ ago + önce src/app/components/time-since/time-since.component.ts 67 @@ -3322,6 +3331,7 @@ After + 'den sonra src/app/components/time-span/time-span.component.ts 67 @@ -3381,6 +3391,7 @@ In ~ + Yaklaşık içinde src/app/components/time-until/time-until.component.ts 66 @@ -3576,6 +3587,7 @@ Transaction Hex + İşlem Hex'i src/app/components/transaction/transaction.component.html 220,221 @@ -3899,6 +3911,7 @@ Transaction Fees + İşlem Ücretleri src/app/dashboard/dashboard.component.html 6,9 @@ -4017,6 +4030,7 @@ Difficulty Adjustment + Zorluk Seviyesi src/app/dashboard/dashboard.component.html 208,211 @@ -4025,6 +4039,7 @@ Remaining + Kalan src/app/dashboard/dashboard.component.html 214,216 @@ -4037,6 +4052,7 @@ Estimate + Tahmini src/app/dashboard/dashboard.component.html 223,224 @@ -4049,6 +4065,7 @@ Previous + Önceki src/app/dashboard/dashboard.component.html 235,236 @@ -4057,6 +4074,7 @@ Current Period + Şimdiki periyod src/app/dashboard/dashboard.component.html 247,248 @@ -4069,6 +4087,7 @@ year + yıl src/app/shared/i18n/dates.ts 3 @@ -4076,6 +4095,7 @@ years + yıllar src/app/shared/i18n/dates.ts 4 @@ -4083,6 +4103,7 @@ month + ay src/app/shared/i18n/dates.ts 5 @@ -4090,6 +4111,7 @@ months + ay src/app/shared/i18n/dates.ts 6 @@ -4097,6 +4119,7 @@ week + hafta src/app/shared/i18n/dates.ts 7 @@ -4104,6 +4127,7 @@ weeks + hafta src/app/shared/i18n/dates.ts 8 @@ -4111,6 +4135,7 @@ day + gün src/app/shared/i18n/dates.ts 9 @@ -4118,6 +4143,7 @@ days + gün src/app/shared/i18n/dates.ts 10 @@ -4125,6 +4151,7 @@ hour + saat src/app/shared/i18n/dates.ts 11 @@ -4132,6 +4159,7 @@ hours + saat src/app/shared/i18n/dates.ts 12 @@ -4139,6 +4167,7 @@ minute + dakika src/app/shared/i18n/dates.ts 13 @@ -4146,6 +4175,7 @@ minutes + dakika src/app/shared/i18n/dates.ts 14 @@ -4153,6 +4183,7 @@ second + saniye src/app/shared/i18n/dates.ts 15 @@ -4160,6 +4191,7 @@ seconds + saniye src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index b413dabe5..f4824b15a 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -1377,6 +1377,7 @@ The Mempool Open Source Project + Mempool - проект з відкритим кодом src/app/components/about/about.component.html 12 @@ -1385,6 +1386,7 @@ Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers. + Ми будуємо експлорер мемпулу та блоків для ком'юніті Bitcoin з фокусом на ринок транзакцій та багаторівневу екосистему, без реклами, альткоїнів та сторонніх трекерів. src/app/components/about/about.component.html 13,17 @@ -1581,6 +1583,7 @@ General + Загальне src/app/components/api-docs/api-docs.component.html 9,11 @@ -1590,6 +1593,7 @@ Endpoint + Ендпоїнт src/app/components/api-docs/api-docs.component.html 19,20 @@ -1754,6 +1758,7 @@ Description + Опис src/app/components/api-docs/api-docs.component.html 23,24 @@ -1929,6 +1934,7 @@ Returns details about difficulty adjustment. + Повертає деталі про регулювання складності. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2042,6 +2048,7 @@ Returns the hex-encoded block header. + Повертає заголовок блоку закодований в hex. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2368,6 +2375,7 @@ Privacy Policy + Політика конфіденційності src/app/components/api-docs/api-docs.component.html 880,885 @@ -2397,6 +2405,7 @@ Code Example + Приклад коду src/app/components/api-docs/code-template.component.html 6 @@ -2413,6 +2422,7 @@ Install Package + Встановити пакунок src/app/components/api-docs/code-template.component.html 23,24 @@ -2421,6 +2431,7 @@ Response + Відповідь src/app/components/api-docs/code-template.component.html 36,37 @@ -2523,6 +2534,7 @@ of   + з   src/app/components/asset/asset.component.html 76 @@ -2842,6 +2854,7 @@ Block Header Hex + Заголовок блоку в hex src/app/components/block/block.component.html 118,119 @@ -2988,6 +3001,7 @@ blocks + блоків src/app/components/footer/footer.component.html 22,23 @@ -3004,6 +3018,7 @@ block + блок src/app/components/footer/footer.component.html 23,24 @@ -3243,6 +3258,7 @@ Just now + Щойно src/app/components/time-since/time-since.component.ts 57 @@ -3254,6 +3270,7 @@ ago + тому src/app/components/time-since/time-since.component.ts 67 @@ -3313,6 +3330,7 @@ After + Після src/app/components/time-span/time-span.component.ts 67 @@ -3372,6 +3390,7 @@ In ~ + Через ~ src/app/components/time-until/time-until.component.ts 66 @@ -3567,6 +3586,7 @@ Transaction Hex + Транзакція в hex src/app/components/transaction/transaction.component.html 220,221 @@ -3890,6 +3910,7 @@ Transaction Fees + Комісії транзакції src/app/dashboard/dashboard.component.html 6,9 @@ -4008,6 +4029,7 @@ Difficulty Adjustment + Регулювання складності src/app/dashboard/dashboard.component.html 208,211 @@ -4016,6 +4038,7 @@ Remaining + Лишається src/app/dashboard/dashboard.component.html 214,216 @@ -4028,6 +4051,7 @@ Estimate + Приблизно src/app/dashboard/dashboard.component.html 223,224 @@ -4040,6 +4064,7 @@ Previous + Попередня src/app/dashboard/dashboard.component.html 235,236 @@ -4048,6 +4073,7 @@ Current Period + Поточний період src/app/dashboard/dashboard.component.html 247,248 @@ -4060,6 +4086,7 @@ year + рік src/app/shared/i18n/dates.ts 3 @@ -4067,6 +4094,7 @@ years + роки src/app/shared/i18n/dates.ts 4 @@ -4074,6 +4102,7 @@ month + місяць src/app/shared/i18n/dates.ts 5 @@ -4081,6 +4110,7 @@ months + місяці src/app/shared/i18n/dates.ts 6 @@ -4088,6 +4118,7 @@ week + тиждень src/app/shared/i18n/dates.ts 7 @@ -4095,6 +4126,7 @@ weeks + тижні src/app/shared/i18n/dates.ts 8 @@ -4102,6 +4134,7 @@ day + день src/app/shared/i18n/dates.ts 9 @@ -4109,6 +4142,7 @@ days + дні src/app/shared/i18n/dates.ts 10 @@ -4116,6 +4150,7 @@ hour + година src/app/shared/i18n/dates.ts 11 @@ -4123,6 +4158,7 @@ hours + години src/app/shared/i18n/dates.ts 12 @@ -4130,6 +4166,7 @@ minute + хвилина src/app/shared/i18n/dates.ts 13 @@ -4137,6 +4174,7 @@ minutes + хвилини src/app/shared/i18n/dates.ts 14 @@ -4144,6 +4182,7 @@ second + секунда src/app/shared/i18n/dates.ts 15 @@ -4151,6 +4190,7 @@ seconds + секунди src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 39ff78573..76d28587c 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -1377,6 +1377,7 @@ The Mempool Open Source Project + Dự án Mã nguồn Mở Mempool src/app/components/about/about.component.html 12 @@ -1385,6 +1386,7 @@ Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers. + Xây dựng một mempool và trình xem blockchain cho cộng đồng Bitcoin, tập trung vào thị trường phí giao dịch và hệ sinh thái đa lớp, không có bất kỳ quảng cáo, altcoin hoặc phần mềm theo dõi bên thứ ba nào. src/app/components/about/about.component.html 13,17 @@ -1581,6 +1583,7 @@ General + Tổng quan src/app/components/api-docs/api-docs.component.html 9,11 @@ -1931,6 +1934,7 @@ Returns details about difficulty adjustment. + Trả về thông tin chi tiết về điều chỉnh độ khó. src/app/components/api-docs/api-docs.component.html 24,26 @@ -2044,6 +2048,7 @@ Returns the hex-encoded block header. + Trả về tiêu đề khối được mã hóa hex. src/app/components/api-docs/api-docs.component.html 230,233 @@ -2370,6 +2375,7 @@ Privacy Policy + Chính sách Quyền riêng tư src/app/components/api-docs/api-docs.component.html 880,885 @@ -2528,6 +2534,7 @@ of   + trong tổng số src/app/components/asset/asset.component.html 76 @@ -2847,6 +2854,7 @@ Block Header Hex + Khối tiêu đề Hex src/app/components/block/block.component.html 118,119 @@ -2993,6 +3001,7 @@ blocks + khối src/app/components/footer/footer.component.html 22,23 @@ -3009,6 +3018,7 @@ block + khối src/app/components/footer/footer.component.html 23,24 @@ -3248,6 +3258,7 @@ Just now + Vừa mới đây src/app/components/time-since/time-since.component.ts 57 @@ -3259,6 +3270,7 @@ ago + trước src/app/components/time-since/time-since.component.ts 67 @@ -3318,6 +3330,7 @@ After + Sau src/app/components/time-span/time-span.component.ts 67 @@ -3377,6 +3390,7 @@ In ~ + Trong ~ src/app/components/time-until/time-until.component.ts 66 @@ -3572,6 +3586,7 @@ Transaction Hex + Giao dịch Hex src/app/components/transaction/transaction.component.html 220,221 @@ -3895,6 +3910,7 @@ Transaction Fees + Phí giao dịch src/app/dashboard/dashboard.component.html 6,9 @@ -4013,6 +4029,7 @@ Difficulty Adjustment + Điều chỉnh Độ khó src/app/dashboard/dashboard.component.html 208,211 @@ -4021,6 +4038,7 @@ Remaining + Còn lại src/app/dashboard/dashboard.component.html 214,216 @@ -4033,6 +4051,7 @@ Estimate + Ước tính src/app/dashboard/dashboard.component.html 223,224 @@ -4045,6 +4064,7 @@ Previous + Trước src/app/dashboard/dashboard.component.html 235,236 @@ -4053,6 +4073,7 @@ Current Period + Giai đoạn hiện tại src/app/dashboard/dashboard.component.html 247,248 @@ -4065,6 +4086,7 @@ year + năm src/app/shared/i18n/dates.ts 3 @@ -4072,6 +4094,7 @@ years + năm src/app/shared/i18n/dates.ts 4 @@ -4079,6 +4102,7 @@ month + tháng src/app/shared/i18n/dates.ts 5 @@ -4086,6 +4110,7 @@ months + tháng src/app/shared/i18n/dates.ts 6 @@ -4093,6 +4118,7 @@ week + tuần src/app/shared/i18n/dates.ts 7 @@ -4100,6 +4126,7 @@ weeks + tuần src/app/shared/i18n/dates.ts 8 @@ -4107,6 +4134,7 @@ day + ngày src/app/shared/i18n/dates.ts 9 @@ -4114,6 +4142,7 @@ days + ngày src/app/shared/i18n/dates.ts 10 @@ -4121,6 +4150,7 @@ hour + giờ src/app/shared/i18n/dates.ts 11 @@ -4128,6 +4158,7 @@ hours + giờ src/app/shared/i18n/dates.ts 12 @@ -4135,6 +4166,7 @@ minute + phút src/app/shared/i18n/dates.ts 13 @@ -4142,6 +4174,7 @@ minutes + phút src/app/shared/i18n/dates.ts 14 @@ -4149,6 +4182,7 @@ second + giây src/app/shared/i18n/dates.ts 15 @@ -4156,6 +4190,7 @@ seconds + giây src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 272fe961a..6320ad458 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -11,7 +11,7 @@ Previous - + 前一个 node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts 349 @@ -19,7 +19,7 @@ Next - 下一个 + 后一个 node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts 349 @@ -39,7 +39,7 @@ Next month - 下个月 + 后一个月 node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts 72 @@ -75,6 +75,7 @@ «« + «« node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -82,6 +83,7 @@ « + « node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -89,6 +91,7 @@ » + » node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts 404 @@ -135,6 +138,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts 101 @@ -142,6 +146,7 @@ HH + HH node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -157,6 +162,7 @@ MM + MM node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -204,6 +210,7 @@ SS + SS node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -235,6 +242,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -242,6 +250,7 @@ + node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts 296 @@ -310,7 +319,7 @@ Issuer domain - 发行人 + 发行方 src/app/assets/assets.component.html 21,23 @@ -323,7 +332,7 @@ Asset ID - 资产ID + 资产 ID src/app/assets/assets.component.html 22,23 @@ -336,7 +345,7 @@ Issuance TX - 发行交易 + 发行交易 TX src/app/assets/assets.component.html 23,26 @@ -476,7 +485,7 @@ Address: - 地址: + 地址: src/app/bisq/bisq-address/bisq-address.component.ts 43 @@ -536,7 +545,7 @@ Previous hash - 上个哈希值 + 前一个哈希值 src/app/bisq/bisq-block/bisq-block.component.html 35 @@ -558,6 +567,7 @@ BSQ Blocks + BSQ 区块 src/app/bisq/bisq-blocks/bisq-blocks.component.html 2,7 @@ -566,7 +576,7 @@ Height - 高度 + 区块高度 src/app/bisq/bisq-blocks/bisq-blocks.component.html 12,13 @@ -587,7 +597,7 @@ Confirmed - 已确认 + 已确认于 src/app/bisq/bisq-blocks/bisq-blocks.component.html 13,14 @@ -645,6 +655,7 @@ Bisq Trading Volume + Bisq 交易量 src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 3,7 @@ -723,7 +734,7 @@ Volume (7d) - 量(7d) + 交易量(7日内) src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 29 @@ -732,7 +743,7 @@ Trades (7d) - 交易 (7d) + 交易(7日内) src/app/bisq/bisq-dashboard/bisq-dashboard.component.html 30 @@ -762,6 +773,7 @@ Bisq Price Index + Bisq 价格指数 src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 9,11 @@ -770,6 +782,7 @@ Bisq Market Price + BIsq 市场价格 src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 21,23 @@ -817,7 +830,7 @@ Buy Offers - 购买优惠 + 购买报价 src/app/bisq/bisq-market/bisq-market.component.html 73,74 @@ -826,7 +839,7 @@ Sell Offers - 出售优惠 + 出售报价 src/app/bisq/bisq-market/bisq-market.component.html 74,77 @@ -835,7 +848,7 @@ Amount () - 金额 () + 金额 ( src/app/bisq/bisq-market/bisq-market.component.html 112,113 @@ -848,7 +861,7 @@ BSQ statistics - BSQ统计 + BSQ 统计 src/app/bisq/bisq-stats/bisq-stats.component.html 2 @@ -874,7 +887,7 @@ Minted amount - 铸造量 + 发行量 src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -887,7 +900,7 @@ Burnt amount - 燃烧量 + 销毁量 src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -908,7 +921,7 @@ Addresses - 交易 + 地址 src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -921,7 +934,7 @@ Unspent TXOs - 未用UTXO + 未使用输出额 src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -934,7 +947,7 @@ Spent TXOs - 已用UTXO + 已使用输出额 src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -964,7 +977,7 @@ Amount - + 数额 src/app/bisq/bisq-trades/bisq-trades.component.html 9,12 @@ -980,6 +993,7 @@ Inputs + 输入 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html 7 @@ -988,6 +1002,7 @@ Outputs + 输出 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html 11 @@ -1114,7 +1129,7 @@ Features - 特征 + 交易特征 src/app/bisq/bisq-transaction/bisq-transaction.component.html 44,46 @@ -1142,7 +1157,7 @@ Details - 明细 + 交易明细 src/app/bisq/bisq-transaction/bisq-transaction.component.html 83,86 @@ -1193,7 +1208,7 @@ BSQ Transactions - BSQ交易 + BSQ 交易 src/app/bisq/bisq-transactions/bisq-transactions.component.html 2,5 @@ -1201,7 +1216,7 @@ TXID - 交易ID + TXID src/app/bisq/bisq-transactions/bisq-transactions.component.html 18,19 @@ -1225,7 +1240,7 @@ Blind vote - 盲选 + 匿名投票 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 31 @@ -1233,7 +1248,7 @@ Compensation request - 赔偿要求 + 报销要求 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 32 @@ -1273,7 +1288,7 @@ Proof of burn - 燃烧证明 + 销毁证明 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 37 @@ -1281,7 +1296,7 @@ Proposal - 提议 + 提案 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 38 @@ -1289,7 +1304,7 @@ Reimbursement request - 报销申请 + 赔偿申请 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 39 @@ -1297,7 +1312,7 @@ Transfer BSQ - 转BSQ + BSQ 转账 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 40 @@ -1313,7 +1328,7 @@ Vote reveal - 投票公布 + 投票公示 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 42 @@ -1353,7 +1368,7 @@ Volume - + 交易量 src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts 91 @@ -1376,7 +1391,7 @@ Enterprise Sponsors 🚀 - 企业赞助🚀 + 企业赞助商🚀 src/app/components/about/about.component.html 32,34 @@ -1385,7 +1400,7 @@ Community Sponsors ❤️ - 社区赞助❤️ + 社区赞助商❤️ src/app/components/about/about.component.html 54,57 @@ -1403,6 +1418,7 @@ Navigate to https://mempool.space/sponsor to sponsor + 前往https://mempool.space/sponsor以成为赞助者 src/app/components/about/about.component.html 67 @@ -1442,7 +1458,7 @@ Project Maintainers - 项目维护人员 + 项目维护者 src/app/components/about/about.component.html 171,173 @@ -1481,6 +1497,7 @@ Liquid + Liquid src/app/components/address-labels/address-labels.component.html 17 @@ -1489,7 +1506,7 @@ of transaction - 个交易 / 共个交易 + 个交易 / 共个交易 src/app/components/address/address.component.html 52,53 @@ -1498,7 +1515,7 @@ of transactions - 个交易 / 共个交易 + 个交易 / 共个交易 src/app/components/address/address.component.html 53,54 @@ -1516,6 +1533,7 @@ The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead: + 此地址上的交易数量操过了以太坊服务器 请考虑安完官方内存池网站上查看此地址: src/app/components/address/address.component.html 127,130 @@ -1545,7 +1563,7 @@ Address: - 地址: + 地址: src/app/components/address/address.component.ts 72 @@ -1553,7 +1571,7 @@ API Service - API服务 + API 服务 src/app/components/api-docs/api-docs.component.html 4,7 @@ -1562,6 +1580,7 @@ General + 常规 src/app/components/api-docs/api-docs.component.html 9,11 @@ -1571,6 +1590,7 @@ Endpoint + Endpoint src/app/components/api-docs/api-docs.component.html 19,20 @@ -1911,6 +1931,7 @@ Returns details about difficulty adjustment. + 返回关于难度调整的详细信息 src/app/components/api-docs/api-docs.component.html 24,26 @@ -1928,6 +1949,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + 返回关于地址的详细信息。可用参数:address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. src/app/components/api-docs/api-docs.component.html 50,51 @@ -3935,7 +3957,7 @@ Incoming transactions - 收款交易 + 即将完成交易 src/app/dashboard/dashboard.component.html 193,194 @@ -3979,7 +4001,7 @@ Previous - 前一段 + 之前 src/app/dashboard/dashboard.component.html 235,236 @@ -3988,7 +4010,7 @@ Current Period - 本期 + 当前阶段 src/app/dashboard/dashboard.component.html 247,248 @@ -4113,7 +4135,7 @@ Transaction fee - 手续费 + 交易手续费 src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts 11 diff --git a/nginx-mempool.conf b/nginx-mempool.conf index 9e441f277..63e9a6ac5 100644 --- a/nginx-mempool.conf +++ b/nginx-mempool.conf @@ -32,7 +32,6 @@ rewrite ^/[a-zA-Z-]*/resources/(.*) /en-US/resources/$1; } # used for cookie override - location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hi|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|ka|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/ { location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh|hi)/ { try_files $uri $uri/ /$1/index.html =404; } diff --git a/nginx.conf b/nginx.conf index d091c37fe..3f52240f1 100644 --- a/nginx.conf +++ b/nginx.conf @@ -78,6 +78,7 @@ http { ~*^en-US en-US; ~*^en en-US; ~*^ar ar; + ~*^ca ca; ~*^cs cs; ~*^de de; ~*^es es; @@ -109,6 +110,7 @@ http { ~*^en-US en-US; ~*^en en-US; ~*^ar ar; + ~*^ca ca; ~*^cs cs; ~*^de de; ~*^es es; diff --git a/production/electrs-start-liquid b/production/electrs-start-liquid index 7380eaa02..f9b8b58ed 100755 --- a/production/electrs-start-liquid +++ b/production/electrs-start-liquid @@ -21,6 +21,7 @@ do --asset-db-path "$HOME/asset_registry_db" \ --address-search \ --cors '*' \ + --db-dir /electrs \ --network liquid \ --daemon-dir /elements \ --http-addr '[::]:3001' \ diff --git a/production/nginx-mempool.conf b/production/nginx-mempool.conf index e2474199f..8b948b305 100644 --- a/production/nginx-mempool.conf +++ b/production/nginx-mempool.conf @@ -116,7 +116,7 @@ # serivces API location /api/v1/contributors { # don't rate limit this API prefix - proxy_pass https://node220.bitcoin.wiz.biz; + proxy_pass https://mempool.space; proxy_hide_header onion-location; proxy_hide_header strict-transport-security; proxy_hide_header content-security-policy; @@ -124,7 +124,7 @@ } location /api/v1/donations { # don't rate limit this API prefix - proxy_pass https://node220.bitcoin.wiz.biz; + proxy_pass https://mempool.space; proxy_hide_header onion-location; proxy_hide_header strict-transport-security; proxy_hide_header content-security-policy; @@ -132,7 +132,7 @@ } location /api/v1/donations/images { # don't rate limit this API prefix - proxy_pass https://node220.bitcoin.wiz.biz; + proxy_pass https://mempool.space; proxy_cache services; proxy_cache_valid 200 1d; expires 7d; diff --git a/production/nginx.conf b/production/nginx.conf index 2b440e2fe..901f4af96 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -89,6 +89,7 @@ http { ~*^en-US en-US; ~*^en en-US; ~*^ar ar; + ~*^ca ca; ~*^cs cs; ~*^de de; ~*^es es; @@ -120,6 +121,7 @@ http { ~*^en-US en-US; ~*^en en-US; ~*^ar ar; + ~*^ca ca; ~*^cs cs; ~*^de de; ~*^es es;