mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
Merge branch 'master' into simon/configurable-main-module
# Conflicts: # frontend/src/app/components/api-docs/api-docs.component.ts # frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts # frontend/src/app/components/master-page/master-page.component.html # frontend/src/app/components/mempool-blocks/mempool-blocks.component.html # frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts # frontend/src/app/dashboard/dashboard.component.html
This commit is contained in:
commit
9d75c47792
56 changed files with 1307 additions and 466 deletions
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
|
@ -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']
|
||||
|
|
7
.github/workflows/cypress.yml
vendored
7
.github/workflows/cypress.yml
vendored
|
@ -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
|
||||
|
|
4
backend/package-lock.json
generated
4
backend/package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
"pluginsFile": "cypress/plugins/index.js",
|
||||
"fixturesFolder": "cypress/fixtures",
|
||||
"baseUrl": "http://localhost:4200",
|
||||
"video": false,
|
||||
"retries": {
|
||||
"runMode": 3,
|
||||
"openMode": 0
|
||||
|
|
|
@ -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', () => {
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
10
frontend/cypress/support/index.d.ts
vendored
Normal file
10
frontend/cypress/support/index.d.ts
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
/// <reference types="cypress" />
|
||||
declare namespace Cypress {
|
||||
interface Chainable<Subject> {
|
||||
waitForSkeletonGone(): Chainable<any>
|
||||
waitForPageIdle(): Chainable<any>
|
||||
mockMempoolSocket(): Chainable<any>
|
||||
changeNetwork(network: "testnet"|"signet"|"liquid"|"bisq"|"mainnet"): Chainable<any>
|
||||
}
|
||||
}
|
|
@ -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');
|
||||
};
|
||||
};
|
||||
|
||||
export const dropWebSocket = (() => {
|
||||
cy.window().then((win) => {
|
||||
win.mockServer.simulate("error");
|
||||
});
|
||||
return cy.wait(500);
|
||||
});
|
|
@ -2,7 +2,9 @@
|
|||
"extends": "../tsconfig.json",
|
||||
"include": ["**/*.ts"],
|
||||
"compilerOptions": {
|
||||
"sourceMap": false,
|
||||
"types": ["cypress"]
|
||||
"types": ["cypress"],
|
||||
"lib": ["es2015", "dom"],
|
||||
"allowJs": true,
|
||||
"noEmit": true,
|
||||
}
|
||||
}
|
||||
|
|
31
frontend/package-lock.json
generated
31
frontend/package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,98 +1,102 @@
|
|||
<div class="container-xl">
|
||||
|
||||
<div class="title-block">
|
||||
<ng-template [ngIf]="!isLoading && !error">
|
||||
|
||||
<button *ngIf="(latestBlock$ | async) as latestBlock" type="button" class="btn btn-sm btn-success float-right">
|
||||
<ng-container *ngTemplateOutlet="latestBlock.height - bisqTx.blockHeight + 1 == 1 ? confirmationSingular : confirmationPlural; context: {$implicit: latestBlock.height - bisqTx.blockHeight + 1}"></ng-container>
|
||||
<ng-template #confirmationSingular let-i i18n="shared.confirmation-count.singular|Transaction singular confirmation count">{{ i }} confirmation</ng-template>
|
||||
<ng-template #confirmationPlural let-i i18n="shared.confirmation-count.plural|Transaction plural confirmation count">{{ i }} confirmations</ng-template>
|
||||
</button>
|
||||
|
||||
|
||||
<h1 i18n="shared.transaction">Transaction</h1>
|
||||
|
||||
<div class="tx-link">
|
||||
<a [routerLink]="['/bisq-tx' | relativeUrl, bisqTx.id]">
|
||||
<span class="d-inline d-lg-none">{{ bisqTx.id | shortenString : 24 }}</span>
|
||||
<span class="d-none d-lg-inline">{{ bisqTx.id }}</span>
|
||||
</a>
|
||||
<app-clipboard [text]="bisqTx.id"></app-clipboard>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
|
||||
<div class="box transaction-container">
|
||||
<div class="row">
|
||||
<div class="col-sm">
|
||||
<table class="table table-borderless table-striped">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td i18n="transaction.timestamp|Transaction Timestamp">Timestamp</td>
|
||||
<td>
|
||||
{{ bisqTx.time | date:'yyyy-MM-dd HH:mm' }}
|
||||
<div class="lg-inline">
|
||||
<i class="symbol">(<app-time-since [time]="bisqTx.time / 1000" [fastRender]="true"></app-time-since>)</i>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="td-width" i18n="transaction.included-in-block|Transaction included in block">Included in block</td>
|
||||
<td>
|
||||
<a [routerLink]="['/block/' | relativeUrl, bisqTx.blockHash]" [state]="{ data: { blockHeight: bisqTx.blockHeight } }">{{ bisqTx.blockHeight }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="td-width" i18n="transaction.features|Transaction features">Features</td>
|
||||
<td>
|
||||
<app-tx-features *ngIf="tx; else loadingTx" [tx]="tx"></app-tx-features>
|
||||
<ng-template #loadingTx>
|
||||
<span class="skeleton-loader"></span>
|
||||
</ng-template>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<table class="table table-borderless table-striped">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="td-width" i18n="BSQ burnt amount">Burnt amount</td>
|
||||
<td>
|
||||
{{ bisqTx.burntFee / 100 | number: '1.2-2' }} <span class="symbol">BSQ</span> <span class="fiat"><app-bsq-amount [bsq]="bisqTx.burntFee" [forceFiat]="true" [green]="true"></app-bsq-amount></span>
|
||||
</tr>
|
||||
<tr>
|
||||
<td i18n="transaction.fee-per-vbyte|Transaction fee">Fee per vByte</td>
|
||||
<td *ngIf="!isLoadingTx; else loadingTxFee">
|
||||
{{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} <span class="symbol">sat/vB</span>
|
||||
|
||||
<app-tx-fee-rating [tx]="tx"></app-tx-fee-rating>
|
||||
</td>
|
||||
<ng-template #loadingTxFee>
|
||||
<td><span class="skeleton-loader"></span></td>
|
||||
</ng-template>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="title">
|
||||
<h1 i18n="shared.transaction">Transaction</h1>
|
||||
</div>
|
||||
|
||||
<div class="tx-link">
|
||||
<a [routerLink]="['/bisq-tx' | relativeUrl, bisqTx.id]">
|
||||
<span class="d-inline d-lg-none">{{ bisqTx.id | shortenString : 24 }}</span>
|
||||
<span class="d-none d-lg-inline">{{ bisqTx.id }}</span>
|
||||
</a>
|
||||
<app-clipboard [text]="bisqTx.id"></app-clipboard>
|
||||
</div>
|
||||
<div class="container-buttons">
|
||||
<button *ngIf="(latestBlock$ | async) as latestBlock" type="button" class="btn btn-sm btn-success float-right">
|
||||
<ng-container *ngTemplateOutlet="latestBlock.height - bisqTx.blockHeight + 1 == 1 ? confirmationSingular : confirmationPlural; context: {$implicit: latestBlock.height - bisqTx.blockHeight + 1}"></ng-container>
|
||||
<ng-template #confirmationSingular let-i i18n="shared.confirmation-count.singular|Transaction singular confirmation count">{{ i }} confirmation</ng-template>
|
||||
<ng-template #confirmationPlural let-i i18n="shared.confirmation-count.plural|Transaction plural confirmation count">{{ i }} confirmations</ng-template>
|
||||
</button>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
|
||||
<div class="box transaction-container">
|
||||
<div class="row">
|
||||
<div class="col-sm">
|
||||
<table class="table table-borderless table-striped">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td i18n="transaction.timestamp|Transaction Timestamp">Timestamp</td>
|
||||
<td>
|
||||
{{ bisqTx.time | date:'yyyy-MM-dd HH:mm' }}
|
||||
<div class="lg-inline">
|
||||
<i class="symbol">(<app-time-since [time]="bisqTx.time / 1000" [fastRender]="true"></app-time-since>)</i>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="td-width" i18n="transaction.included-in-block|Transaction included in block">Included in block</td>
|
||||
<td>
|
||||
<a [routerLink]="['/block/' | relativeUrl, bisqTx.blockHash]" [state]="{ data: { blockHeight: bisqTx.blockHeight } }">{{ bisqTx.blockHeight }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="td-width" i18n="transaction.features|Transaction features">Features</td>
|
||||
<td>
|
||||
<app-tx-features *ngIf="tx; else loadingTx" [tx]="tx"></app-tx-features>
|
||||
<ng-template #loadingTx>
|
||||
<span class="skeleton-loader"></span>
|
||||
</ng-template>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<table class="table table-borderless table-striped">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="td-width" i18n="BSQ burnt amount">Burnt amount</td>
|
||||
<td>
|
||||
{{ bisqTx.burntFee / 100 | number: '1.2-2' }} <span class="symbol">BSQ</span> <span class="fiat"><app-bsq-amount [bsq]="bisqTx.burntFee" [forceFiat]="true" [green]="true"></app-bsq-amount></span>
|
||||
</tr>
|
||||
<tr>
|
||||
<td i18n="transaction.fee-per-vbyte|Transaction fee">Fee per vByte</td>
|
||||
<td *ngIf="!isLoadingTx; else loadingTxFee">
|
||||
{{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} <span class="symbol">sat/vB</span>
|
||||
|
||||
<app-tx-fee-rating [tx]="tx"></app-tx-fee-rating>
|
||||
</td>
|
||||
<ng-template #loadingTxFee>
|
||||
<td><span class="skeleton-loader"></span></td>
|
||||
</ng-template>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<h2 i18n="transaction.details">Details</h2>
|
||||
|
||||
|
||||
<app-bisq-transaction-details [tx]="bisqTx"></app-bisq-transaction-details>
|
||||
|
||||
<br>
|
||||
|
||||
<h2 i18n="transaction.inputs-and-outputs|Transaction inputs and outputs">Inputs & Outputs</h2>
|
||||
|
||||
<app-bisq-transfers [tx]="bisqTx"></app-bisq-transfers>
|
||||
|
||||
<br>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<h2 i18n="transaction.details">Details</h2>
|
||||
|
||||
|
||||
<app-bisq-transaction-details [tx]="bisqTx"></app-bisq-transaction-details>
|
||||
|
||||
<br>
|
||||
|
||||
<h2 i18n="transaction.inputs-and-outputs|Transaction inputs and outputs">Inputs & Outputs</h2>
|
||||
|
||||
<app-bisq-transfers [tx]="bisqTx"></app-bisq-transfers>
|
||||
|
||||
<br>
|
||||
|
||||
</ng-template>
|
||||
|
||||
<ng-template [ngIf="isLoading && !error">
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@import "./../../components/transaction/transaction.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){
|
||||
|
|
|
@ -91,5 +91,7 @@ pre {
|
|||
padding: 30px;
|
||||
code{
|
||||
background-color: transparent;
|
||||
white-space: break-spaces;
|
||||
word-break: break-all;
|
||||
}
|
||||
}
|
|
@ -116,7 +116,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td i18n="block.header">Block Header Hex</td>
|
||||
<td><a target="_blank" href="/api/block/{{block.id}}/header"><fa-icon [icon]="['fas', 'external-link-alt']" [fixedWidth]="true"></fa-icon></a></td>
|
||||
<td><a target="_blank" href="{{ network === '' ? '' : '/' + network }}/api/block/{{block.id}}/header"><fa-icon [icon]="['fas', 'external-link-alt']" [fixedWidth]="true"></fa-icon></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="blocks-container" *ngIf="loadingBlocks">
|
||||
<div class="blocks-container" *ngIf="(loadingBlocks$ | async) === false; else loadingBlocksTemplate">
|
||||
<div *ngFor="let block of blocks; let i = index; trackBy: trackByBlocksFn" >
|
||||
<div class="text-center bitcoin-block mined-block" id="bitcoin-block-{{ block.height }}" [ngStyle]="blockStyles[i]">
|
||||
<a [routerLink]="['/block/' | relativeUrl, block.id]" [state]="{ data: { block: block } }" class="blockLink"> </a>
|
||||
|
@ -25,11 +25,13 @@
|
|||
<div [hidden]="!arrowVisible" id="arrow-up" [style.transition]="transition" [ngStyle]="{'left': arrowLeftPx + 'px' }"></div>
|
||||
</div>
|
||||
|
||||
<div class="blocks-container" *ngIf="!loadingBlocks">
|
||||
<div class="flashing">
|
||||
<div *ngFor="let block of blocks; let i = index; trackBy: trackByBlocksFn" >
|
||||
<div class="text-center bitcoin-block mined-block" id="bitcoin-block-{{ block.height }}" [ngStyle]="blockStyles[i]"></div>
|
||||
<ng-template #loadingBlocksTemplate >
|
||||
<div class="blocks-container">
|
||||
<div class="flashing">
|
||||
<div *ngFor="let block of emptyBlocks; let i = index; trackBy: trackByBlocksFn" >
|
||||
<div class="text-center bitcoin-block mined-block" id="bitcoin-block-{{ block.height }}" [ngStyle]="emptyBlockStyles[i]"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ng-template>
|
||||
|
||||
|
|
|
@ -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<boolean>;
|
||||
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++) {
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
<button ngbDropdownItem *ngIf="env.SIGNET_ENABLED" class="signet" [class.active]="network.val === 'signet'" routerLink="/signet"><img src="./resources/signet-logo.png" style="width: 30px;" class="mr-1"> Signet</button>
|
||||
<button ngbDropdownItem *ngIf="env.TESTNET_ENABLED" class="testnet" [class.active]="network.val === 'testnet'" routerLink="/testnet"><img src="./resources/testnet-logo.png" style="width: 30px;" class="mr-1"> Testnet</button>
|
||||
<h6 *ngIf="env.LIQUID_ENABLED || env.BISQ_ENABLED" class="dropdown-header" i18n="master-page.layer2-networks-header">Layer 2 Networks</h6>
|
||||
<a href="https://bisq.markets" ngbDropdownItem *ngIf="env.BISQ_ENABLED && env.OFFICIAL_MEMPOOL_SPACE" class="mainnet"><img src="./resources/bisq-logo.png" style="width: 30px;" class="mr-1"> Bisq</a>
|
||||
<button ngbDropdownItem *ngIf="env.BISQ_ENABLED && !env.OFFICIAL_MEMPOOL_SPACE" class="mainnet" [class.active]="network.val === 'bisq'" routerLink="/bisq"><img src="./resources/bisq-logo.png" style="width: 30px;" class="mr-1"> Bisq</button>
|
||||
<a href="https://bisq.markets" ngbDropdownItem *ngIf="env.BISQ_ENABLED && env.OFFICIAL_MEMPOOL_SPACE" class="bisq"><img src="./resources/bisq-logo.png" style="width: 30px;" class="mr-1"> Bisq</a>
|
||||
<button ngbDropdownItem *ngIf="env.BISQ_ENABLED && !env.OFFICIAL_MEMPOOL_SPACE" class="bisq" [class.active]="network.val === 'bisq'" routerLink="/bisq"><img src="./resources/bisq-logo.png" style="width: 30px;" class="mr-1"> Bisq</button>
|
||||
<a href="https://liquid.network" ngbDropdownItem *ngIf="env.LIQUID_ENABLED && env.OFFICIAL_MEMPOOL_SPACE" class="liquid" [class.active]="network.val === 'liquid'"><img src="./resources/liquid-logo.png" style="width: 30px;" class="mr-1"> Liquid</a>
|
||||
<button ngbDropdownItem *ngIf="env.LIQUID_ENABLED && !env.OFFICIAL_MEMPOOL_SPACE" class="liquid" [class.active]="network.val === 'liquid'" routerLink="/liquid"><img src="./resources/liquid-logo.png" style="width: 30px;" class="mr-1"> Liquid</button>
|
||||
</div>
|
||||
|
|
|
@ -1,47 +1,51 @@
|
|||
<div class="mempool-blocks-container">
|
||||
<div class="flashing" *ngIf="(timeAvg$ | async) as timeAvg;">
|
||||
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolBlocks$ | async" let-i="index" [ngForTrackBy]="trackByFn">
|
||||
<div class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolBlockStyles[i]">
|
||||
<a [routerLink]="['/mempool-block/' | relativeUrl, i]" class="blockLink"> </a>
|
||||
<div class="block-body">
|
||||
<div class="fees">
|
||||
~{{ projectedBlock.medianFee | number:feeRounding }} <span i18n="shared.sat-vbyte|sat/vB">sat/vB</span>
|
||||
</div>
|
||||
<div class="fee-span">
|
||||
{{ projectedBlock.feeRange[0] | number:feeRounding }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:feeRounding }} <span i18n="shared.sat-vbyte|sat/vB">sat/vB</span>
|
||||
</div>
|
||||
<div class="block-size" [innerHTML]="projectedBlock.blockSize | bytes: 2">‎</div>
|
||||
<div class="transaction-count">
|
||||
<ng-container *ngTemplateOutlet="projectedBlock.nTx === 1 ? transactionsSingular : transactionsPlural; context: {$implicit: projectedBlock.nTx | number}"></ng-container>
|
||||
<ng-template #transactionsSingular let-i i18n="shared.transaction-count.singular">{{ i }} transaction</ng-template>
|
||||
<ng-template #transactionsPlural let-i i18n="shared.transaction-count.plural">{{ i }} transactions</ng-template>
|
||||
</div>
|
||||
<div class="time-difference" *ngIf="projectedBlock.blockVSize <= stateService.blockVSize; else mergedBlock">
|
||||
<ng-template [ngIf]="network === 'liquid'" [ngIfElse]="timeDiffMainnet">
|
||||
<app-time-until [time]="(1 * i) + now + 61000" [fastRender]="false" [fixedRender]="true"></app-time-until>
|
||||
</ng-template>
|
||||
<ng-template #timeDiffMainnet>
|
||||
<app-time-until [time]="(timeAvg * i) + now + timeAvg" [fastRender]="false" [fixedRender]="true" [forceFloorOnTimeIntervals]="['hour']"></app-time-until>
|
||||
</ng-template>
|
||||
</div>
|
||||
<ng-template #mergedBlock>
|
||||
<div class="time-difference">
|
||||
<b>(<ng-container *ngTemplateOutlet="blocksPlural; context: {$implicit: projectedBlock.blockVSize / stateService.blockVSize | ceil }"></ng-container>)</b>
|
||||
<ng-template #blocksPlural let-i i18n="shared.blocks">{{ i }} <span class="shared-block">blocks</span></ng-template>
|
||||
<ng-container *ngIf="(loadingBlocks$ | async) === false; else loadingBlocks">
|
||||
<div class="mempool-blocks-container" *ngIf="(timeAvg$ | async) as timeAvg;">
|
||||
<div class="flashing">
|
||||
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolBlocks$ | async" let-i="index" [ngForTrackBy]="trackByFn">
|
||||
<div class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolBlockStyles[i]">
|
||||
<a [routerLink]="['/mempool-block/' | relativeUrl, i]" class="blockLink"> </a>
|
||||
<div class="block-body">
|
||||
<div class="fees">
|
||||
~{{ projectedBlock.medianFee | number:feeRounding }} <span i18n="shared.sat-vbyte|sat/vB">sat/vB</span>
|
||||
</div>
|
||||
</ng-template>
|
||||
<div class="fee-span">
|
||||
{{ projectedBlock.feeRange[0] | number:feeRounding }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:feeRounding }} <span i18n="shared.sat-vbyte|sat/vB">sat/vB</span>
|
||||
</div>
|
||||
<div class="block-size" [innerHTML]="projectedBlock.blockSize | bytes: 2">‎</div>
|
||||
<div class="transaction-count">
|
||||
<ng-container *ngTemplateOutlet="projectedBlock.nTx === 1 ? transactionsSingular : transactionsPlural; context: {$implicit: projectedBlock.nTx | number}"></ng-container>
|
||||
<ng-template #transactionsSingular let-i i18n="shared.transaction-count.singular">{{ i }} transaction</ng-template>
|
||||
<ng-template #transactionsPlural let-i i18n="shared.transaction-count.plural">{{ i }} transactions</ng-template>
|
||||
</div>
|
||||
<div class="time-difference" *ngIf="projectedBlock.blockVSize <= stateService.blockVSize; else mergedBlock">
|
||||
<ng-template [ngIf]="network === 'liquid'" [ngIfElse]="timeDiffMainnet">
|
||||
<app-time-until [time]="(1 * i) + now + 61000" [fastRender]="false" [fixedRender]="true"></app-time-until>
|
||||
</ng-template>
|
||||
<ng-template #timeDiffMainnet>
|
||||
<app-time-until [time]="(timeAvg * i) + now + timeAvg" [fastRender]="false" [fixedRender]="true" [forceFloorOnTimeIntervals]="['hour']"></app-time-until>
|
||||
</ng-template>
|
||||
</div>
|
||||
<ng-template #mergedBlock>
|
||||
<div class="time-difference">
|
||||
<b>(<ng-container *ngTemplateOutlet="blocksPlural; context: {$implicit: projectedBlock.blockVSize / stateService.blockVSize | ceil }"></ng-container>)</b>
|
||||
<ng-template #blocksPlural let-i i18n="shared.blocks">{{ i }} <span class="shared-block">blocks</span></ng-template>
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
<span class="animated-border"></span>
|
||||
</div>
|
||||
<span class="animated-border"></span>
|
||||
</div>
|
||||
</ng-template>
|
||||
</ng-template>
|
||||
</div>
|
||||
<div *ngIf="arrowVisible" id="arrow-up" [ngStyle]="{'right': rightPosition + 75 + 'px', transition: transition }"></div>
|
||||
</div>
|
||||
<div *ngIf="arrowVisible" id="arrow-up" [ngStyle]="{'right': rightPosition + 75 + 'px', transition: transition }"></div>
|
||||
</div>
|
||||
</ng-container>
|
||||
|
||||
<div class="mempool-blocks-container" *ngIf="loadingMempoolBlocks === true">
|
||||
<div class="flashing">
|
||||
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolBlocks" let-i="index" [ngForTrackBy]="trackByFn">
|
||||
<div class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolBlockStyles[i]"></div>
|
||||
</ng-template>
|
||||
<ng-template #loadingBlocks>
|
||||
<div class="mempool-blocks-container">
|
||||
<div class="flashing">
|
||||
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolEmptyBlocks" let-i="index" [ngForTrackBy]="trackByFn">
|
||||
<div class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolEmptyBlockStyles[i]"></div>
|
||||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ng-template>
|
||||
|
|
|
@ -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<MempoolBlock[]>;
|
||||
timeAvg$: Observable<number>;
|
||||
loadingBlocks$: Observable<boolean>;
|
||||
|
||||
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
|
||||
|
|
|
@ -218,7 +218,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td i18n="transaction.hex">Transaction Hex</td>
|
||||
<td><a target="_blank" href="/api/tx/{{ txId }}/hex"><fa-icon [icon]="['fas', 'external-link-alt']" [fixedWidth]="true"></fa-icon></a></td>
|
||||
<td><a target="_blank" href="{{ network === '' ? '' : '/' + network }}/api/tx/{{ txId }}/hex"><fa-icon [icon]="['fas', 'external-link-alt']" [fixedWidth]="true"></fa-icon></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -10,6 +10,9 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col" *ngIf="(network$ | async) !== 'liquid'">
|
||||
<ng-container *ngTemplateOutlet="difficultyEpoch"></ng-container>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
|
@ -24,9 +27,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col" *ngIf="(network$ | async) !== 'liquid'">
|
||||
<ng-container *ngTemplateOutlet="difficultyEpoch"></ng-container>
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template #expanded>
|
||||
<div class="col card-wrapper" *ngIf="(network$ | async) !== 'liquid'">
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -2375,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>سياسة الخصوصية</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -3585,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>تحويلة سلسلة ارقام سداسية عشرية</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
|
|
@ -1583,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Obecné</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1933,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Vrátí podrobnosti o nastavení obtížnosti.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2046,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Vrátí hexadecimálně zakódovanou hlavičku bloku.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2372,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Ochrana osobních údajů</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2850,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Hlavička bloku Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2996,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>bloky<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3012,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blok<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3251,6 +3258,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Právě teď</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3262,6 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/> před</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3321,6 +3330,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Po <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3380,6 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>V ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3575,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Transakční Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3898,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Transakční poplatky</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4016,6 +4029,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Změna obtížnosti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4024,6 +4038,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Zbývá</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4036,6 +4051,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Odhad</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4048,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Předchozí</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4056,6 +4073,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Současné období</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4068,6 +4086,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> rok</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4075,6 +4094,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> roky</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4082,6 +4102,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> měsíc</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4089,6 +4110,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> měsíce</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4096,6 +4118,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> týden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4103,6 +4126,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> týdny</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4110,6 +4134,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> den</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4117,6 +4142,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> dny</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4124,6 +4150,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> hodina</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4131,6 +4158,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> hodiny</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4138,6 +4166,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minuta</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4145,6 +4174,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minuty</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4152,6 +4182,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> sekunda</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4159,6 +4190,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> sekundy</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -2375,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Datenschutzbestimmungen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -3585,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Transaktion Hexadezimal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
|
|
@ -2375,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Política de Privacidad</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -3585,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Hex de Transacción</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
|
|
@ -1148,7 +1148,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e5026f6e33b13e7d8185288b9691d006a139d36d">
|
||||
<source>Fee per vByte</source>
|
||||
<target>Siirtokulu per vBitti</target>
|
||||
<target>Siirtokulu per vByte</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction/bisq-transaction.component.html</context>
|
||||
<context context-type="linenumber">64,66</context>
|
||||
|
@ -2375,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Tietosuojakäytäntö</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2755,7 +2756,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="855f852e5642a1279605465df0cbbe78c2622648">
|
||||
<source>Based on average native segwit transaction of 140 vBytes</source>
|
||||
<target>Perustuu keskimääräiseen natiiviin 140 vBittiseen segwit-siirtotapahtumaan</target>
|
||||
<target>Perustuu keskimääräiseen natiiviin 140 vByte segwit-siirtotapahtumaan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">46,48</context>
|
||||
|
@ -2940,7 +2941,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0ae5beecbbfc96bcdf4f9a637aa72687e81ef5e1">
|
||||
<source>Tx vBytes per second:</source>
|
||||
<target>Tx vBittiä per sekuntti:</target>
|
||||
<target>Tx vByte:ä per sekuntti:</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">5,7</context>
|
||||
|
@ -3000,7 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>lohkoa<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> lohkoa<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3017,7 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>lohkoa<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> lohkoa<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3230,7 +3231,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="75c20c8a9cd9723d45bee0230dd582d7c2e4ecbc">
|
||||
<source>Mempool by vBytes (sat/vByte)</source>
|
||||
<target>Mempool vBitteinä (sat/vBitti)</target>
|
||||
<target>Mempool vByte:inä (sat/vByte)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -3248,7 +3249,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="dc15ec15e6206b40133f2c1b06095ce75aaee1ef">
|
||||
<source>Transaction vBytes per second (vB/s)</source>
|
||||
<target>Siirtotapahtuma vBittiä sekunnissa (vB/s)</target>
|
||||
<target>Siirtotapahtuma vByte:ä sekunnissa (vB/s)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context>
|
||||
<context context-type="linenumber">53</context>
|
||||
|
@ -3269,7 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/>sitten</target>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/> sitten</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3389,7 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>~<x equiv-text="dateStrings.i18nMinute" id="DATE"/> sisällä</target>
|
||||
<target>~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3585,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Transaktio heksa</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
|
|
@ -75,6 +75,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.pagination.first">
|
||||
<source>««</source>
|
||||
<target>««</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
|
||||
<context context-type="linenumber">404</context>
|
||||
|
@ -82,6 +83,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.pagination.previous">
|
||||
<source>«</source>
|
||||
<target>«</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
|
||||
<context context-type="linenumber">404</context>
|
||||
|
@ -89,6 +91,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.pagination.next">
|
||||
<source>»</source>
|
||||
<target>»</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
|
||||
<context context-type="linenumber">404</context>
|
||||
|
@ -96,6 +99,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.pagination.last">
|
||||
<source>»»</source>
|
||||
<target>»»</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
|
||||
<context context-type="linenumber">404</context>
|
||||
|
@ -175,6 +179,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.increment-hours">
|
||||
<source>Increment hours</source>
|
||||
<target>Incrémenter les heures</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -182,6 +187,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.decrement-hours">
|
||||
<source>Decrement hours</source>
|
||||
<target>Décrémenter les heures</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -189,6 +195,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.increment-minutes">
|
||||
<source>Increment minutes</source>
|
||||
<target>Incrémenter les minutes</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -196,6 +203,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.decrement-minutes">
|
||||
<source>Decrement minutes</source>
|
||||
<target>Décrémenter les minutes</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -203,6 +211,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.SS">
|
||||
<source>SS</source>
|
||||
<target>SS</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -210,6 +219,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.seconds">
|
||||
<source>Seconds</source>
|
||||
<target>Secondes</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -217,6 +227,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.increment-seconds">
|
||||
<source>Increment seconds</source>
|
||||
<target>Incrémenter les secondes</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -224,6 +235,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.decrement-seconds">
|
||||
<source>Decrement seconds</source>
|
||||
<target>Décrémenter les secondes</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -231,6 +243,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.PM">
|
||||
<source><x id="INTERPOLATION"/></source>
|
||||
<target><x id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -238,6 +251,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.AM">
|
||||
<source><x id="INTERPOLATION"/></source>
|
||||
<target><x id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -1291,6 +1305,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3275831985256202873">
|
||||
<source>Reimbursement request</source>
|
||||
<target>Demande de remboursement</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
|
@ -1298,6 +1313,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1226904538495857889">
|
||||
<source>Transfer BSQ</source>
|
||||
<target>Transférer BSQ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
|
@ -1305,6 +1321,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4545041448523656285">
|
||||
<source>Unlock</source>
|
||||
<target>Déverrouillé</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
|
@ -1312,6 +1329,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8694527859973232423">
|
||||
<source>Vote reveal</source>
|
||||
<target>Révéle du vote</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
|
@ -1343,6 +1361,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bisq-graph-trades">
|
||||
<source>Trades</source>
|
||||
<target>Echange</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
|
||||
<context context-type="linenumber">90</context>
|
||||
|
@ -1350,6 +1369,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bisq-graph-volume">
|
||||
<source>Volume</source>
|
||||
<target>Volume</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
|
@ -1357,6 +1377,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
|
||||
<source>The Mempool Open Source Project</source>
|
||||
<target>Le Projet Open Source Mempool</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -1413,6 +1434,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1405c5f1a9834338ff13442c550927ab7144fdc8">
|
||||
<source>Community Integrations</source>
|
||||
<target>Intégrations communautaires</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">71,74</context>
|
||||
|
@ -1421,6 +1443,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb">
|
||||
<source>Community Alliances</source>
|
||||
<target>Alliances communautaires</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">142,144</context>
|
||||
|
@ -1429,6 +1452,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2">
|
||||
<source>Project Contributors</source>
|
||||
<target>Contributeurs au projet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">157,159</context>
|
||||
|
@ -1437,6 +1461,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436">
|
||||
<source>Project Maintainers</source>
|
||||
<target>Mainteneurs de projet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">171,173</context>
|
||||
|
@ -1466,6 +1491,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<target>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -1474,6 +1500,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<target>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
|
@ -1509,6 +1536,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18">
|
||||
<source><x ctype="x-i" equiv-text="<i>" id="START_ITALIC_TEXT"/>The number of transactions on this address exceeds the Electrum server limit<x ctype="x-i" equiv-text="</i>" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/> Consider viewing this address on the official Mempool website instead: </source>
|
||||
<target><x ctype="x-i" equiv-text="<i>" id="START_ITALIC_TEXT"/>Le nombre de transactions sur cette adresse dépasse la limite du serveur Electrum<x ctype="x-i" equiv-text="</i>" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>Envisagez plutôt de consulter cette adresse sur le site web officiel de Mempool:</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">127,130</context>
|
||||
|
@ -1555,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Général</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1564,6 +1593,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
|
||||
<source>Endpoint</source>
|
||||
<target>Point de terminaison</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">19,20</context>
|
||||
|
@ -1728,6 +1758,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
|
||||
<source>Description</source>
|
||||
<target>Description</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -1903,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Renvoie des détails sur l'ajustement de la difficulté.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -1928,6 +1960,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2">
|
||||
<source>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 <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (see below).</source>
|
||||
<target>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<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>(voir ci-dessous). </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">68,69</context>
|
||||
|
@ -2007,6 +2040,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="194d480219559b855b01ea58459066e3c63acdb2">
|
||||
<source>Returns details about a block. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="<ng-container *ngIf="network.val === 'liquid'">" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/> and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.</source>
|
||||
<target>Renvoie des détails sur un bloc. Champs disponibles : <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>hauteur<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>horodatage<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>taille<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>poids<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="<ng-container *ngIf="network.val === 'liquid'">" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>preuve<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/> et <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blockhashprécédent<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">211,212</context>
|
||||
|
@ -2014,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Renvoie l'en-tête de bloc codé en hexadécimal.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2037,6 +2072,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2c00fbdcce9d6291c3b04c67979f9694be23f28">
|
||||
<source>Returns the confirmation status of a block. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>in_best_chain<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (boolean, false for orphaned blocks), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>next_best<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (the hash of the next block, only available for blocks in the best chain).</source>
|
||||
<target>Renvoie l'état de confirmation d'un bloc. Champs disponibles : <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>in_best_chain<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (booléen, faux pour les blocs orphelins), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>next_best<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (le hachage du bloc suivant, disponible uniquement pour les blocs de la meilleure chaîne).</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">283,284</context>
|
||||
|
@ -2060,6 +2096,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3e08815110b2e5ce8aa7256ed05a2faf6dbb7077">
|
||||
<source>Returns the transaction at index <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:index<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> within the specified block.</source>
|
||||
<target>Renvoie la transaction à l'index <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:indice<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> dans le bloc spécifié.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">342,343</context>
|
||||
|
@ -2075,6 +2112,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1126cb2e03d0371d03b57047052d4ff1b6556753">
|
||||
<source>Returns a list of transactions in the block (up to 25 transactions beginning at <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>start_index<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>). Transactions returned here do not have the <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> field, since all the transactions share the same block and confirmation status.</source>
|
||||
<target>Renvoie une liste des transactions dans le bloc (jusqu'à 25 transactions commençant à <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>start_index<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>). Les transactions retournées ici n'ont pas le champ de<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>statut<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, car toutes les transactions partagent le même statut de blocage et de confirmation.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">381,382</context>
|
||||
|
@ -2082,6 +2120,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f8380186899495340cbfe7fb836ba664fb4b52af">
|
||||
<source>Returns the 10 newest blocks starting at the tip or at <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:start_height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> if specified.</source>
|
||||
<target>Renvoie les 10 blocs les plus récents en commençant par la pointe ou à <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:start_height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>si spécifié. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">401,402</context>
|
||||
|
@ -2099,6 +2138,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
|
||||
<source>Returns current mempool as projected blocks.</source>
|
||||
<target>Renvoie le mempool actuel sous forme de blocs projetés. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">426,428</context>
|
||||
|
@ -2108,6 +2148,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
|
||||
<source>Returns our currently suggested fees for new transactions.</source>
|
||||
<target>Renvoie nos frais actuellement suggérés pour les nouvelles transactions.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">442,444</context>
|
||||
|
@ -2203,6 +2244,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f">
|
||||
<source>Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.</source>
|
||||
<target>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.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">632,635</context>
|
||||
|
@ -2232,6 +2274,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
|
||||
<source>Returns the ancestors and the best descendant fees for a transaction.</source>
|
||||
<target>Renvoie les ancêtres et les meilleurs frais de descendants pour une transaction.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">676,678</context>
|
||||
|
@ -2257,6 +2300,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d51106cc898981e9862d35a4db40796f0cf464f8">
|
||||
<source>Returns a merkle inclusion proof for the transaction using <x ctype="x-a" equiv-text="<a href="https://bitcoin.org/en/glossary/merkle-block">" id="START_LINK"/>bitcoind's merkleblock<x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/> format.</source>
|
||||
<target>Renvoie une preuve d'inclusion merkle pour la transaction en utilisant <x ctype="x-a" equiv-text="<a href="https://bitcoin.org/en/glossary/merkle-block">" id="START_LINK"/>le format merkleblock de bitcoind <x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/>.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">730,731</context>
|
||||
|
@ -2272,6 +2316,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fe9a40b2ff9674b4ab7d82624ffed340c9ee5b89">
|
||||
<source>Returns the spending status of a transaction output. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>spent<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>vin<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional, the status of the spending tx).</source>
|
||||
<target>Renvoie le statut de dépense d'une sortie de transaction. Champs disponibles : <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>dépensé<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (booléen), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optionnel), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>vin<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optionnel), et <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>statut<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (facultatif, le statut de la dépense tx).</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">769,770</context>
|
||||
|
@ -2295,6 +2340,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e784cfa5833e7b54d4dfc723fabde94f66ebde3">
|
||||
<source>Returns the confirmation status of a transaction. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>confirmed<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block_height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block_hash<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional).</source>
|
||||
<target>Renvoie le statut de confirmation d'une transaction. Champs disponibles :<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>confirmé<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (booléen), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block_height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optionnel), et <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block_hash<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optionnel).</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">826,827</context>
|
||||
|
@ -2302,6 +2348,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="01723473ecc53cab60ef1b37dc39d8941994d56f">
|
||||
<source>Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> will be returned on success.</source>
|
||||
<target>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 <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> sera renvoyé en cas de succès.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">846,847</context>
|
||||
|
@ -2319,6 +2366,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a706b1ded7506620b153dbcdea8108e6691bbbd9">
|
||||
<source>Default push: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> to express what you want pushed. Available: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>mempool-blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.<x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>Push transactions related to address: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 'track-address': '3PbJ...bF9B' <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> to receive all new transactions containing that address as input or output. Returns an array of transactions. <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>address-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> for new mempool transactions, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> for new block confirmed transactions.</source>
|
||||
<target>Pousser par défaut : <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> tpour exprimer ce que vous voulez poussé. Disponible: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blocs<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blocs-mempool<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, et <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.<x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>Transactions push liées à l'adresse : <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 'track-address': '3PbJ...bF9B' <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> pour recevoir toutes les nouvelles transactions contenant cette adresse en entrée ou en sortie. Renvoie un tableau de transactions. <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>address-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> pour les nouvelles transactions mempool, et <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> pour les nouvelles transactions confirmées en bloc.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">865,866</context>
|
||||
|
@ -2327,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Politique de confidentialité</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2356,6 +2405,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
|
||||
<source>Code Example</source>
|
||||
<target>Exemple de code</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -2372,6 +2422,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
|
||||
<source>Install Package</source>
|
||||
<target>Paquet d'installation</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -2380,6 +2431,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
|
||||
<source>Response</source>
|
||||
<target>Réponse</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
|
@ -2388,6 +2440,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b">
|
||||
<source>Asset</source>
|
||||
<target>Actif</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
|
@ -2481,6 +2534,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
|
@ -2764,6 +2818,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fd04710d1a54d46cd1b81a13fc98e3d561b92141">
|
||||
<source>Bits</source>
|
||||
<target>Bits</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
|
@ -2772,6 +2827,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8">
|
||||
<source>Merkle root</source>
|
||||
<target>racine de Merkle</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
|
@ -2780,6 +2836,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="25148835d92465353fc5fe8897c27d5369978e5a">
|
||||
<source>Difficulty</source>
|
||||
<target>Difficulté</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">110,113</context>
|
||||
|
@ -2788,6 +2845,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a6bb63d98a8a67689070a79ccf13960c25b572ef">
|
||||
<source>Nonce</source>
|
||||
<target>Nonce</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">114,116</context>
|
||||
|
@ -2796,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Hex d'en-tête de bloc </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2942,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocs<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -2958,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>bloc<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3112,6 +3173,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
|
||||
<source>Sponsor</source>
|
||||
<target>Parrainer</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -3196,6 +3258,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Juste maintenant</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3207,6 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/> depuis</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3266,6 +3330,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Après <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3325,6 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>Dans ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3466,6 +3532,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3e322ffba6477484e0dd2e65650fdd70322ea6d0">
|
||||
<source>Fee rate</source>
|
||||
<target>Taux de frais</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">156,160</context>
|
||||
|
@ -3479,6 +3546,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="dd230222e3ae689913445ce93b6ae3f7cce7458b">
|
||||
<source>Descendant</source>
|
||||
<target>Descendant</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">163,165</context>
|
||||
|
@ -3488,6 +3556,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8c16167a5d7c96d14ff280b09de312d18d5e2511">
|
||||
<source>Ancestor</source>
|
||||
<target>Ancêtre</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">177,179</context>
|
||||
|
@ -3517,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Hex de transaction</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3563,6 +3633,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="eb1737af67381ce6f0b347038bb4c65b3deb84be">
|
||||
<source>Effective fee rate</source>
|
||||
<target>Taux de frais effectif</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">342,345</context>
|
||||
|
@ -3725,6 +3796,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f85c05147b720576e50336cf26f63d3b05601699">
|
||||
<source>This transaction saved <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% on fees by using native SegWit-Bech32</source>
|
||||
<target>Cette transaction a économisé <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% sur les frais en utilisant SegWit-Bech32 natif</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
|
@ -3751,6 +3823,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="975f46d122f2ca0a187308399a58b44d61ef08eb">
|
||||
<source>This transaction saved <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% on fees by using SegWit and could save <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION_1"/>% more by fully upgrading to native SegWit-Bech32</source>
|
||||
<target>Cette transaction a économisé <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% sur les frais en utilisant SegWit et pourrait économiser <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION_1"/>% plus en effectuant une mise à niveau complète vers SegWit-Bech32 natif</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -3759,6 +3832,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1be04d5407059059b596f72696a3d1704ce9c0ef">
|
||||
<source>This transaction could save <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION"/>% on fees by upgrading to native SegWit-Bech32 or <x equiv-text="{{ segwitGains.potentialP2shGains * 100 | number: '1.0-0' }}" id="INTERPOLATION_1"/>% by upgrading to SegWit-P2SH</source>
|
||||
<target>Cette transaction pourrait économiser <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION"/>% sur les frais en passant à SegWit-Bech32 natif ou <x equiv-text="{{ segwitGains.potentialP2shGains * 100 | number: '1.0-0' }}" id="INTERPOLATION_1"/>% en passant à SegWit-P2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -3809,6 +3883,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="9d92d02835569b64f0dce58e81a0d22dd798f6e5">
|
||||
<source>Only ~<x equiv-text="{{ medianFeeNeeded | number : '1.1-1' }}" id="INTERPOLATION"/> sat/vB was needed to get into this block</source>
|
||||
<target>Seulement ~<x equiv-text="{{ medianFeeNeeded | number : '1.1-1' }}" id="INTERPOLATION"/> sat/vB était nécessaire pour entrer dans ce bloc</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
|
@ -3835,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Frais de transaction</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -3953,6 +4029,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Ajustement de la difficulté</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -3961,6 +4038,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Restant</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -3973,6 +4051,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Estimation</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -3985,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Précédent</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -3993,6 +4073,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Période actuelle</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4005,6 +4086,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>année</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4012,6 +4094,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> années</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4019,6 +4102,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> mois</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4026,6 +4110,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> mois</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4033,6 +4118,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> semaine</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4040,6 +4126,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> semaine</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4047,6 +4134,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> journée</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4054,6 +4142,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>journées</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4061,6 +4150,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> heure</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4068,6 +4158,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> heures</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4075,6 +4166,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minute</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4082,6 +4174,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minutes</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4089,6 +4182,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> seconde</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4096,6 +4190,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> secondes</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
@ -4103,6 +4198,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2799825781368047816">
|
||||
<source>Transaction fee</source>
|
||||
<target>Frais de transaction</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<body>
|
||||
<trans-unit datatype="html" id="ngb.alert.close">
|
||||
<source>Close</source>
|
||||
<target>סגור</target>
|
||||
<target>סגירה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
|
@ -51,7 +51,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.datepicker.select-month">
|
||||
<source>Select month</source>
|
||||
<target>בחר חודש</target>
|
||||
<target>בחירת חודש</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
|
@ -63,7 +63,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.datepicker.select-year">
|
||||
<source>Select year</source>
|
||||
<target>בחר שנה</target>
|
||||
<target>בחירת שנה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
|
@ -259,7 +259,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.toast.close-aria">
|
||||
<source>Close</source>
|
||||
<target>סגור</target>
|
||||
<target>סגירה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context>
|
||||
<context context-type="linenumber">137</context>
|
||||
|
@ -276,7 +276,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aef0d676b15fdae8cb70fc3b089cce7399fde9da">
|
||||
<source>Search asset</source>
|
||||
<target>חפש נכס</target>
|
||||
<target>חיפוש נכס</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -285,7 +285,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="99ee4faa69cd2ea8e3678c1f557c0ff1f05aae46">
|
||||
<source>Clear</source>
|
||||
<target>נקה</target>
|
||||
<target>ניקוי</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
|
||||
<context context-type="linenumber">11,16</context>
|
||||
|
@ -307,7 +307,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4ad173c0e4010b1f25bf58e96a383edc1b59cd80">
|
||||
<source>Ticker</source>
|
||||
<target>Ticker</target>
|
||||
<target>פסנוע</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
|
||||
<context context-type="linenumber">20,21</context>
|
||||
|
@ -346,7 +346,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cf1fbcd10d4be4845152f2e10d1db9bc61dd9410">
|
||||
<source>Issuance TX</source>
|
||||
<target>הנפקת טרנזקציה</target>
|
||||
<target>פעולת הנפקה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
|
||||
<context context-type="linenumber">23,26</context>
|
||||
|
@ -436,7 +436,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="27387c2af5dcaf343a548feba821515f5dc00faa">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> transaction</source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> טרנזקציה</target>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> פעולה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
|
@ -461,7 +461,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="14779b0ce4cbc4d975a35a8fe074426228a324f3">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> transactions</source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> טרנזקציות</target>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> פעולות</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
|
@ -611,7 +611,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="add4cd82e3e38a3110fe67b3c7df56e9602644ee">
|
||||
<source>Transactions</source>
|
||||
<target>טרנזקציות</target>
|
||||
<target>פעולות</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
|
||||
<context context-type="linenumber">15,18</context>
|
||||
|
@ -656,7 +656,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0">
|
||||
<source>Bisq Trading Volume</source>
|
||||
<target>נפח עסקאות ביסק</target>
|
||||
<target>נפח מסחר Bisq</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
|
@ -792,7 +792,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1915fb658404dd3fa2a05f7d5fdd774ad72ef422">
|
||||
<source>View all »</source>
|
||||
<target>צפה בהכל »</target>
|
||||
<target>הצג הכל »</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
|
||||
<context context-type="linenumber">92,97</context>
|
||||
|
@ -862,7 +862,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2a30a4cdb123a03facc5ab8c5b3e6d8b8dbbc3d4">
|
||||
<source>BSQ statistics</source>
|
||||
<target>סטטיסטיקת BSQ</target>
|
||||
<target>סטטיסטיקות BSQ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
|
@ -888,7 +888,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3218e6768d0d5fbc69d4931819e21451c89ba8ed">
|
||||
<source>Minted amount</source>
|
||||
<target>Minted amount</target>
|
||||
<target>כמות שהוטבעה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
@ -901,7 +901,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="32377aae07f946d943f9361c8e518f714988c619">
|
||||
<source>Burnt amount</source>
|
||||
<target>Burnt amount</target>
|
||||
<target>כמות שרופה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
|
@ -935,7 +935,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fb5b5aec9a6add4912de64b7bbc55884cc7f8e3a">
|
||||
<source>Unspent TXOs</source>
|
||||
<target>פלטי טרנזקציות שלא בוזבזו</target>
|
||||
<target>פלטי פעולה שלא בוזבזו</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
|
@ -948,7 +948,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0f8a41c901cd606bd3389d8a022cee193264f20b">
|
||||
<source>Spent TXOs</source>
|
||||
<target>פלטי טרנזקציות שבוזבזו</target>
|
||||
<target>פלטי פעולה שבוזבזו</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">32</context>
|
||||
|
@ -1103,7 +1103,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b59ea65c89a5ae15b787d8318fdad9edd6fec243">
|
||||
<source>Transaction</source>
|
||||
<target>טרנזקציה</target>
|
||||
<target>פעולה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction/bisq-transaction.component.html</context>
|
||||
<context context-type="linenumber">12,15</context>
|
||||
|
@ -1197,7 +1197,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bisq.transaction.browser-title">
|
||||
<source>Transaction: <x equiv-text="this.txId" id="INTERPOLATION"/></source>
|
||||
<target>טרנזקציה: <x equiv-text="this.txId" id="INTERPOLATION"/></target>
|
||||
<target>פעולה: <x equiv-text="this.txId" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction/bisq-transaction.component.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
|
@ -1209,7 +1209,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
|
||||
<source>BSQ Transactions</source>
|
||||
<target>טרנזקציות BSQ</target>
|
||||
<target>פעולות BSQ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
|
@ -1217,7 +1217,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="94c248797dd2b6af49068cb49c3b4bc26bec6a16">
|
||||
<source>TXID</source>
|
||||
<target>מזהה טרנזקציה</target>
|
||||
<target>מזהה פעולה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
|
||||
<context context-type="linenumber">18,19</context>
|
||||
|
@ -1273,7 +1273,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1899519213652410949">
|
||||
<source>Lockup</source>
|
||||
<target>נעל</target>
|
||||
<target>נעילה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
|
@ -1281,7 +1281,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="450749685636583691">
|
||||
<source>Pay trade fee</source>
|
||||
<target>שלם עמלת עסקה</target>
|
||||
<target>תשלום עמלת עסקה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">36</context>
|
||||
|
@ -1313,7 +1313,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1226904538495857889">
|
||||
<source>Transfer BSQ</source>
|
||||
<target>העבר BSQ</target>
|
||||
<target>העברת BSQ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
|
@ -1321,7 +1321,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4545041448523656285">
|
||||
<source>Unlock</source>
|
||||
<target>בטל נעילה</target>
|
||||
<target>ביטול נעילה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
|
@ -1329,7 +1329,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8694527859973232423">
|
||||
<source>Vote reveal</source>
|
||||
<target>חשוף הצבעה</target>
|
||||
<target>חשיפת הצבעה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
|
@ -1337,7 +1337,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bisq-transactions.filter">
|
||||
<source>Filter</source>
|
||||
<target>סנן</target>
|
||||
<target>סינון</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">56,55</context>
|
||||
|
@ -1377,6 +1377,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
|
||||
<source>The Mempool Open Source Project</source>
|
||||
<target>פרויקט הקוד פתוח של Mempool</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -1385,6 +1386,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
|
||||
<source>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.</source>
|
||||
<target>בונים מנוע מחקר ממפול ובלוקציין לקהילת הביטקוין, ממוקד על שוק העמלות העברות והאקוסיסטם ורב-שיכבתי, ללא פרסום, אלטקויינים, או מעקבים גוף שלישי.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
|
@ -1410,7 +1412,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8d0b91c3b649c0237734a2c27585ed0409451523">
|
||||
<source>Become a sponsor ❤️</source>
|
||||
<target>הצטרף כנותן חסות ❤️</target>
|
||||
<target>הצטרפו כנותני חסות ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">66,67</context>
|
||||
|
@ -1419,6 +1421,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09">
|
||||
<source>Navigate to <x ctype="x-a" equiv-text="<a href="https://mempool.space/sponsor" target="_blank">" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/> to sponsor</source>
|
||||
<target>נווטו ל-<x ctype="x-a" equiv-text="<a href="https://mempool.space/sponsor" target="_blank">" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/> לתת חסות.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -1479,7 +1482,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="9f10a0577222a7d6c35a889453fa3a794750d9c4">
|
||||
<source>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></source>
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<target>רב-חתימות <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> מתוך <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -1506,7 +1509,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> של עסקת <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<target>פעולת <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> מתוך <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">52,53</context>
|
||||
|
@ -1515,7 +1518,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0f6ada0cfb60aefd8f77f8a22349850ce186d666">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transactions</source>
|
||||
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> של <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> עסקאות</target>
|
||||
<target>פעולות <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> מתוך <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">53,54</context>
|
||||
|
@ -1533,6 +1536,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18">
|
||||
<source><x ctype="x-i" equiv-text="<i>" id="START_ITALIC_TEXT"/>The number of transactions on this address exceeds the Electrum server limit<x ctype="x-i" equiv-text="</i>" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/> Consider viewing this address on the official Mempool website instead: </source>
|
||||
<target><x ctype="x-i" equiv-text="<i>" id="START_ITALIC_TEXT"/>מספר ההעברות בכתובת זו חורג הגבלת שרת אלקטרום<x ctype="x-i" equiv-text="</i>" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/> שקול צפיית הכתובת באתר הרשמי של Mempool במקום.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">127,130</context>
|
||||
|
@ -1570,7 +1574,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f11bc15f83d9174bd27454d32977b5025a66537d">
|
||||
<source>API Service</source>
|
||||
<target>API Service</target>
|
||||
<target>שירות API</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
|
@ -1579,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>כללי</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1588,6 +1593,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
|
||||
<source>Endpoint</source>
|
||||
<target>נקודת קצה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">19,20</context>
|
||||
|
@ -1752,6 +1758,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
|
||||
<source>Description</source>
|
||||
<target>תיאור</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -1927,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>מחזיר פרטים לגבי התאמת הקושי. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -1934,7 +1942,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="9885457131a86be85a59c5366767e82c12d0a288">
|
||||
<source>Addresses</source>
|
||||
<target>Addresses</target>
|
||||
<target>כתובות</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">34,36</context>
|
||||
|
@ -1952,6 +1960,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2">
|
||||
<source>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 <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (see below).</source>
|
||||
<target>קבל את היסטורית הטרנזקציות לכתובת/סקריפטהש, ממוין עם הכי חדש קודם. מחזיר עד 50 טנזקציות בממפול פלוס ה-25 טרנזקציות הלא מאושרות הראשונות. ניתן לבקש עוד טרנזקציות מאושרות עם <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>last_seen_txid:<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (ראה למטה)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">68,69</context>
|
||||
|
@ -1983,7 +1992,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b861fd11d5aa8772acc40c5412621b6dd52378e8">
|
||||
<source>Assets</source>
|
||||
<target>Assets</target>
|
||||
<target>נכסים</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">135,137</context>
|
||||
|
@ -2031,6 +2040,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="194d480219559b855b01ea58459066e3c63acdb2">
|
||||
<source>Returns details about a block. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="<ng-container *ngIf="network.val === 'liquid'">" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/> and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.</source>
|
||||
<target>מחזירה פרטים על בלוק. שדות זמינים: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> , <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> גובה <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>גרסה <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>חותמת זמן <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> ביטים <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> נונס tx_count ,<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> גודל <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> משקל<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> , <x ctype="x-ng_container" equiv-text="<ng-container *ngIf="network.val === 'liquid'">" id="START_TAG_NG_CONTAINER"/> <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> הוכחה<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/> ו-<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>בלוקהש הקודם <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">211,212</context>
|
||||
|
@ -2038,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>מחזיר את כותרת הבלוק בקידוד הקס.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2061,6 +2072,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2c00fbdcce9d6291c3b04c67979f9694be23f28">
|
||||
<source>Returns the confirmation status of a block. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>in_best_chain<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (boolean, false for orphaned blocks), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>next_best<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (the hash of the next block, only available for blocks in the best chain).</source>
|
||||
<target>מחזירה את סטטוס האישור של בלוק. שדות זמינים: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> in_best_chain <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (בוליאני, לא נכון עבור בלוקים מיותמים), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> next_best <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (ההש של הבלוק הבא, זמין רק עבור בלוקים בשרשרת הטובה ביותר).</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">283,284</context>
|
||||
|
@ -2084,6 +2096,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3e08815110b2e5ce8aa7256ed05a2faf6dbb7077">
|
||||
<source>Returns the transaction at index <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:index<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> within the specified block.</source>
|
||||
<target>מחזירה את הטרנזקציה באינדקס <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>index: <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> בתוך הבלוק שצוין.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">342,343</context>
|
||||
|
@ -2099,6 +2112,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1126cb2e03d0371d03b57047052d4ff1b6556753">
|
||||
<source>Returns a list of transactions in the block (up to 25 transactions beginning at <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>start_index<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>). Transactions returned here do not have the <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> field, since all the transactions share the same block and confirmation status.</source>
|
||||
<target>מחזירה רשימת טרנזקציות בבלוק (עד 25 טרנזקציות המתחילות ב- <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>start_index<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>). טרנזקציות המוחזרות כאן אינן בעלות השדה <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>status <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, מכיוון שלכל טרנזקציות יש אותו בלוק ואותו סטטוס אישור.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">381,382</context>
|
||||
|
@ -2106,6 +2120,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f8380186899495340cbfe7fb836ba664fb4b52af">
|
||||
<source>Returns the 10 newest blocks starting at the tip or at <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>:start_height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> if specified.</source>
|
||||
<target>מחזירה את 10 הבלוקים החדשים ביותר המתחילים בקצה או ב- <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>start_height:<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> אם צוין.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">401,402</context>
|
||||
|
@ -2123,6 +2138,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
|
||||
<source>Returns current mempool as projected blocks.</source>
|
||||
<target>מחזירה את הממפול הנוכחי כבלוקים צפויים.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">426,428</context>
|
||||
|
@ -2132,6 +2148,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
|
||||
<source>Returns our currently suggested fees for new transactions.</source>
|
||||
<target>מחזירה את העמלות המומלצות כרגע לטרנזקציות חדשות.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">442,444</context>
|
||||
|
@ -2227,6 +2244,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f">
|
||||
<source>Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.</source>
|
||||
<target>קבל את הרשימה המלאה של txids ב- mempool כמערך. סדר ה-txids הוא שרירותי ואינו תואם bitcoind.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">632,635</context>
|
||||
|
@ -2246,7 +2264,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8a4a4b8f308aaaeae782f7c9847013348d969c2d">
|
||||
<source>Transactions</source>
|
||||
<target>Transactions</target>
|
||||
<target>פעולות</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">661,665</context>
|
||||
|
@ -2256,6 +2274,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
|
||||
<source>Returns the ancestors and the best descendant fees for a transaction.</source>
|
||||
<target>מחזירה את האבות ואת העמלות הטובים ביותר לטרנזקציה.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">676,678</context>
|
||||
|
@ -2281,6 +2300,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d51106cc898981e9862d35a4db40796f0cf464f8">
|
||||
<source>Returns a merkle inclusion proof for the transaction using <x ctype="x-a" equiv-text="<a href="https://bitcoin.org/en/glossary/merkle-block">" id="START_LINK"/>bitcoind's merkleblock<x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/> format.</source>
|
||||
<target>מחזירה הוכחת הכללה של Merkle לטרנזקציה באמצעות פורמט <x ctype="x-a" equiv-text="<a href="https://bitcoin.org/en/glossary/merkle-block">" id="START_LINK"/>merkleblock של bitcoind<x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/>.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">730,731</context>
|
||||
|
@ -2296,6 +2316,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fe9a40b2ff9674b4ab7d82624ffed340c9ee5b89">
|
||||
<source>Returns the spending status of a transaction output. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>spent<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>vin<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional, the status of the spending tx).</source>
|
||||
<target>מחזירה את מצב ההוצאה של תפוקת טרנזקציה. שדות זמינים: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> שולם <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (בוליאני), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> txid <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (אופציונלי), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> vin <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (אופציונלי), ו-<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (אופציונלי, הסטטוס שלי הטרנזקציה המשלם).</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">769,770</context>
|
||||
|
@ -2319,6 +2340,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e784cfa5833e7b54d4dfc723fabde94f66ebde3">
|
||||
<source>Returns the confirmation status of a transaction. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>confirmed<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block_height<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block_hash<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (optional).</source>
|
||||
<target>מחזירה את סטטוס האישור של הטרנזקציה. שדות זמינים: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>confirmed<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (בוליאני), <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> block_height <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (אופציונלי) ו- <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> block_hash<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> (אופציונלי).</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">826,827</context>
|
||||
|
@ -2326,6 +2348,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="01723473ecc53cab60ef1b37dc39d8941994d56f">
|
||||
<source>Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> will be returned on success.</source>
|
||||
<target>שדר טרנזקציה גולמית לרשת. יש לספק את הטרנזקציה כ-hex בגוף הבקשה. ה-<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> txid <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> יוחזר לאחר הצלחת הפעולה.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">846,847</context>
|
||||
|
@ -2343,6 +2366,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a706b1ded7506620b153dbcdea8108e6691bbbd9">
|
||||
<source>Default push: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> to express what you want pushed. Available: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>mempool-blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.<x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>Push transactions related to address: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 'track-address': '3PbJ...bF9B' <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> to receive all new transactions containing that address as input or output. Returns an array of transactions. <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>address-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> for new mempool transactions, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> for new block confirmed transactions.</source>
|
||||
<target>פעולת ברירת מחדל: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>[... ,'action: 'want', data: ['blocks <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/> <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> להביע את מה שאתה רוצה לדחוף. זמין: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> <x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>,mempool-blocks,<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>,<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, ו- <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.<x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/> <x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>דחוף טרנזקציות קשורות לכתובת:<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 'track-address': '3PbJ...bF9B' <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> לקבל כל הטרנזקציות החדשות שכוללות הכתובת כקלט או כתפוקה. מחזיר מערך טרנזקציות.<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/> address-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> לטרנזקציות חדשות לממפול, ו- <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> לטרנזקציות מאושרות חדשות לבלוק.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">865,866</context>
|
||||
|
@ -2351,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>מדיניות פרטיות</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2380,6 +2405,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
|
||||
<source>Code Example</source>
|
||||
<target>קוד לדוגמה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -2396,6 +2422,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
|
||||
<source>Install Package</source>
|
||||
<target>התקנת חבילה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -2404,6 +2431,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
|
||||
<source>Response</source>
|
||||
<target>תגובה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
|
@ -2506,6 +2534,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> מתוך <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
|
@ -2816,6 +2845,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a6bb63d98a8a67689070a79ccf13960c25b572ef">
|
||||
<source>Nonce</source>
|
||||
<target>תוספתא</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">114,116</context>
|
||||
|
@ -2824,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>קידוד כותר הבלוק</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2970,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> בלוק <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -2986,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> בלוק <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3553,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>קידוד טרנזקציה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3876,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>עמלת טרנזקציה</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4029,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>הקודם</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -2375,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Adatkezelési Szabályzat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -3585,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Tranzakciós Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
|
|
@ -486,7 +486,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bisq-address.component.browser-title">
|
||||
<source>Address: <x equiv-text="this.addressString" id="INTERPOLATION"/></source>
|
||||
<target>Infirizzo: <x equiv-text="this.addressString" id="INTERPOLATION"/></target>
|
||||
<target>Indirizzo: <x equiv-text="this.addressString" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
|
@ -1583,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Generale</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1933,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Mostra i dettagli sull'aggiustamento della difficoltà.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2047,6 +2049,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Mostra l'intestazione del blocco con codifica esadecimale.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2373,6 +2376,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Politica sulla Riservatezza</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2851,6 +2855,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Block Header Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2997,6 +3002,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocchi<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3013,6 +3019,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocco<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3252,6 +3259,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Proprio adesso</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3263,6 +3271,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target> <x equiv-text="dateStrings.i18nYear" id="DATE"/> fa</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3322,6 +3331,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Dopo <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3381,6 +3391,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3576,6 +3587,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Hex di Transazione</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3899,6 +3911,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Commissioni di Transazione</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4017,6 +4030,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Aggiustamento della Difficoltà</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4025,6 +4039,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Rimanente</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4037,6 +4052,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Stima</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4049,6 +4065,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Precedente</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4057,6 +4074,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Periodo Attuale</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4069,6 +4087,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> anno</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4076,6 +4095,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> anni</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4083,6 +4103,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> mese</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4090,6 +4111,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> mesi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4097,6 +4119,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> settimana</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4104,6 +4127,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> settimane</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4111,6 +4135,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> giorno</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4118,6 +4143,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> giorni</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4125,6 +4151,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ora</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4132,6 +4159,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ore</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4139,6 +4167,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minuto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4146,6 +4175,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minuti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4153,6 +4183,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> secondo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4160,6 +4191,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> secondi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -1583,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>一般的</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1933,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>難易度調節の詳細を返す。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2046,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>16進エンコードされたブロックヘッダーを返す。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2372,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>プライバシー・ポリシー</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2850,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>ブロックヘッダーの16進値</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2996,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>ブロック<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3012,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>ブロック<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3251,6 +3258,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>ちょうど今</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3262,6 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/>前</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3321,6 +3330,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/>後</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3380,6 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>~<x equiv-text="dateStrings.i18nMinute" id="DATE"/>後に</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3575,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>トランザクションの16進値</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3898,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>トランザクション手数料</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4016,6 +4029,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>難易度調整</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4024,6 +4038,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>残り</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4036,6 +4051,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>推定</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4048,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>以前</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4056,6 +4073,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>当期</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4068,6 +4086,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>年</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4075,6 +4094,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>年</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4082,6 +4102,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>ヶ月</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4089,6 +4110,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>ヶ月</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4096,6 +4118,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>週間</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4103,6 +4126,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>週間</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4110,6 +4134,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>日間</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4117,6 +4142,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>日間</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4124,6 +4150,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>時間</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4131,6 +4158,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>時間</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4138,6 +4166,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>分</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4145,6 +4174,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>分</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4152,6 +4182,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>秒</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4159,6 +4190,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>秒</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1586,6 +1586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>일반</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1936,6 +1937,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>난이도 조정에 대한 정보를 반환.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2055,6 +2057,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>16진수로 부호화된 블록헤더를 반환.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2382,6 +2385,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>개인정보처리방침</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2860,6 +2864,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>블록헤더 16진수</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -3006,6 +3011,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>블록들<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3022,6 +3028,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>블록<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3261,6 +3268,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>방금 전</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3272,6 +3280,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/>전</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3331,6 +3340,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/>이후</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3390,6 +3400,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>~<x equiv-text="dateStrings.i18nMinute" id="DATE"/>안에</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3585,6 +3596,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>트랜잭션 16진수</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3908,6 +3920,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>트랜잭션 수수료</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4026,6 +4039,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>난이도 조정</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4034,6 +4048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>남은</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4046,6 +4061,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>추정</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4058,6 +4074,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>이전</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4066,6 +4083,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>현재 기간</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4078,6 +4096,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>년</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4085,6 +4104,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>년</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4092,6 +4112,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>달</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4099,6 +4120,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>달</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4106,6 +4128,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>주</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4113,6 +4136,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>주</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4120,6 +4144,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>일</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4127,6 +4152,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>일</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4134,6 +4160,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>시간</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4141,6 +4168,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>시간</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4148,6 +4176,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>분</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4155,6 +4184,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>분</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4162,6 +4192,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>초</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4169,6 +4200,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>초</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -1377,6 +1377,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
|
||||
<source>The Mempool Open Source Project</source>
|
||||
<target>Het Mempool Open Source Project</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -1385,6 +1386,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
|
||||
<source>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.</source>
|
||||
<target>We bouwen een mempool- en blockchainverkenner voor de Bitcoingemeenschap, gericht op de transactiekostenmarkt en het meerlagige ecosysteem, zonder advertenties, altcoins of trackers van derden.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
|
@ -1581,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Algemeen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1931,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Geeft de details over moeilijkheidsaanpassing.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2044,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Geeft de hex-gecodeerde blokheader.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2370,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Privacybeleid</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2528,6 +2534,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> van <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
|
@ -2847,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Blokheader-hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2993,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blokken<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3009,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blok<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3248,6 +3258,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Zojuist</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3259,6 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/> geleden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3318,6 +3330,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Na <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3377,6 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3572,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Transactiehex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3895,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Transactiekosten</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4013,6 +4029,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Moeilijkheidsaanpassing</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4021,6 +4038,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Resterend</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4033,6 +4051,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Schatting</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4045,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Vorige</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4053,6 +4073,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Huidige Periode</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4065,6 +4086,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> jaar</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4072,6 +4094,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> jaren</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4079,6 +4102,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> maand</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4086,6 +4110,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> maanden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4093,6 +4118,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> week</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4100,6 +4126,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> weken</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4107,6 +4134,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> dag</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4114,6 +4142,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> dagen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4121,6 +4150,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> uur</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4128,6 +4158,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> uren</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4135,6 +4166,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minuut</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4142,6 +4174,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> minuten</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4149,6 +4182,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> seconde</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4156,6 +4190,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> seconden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -1583,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Ogólne</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1933,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Zwraca szczegółowe informacje o dostosowaniu trudności.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2046,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Zwraca nagłówek bloku w postaci szesnastkowej.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2372,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Polityka prywatności</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2850,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Nagłówek bloku w postaci szesnastkowej</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2996,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>bloki<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3012,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blok<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3251,6 +3258,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Przed chwilą</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3262,6 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target> <x equiv-text="dateStrings.i18nYear" id="DATE"/> temu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3321,6 +3330,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Po <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3380,6 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>W ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3575,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Transakcja w postaci szesnastkowej</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3898,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Opłaty transakcyjne</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4016,6 +4029,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Dostosowanie trudności</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4024,6 +4038,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Pozostało</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4036,6 +4051,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Estymata</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4048,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Poprzednia</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4056,6 +4073,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Okres bieżący</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4068,6 +4086,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> rok</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4075,6 +4094,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> lat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4082,6 +4102,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> miesiąc</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4089,6 +4110,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> miesięcy</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4096,6 +4118,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> tydzień</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4103,6 +4126,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> tygodni</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4110,6 +4134,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> dzień</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4117,6 +4142,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> dni</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4124,6 +4150,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> godzinę</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4131,6 +4158,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> godzin</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4138,6 +4166,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> minutę</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4145,6 +4174,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> minut</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4152,6 +4182,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> sekundę</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4159,6 +4190,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> sekund</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -2375,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Política de Privacidade</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -3585,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Hex da Transaçao</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
|
|
@ -1933,6 +1933,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Предоставляет подробности о корректировке сложности</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2046,6 +2047,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Предоставляет заголовок блока в шестнадцатиричном формате</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2061,7 +2063,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6d5aacdd7e6c375570a88c25bfd0be82beba4c7b">
|
||||
<source>Returns the raw block representation in binary.</source>
|
||||
<target>Возвращает сырое представление блока в двоичном формате.</target>
|
||||
<target>Предоставляет сырое представление блока в двоичном формате.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">264,267</context>
|
||||
|
@ -2189,7 +2191,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6fdafaace68cb298c6281e89eedc704f3d8f3f6a">
|
||||
<source>Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index.</source>
|
||||
<target>Предоставляет :length Биткоин-блоков, содержащих транзакции Bisq, начиная с :index.</target>
|
||||
<target>Предоставляет :length (длину) Биткоин-блоков, содержащих транзакции Bisq, начиная с :index.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">528,531</context>
|
||||
|
@ -2213,7 +2215,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e9a58657c410cf65dba4c3cdfb1af7099dedb241">
|
||||
<source>Returns :length of latest Bisq transactions, starting from :index.</source>
|
||||
<target>Предоставляет :length последних транзакций Bisq, начиная с :index.</target>
|
||||
<target>Предоставляет :length (длину) последних транзакций Bisq, начиная с :index.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">590,593</context>
|
||||
|
@ -2363,7 +2365,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a706b1ded7506620b153dbcdea8108e6691bbbd9">
|
||||
<source>Default push: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> to express what you want pushed. Available: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>mempool-blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.<x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>Push transactions related to address: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 'track-address': '3PbJ...bF9B' <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> to receive all new transactions containing that address as input or output. Returns an array of transactions. <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>address-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> for new mempool transactions, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> for new block confirmed transactions.</source>
|
||||
<target>Оповещения по умолчанию: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/>action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, чтобы сообщить какие оповещения вы бы хотели получть. Доступно: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>mempool-blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.
|
||||
<target>Оповещения по умолчанию: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/>action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, чтобы сообщить какие оповещения вы бы хотели получить. Доступно: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>mempool-blocks<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, и <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.
|
||||
<x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>Оповещения о транзакциях, относящихся к адресу: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 'track-address': '3PbJ...bF9B'<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> для получения всех новых транзакций, содержащих этот адрес в качестве ввода или вывода. Возвращает массив транзакций. <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>address-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> для новых мемпул-транзакций и <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/> для транзакций, подтвержденных в новом блоке.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
|
@ -2373,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Политика конфиденциальности</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2851,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Заголовок блока в шестнадцатиричном формате</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -3000,6 +3004,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> блоки <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3016,6 +3021,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> блок <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3041,7 +3047,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="9daedf013e87630c4e0a9123dc62e5bbf15a59ad">
|
||||
<source>Layer 2 Networks</source>
|
||||
<target>Сети второго уровня</target>
|
||||
<target>Сети 2 уровня</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3111,7 +3117,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="mempool-block.stack.of.blocks">
|
||||
<source>Stack of <x equiv-text="blocksInBlock" id="INTERPOLATION"/> mempool blocks</source>
|
||||
<target>Стопка блоков в <x equiv-text="blocksInBlock" id="INTERPOLATION"/> мемпуле</target>
|
||||
<target>Стэк блоков в <x equiv-text="blocksInBlock" id="INTERPOLATION"/> мемпуле</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
|
@ -3228,7 +3234,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="75c20c8a9cd9723d45bee0230dd582d7c2e4ecbc">
|
||||
<source>Mempool by vBytes (sat/vByte)</source>
|
||||
<target>Мемпул в виде vBytes (sat/vByte)</target>
|
||||
<target>Мемпул в vBytes (sat/vByte)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -3255,6 +3261,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Только что</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3266,6 +3273,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target> <x equiv-text="dateStrings.i18nYear" id="DATE"/> назад</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3325,6 +3333,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Через <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3384,6 +3393,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>Через ~ <x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3579,6 +3589,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Транзакция в шестнадцатиричном формате</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3902,6 +3913,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Транзакционные комиссии</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -3963,7 +3975,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1f332ec66f3bc8d943c248091be7f92772ba280f">
|
||||
<source>Expand</source>
|
||||
<target>Расширить</target>
|
||||
<target>Подробнее</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">132,133</context>
|
||||
|
@ -3972,7 +3984,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e8bcb762b48cf52fbea66ce9c4f6b970b99a80fd">
|
||||
<source>Collapse</source>
|
||||
<target>Уменьшить</target>
|
||||
<target>Скрыть</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">133,137</context>
|
||||
|
@ -4020,6 +4032,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Корректировка сложности</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4028,6 +4041,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Остаток</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4040,6 +4054,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Приблизительно</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4052,6 +4067,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Предыдущий</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4060,6 +4076,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Текущий период</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4072,6 +4089,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> год</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4079,6 +4097,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> лет</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4086,6 +4105,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> месяц</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4093,6 +4113,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> месяцев</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4100,6 +4121,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> неделя</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4107,6 +4129,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> недель</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4114,6 +4137,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> день</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4121,6 +4145,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> дней</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4128,6 +4153,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> час</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4135,6 +4161,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> часов</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4142,6 +4169,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> минута</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4149,6 +4177,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> минут</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4156,6 +4185,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> секунда</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4163,6 +4193,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> секунд</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -2375,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Integritetspolicy</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -3585,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Transaktionshex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
|
|
@ -1583,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Genel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1933,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Zorluk seviyesi hakkındaki detayları gösterir.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2047,6 +2049,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Hex ile kodlanmış blok başlığını gösterir.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2373,6 +2376,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Gizlilik politikası</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2851,6 +2855,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Block Başlığı Hex'i</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2997,6 +3002,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3013,6 +3019,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/><x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3252,6 +3259,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Az önce</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3263,6 +3271,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/>önce</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3322,6 +3331,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/>'den sonra</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3381,6 +3391,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>Yaklaşık <x equiv-text="dateStrings.i18nMinute" id="DATE"/>içinde</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3576,6 +3587,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>İşlem Hex'i</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3899,6 +3911,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>İşlem Ücretleri</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4017,6 +4030,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Zorluk Seviyesi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4025,6 +4039,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Kalan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4037,6 +4052,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Tahmini</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4049,6 +4065,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Önceki</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4057,6 +4074,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Şimdiki periyod</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4069,6 +4087,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>yıl</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4076,6 +4095,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>yıllar</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4083,6 +4103,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>ay</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4090,6 +4111,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>ay</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4097,6 +4119,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>hafta</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4104,6 +4127,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>hafta</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4111,6 +4135,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>gün</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4118,6 +4143,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>gün</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4125,6 +4151,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>saat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4132,6 +4159,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>saat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4139,6 +4167,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>dakika</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4146,6 +4175,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>dakika</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4153,6 +4183,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>saniye</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4160,6 +4191,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>saniye</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -1377,6 +1377,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
|
||||
<source>The Mempool Open Source Project</source>
|
||||
<target>Mempool - проект з відкритим кодом</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -1385,6 +1386,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
|
||||
<source>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.</source>
|
||||
<target>Ми будуємо експлорер мемпулу та блоків для ком'юніті Bitcoin з фокусом на ринок транзакцій та багаторівневу екосистему, без реклами, альткоїнів та сторонніх трекерів.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
|
@ -1581,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Загальне</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1590,6 +1593,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
|
||||
<source>Endpoint</source>
|
||||
<target>Ендпоїнт</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">19,20</context>
|
||||
|
@ -1754,6 +1758,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
|
||||
<source>Description</source>
|
||||
<target>Опис</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -1929,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Повертає деталі про регулювання складності.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2042,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Повертає заголовок блоку закодований в hex.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2368,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Політика конфіденційності</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2397,6 +2405,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
|
||||
<source>Code Example</source>
|
||||
<target>Приклад коду</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -2413,6 +2422,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
|
||||
<source>Install Package</source>
|
||||
<target>Встановити пакунок</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -2421,6 +2431,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
|
||||
<source>Response</source>
|
||||
<target>Відповідь</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
|
@ -2523,6 +2534,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> з <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
|
@ -2842,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Заголовок блоку в hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2988,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>блоків<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3004,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>блок<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3243,6 +3258,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Щойно</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3254,6 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/> тому</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3313,6 +3330,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Після <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3372,6 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>Через ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3567,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Транзакція в hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3890,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Комісії транзакції</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4008,6 +4029,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Регулювання складності</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4016,6 +4038,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Лишається</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4028,6 +4051,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Приблизно</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4040,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Попередня</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4048,6 +4073,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Поточний період</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4060,6 +4086,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> рік</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4067,6 +4094,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> роки</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4074,6 +4102,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> місяць</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4081,6 +4110,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> місяці</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4088,6 +4118,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> тиждень</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4095,6 +4126,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> тижні</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4102,6 +4134,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> день</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4109,6 +4142,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> дні</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4116,6 +4150,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> година</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4123,6 +4158,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> години</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4130,6 +4166,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> хвилина</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4137,6 +4174,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> хвилини</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4144,6 +4182,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> секунда</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4151,6 +4190,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> секунди</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -1377,6 +1377,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
|
||||
<source>The Mempool Open Source Project</source>
|
||||
<target>Dự án Mã nguồn Mở Mempool</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -1385,6 +1386,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
|
||||
<source>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.</source>
|
||||
<target>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.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
|
@ -1581,6 +1583,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Tổng quan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1931,6 +1934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Trả về thông tin chi tiết về điều chỉnh độ khó.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -2044,6 +2048,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Trả về tiêu đề khối được mã hóa hex.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
|
@ -2370,6 +2375,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8f3ac0544491bf048120928d39e02a6baeb0b278">
|
||||
<source>Privacy Policy</source>
|
||||
<target>Chính sách Quyền riêng tư</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">880,885</context>
|
||||
|
@ -2528,6 +2534,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
|
||||
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> trong tổng số <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
|
@ -2847,6 +2854,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Khối tiêu đề Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
|
@ -2993,6 +3001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> khối <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -3009,6 +3018,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> khối <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
|
@ -3248,6 +3258,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Vừa mới đây</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
|
@ -3259,6 +3270,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target> <x equiv-text="dateStrings.i18nYear" id="DATE"/> trước</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3318,6 +3330,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Sau <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -3377,6 +3390,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>Trong ~ <x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
|
@ -3572,6 +3586,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a2fbb7745c7048af923991e08ccd6975364be90d">
|
||||
<source>Transaction Hex</source>
|
||||
<target>Giao dịch Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">220,221</context>
|
||||
|
@ -3895,6 +3910,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Phí giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
|
@ -4013,6 +4029,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Điều chỉnh Độ khó</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,211</context>
|
||||
|
@ -4021,6 +4038,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Còn lại</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">214,216</context>
|
||||
|
@ -4033,6 +4051,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Ước tính</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">223,224</context>
|
||||
|
@ -4045,6 +4064,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Trước</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -4053,6 +4073,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Giai đoạn hiện tại</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4065,6 +4086,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> năm</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
|
@ -4072,6 +4094,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> năm</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
|
@ -4079,6 +4102,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> tháng</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
|
@ -4086,6 +4110,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> tháng</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
|
@ -4093,6 +4118,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> tuần</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -4100,6 +4126,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> tuần</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
|
@ -4107,6 +4134,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> ngày</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
@ -4114,6 +4142,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> ngày</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
|
@ -4121,6 +4150,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> giờ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -4128,6 +4158,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> giờ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
|
@ -4135,6 +4166,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> phút</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -4142,6 +4174,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> phút</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
|
@ -4149,6 +4182,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> giây</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
|
@ -4156,6 +4190,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> giây</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.carousel.previous">
|
||||
<source>Previous</source>
|
||||
<target>前</target>
|
||||
<target>前一个</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
|
||||
<context context-type="linenumber">349</context>
|
||||
|
@ -19,7 +19,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.carousel.next">
|
||||
<source>Next</source>
|
||||
<target>下一个</target>
|
||||
<target>后一个</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
|
||||
<context context-type="linenumber">349</context>
|
||||
|
@ -39,7 +39,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.datepicker.next-month">
|
||||
<source>Next month</source>
|
||||
<target>下个月</target>
|
||||
<target>后一个月</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context>
|
||||
<context context-type="linenumber">72</context>
|
||||
|
@ -75,6 +75,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.pagination.first">
|
||||
<source>««</source>
|
||||
<target>««</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
|
||||
<context context-type="linenumber">404</context>
|
||||
|
@ -82,6 +83,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.pagination.previous">
|
||||
<source>«</source>
|
||||
<target>«</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
|
||||
<context context-type="linenumber">404</context>
|
||||
|
@ -89,6 +91,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.pagination.next">
|
||||
<source>»</source>
|
||||
<target>»</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
|
||||
<context context-type="linenumber">404</context>
|
||||
|
@ -135,6 +138,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.progressbar.value">
|
||||
<source><x id="INTERPOLATION"/></source>
|
||||
<target><x id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context>
|
||||
<context context-type="linenumber">101</context>
|
||||
|
@ -142,6 +146,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.HH">
|
||||
<source>HH</source>
|
||||
<target>HH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -157,6 +162,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.MM">
|
||||
<source>MM</source>
|
||||
<target>MM</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -204,6 +210,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.SS">
|
||||
<source>SS</source>
|
||||
<target>SS</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -235,6 +242,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.PM">
|
||||
<source><x id="INTERPOLATION"/></source>
|
||||
<target><x id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -242,6 +250,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ngb.timepicker.AM">
|
||||
<source><x id="INTERPOLATION"/></source>
|
||||
<target><x id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
|
||||
<context context-type="linenumber">296</context>
|
||||
|
@ -310,7 +319,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="465c39daa2b644679d73a451043622f1610a2084">
|
||||
<source>Issuer domain</source>
|
||||
<target>发行人</target>
|
||||
<target>发行方</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
|
||||
<context context-type="linenumber">21,23</context>
|
||||
|
@ -323,7 +332,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d5e7c95d7c8920ae0a384e3fffb14776b1e203f4">
|
||||
<source>Asset ID</source>
|
||||
<target>资产ID</target>
|
||||
<target>资产 ID</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
|
@ -336,7 +345,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cf1fbcd10d4be4845152f2e10d1db9bc61dd9410">
|
||||
<source>Issuance TX</source>
|
||||
<target>发行交易</target>
|
||||
<target>发行交易 TX</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
|
||||
<context context-type="linenumber">23,26</context>
|
||||
|
@ -476,7 +485,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bisq-address.component.browser-title">
|
||||
<source>Address: <x equiv-text="this.addressString" id="INTERPOLATION"/></source>
|
||||
<target>地址: <x equiv-text="this.addressString" id="INTERPOLATION"/></target>
|
||||
<target>地址:<x equiv-text="this.addressString" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
|
@ -536,7 +545,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6d0db947a91dc4884aefa858a27fc848530e6404">
|
||||
<source>Previous hash</source>
|
||||
<target>上个哈希值</target>
|
||||
<target>前一个哈希值</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
|
@ -558,6 +567,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2">
|
||||
<source>BSQ Blocks</source>
|
||||
<target>BSQ 区块</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
|
||||
<context context-type="linenumber">2,7</context>
|
||||
|
@ -566,7 +576,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="179eb5c4a21ad324f75f723218a621d120e39d30">
|
||||
<source>Height</source>
|
||||
<target>高度</target>
|
||||
<target>区块高度</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
|
@ -587,7 +597,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a1daf43d26259bffdd5eb2d405c61583540b113b">
|
||||
<source>Confirmed</source>
|
||||
<target>已确认</target>
|
||||
<target>已确认于</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
|
@ -645,6 +655,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0">
|
||||
<source>Bisq Trading Volume</source>
|
||||
<target>Bisq 交易量</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
|
@ -723,7 +734,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff">
|
||||
<source>Volume (7d)</source>
|
||||
<target>量(7d)</target>
|
||||
<target>交易量(7日内)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
|
@ -732,7 +743,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6">
|
||||
<source>Trades (7d)</source>
|
||||
<target>交易 (7d)</target>
|
||||
<target>交易(7日内)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
|
@ -762,6 +773,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6">
|
||||
<source>Bisq Price Index</source>
|
||||
<target>Bisq 价格指数</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -770,6 +782,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349">
|
||||
<source>Bisq Market Price</source>
|
||||
<target>BIsq 市场价格</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
|
||||
<context context-type="linenumber">21,23</context>
|
||||
|
@ -817,7 +830,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
|
||||
<source>Buy Offers</source>
|
||||
<target>购买优惠</target>
|
||||
<target>购买报价</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
|
||||
<context context-type="linenumber">73,74</context>
|
||||
|
@ -826,7 +839,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
|
||||
<source>Sell Offers</source>
|
||||
<target>出售优惠</target>
|
||||
<target>出售报价</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
|
||||
<context context-type="linenumber">74,77</context>
|
||||
|
@ -835,7 +848,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
|
||||
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
|
||||
<target>金额 (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
|
||||
<target>金额 (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
|
||||
<context context-type="linenumber">112,113</context>
|
||||
|
@ -848,7 +861,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2a30a4cdb123a03facc5ab8c5b3e6d8b8dbbc3d4">
|
||||
<source>BSQ statistics</source>
|
||||
<target>BSQ统计</target>
|
||||
<target>BSQ 统计</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
|
@ -874,7 +887,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3218e6768d0d5fbc69d4931819e21451c89ba8ed">
|
||||
<source>Minted amount</source>
|
||||
<target>铸造量</target>
|
||||
<target>发行量</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
@ -887,7 +900,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="32377aae07f946d943f9361c8e518f714988c619">
|
||||
<source>Burnt amount</source>
|
||||
<target>燃烧量</target>
|
||||
<target>销毁量</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
|
@ -908,7 +921,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7882f2edb1d4139800b276b6b0bbf5ae0b2234ef">
|
||||
<source>Addresses</source>
|
||||
<target>交易</target>
|
||||
<target>地址</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
|
@ -921,7 +934,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fb5b5aec9a6add4912de64b7bbc55884cc7f8e3a">
|
||||
<source>Unspent TXOs</source>
|
||||
<target>未用UTXO</target>
|
||||
<target>未使用输出额</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
|
@ -934,7 +947,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0f8a41c901cd606bd3389d8a022cee193264f20b">
|
||||
<source>Spent TXOs</source>
|
||||
<target>已用UTXO</target>
|
||||
<target>已使用输出额</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
|
||||
<context context-type="linenumber">32</context>
|
||||
|
@ -964,7 +977,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="dfc2fb58e2a04ed944a4bd80f0a2087775134068">
|
||||
<source>Amount</source>
|
||||
<target>量</target>
|
||||
<target>数额</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
|
||||
<context context-type="linenumber">9,12</context>
|
||||
|
@ -980,6 +993,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="23b4db80cfba2937f6b087d8776cb5cd6725a16b">
|
||||
<source>Inputs</source>
|
||||
<target>输入</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
|
@ -988,6 +1002,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="93883f08c5e22b14770da46e1a5b724bab7d43fb">
|
||||
<source>Outputs</source>
|
||||
<target>输出</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
@ -1114,7 +1129,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="885666551418fd59011ceb09d5c481095940193b">
|
||||
<source>Features</source>
|
||||
<target>特征</target>
|
||||
<target>交易特征</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction/bisq-transaction.component.html</context>
|
||||
<context context-type="linenumber">44,46</context>
|
||||
|
@ -1142,7 +1157,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4f8b2bb476981727ab34ed40fde1218361f92c45">
|
||||
<source>Details</source>
|
||||
<target>明细</target>
|
||||
<target>交易明细</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction/bisq-transaction.component.html</context>
|
||||
<context context-type="linenumber">83,86</context>
|
||||
|
@ -1193,7 +1208,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
|
||||
<source>BSQ Transactions</source>
|
||||
<target>BSQ交易</target>
|
||||
<target>BSQ 交易</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
|
@ -1201,7 +1216,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="94c248797dd2b6af49068cb49c3b4bc26bec6a16">
|
||||
<source>TXID</source>
|
||||
<target>交易ID</target>
|
||||
<target>TXID</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
|
||||
<context context-type="linenumber">18,19</context>
|
||||
|
@ -1225,7 +1240,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4096113720451832029">
|
||||
<source>Blind vote</source>
|
||||
<target>盲选</target>
|
||||
<target>匿名投票</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
|
@ -1233,7 +1248,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8029165479004970466">
|
||||
<source>Compensation request</source>
|
||||
<target>赔偿要求</target>
|
||||
<target>报销要求</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">32</context>
|
||||
|
@ -1273,7 +1288,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4844032232639560116">
|
||||
<source>Proof of burn</source>
|
||||
<target>燃烧证明</target>
|
||||
<target>销毁证明</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
|
@ -1281,7 +1296,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2011097393756618787">
|
||||
<source>Proposal</source>
|
||||
<target>提议</target>
|
||||
<target>提案</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
|
@ -1289,7 +1304,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3275831985256202873">
|
||||
<source>Reimbursement request</source>
|
||||
<target>报销申请</target>
|
||||
<target>赔偿申请</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
|
@ -1297,7 +1312,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1226904538495857889">
|
||||
<source>Transfer BSQ</source>
|
||||
<target>转BSQ</target>
|
||||
<target>BSQ 转账</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
|
@ -1313,7 +1328,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8694527859973232423">
|
||||
<source>Vote reveal</source>
|
||||
<target>投票公布</target>
|
||||
<target>投票公示</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
|
@ -1353,7 +1368,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bisq-graph-volume">
|
||||
<source>Volume</source>
|
||||
<target>量</target>
|
||||
<target>交易量</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
|
@ -1376,7 +1391,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
|
||||
<source>Enterprise Sponsors 🚀</source>
|
||||
<target>企业赞助🚀</target>
|
||||
<target>企业赞助商🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">32,34</context>
|
||||
|
@ -1385,7 +1400,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a46e9bc519dc1c320d48635e924d444364845ca8">
|
||||
<source>Community Sponsors ❤️</source>
|
||||
<target>社区赞助❤️</target>
|
||||
<target>社区赞助商❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">54,57</context>
|
||||
|
@ -1403,6 +1418,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09">
|
||||
<source>Navigate to <x ctype="x-a" equiv-text="<a href="https://mempool.space/sponsor" target="_blank">" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/> to sponsor</source>
|
||||
<target>前往<x ctype="x-a" equiv-text="<a href="https://mempool.space/sponsor" target="_blank">" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/>以成为赞助者</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
|
@ -1442,7 +1458,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436">
|
||||
<source>Project Maintainers</source>
|
||||
<target>项目维护人员</target>
|
||||
<target>项目维护者</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">171,173</context>
|
||||
|
@ -1481,6 +1497,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<target>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
|
@ -1489,7 +1506,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target>前<x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>个交易 / 共<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>个交易</target>
|
||||
<target>第<x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>个交易 / 共<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>个交易</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">52,53</context>
|
||||
|
@ -1498,7 +1515,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0f6ada0cfb60aefd8f77f8a22349850ce186d666">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transactions</source>
|
||||
<target>前<x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>个交易 / 共<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>个交易</target>
|
||||
<target>第<x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>个交易 / 共<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>个交易</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">53,54</context>
|
||||
|
@ -1516,6 +1533,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18">
|
||||
<source><x ctype="x-i" equiv-text="<i>" id="START_ITALIC_TEXT"/>The number of transactions on this address exceeds the Electrum server limit<x ctype="x-i" equiv-text="</i>" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/> Consider viewing this address on the official Mempool website instead: </source>
|
||||
<target><x ctype="x-i" equiv-text="<i>" id="START_ITALIC_TEXT"/>此地址上的交易数量操过了以太坊服务器 <x ctype="x-i" equiv-text="</i>" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/><x ctype="lb" equiv-text="<br>" id="LINE_BREAK"/>请考虑安完官方内存池网站上查看此地址:</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">127,130</context>
|
||||
|
@ -1545,7 +1563,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="address.component.browser-title">
|
||||
<source>Address: <x equiv-text="this.addressString" id="INTERPOLATION"/></source>
|
||||
<target>地址: <x equiv-text="this.addressString" id="INTERPOLATION"/></target>
|
||||
<target>地址:<x equiv-text="this.addressString" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.ts</context>
|
||||
<context context-type="linenumber">72</context>
|
||||
|
@ -1553,7 +1571,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f11bc15f83d9174bd27454d32977b5025a66537d">
|
||||
<source>API Service</source>
|
||||
<target>API服务</target>
|
||||
<target>API 服务</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
|
@ -1562,6 +1580,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>常规</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
|
@ -1571,6 +1590,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
|
||||
<source>Endpoint</source>
|
||||
<target>Endpoint</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">19,20</context>
|
||||
|
@ -1911,6 +1931,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>返回关于难度调整的详细信息</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
|
@ -1928,6 +1949,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e12cd52eaa77b446ba97436c145b59741151adf3">
|
||||
<source>Returns details about an address. Available fields: <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>address<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>chain_stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>mempool_stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>chain,mempool<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/>_stats each contain an object with <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>funded_txo_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>funded_txo_sum<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>spent_txo_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>spent_txo_sum<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.</source>
|
||||
<target>返回关于地址的详细信息。可用参数:<x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>address<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>chain_stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>mempool_stats<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>chain,mempool<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/>_stats each contain an object with <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>funded_txo_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>funded_txo_sum<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>spent_txo_count<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="<code>" id="START_TAG_CODE"/>spent_txo_sum<x ctype="x-code" equiv-text="</code>" id="CLOSE_TAG_CODE"/>.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">50,51</context>
|
||||
|
@ -3935,7 +3957,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="926c571b25cca7e2a294619f145960c0cd3848b6">
|
||||
<source>Incoming transactions</source>
|
||||
<target>收款交易</target>
|
||||
<target>即将完成交易</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">193,194</context>
|
||||
|
@ -3979,7 +4001,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>前一段</target>
|
||||
<target>之前</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">235,236</context>
|
||||
|
@ -3988,7 +4010,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>本期</target>
|
||||
<target>当前阶段</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">247,248</context>
|
||||
|
@ -4113,7 +4135,7 @@
|
|||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2799825781368047816">
|
||||
<source>Transaction fee</source>
|
||||
<target>手续费</target>
|
||||
<target>交易手续费</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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' \
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue