diff --git a/frontend/.tx/config b/frontend/.tx/config new file mode 100644 index 000000000..ec792e837 --- /dev/null +++ b/frontend/.tx/config @@ -0,0 +1,7 @@ +[main] +host = https://www.transifex.com + +[mempool.frontend-src-locale-messages-xlf--wiz-i18n] +file_filter = frontend/src/locale/messages..xlf +source_lang = en-US +type = XLIFF diff --git a/frontend/angular.json b/frontend/angular.json index bb72552c9..66359bbd5 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -13,6 +13,70 @@ "root": "", "sourceRoot": "src", "prefix": "app", + "i18n": { + "sourceLocale": { + "code":"en-US", + "baseHref":"/" + }, + "locales": { + "cs": { + "translation": "src/locale/messages.cs.xlf", + "baseHref": "/cs/" + }, + "de": { + "translation": "src/locale/messages.de.xlf", + "baseHref": "/de/" + }, + "es": { + "translation": "src/locale/messages.es.xlf", + "baseHref": "/es/" + }, + "fa": { + "translation": "src/locale/messages.fa.xlf", + "baseHref": "/fa/" + }, + "fr": { + "translation": "src/locale/messages.fr.xlf", + "baseHref": "/fr/" + }, + "ja": { + "translation": "src/locale/messages.ja.xlf", + "baseHref": "/ja/" + }, + "nl": { + "translation": "src/locale/messages.nl.xlf", + "baseHref": "/nl/" + }, + "nn": { + "translation": "src/locale/messages.nn.xlf", + "baseHref": "/nn/" + }, + "pt": { + "translation": "src/locale/messages.pt.xlf", + "baseHref": "/pt/" + }, + "sl": { + "translation": "src/locale/messages.sl.xlf", + "baseHref": "/sl/" + }, + "sv": { + "translation": "src/locale/messages.sv.xlf", + "baseHref": "/sv/" + }, + "tr": { + "translation": "src/locale/messages.tr.xlf", + "baseHref": "/tr/" + }, + "uk": { + "translation": "src/locale/messages.uk.xlf", + "baseHref": "/uk/" + }, + "zh": { + "translation": "src/locale/messages.zh.xlf", + "baseHref": "/zh/" + } + } + }, "architect": { "build": { "builder": "@angular-devkit/build-angular:browser", @@ -176,4 +240,4 @@ } }}, "defaultProject": "mempool" -} \ No newline at end of file +} diff --git a/frontend/frontend b/frontend/frontend new file mode 120000 index 000000000..945c9b46d --- /dev/null +++ b/frontend/frontend @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/frontend/package.json b/frontend/package.json index cf97360e0..9345193b8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -22,9 +22,11 @@ "scripts": { "ng": "./node_modules/@angular/cli/bin/ng", "tsc": "./node_modules/typescript/bin/tsc", + "i18n-extract-from-source": "./node_modules/@angular/cli/bin/ng xi18n --ivy --out-file ./src/locale/messages.xlf", + "i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1", "serve": "ng serve --proxy-config proxy.conf.json", "start": "npm run generate-config && npm run sync-assets-dev && ng serve --proxy-config proxy.conf.json", - "build": "npm run generate-config && ng build --prod && npm run sync-assets", + "build": "npm run generate-config && ng build --prod --localize && npm run sync-assets", "sync-assets": "node sync-assets.js", "sync-assets-dev": "node sync-assets.js dev", "generate-config": "node generate-config.js", diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 77baf3bfa..9ecf6b45a 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -33,3 +33,83 @@ export const mempoolFeeColors = [ export const feeLevels = [1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100, 125, 150, 175, 200, 250, 300, 350, 400, 500, 600, 700, 800, 900, 1000, 1200, 1400, 1600, 1800, 2000]; + +interface Env { + TESTNET_ENABLED: boolean; + LIQUID_ENABLED: boolean; + BISQ_ENABLED: boolean; + BISQ_SEPARATE_BACKEND: boolean; + SPONSORS_ENABLED: boolean; + ELCTRS_ITEMS_PER_PAGE: number; + KEEP_BLOCKS_AMOUNT: number; +} + +const defaultEnv: Env = { + 'TESTNET_ENABLED': false, + 'LIQUID_ENABLED': false, + 'BISQ_ENABLED': false, + 'BISQ_SEPARATE_BACKEND': false, + 'SPONSORS_ENABLED': false, + 'ELCTRS_ITEMS_PER_PAGE': 25, + 'KEEP_BLOCKS_AMOUNT': 8 +}; + +const browserWindow = window || {}; +// @ts-ignore +const browserWindowEnv = browserWindow.__env || {}; +export const env: Env = Object.assign(defaultEnv, browserWindowEnv); + +export interface Language { + code: string; + name: string; +} + +export const languages: Language[] = [ +// { code: 'ar', name: 'العربية' }, // Arabic +// { code: 'bg', name: 'Български' }, // Bulgarian +// { code: 'bs', name: 'Bosanski' }, // Bosnian +// { code: 'ca', name: 'Català' }, // Catalan + { code: 'cs', name: 'Čeština' }, // Czech +// { code: 'da', name: 'Dansk' }, // Danish + { code: 'de', name: 'Deutsch' }, // German +// { code: 'et', name: 'Eesti' }, // Estonian +// { code: 'el', name: 'Ελληνικά' }, // Greek + { code: 'en', name: 'English' }, // English + { code: 'es', name: 'Español' }, // Spanish +// { code: 'eo', name: 'Esperanto' }, // Esperanto +// { code: 'eu', name: 'Euskara' }, // Basque + { code: 'fa', name: 'فارسی' }, // Persian + { code: 'fr', name: 'Français' }, // French +// { code: 'gl', name: 'Galego' }, // Galician +// { code: 'ko', name: '한국어' }, // Korean +// { code: 'hr', name: 'Hrvatski' }, // Croatian +// { code: 'id', name: 'Bahasa Indonesia' },// Indonesian +// { code: 'it', name: 'Italiano' }, // Italian +// { code: 'he', name: 'עברית' }, // Hebrew +// { code: 'ka', name: 'ქართული' }, // Georgian +// { code: 'lv', name: 'Latviešu' }, // Latvian +// { code: 'lt', name: 'Lietuvių' }, // Lithuanian +// { code: 'hu', name: 'Magyar' }, // Hungarian +// { code: 'mk', name: 'Македонски' }, // Macedonian +// { code: 'ms', name: 'Bahasa Melayu' }, // Malay + { code: 'nl', name: 'Nederlands' }, // Dutch + { code: 'ja', name: '日本語' }, // Japanese +// { code: 'nb', name: 'Norsk bokmål' }, // Norwegian Bokmål + { code: 'nn', name: 'Norsk' }, // Norwegian Nynorsk +// { code: 'pl', name: 'Polski' }, // Polish + { code: 'pt', name: 'Português' }, // Portuguese +// { code: 'pt-BR', name: 'Português (Brazil)' }, // Portuguese (Brazil) +// { code: 'ro', name: 'Română' }, // Romanian +// { code: 'ru', name: 'Русский' }, // Russian +// { code: 'sk', name: 'Slovenčina' }, // Slovak + { code: 'sl', name: 'Slovenščina' }, // Slovenian +// { code: 'sr', name: 'Српски / srpski' }, // Serbian +// { code: 'sh', name: 'Srpskohrvatski / српскохрватски' },// Serbo-Croatian +// { code: 'fi', name: 'Suomi' }, // Finnish + { code: 'sv', name: 'Svenska' }, // Swedish +// { code: 'th', name: 'ไทย' }, // Thai + { code: 'tr', name: 'Türkçe' }, // Turkish + { code: 'uk', name: 'Українська' }, // Ukrainian +// { code: 'vi', name: 'Tiếng Việt' }, // Vietnamese + { code: 'zh', name: '中文' }, // Chinese +]; diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 17b58a87d..2c33c0dfa 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -47,6 +47,7 @@ import { faAngleDoubleDown, faAngleDoubleUp, faAngleDown, faAngleUp, faBolt, faC faLink, faList, faSearch, faTachometerAlt, faThList, faTint, faTv } from '@fortawesome/free-solid-svg-icons'; import { ApiDocsComponent } from './components/api-docs/api-docs.component'; import { TermsOfServiceComponent } from './components/terms-of-service/terms-of-service.component'; +import { TranslationStringsComponent } from './components/translation-strings/translation-strings.component'; import { StorageService } from './services/storage.service'; import { HttpCacheInterceptor } from './services/http-cache.interceptor'; @@ -83,6 +84,7 @@ import { HttpCacheInterceptor } from './services/http-cache.interceptor'; DashboardComponent, ApiDocsComponent, TermsOfServiceComponent, + TranslationStringsComponent, ], imports: [ BrowserModule.withServerTransition({ appId: 'serverApp' }), diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 1cde15335..4924ab364 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -10,16 +10,16 @@
-

About the project

+

About the project

-

The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers.

+

The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers.


-

Maintainers

+

Maintainers

@@ -29,7 +29,7 @@ @softsimon_
- Development + Development
@@ -37,14 +37,14 @@ @wiz
- Operations + Operations


-

Sponsors ❤️

+

Sponsors ❤️


@@ -60,9 +60,9 @@

- +

- Navigate to https://mempool.space/about to sponsor + Navigate to https://mempool.space/about to sponsor

@@ -79,17 +79,17 @@
-
Amount required
-
Minimum amount is 0.001 BTC
+
Amount required
+
Minimum amount is 0.001 BTC
- +
- If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :)
@@ -167,13 +167,13 @@

{{ donationObj.amount }} BTC

-

Waiting for transaction...

+

Waiting for transaction...

-

Donation confirmed!
Thank you!

-

If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.

+

Donation confirmed!
Thank you!

+

If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.





@@ -203,7 +203,7 @@

- Terms of Service + Terms of Service
diff --git a/frontend/src/app/components/address-labels/address-labels.component.html b/frontend/src/app/components/address-labels/address-labels.component.html index 16deecabf..2b986aecf 100644 --- a/frontend/src/app/components/address-labels/address-labels.component.html +++ b/frontend/src/app/components/address-labels/address-labels.component.html @@ -1,2 +1,2 @@ -multisig {{ multisigM }} of {{ multisigN }} -Layer{{ network === 'liquid' ? '3' : '2' }} Peg-out +multisig {{ multisigM }} of {{ multisigN }} +Layer{{ network === 'liquid' ? '3' : '2' }} Peg-out diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html index 4552f9214..7109c21e3 100644 --- a/frontend/src/app/components/address/address.component.html +++ b/frontend/src/app/components/address/address.component.html @@ -1,5 +1,5 @@
-

Address

+

Address

{{ addressString | shortenString : 24 }} {{ addressString }} @@ -17,15 +17,15 @@ - + - + - + @@ -43,7 +43,7 @@
-

{{ (transactions?.length | number) || '?' }} of {{ txCount | number }} transactions

+

{{ (transactions?.length | number) || '?' }} of {{ txCount | number }} transactions

@@ -98,7 +98,7 @@
- Error loading address data. + Error loading address data.
{{ error.error }}
@@ -109,5 +109,5 @@
-
+ diff --git a/frontend/src/app/components/amount/amount.component.html b/frontend/src/app/components/amount/amount.component.html index b453ce6d0..f3e1e1631 100644 --- a/frontend/src/app/components/amount/amount.component.html +++ b/frontend/src/app/components/amount/amount.component.html @@ -3,7 +3,7 @@ - Confidential + Confidential {{ satoshis / 100000000 | number : digitsInfo }} diff --git a/frontend/src/app/components/api-docs/api-docs.component.html b/frontend/src/app/components/api-docs/api-docs.component.html index 2f5730640..73013525c 100644 --- a/frontend/src/app/components/api-docs/api-docs.component.html +++ b/frontend/src/app/components/api-docs/api-docs.component.html @@ -6,17 +6,17 @@
Total receivedTotal received
Total sentTotal sent
BalanceBalance ()
ConfidentialConfidential
- - + + - +
EndpointDescriptionEndpointDescription
wss://{{ hostname }}{{ network.val === '' ? '' : '/' + network.val }}/api/v1/wsDefault push: {{ '{' }} action: 'want', data: ['blocks', ...] {{ '}' }} to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.

Push transactions related to address: {{ '{' }} 'track-address': '3PbJ...bF9B' {{ '}' }} to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
Default push: {{ '{' }} action: 'want', data: ['blocks', ...] {{ '}' }} to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.

Push transactions related to address: {{ '{' }} 'track-address': '3PbJ...bF9B' {{ '}' }} to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
@@ -24,21 +24,21 @@
  • - Fee Estimates + Fees - - + + - + - +
    EndpointDescriptionEndpointDescription
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/v1/fees/recommendedReturns our currently suggested fees for new transactions.Returns our currently suggested fees for new transactions.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/v1/fees/mempool-blocksReturns current mempool as projected blocks.Returns current mempool as projected blocks.
    @@ -46,25 +46,25 @@
  • - Mempool + Mempool - - + + - + - + - +
    EndpointDescriptionEndpointDescription
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/mempoolReturns current mempool backlog statistics.Returns current mempool backlog statistics.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/mempool/txidsGet the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/mempool/recentGet a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value.Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value.
    @@ -72,53 +72,53 @@
  • - Blocks + Blocks - - + + - + - + - + - + - + - + - + - + - + - +
    EndpointDescriptionEndpointDescription
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/block/:hashReturns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight, proof, and previousblockhash.Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight, proof, and previousblockhash.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/block/:hash/statusReturns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/block/:hash/txs[/:start_index]Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/block/:hash/txidsReturns a list of all txids in the block.Returns a list of all txids in the block.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/block/:hash/txid/:indexReturns the transaction at index :index within the specified block.Returns the transaction at index :index within the specified block.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/block/:hash/txid/rawReturns the raw block representation in binary.Returns the raw block representation in binary.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/block-height/:heightReturns the hash of the block currently at :height.Returns the hash of the block currently at :height.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/blocks[/:start_height]Returns the 10 newest blocks starting at the tip or at :start_height if specified.Returns the 10 newest blocks starting at the tip or at :start_height if specified.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/blocks/tip/heightReturns the height of the last block.Returns the height of the last block.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/blocks/tip/hashReturns the hash of the last block.Returns the hash of the last block.
    @@ -126,49 +126,49 @@
  • - Transactions + Transactions - - + + - + - + - + - + - + - + - + - + - +
    EndpointDescriptionEndpointDescription
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txidReturns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status.Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txid/statusReturns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txid/hexReturns a transaction serialized as hex.Returns a transaction serialized as hex.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txid/rawReturns a transaction as binary data.Returns a transaction as binary data.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txid/merkleblock-proofReturns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txid/merkle-proofReturns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txid/outspend/:voutReturns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/tx/:txid/outspendsReturns the spending status of all transaction outputs.Returns the spending status of all transaction outputs.
    POST {{ network.val === '' ? '' : '/' + network.val }}/api/txBroadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
    @@ -176,33 +176,33 @@
  • - Addresses + Addresses - - + + - + - - + - + - +
    EndpointDescriptionEndpointDescription
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/address/:addressReturns details about an address. Available fields: address, chain_stats, and mempool_stats. {{ '{' }}chain,mempool{{ '}' }}_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum.Returns details about an address. Available fields: address, chain_stats, and mempool_stats. {{ '{' }}chain,mempool{{ '}' }}_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/address/:address/txsGet transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/address/:address/txs/chainGet confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/address/:address/txs/mempoolGet unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
    GET {{ network.val === '' ? '' : '/' + network.val }}/api/address/:address/utxoGet the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof.Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof.
    @@ -210,66 +210,66 @@
  • - Assets + Assets - - + + - + - + - +
    EndpointDescriptionEndpointDescription
    GET /liquid/api/asset/:asset_idReturns information about a Liquid asset.Returns information about a Liquid asset.
    GET /liquid/api/asset/:asset_id/txs[/mempool|/chain]Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
    GET /liquid/api/asset/:asset_id/supply[/decimal]Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
  • - BSQ + BSQ - - + + - + - + - + - + - + - + - +
    EndpointDescriptionEndpointDescription
    GET /bisq/api/statsReturns statistics about all Bisq transactions.Returns statistics about all Bisq transactions.
    GET /bisq/api/tx/:txidReturns details about a Bisq transaction.Returns details about a Bisq transaction.
    GET /bisq/api/txs/:index/:lengthReturns :length of latest Bisq transactions, starting from :index.Returns :length of latest Bisq transactions, starting from :index.
    GET /bisq/api/block/:hashReturns all Bisq transactions that exist in a Bitcoin block.Returns all Bisq transactions that exist in a Bitcoin block.
    GET /bisq/api/blocks/:index/:lengthReturns :length Bitcoin blocks that contain Bisq transactions, starting from :index.Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index.
    GET /bisq/api/blocks/tip/heightReturns the most recently processed Bitcoin block height processed by Bisq.Returns the most recently processed Bitcoin block height processed by Bisq.
    GET /bisq/api/address/:addressReturns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address.Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address.
    @@ -281,7 +281,7 @@
  • diff --git a/frontend/src/app/components/asset/asset.component.html b/frontend/src/app/components/asset/asset.component.html index 7f8703f72..e004c8be9 100644 --- a/frontend/src/app/components/asset/asset.component.html +++ b/frontend/src/app/components/asset/asset.component.html @@ -17,19 +17,19 @@ - + - + - + - + @@ -40,27 +40,27 @@
    NameName {{ assetContract[2] }} ({{ assetContract[1] }})
    PrecisionPrecision {{ assetContract[3] }}
    IssuerIssuer {{ assetContract[0] }}
    Issuance txIssuance TX {{ asset.issuance_txin.txid | shortenString : 13 }}
    - + - + - + - + - + - + @@ -129,7 +129,7 @@
    - Error loading asset data. + Error loading asset data.
    {{ error.error }}
    @@ -140,5 +140,5 @@
    -
    + diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 7c93bad8b..194b6622f 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -1,7 +1,7 @@
    -

    Genesis Block {{ blockHeight }}

    +

    Genesis Block {{ blockHeight }}

    @@ -15,24 +15,24 @@
    Pegged inPegged in {{ formatAmount(asset.chain_stats.peg_in_amount, assetContract[3]) | number: '1.0-' + assetContract[3] }} {{ assetContract[1] }}
    Pegged outPegged out {{ formatAmount(asset.chain_stats.peg_out_amount, assetContract[3]) | number: '1.0-' + assetContract[3] }} {{ assetContract[1] }}
    Issued amountIssued amount {{ formatAmount(asset.chain_stats.issued_amount, assetContract[3]) | number: '1.0-' + assetContract[3] }} {{ assetContract[1] }}
    Burned amountBurned amount {{ formatAmount(asset.chain_stats.burned_amount, assetContract[3]) | number: '1.0-' + assetContract[3] }} {{ assetContract[1] }}
    Circulating amountCirculating amount {{ formatAmount(asset.chain_stats.issued_amount - asset.chain_stats.burned_amount, assetContract[3]) | number: '1.0-' + assetContract[3] }} {{ assetContract[1] }}
    Circulating amountCirculating amount {{ formatAmount(asset.chain_stats.peg_in_amount - asset.chain_stats.burned_amount - asset.chain_stats.peg_out_amount, assetContract[3]) | number: '1.0-' + assetContract[3] }} {{ assetContract[1] }}
    ConfidentialConfidential
    - + - + - + - + @@ -42,19 +42,19 @@
    HashHash {{ block.id | shortenString : 13 }}
    TimestampTimestamp {{ block.timestamp * 1000 | date:'yyyy-MM-dd HH:mm' }}
    - ( ago) + ()
    SizeSize {{ block.size | bytes: 2 }}
    WeightWeight {{ block.weight | wuBytes: 2 }}
    - - + + - + - + @@ -62,16 +62,16 @@ - + - + - + @@ -82,7 +82,7 @@
    -

    {{ block.tx_count | number }} transactions

    +

    {{ block.tx_count | number }} transactiontransactions

    @@ -162,7 +162,7 @@
    - Error loading block data. + Error loading block data.

    {{ error.error }}
    diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html index 1df5c56e5..a6ee77c48 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -7,14 +7,14 @@
    - ~{{ block.medianFee | number:'1.0-0' }} sat/vB + ~{{ block.medianFee | number:'1.0-0' }} sat/vB
    - {{ block.feeRange[1] | number:'1.0-0' }} - {{ block.feeRange[block.feeRange.length - 1] | number:'1.0-0' }} sat/vB + {{ block.feeRange[1] | number:'1.0-0' }} - {{ block.feeRange[block.feeRange.length - 1] | number:'1.0-0' }} sat/vB
    {{ block.size | bytes: 2 }}
    -
    {{ block.tx_count | number }} transactions
    -
    ago
    +
    {{ block.tx_count | number }} transactiontransactions
    +
    diff --git a/frontend/src/app/components/blockchain/blockchain.component.html b/frontend/src/app/components/blockchain/blockchain.component.html index 7bfd20bc8..db0b44e6f 100644 --- a/frontend/src/app/components/blockchain/blockchain.component.html +++ b/frontend/src/app/components/blockchain/blockchain.component.html @@ -8,7 +8,7 @@
    -

    Waiting for blocks...

    +

    Waiting for blocks...

    diff --git a/frontend/src/app/components/clipboard/clipboard.component.html b/frontend/src/app/components/clipboard/clipboard.component.html index 7e7685607..3ee729ebc 100644 --- a/frontend/src/app/components/clipboard/clipboard.component.html +++ b/frontend/src/app/components/clipboard/clipboard.component.html @@ -2,4 +2,4 @@ - \ No newline at end of file + diff --git a/frontend/src/app/components/fees-box/fees-box.component.html b/frontend/src/app/components/fees-box/fees-box.component.html index f9db6d404..5fd3d3198 100644 --- a/frontend/src/app/components/fees-box/fees-box.component.html +++ b/frontend/src/app/components/fees-box/fees-box.component.html @@ -1,21 +1,21 @@
    Median fee~{{ block.medianFee | number:'1.0-0' }} sat/vB ()Median fee~{{ block.medianFee | number:'1.0-0' }} sat/vB ()
    Total feesTotal fees () {{ fees * 100000000 | number }} L-sat ()
    Subsidy + fees:Subsidy + fees: ()
    Total feesTotal fees
    Subsidy + fees:Subsidy + fees:
    MinerMiner
    @@ -24,15 +24,15 @@ diff --git a/frontend/src/app/components/footer/footer.component.html b/frontend/src/app/components/footer/footer.component.html index 0069d218f..47ec84d89 100644 --- a/frontend/src/app/components/footer/footer.component.html +++ b/frontend/src/app/components/footer/footer.component.html @@ -2,22 +2,22 @@
    - Tx vBytes per second: + Tx vBytes per second: -  Backend is synchronizing +  Backend is synchronizing
    -
    {{ mempoolInfoData.vBytesPerSecond | ceil | number }} vBytes/s
    +
    {{ mempoolInfoData.vBytesPerSecond | ceil | number }} vBytes/s
    - Unconfirmed transactions: + Unconfirmed transactions:
    {{ mempoolInfoData.memPoolInfo.size | number }}
    - Mempool size: + Mempool size:
    {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blocks)
    diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.html b/frontend/src/app/components/latest-blocks/latest-blocks.component.html index e6cafe69d..4a2032c41 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.html +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.html @@ -6,17 +6,17 @@
    -
    Low priority
    +
    Low priority

    - {{ feeEstimations.hourFee }} sat/vB () + {{ feeEstimations.hourFee }} sat/vB ()

    -
    Medium priority
    +
    Medium priority

    - {{ feeEstimations.halfHourFee }} sat/vB () + {{ feeEstimations.halfHourFee }} sat/vB ()

    -
    High priority
    +
    High priority

    - {{ feeEstimations.fastestFee }} sat/vB () + {{ feeEstimations.fastestFee }} sat/vB ()

    -
    Low priority
    +
    Low priority

    -
    Medium priority
    +
    Medium priority

    -
    High priority
    +
    High priority

    - - - - - + + + + + - +
    HeightTimestampMinedTransactionsFilledHeightTimestampMinedTransactionsFilled
    {{ block.height }} {{ block.timestamp * 1000 | date:'yyyy-MM-dd HH:mm' }} ago {{ block.tx_count | number }}
    diff --git a/frontend/src/app/components/master-page/master-page.component.html b/frontend/src/app/components/master-page/master-page.component.html index 80ecd9e96..15e6ec3e5 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -4,8 +4,8 @@ -
    Offline
    -
    Reconnecting...
    +
    Offline
    +
    Reconnecting...
    @@ -16,7 +16,7 @@
    - +
    diff --git a/frontend/src/app/components/mempool-block/mempool-block.component.html b/frontend/src/app/components/mempool-block/mempool-block.component.html index 2c98e5bba..dee0f4c19 100644 --- a/frontend/src/app/components/mempool-block/mempool-block.component.html +++ b/frontend/src/app/components/mempool-block/mempool-block.component.html @@ -13,23 +13,23 @@ - + - + - + - + - +
    Median feeMedian fee ~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB ()
    Fee spanFee span {{ mempoolBlock.feeRange[0] | number:'1.0-0' }} - {{ mempoolBlock.feeRange[mempoolBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB
    Total feesTotal fees ()
    TransactionsTransactions {{ mempoolBlock.nTx }}
    FilledFilled
    @@ -48,4 +48,4 @@
    -
    \ No newline at end of file + diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html index 5b740c7c4..0d6882ba5 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -5,23 +5,23 @@  
    - ~{{ projectedBlock.medianFee | number:'1.0-0' }} sat/vB + ~{{ projectedBlock.medianFee | number:'1.0-0' }} sat/vB
    - {{ projectedBlock.feeRange[0] | number:'1.0-0' }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB + {{ projectedBlock.feeRange[0] | number:'1.0-0' }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB
    {{ projectedBlock.blockSize | bytes: 2 }}
    -
    {{ projectedBlock.nTx | number }} transactions
    +
    {{ projectedBlock.nTx | number }} transactiontransactions
    - In < {{ 1 * i + 1 }} minute + In < {{ 1 * i + 1 }} minute - In ~{{ 10 * i + 10 }} minutes + In ~{{ 10 * i + 10 }} minutes
    -
    ({{ projectedBlock.blockVSize / 1000000 | ceil }} blocks)
    +
    ({{ projectedBlock.blockVSize / 1000000 | ceil }} blocks)
    diff --git a/frontend/src/app/components/miner/miner.component.html b/frontend/src/app/components/miner/miner.component.html index a214c1339..4a54fb4d0 100644 --- a/frontend/src/app/components/miner/miner.component.html +++ b/frontend/src/app/components/miner/miner.component.html @@ -7,6 +7,6 @@ {{ miner }} - Unknown + Unknown diff --git a/frontend/src/app/components/search-form/search-form.component.html b/frontend/src/app/components/search-form/search-form.component.html index f71ac0ec1..c16374917 100644 --- a/frontend/src/app/components/search-form/search-form.component.html +++ b/frontend/src/app/components/search-form/search-form.component.html @@ -1,10 +1,10 @@
    - +
    -
    \ No newline at end of file + diff --git a/frontend/src/app/components/statistics/statistics.component.html b/frontend/src/app/components/statistics/statistics.component.html index bc970fbeb..872b48e06 100644 --- a/frontend/src/app/components/statistics/statistics.component.html +++ b/frontend/src/app/components/statistics/statistics.component.html @@ -3,7 +3,7 @@
    -

    Loading graphs...

    +

    Loading graphs...


    @@ -13,7 +13,7 @@
    - Mempool by vBytes (sat/vByte) + Mempool by vBytes (sat/vByte)
    @@ -54,7 +54,8 @@
    - Transaction vBytes per second (vB/s)
    + Transaction vBytes per second (vB/s) +
    -
    \ No newline at end of file +
    diff --git a/frontend/src/app/components/time-since/time-since.component.ts b/frontend/src/app/components/time-since/time-since.component.ts index 4371bf929..377e4b91c 100644 --- a/frontend/src/app/components/time-since/time-since.component.ts +++ b/frontend/src/app/components/time-since/time-since.component.ts @@ -18,17 +18,6 @@ export class TimeSinceComponent implements OnInit, OnChanges, OnDestroy { private ref: ChangeDetectorRef, private stateService: StateService, ) { - if (document.body.clientWidth < 768) { - this.intervals = { - year: 31536000, - month: 2592000, - week: 604800, - day: 86400, - hour: 3600, - min: 60, - sec: 1 - }; - } else { this.intervals = { year: 31536000, month: 2592000, @@ -38,7 +27,6 @@ export class TimeSinceComponent implements OnInit, OnChanges, OnDestroy { minute: 60, second: 1 }; - } } ngOnInit() { @@ -65,7 +53,7 @@ export class TimeSinceComponent implements OnInit, OnChanges, OnDestroy { calculate() { const seconds = Math.floor((+new Date() - +new Date(this.time * 1000)) / 1000); if (seconds < 60) { - return '< 1 minute'; + return $localize`:@@time-since.just-now:Just now`; } let counter; for (const i in this.intervals) { @@ -73,9 +61,41 @@ export class TimeSinceComponent implements OnInit, OnChanges, OnDestroy { counter = Math.floor(seconds / this.intervals[i]); if (counter > 0) { if (counter === 1) { - return counter + ' ' + i; // singular (1 day ago) + switch (i) { // singular (1 day ago) + case 'year': return $localize`:@@time-since.year.ago:${counter}:INTERPOLATION: year ago`; break; + case 'month': return $localize`:@@time-since.month.ago:${counter}:INTERPOLATION: month ago`; break; + case 'week': return $localize`:@@time-since.week.ago:${counter}:INTERPOLATION: week ago`; break; + case 'day': return $localize`:@@time-since.day.ago:${counter}:INTERPOLATION: day ago`; break; + case 'hour': return $localize`:@@time-since.hour.ago:${counter}:INTERPOLATION: hour ago`; break; + case 'minute': + if (document.body.clientWidth < 768) { + return $localize`:@@time-since.min.ago:${counter}:INTERPOLATION: min ago`; + } + return $localize`:@@time-since.minute.ago:${counter}:INTERPOLATION: minute ago`; + case 'second': + if (document.body.clientWidth < 768) { + return $localize`:@@time-since.sec.ago:${counter}:INTERPOLATION: sec ago`; + } + return $localize`:@@time-since.second.ago:${counter}:INTERPOLATION: second ago`; + } } else { - return counter + ' ' + i + 's'; // plural (2 days ago) + switch (i) { // plural (2 days ago) + case 'year': return $localize`:@@time-since.years.ago:${counter}:INTERPOLATION: years ago`; break; + case 'month': return $localize`:@@time-since.months.ago:${counter}:INTERPOLATION: months ago`; break; + case 'week': return $localize`:@@time-since.weeks.ago:${counter}:INTERPOLATION: weeks ago`; break; + case 'day': return $localize`:@@time-since.days.ago:${counter}:INTERPOLATION: days ago`; break; + case 'hour': return $localize`:@@time-since.hours.ago:${counter}:INTERPOLATION: hours ago`; break; + case 'minute': + if (document.body.clientWidth < 768) { + return $localize`:@@time-since.mins.ago:${counter}:INTERPOLATION: mins ago`; + } + return $localize`:@@time-since.minutes.ago:${counter}:INTERPOLATION: minutes ago`; + case 'second': + if (document.body.clientWidth < 768) { + return $localize`:@@time-since.secs.ago:${counter}:INTERPOLATION: secs ago`; + } + return $localize`:@@time-since.seconds.ago:${counter}:INTERPOLATION: seconds ago`; + } } } } diff --git a/frontend/src/app/components/timespan/timespan.component.ts b/frontend/src/app/components/timespan/timespan.component.ts index 6433aa250..4edba3df0 100644 --- a/frontend/src/app/components/timespan/timespan.component.ts +++ b/frontend/src/app/components/timespan/timespan.component.ts @@ -14,7 +14,8 @@ export class TimespanComponent implements OnChanges { ngOnChanges() { const seconds = this.time; if (seconds < 60) { - return '< 1 minute'; + this.text = '< 1 minute'; + return; } const intervals = { year: 31536000, diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 95369a2fe..dfd27e13d 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -2,20 +2,20 @@
    -

    Transaction

    +

    Transaction

    - + - +
    @@ -39,28 +39,28 @@ - + - + - - + + - + @@ -72,13 +72,13 @@
    TimestampTimestamp {{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm' }}
    - ( ago) + ()
    Included in blockIncluded in block {{ tx.status.block_height }}
    ConfirmedAfter ConfirmedAfter 
    FeaturesFeatures
    - + - + @@ -106,35 +106,34 @@ - - + + - + - + @@ -146,12 +145,12 @@
    FeeFee {{ tx.fee | number }} sat ()
    Fee per vByteFee per vByte - {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB + {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB  
    First seen agoFirst seen
    ETAETA - In several hours (or more) + In several hours (or more) - < {{ 1 * txInBlockIndex + 1 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }}) + < {{ 1 * txInBlockIndex + 1 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }}) - - ~{{ 10 * txInBlockIndex + 10 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }}) + ~{{ 10 * txInBlockIndex + 10 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }})
    FeaturesFeatures
    - - + + - - + +
    Fee{{ tx.fee | number }} sat ()Fee{{ tx.fee | number }} sat ()
    Fee per vByte{{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vBFee per vByte{{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB
    @@ -162,24 +161,24 @@
    -

    Inputs & Outputs

    +

    Inputs & Outputs

    - +
    -

    Details

    +

    Details

    - + - + @@ -263,8 +262,8 @@
    -

    Transaction not found.

    -
    Waiting for it to appear in the mempool...
    +

    Transaction not found.

    +
    Waiting for it to appear in the mempool...
    diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html index bf248e301..0db4eec8b 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -7,7 +7,7 @@
    {{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm' }} - ago +
    @@ -36,9 +36,9 @@
    - + - + - + - + - + - + - + @@ -103,7 +103,7 @@ @@ -122,7 +122,8 @@ - Peg-out to + Peg-out to + {{ vout.pegout.scriptpubkey_address | shortenString : 16 }} {{ vout.pegout.scriptpubkey_address | shortenString : 35 }} @@ -160,19 +161,19 @@
    SizeSize {{ tx.size | bytes: 2 }}
    WeightWeight {{ tx.weight | wuBytes: 2 }}
    - Coinbase (Newly Generated Coins)
    {{ vin.scriptsig | hex2ascii }}
    + Coinbase (Newly Generated Coins)
    {{ vin.scriptsig | hex2ascii }}
    - Peg-in + Peg-in @@ -68,32 +68,32 @@
    ScriptSig (ASM)ScriptSig (ASM)
    ScriptSig (HEX)ScriptSig (HEX) {{ vin.scriptsig }}
    WitnessWitness {{ vin.witness.join(' ') }}
    P2SH redeem scriptP2SH redeem script
    P2WSH witness scriptP2WSH witness script
    nSequencenSequence {{ formatHex(vin.sequence) }}
    Previous output scriptPrevious output script {{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}"
    - +
    - + - + - + - + @@ -182,7 +183,7 @@ @@ -192,19 +193,19 @@
    - {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB – {{ tx.fee | number }} sat () + {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB  – {{ tx.fee | number }} sat ()
    - + - +  
    TypeType {{ vout.scriptpubkey_type.toUpperCase() }}
    scriptPubKey (ASM)ScriptPubKey (ASM)
    scriptPubKey (HEX)ScriptPubKey (HEX) {{ vout.scriptpubkey }}
    OP_RETURN dataOP_RETURN data {{ vout.scriptpubkey_asm | hex2ascii }}
    - +
    - - - - + + + + - +
    HeightMinedTxsFilledHeightMinedTXsSize
    {{ block.height }} ago {{ block.tx_count | number }}
    @@ -94,27 +94,27 @@
    - +
    -
    Latest transactions
    +
    Latest transactions
    - - - - + + + + - +
    TXIDAmountUSDFeeTXIDAmountUSDFee
    {{ transaction.txid | shortenString : 10 }} {{ transaction.fee / (transaction.weight / 4) | number : '1.1-1' }} sat/vB{{ transaction.fee / (transaction.weight / 4) | number : '1.1-1' }} sat/vB
    @@ -133,8 +133,14 @@
    +
    + +
    +
    @@ -153,15 +159,15 @@ @@ -169,14 +175,14 @@ -
    Incoming transactions
    +
    Incoming transactions
    -  Backend is synchronizing +  Backend is synchronizing
    -
    {{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} vB/s
    +
    {{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} vB/s
    @@ -185,7 +191,7 @@
    -
    Difficulty adjustment
    +
    Difficulty adjustment
    +{{ epochData.change | number: '1.0-2' }}%
    @@ -193,4 +199,4 @@
    -
    \ No newline at end of file +
    diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts index 879fc4262..a0ffc82d1 100644 --- a/frontend/src/app/dashboard/dashboard.component.ts +++ b/frontend/src/app/dashboard/dashboard.component.ts @@ -7,10 +7,12 @@ import { MempoolInfo, TransactionStripped } from '../interfaces/websocket.interf import { ApiService } from '../services/api.service'; import { StateService } from '../services/state.service'; import * as Chartist from '@mempool/chartist'; -import { formatDate } from '@angular/common'; +import { DOCUMENT, formatDate } from '@angular/common'; import { WebsocketService } from '../services/websocket.service'; import { SeoService } from '../services/seo.service'; import { StorageService } from '../services/storage.service'; +import { FormBuilder, FormGroup } from '@angular/forms'; +import { languages, Language } from '../app.constants'; interface MempoolBlocksData { blocks: number; @@ -55,6 +57,8 @@ export class DashboardComponent implements OnInit { mempoolTransactionsWeightPerSecondData: any; mempoolStats$: Observable; transactionsWeightPerSecondOptions: any; + languageForm: FormGroup; + languages: Language[]; constructor( @Inject(LOCALE_ID) private locale: string, @@ -63,14 +67,22 @@ export class DashboardComponent implements OnInit { private websocketService: WebsocketService, private seoService: SeoService, private storageService: StorageService, + private formBuilder: FormBuilder, + @Inject(DOCUMENT) private document: Document ) { } ngOnInit(): void { + this.languages = languages; this.seoService.resetTitle(); this.websocketService.want(['blocks', 'stats', 'mempool-blocks', 'live-2h-chart']); this.network$ = merge(of(''), this.stateService.networkChanged$); this.collapseLevel = this.storageService.getValue('dashboard-collapsed') || 'one'; + this.languageForm = this.formBuilder.group({ + language: [''] + }); + this.setLanguageFromUrl(); + this.mempoolInfoData$ = combineLatest([ this.stateService.mempoolInfo$, this.stateService.vbytesPerSecond$ @@ -232,4 +244,21 @@ export class DashboardComponent implements OnInit { } this.storageService.setValue('dashboard-collapsed', this.collapseLevel); } + + setLanguageFromUrl() { + const urlLanguage = this.document.location.pathname.split('/')[1]; + if (urlLanguage === '') { + this.languageForm.get('language').setValue('en'); + } else if (this.languages.map((lang) => lang.code).indexOf(urlLanguage) > -1) { + this.languageForm.get('language').setValue(urlLanguage); + } + } + + changeLanguage() { + const language = this.languageForm.get('language').value; + this.document.location.href = (language === 'en' ? '/' : '/' + language); + try { + document.cookie = `lang=${language}; expires=Thu, 18 Dec 2050 12:00:00 UTC; path=/`; + } catch (e) { } + } } diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf new file mode 100644 index 000000000..5400db808 --- /dev/null +++ b/frontend/src/locale/messages.cs.xlf @@ -0,0 +1,2226 @@ + + + + + Transaction + Transakce + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Tato transakce byla nahrazena: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + potvrzení + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + potvrzení + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Nepotvrzeno + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Vstupy a Výstupy + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detaily + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Detaily + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Velikost + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Váha + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Časové razítko + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Poplatek + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Poplatek za vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Zahrnuto v bloku + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Potvrzeno + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Po + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Funkce + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Poprvé viděna + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Za několik hodin (nebo více) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minut(y) + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + blok + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transakce nebyla nalezena. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Čekání na to, až se objeví v mempoolu... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Důvěrné + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Nově vytvořené mince) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH redeem skript + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH witness skript + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Předchozí výstupní skript + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Načíst vše + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-out do + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Typ + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + potvrzení + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + potvrzení + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Nepotvrzeno + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Blok + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Časové razítko + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Velikost + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Váha + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Těžař + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Střední poplatek + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Celkové poplatky + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Nově vytěžené + poplatky: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transakce + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transakce + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Chyba při načítání dat bloku. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID, výška bloku, hash nebo adresa + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Výška + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Vytěžen + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transakce + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Naplněn + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig z + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Vrstva Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + V + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minuta + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minut(y) + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + bloků(y) + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Opětovné připojení... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Sítě 2. vrstvy + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + O projektu + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Cílem open-source mempool projektu je implementace vysoce kvalitního průzkumného a vizualizačního webu pro celý bitcoinový ekosystém, bez rušivých prvků, jako jsou altcoiny, reklama nebo sledovače třetích stran. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Správci + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Vývoj + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Obsluha + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponzoři ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Staňte se sponzorem ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Vyžádat si fakturu + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Podmínky služby + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Přejít na + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + na sponzora + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Požadovaná částka + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Minimální částka je 0,001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Pokud darujete 0,01 BTC nebo více, vaše profilová fotka bude přidána do seznamu sponzorů výše :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Čekání na transakci... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Dar potvrzen! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Děkujeme! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Pokud jste zadali jméno na Twitteru, profilová fotka by nyní měla být při opětovném načtení viditelná na této stránce. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Načítání grafů... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool v vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transakce vBytů za sekundu (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Čekání na bloky... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytů za sekundu: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Velikost Mempoolu: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Backend se synchronizuje + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytů/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Rozsah poplatků + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Celkové poplatky + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Jméno + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Přesnost + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Spálené množství + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Vydavatel + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Vydání TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Vydaná částka + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Obíhající množství + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Chyba při načítání dat aktiva. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Neznámo + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Nízká priorita + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Střední priorita + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Vysoká priorita + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Poslední bloky + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + Počet TX + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Zobrazit všechny » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Poslední transakce + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Množství + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Poplatek + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Velikost Mempoolu + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Nepotvrzeno + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blok + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Příchozí transakce + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Úprava obtížnosti + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Popis + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Výchozí push: action: 'want', data: ['blocks', ...] vyjádřit, co chcete pushovat. K dispozici: blocks, mempool-block, live-2h-chart, a stats.Push transakce související s adresou: 'track-address': '3PbJ...bF9B' k přijímutí všech nových transakcí obsahující tuto adresu jako vstup nebo výstup. Vrátí pole transakcí. address-transactions pro nové transakce mempoolu a block-transactions pro nové transakce potvrzené blokem. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Poplatky + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Vrátí aktuálně doporučené poplatky za nové transakce. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Vrátí aktuální mempool jako projektované bloky. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Vrátí aktuální statistiky nevyřízených položek mempoolu. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Získejte úplný seznam transakcí v mempoolu jako pole. Pořadí transakcí je náhodné a neodpovídá bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Získejte seznam posledních 10 transakcí pro vstup do mempoolu. Každý transakční objekt obsahuje zjednodušená přehledová data s následujícími poli: txid, fee, vsize, a value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Bloky + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Vrátí stav potvrzení bloku. Dostupná pole:in_best_chain (boolean, false pro osamocené bloky), next_best (hash dalšího bloku, k dispozici pouze pro bloky v nejlepším řetězci). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Vrátí seznam transakcí v bloku (až 25 transakcí od start_index). Transakce vrácené zde nemají status pole, protože všechny transakce sdílejí stejný blok a stav a potvrzení. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Vrátí seznam všech transakcí v bloku. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Vrátí transakci v indexu :index v zadaném bloku. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Vrátí nezpracovanou blokovou reprezentaci v binárním formátu. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Vrátí hodnotu hash bloku aktuálně v :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Vrátí 10 nejnovějších bloků počínaje od špičky nebo od :start_height pokud je uvedeno. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Vrátí výšku posledního bloku. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Vrátí hash posledního bloku. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Vrátí podrobnosti o bloku. Dostupná pole: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, a previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transakce + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Vrátí podrobnosti o transakci. Dostupná pole: txid, version, locktime, size, weight, fee, vin, vout, a status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Vrátí stav potvrzení transakce. Dostupná pole: confirmed (boolean), block_height (optional), a block_hash (volitelné). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Vrátí transakci serializovanou jako hexadecimální. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Vrátí transakci jako binární data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Vrátí důkaz zahrnutí merkle pro transakci ve formátu blockchain.transaction.get_merkle v Electrum. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Vrátí stav útraty výstupu transakce. Dostupná pole: spent (boolean), txid (optional), vin (optional), and status (volitelný, stav výdajů tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Vrátí stav výdajů všech výstupů transakcí. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Vyslat surovou transakci do sítě. Transakce by měla být v těle žádosti uvedena jako hex. txid bude vrácen při úspěchu. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Vrátí důkaz zahrnutí merkle pro transakci ve formátu bitcoind merkleblock. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Adresy + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Vrátí podrobnosti o adrese. Dostupná pole: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, a spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Získejte historii transakcí pro zadanou adresu/scripthash, seřazené podle nejnovějších jako první. Vrátí až 50 transakcí mempool plus prvních 25 potvrzených transakcí. O více potvrzených transakcí můžete požádat pomocí: :last_seen_txid (viz níže). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Získejte potvrzenou historii transakcí pro zadanou adresu/scripthash, seřazené podle nejnovějších jako první. Vrátí 25 transakcí na stránku. Více lze vyžádat zadáním poslední hodnoty zobrazené v předchozím dotazu. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Získejte nepotvrzenou historii transakcí pro zadanou adresu/scripthash. Vrátí až 50 transakcí (bez stránkování). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Získejte seznam nevyčerpaných transakčních výstupů přidružených k adrese/scripthash. Dostupná pole: txid, vout, value, and status (se stavem financování tx).Může se také objevit polevaluecommitment místo value, plus následující další pole: asset/assetcommitment, nonce/noncecommitment, surjection_proof, a range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Aktiva + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Vrátí informace o Liquid aktivu. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Vrátí transakce spojené se zadaným Liquid aktivem. U nativního aktiva sítě vrátí seznam transakcí peg in, peg out a spálené transakce. U aktiv vydaných uživatelem vrátí seznam transakcí vystavení, opětovného vystavení a spálené transakce. Nezahrnuje pravidelné transakce převádějící toto aktivum. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Získejte aktuální celkovou nabídku určeného aktiva. U nativního aktiva (L-BTC) se to počítá jako [chain,mempool] _stats.peg_in_amount - [chain,mempool] _stats.peg_out_amount - [chain,mempool] _stats.burned_amount. U vydaných aktiv se to počítá jako [chain,mempool] _stats.issued_amount - [chain,mempool] _stats.burned_amount. Není k dispozici pro aktiva se zaslepenými emisemi. Pokud je zadáno /decimal, vrátí nabídku jako desetinné místo podle dělitelnosti aktiva. Jinak vrácenou v základních jednotkách. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Vrátí statistiku všech transakcí Bisq. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Vrátí podrobnosti o transakci Bisq. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Vrátí :length posledních transakcí Bisq, počínaje :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Vrátí všechny transakce Bisq, které existují v bitcoinovém bloku. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Vrátí :length bitcoinových bloků, které obsahují Bisq transakce, počínaje :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Vrátí naposledy zpracovanou výšku bloku bitcoinu zpracovanou Bisqem. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Vrátí všechny transakce Bisq patřící k bitcoinové adrese s předponou „B“ před adresou. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Adresa + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Celkem přijato + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Celkem odesláno + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Zůstatek + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + z + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Chyba při načítání údajů o adrese. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + Právě teď + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + před s. + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + před s. + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + před sekundou + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + před sekundami + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + před min. + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + před min. + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + před minutou + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + před minutami + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + před hodinou + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + před hodinami + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + před dnem + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + před dny + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + před týdnem + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + před týdny + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + před měsícem + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + před měsíci + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + před rokem + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + před roky + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimální + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Přeplaceno x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Přeplaceno x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf new file mode 100644 index 000000000..dcbdd0b7f --- /dev/null +++ b/frontend/src/locale/messages.de.xlf @@ -0,0 +1,2226 @@ + + + + + Transaction + Transaktion + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Diese Transaktion wurde ersetzt durch: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + Bestätigung + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + Bestätigungen + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Unbestätigt + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Inputs & Outputs + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Details + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Details + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Größe + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Gewicht + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Zeitstempel + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Gebühr + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Gebühr pro vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Im Block aufgenommen + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Bestätigt + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Danach + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Features + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ca. Zeit bis geschürft ist + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Zuerst gesehen + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + In mehreren Stunden (oder mehr) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + Minuten + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + Block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transaktion nicht gefunden. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Warten bis sie im Mempool erscheint... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Vertraulich + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Neu generierte Coins) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Vorheriges Output Script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Alle nachladen + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-out zu + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Typ + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + Daten + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + Bestätigung + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + Bestätigungen + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Unbestätigt + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Zeitstempel + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Größe + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Gewicht + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Mediangebühr + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Gesamtgebühren + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Subvention + Gebühr + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + Transaktion + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + Transaktionen + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Fehler beim Laden der Blockdaten. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID, Blockhöhe, Hash oder Adresse + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Höhe + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Geschürft + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transaktionen + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Gefüllt + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + Multisig von + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + In + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + Minute + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + Minuten + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + Blöcke + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Verbinden... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Layer 2-Netzwerke + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Über das Projekt + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Das Open-Source-Projekt von mempool zielt darauf ab, eine qualitativ hochwertige Explorer- und Visualisierungswebsite für das gesamte Bitcoin-Ökosystem zu implementieren, ohne Ablenkungen durch Altcoins, Werbung oder Tracker von Drittanbietern. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Maintainer + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Entwicklung + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Betrieb + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsoren ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Werde ein Sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Rechnung anfordern + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Nutzungsbedingungen + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Gehe zu + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + um zu sponsern + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Mindestbetrag + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Der Mindestbetrag beträgt 0,001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Wenn Sie 0,01 BTC oder mehr spenden, wird Ihr Profilfoto zur Liste der Sponsoren oben hinzugefügt :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Warten auf die Transaktion ... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Spende bestätigt! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Vielen Dank! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Wenn Sie ein Twitter-Handle angegeben haben, sollte das Profilfoto jetzt beim erneuten Laden auf dieser Seite sichtbar sein. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Laden von Grafiken ... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool in vBytes (sat / vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transaktion vBytes pro Sekunde (vB / s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Warten auf Blöcke ... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes pro Sekunde: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempool Größe: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Das Backend synchronisiert + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Gebührenspanne + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Gesamtgebühren + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Name + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Präzision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Verbrannte Menge + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Aussteller + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Ausgabe TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Ausgegebener Betrag + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Umlaufmenge + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Fehler beim Laden der Asset-Daten. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Unbekannt + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Niedrige Priorität + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Mittlere Priorität + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Hohe Priorität + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Neueste Blöcke + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TX + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Alles anzeigen » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Neueste Transaktionen + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Menge + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Gebühr + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Mempool Größe + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Unbestätigt + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + Block + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Eingehende Transaktionen + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Schwierigkeitsanpassung + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Beschreibung + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Standard-Push: action: 'want', data: ['blocks', ...] , um auszudrücken, was Sie pushen möchten. Verfügbar: blocks , mempool-block , live-2h-chart, und stats. Transaktionen pushen in Bezug auf die Adresse: 'track-address': '3PbJ...bF9B'  um alle neuen Transaktionen zu empfangen, die diese Adresse als Input oder Ouput enthalten. Gibt ein Array von Transaktionen zurück. address-transactions für neue Mempool-Transaktionen und block-transactions für neue blockbestätigte Transaktionen. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Gebühren + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Gibt unsere derzeit vorgeschlagenen Gebühren für neue Transaktionen zurück. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Gibt den aktuellen Mempool als projizierte Blöcke zurück. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Gibt die aktuellen Mempool-Backlog-Statistiken zurück. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Holt die vollständige Liste der txids im Mempool als Array. Die Reihenfolge der txids ist beliebig und stimmt nicht mit bitcoind überein. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Holt eine Liste der letzten 10 Transaktionen, die im Mempool angekommen sind. Jedes Transaktionsobjekt enthält vereinfachte Übersichtsdaten mit den folgenden Feldern: txid, fee, vsize, und value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Blöcke + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Gibt den Bestätigungsstatus eines Blocks zurück. Verfügbare Felder: in_best_chain (boolean, false für orphaned Blöcke), next_best (der Hash des nächsten Blocks, nur für Blöcke in der best chain verfügbar). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Gibt eine Liste der Transaktionen im Block zurück (bis zu 25 Transaktionen beginnend mit start_index ). Hier zurückgegebene Transaktionen haben nicht das Feld status, da alle Transaktionen denselben Block- und Bestätigungsstatus haben. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Gibt eine Liste aller txids im Block zurück. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Gibt die Transaktion am Index :Index innerhalb des angegebenen Blocks zurück. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Gibt die Rohblockdarstellung in Binärform zurück. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Gibt den Hash des Blocks zurück, der sich derzeit in :height befindet zurück. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Gibt die 10 neuesten Blöcke zurück, die an der Spitze oder bei :start_height beginnen, falls angegeben. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Gibt die Höhe des letzten Blocks zurück. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Gibt den Hash des letzten Blocks zurück. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Gibt Details zu einem Block zurück. Verfügbare Felder: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, und previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transaktionen + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Gibt Details zu einer Transaktion zurück. Verfügbare Felder: txid, version, locktime, size, weight, fee, vin, vout, und status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Gibt den Bestätigungsstatus einer Transaktion zurück. Verfügbare Felder: confirmed (boolean), block_height (optional), und block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Gibt eine als Hex serialisierte Transaktion zurück. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Gibt eine Transaktion als Binärdaten zurück. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Gibt einen Merkle-Einschlussnachweis für die Transaktion im Electrum blockchain.transaction.get_merkle Format zurück. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Gibt den Ausgabenstatus einer Transaktionsausgabe zurück. Verfügbare Felder: spent (boolean), txid (optional), vin (optional), und status (Optional, den Status der spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Gibt den Ausgabenstatus aller outputs der Transaktion zurück. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Sendet eine Rohtransaktion an das Netzwerk. Die Transaktion sollte in Hex angegeben werden. Die txid wird bei Erfolg zurückgegeben. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Gibt einen Merkle-Einschlussnachweis für die Transaktion im Bitcoind Merkleblock Format zurück. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Adressen + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Gibt Details zu einer Adresse zurück. Verfügbare Felder: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, und spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Abrufen des Transaktionsverlaufs für die angegebene Adresse / den angegebenen Scripthash, sortiert nach der neuesten zuerst. Gibt bis zu 50 Mempool-Transaktionen und die ersten 25 bestätigten Transaktionen zurück. Sie können weitere bestätigte Transaktionen mit :last_seen_txid anfordern (siehe unten). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Erhalten Sie einen bestätigten Transaktionsverlauf für die angegebene Adresse / den angegebenen Scripthash, sortiert nach der neuesten zuerst. Gibt 25 Transaktionen pro Seite zurück. Weitere können angefordert werden, indem die letzte txid angegeben wird, die in der vorherigen Abfrage angezeigt wurde. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Abrufen des unbestätigten Transaktionsverlaufs für die angegebene Adresse / den angegebenen Scripthash. Gibt bis zu 50 Transaktionen zurück (kein Paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Ruft die Liste der nicht ausgegebenen Transaktionsausgaben ab, die der Adresse / dem Scripthash zugeordnet sind. Verfügbare Felder: txid, vout, value, and status (mit dem Status der funding tx).Da ist auch das valuecommitment Feld, dass auftauchen kann, an Stelle von value, mit den Folgenden zusätzlichen Feldern: asset/assetcommitment, nonce/noncecommitment, surjection_proof, und range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Vermögenswerte + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Gibt Informationen zu einem Liquid Vermögenswert zurück. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Gibt Transaktionen zurück, die dem angegebenen Liquid Vermögenswert zugeordnet sind. Gibt für den nativen Vermögenswert des Netzwerks eine Liste der Transaktionen peg in, peg out, und burn Transaktionen zurück. Gibt für vom Benutzer ausgegebene Vermögenswerte eine Liste der peg in, peg out, und burn Transaktionen zurück. Beinhaltet keine regulären Transaktionen, die diesen Vermögenswert übertragen. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Rufen Sie das aktuelle Gesamtangebot des angegebenen Assets ab. Für das native Asset (L-BTC) wird dies berechnet als [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Für ausgegebene Vermögenswerte wird dies berechnet als [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Nicht verfügbar für Vermögenswerte mit blinded issuances. Wenn /decimal ,angegeben ist, wird das Angebot entsprechend der Teilbarkeit des Vermögenswertes als Dezimalzahl zurückgegeben. Andernfalls in Basiseinheiten zurückgegeben. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Gibt Statistiken über alle Bisq-Transaktionen zurück. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Gibt Details zu einer Bisq-Transaktion zurück. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Gibt :length der letzten Bisq-Transaktionen zurück, beginnend mit :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Gibt alle Bisq-Transaktionen zurück, die in einem Bitcoin-Block vorhanden sind. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Gibt :length Bitcoin-Blöcke, die Bisq-Transaktionen enthalten, beginnend mit :index zurück. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Gibt die zuletzt verarbeitete Bitcoin-Blockhöhe zurück, die von Bisq verarbeitet wurde. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Gibt alle Bisq-Transaktionen zurück, die zu einer Bitcoin-Adresse gehören, wobei vor der Adresse 'B' steht. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Adresse + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Insgesamt empfangen + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Insgesamt gesendet + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Guthaben + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + von + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Fehler beim Laden der Adressdaten. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + Grade eben + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + vor einer Sek. + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + vor Sek. + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + vor einer Sekunde + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + vor Sekunden + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + vor einer min. + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + vor Min. + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + vor einer Minute + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + vor Minuten + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + vor einer Stunde + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + vor Stunden + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + vor einem Tag + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + vor Tagen + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + vor einer Woche + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + vor Wochen + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + vor einem Monat + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + vor Monaten + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + vor einem Jahr + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + vor Jahren + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Überbezahlt x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Überbezahlt x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf new file mode 100644 index 000000000..0396140a1 --- /dev/null +++ b/frontend/src/locale/messages.en_US.xlf @@ -0,0 +1,2016 @@ + + + + + Transaction + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf new file mode 100644 index 000000000..543c1b3ec --- /dev/null +++ b/frontend/src/locale/messages.es.xlf @@ -0,0 +1,2226 @@ + + + + + Transaction + Transacción + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Esta transacción ha sido reemplazada por: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + confirmación + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + confirmaciones + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Sin confirmar + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Entradas y salidas + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detalles + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Detalles + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Tamaño + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Peso + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Sello de tiempo + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Tasa + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Tasa por vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Incluido en el bloque + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Confirmado + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Después + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Características + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + Tiempo esparado de llegada + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Visto por primera vez + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + En unas cuantas horas (o más) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minutos + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + bloque + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transacción no encontrada + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Esperando a que aparezca en la mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Confidencial + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Monedas recién generadas) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSecuencia + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Testigo + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + script de canje P2SH + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + script de testigo P2WSH + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Script de salida previo + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Cargar todas + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-out a + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Tipo + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + dato + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + confirmación + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + confirmaciones + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Sin confirmar + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + Génesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Bloque + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Sello de tiempo + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Tamaño + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Peso + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Minero + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Tasa mediana + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Total de tasas + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Subsidio + tasas: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transacción + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transacciones + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Error cargando datos de bloque + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID, altura de bloque, hash o dirección + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Altura + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Minado + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transacciones + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Completado + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig de + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Peg-out de capa + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + En + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minuto + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minutos + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + bloques + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Sin conexión + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Reconectando... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Redes de segunda capa + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Sobre el proyecto + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Mempool es un proyecto de código abierto cuyo objetivo es proporcionar una web donde explorar y visualizar todo el ecosistema de Bitcoin de la mejor forma posible, sin distracciones como altcoins, publicidad o rastreadores de terceros. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Mantenedores + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Desarrollo + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operaciones + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Patrocinadores ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Sé patrocinador ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Solicitar factura + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Términos de servicio + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Navegar a + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + Al patrocinador + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Cantidad requerida + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + La cantidad mínima es 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Si donas 0.01 BTC o más, tu foto de perfil aparecerá en la lista de patrocinadores que puedes ver aquí arriba :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Cargando transacción... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + ¡Donación confirmada! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + ¡Gracias! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Si ha especificado un usuario de Twitter, la foto de perfil ahora debe ser visible en esta página cuando recargue. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Cargando gráficos... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool en vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + vBytes de transacciones por segundo (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Cargando bloques... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes por segundo: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Tamaño del Mempool: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + El backend se está sincronizando + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Rango de tasas + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Tasas totales + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Nombre + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Precisión + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Cantidad quemada + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Emisor + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + TX de emisión + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Cantidad emitida + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Cantidad en circulación + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Error cargando datos del activo + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Desconocido + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Baja prioridad + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Media prioridad + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Alta prioridad + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Últimos bloques + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Ver todos » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Últimas transacciones + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Cantidad + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Tasa + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Tamaño de la mempool + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Sin confirmar + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + bloque + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Transacciones entrantes + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Ajuste de dificultad + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Descripción + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Push por defecto: action: 'want', data: ['blocks', ...] para expresar lo que quieres que se envíe. Disponible: blocks, mempool-block, live-2h-chart, and stats.Envía transacciones relacionadas a la dirección: 'track-address': '3PbJ...bF9B' para recibir todas las nuevas transacciones que contentan dicha dirección como input o output. Retorna un arreglo de transacciones. address-transactions para nuevas transacciones de la mempool, y block-transactions para nuevas transacciones de bloque confirmado. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Tasas + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Muestra las tarifas que sugerimos en este momento para nuevas transacciones. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Muestra el mempool actual como bloques proyectados. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Muestra estadísticas sobre el backlog del mempool en este momento. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Obtiene el listado completo de txids en la mempool como un arreglo. El orden de los txids es arbitrario y no coincide con bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Obtiene una lista de las últimas 10 transacciones que ingresaron a la mempool. Cada elemento de transacciones contiene un resumen simplificado de datos con los siguientes campos: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Bloques + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Retorna el estado de confirmación de un bloque. Campos disponibles: in_best_chain (boolean, falso para bloques huérfanos), next_best (el hash del próximo bloque, sólo disponible para bloques en la mejor cadena o "best chain"). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Retorna una lista de transacciones en el bloque (hasta 25 transacciones comenzando en start_index). Las transacciones incluidas aquí no contienen el campo status ya que todas las transacciones comparten el mismo bloque y estado de confirmación. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Muestra una lista con todos los txids del bloque. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Muestra la transacción en el índice :index dentro del bloque especificado. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Muestra una representación en bruto del bloque en formato binario. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Muestra el hash del bloque actualmente en :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Muestra los 10 bloques más nuevos comenzando desde el último o desde el :start_height si se especifica. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Muestra la altura del último bloque. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Muestra el hash del último bloque. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Muestra información sobre un bloque. Campos disponibles: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, y previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transacciones + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Muestra información sobre una transacción. Campos disponibles: txid, version, locktime, size, weight, fee, vin, vout, y status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Muestra el estado de confirmación de una transacción. Campos disponibles: confirmed (boolean), block_height (optional), y block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Muestra una transacción serializada como hexadecimal. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Muestra una transacción como datos binarios. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Retorna una prueba de inclusión de merkle para la transacción utilizando el formato de Electrum blockchain.transaction.get_merkle. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Retorna el estado de gasto de un "output" de transacción. Campos disponibles: spent (boolean), txid (opcional), vin (opcional), y status (opcional, el estado de la transacción de gasto). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Muestra el estado del gasto de todas las transacciones salientes. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Transmite una transacción cruda a la red. La transacción debe ser provista como hexadecimal en el cuerpo de la petición. El txid será retornado en caso de éxito. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Retorna una prueba de inclusión merkle para la transacción utilizando el formato de bitcoind masterblock. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Direcciones + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Returna detalles acerca de una dirección. Campos disponibles: address, chain_stats, y mempool_stats. Cada uno de los campos chain,mempool_stats contiene un objeto con tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, y spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Obtiene la historia de una transacción para la dirección/scripthash especificada, ordenando primero los más recientes. Retorna hasta 50 transacciones de la mempool, además de las primeras 25 transacciones confirmadas. Se pueden solicitar más transacciones confirmadas utilizando :last_seen_txid (ver más abajo). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Obtiene la historia de una transacción confirmada para la dirección/scripthash especificada, ordenando primero los más recientes. Retorna hasta 25 transacciones por página. Se pueden solicitar más especificando el último txid visto por la consulta anterior. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Obtiene la historia de una transacción sin confirmar para la dirección/scripthash especificada. Retorna hasta 50 transacciones (sin paginación). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Obtiene la lista de salidas de transacciones sin gastar (UTXO) asociadas con la dirección/scripthash. Campos disponibles: txid, vout, value, y status (con el estado de la transacción de fondeo).Existe también el campo valuecommitment que puede aparecer en lugar de value, además de los siguientes campos adicionales: asset/assetcommitment, nonce/noncecommitment, surjection_proof, y range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Activos + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Muestra información sobre activos de Liquid. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Retorna las transacciones asociadas con el activo Liquid especificado. Para el activo nativo de la red, devuelve una lista de los "peg in", "peg out", y transacciones de quemado (burn). Para activos emitidos por el usuario, retorna una lista de emisión, re-emisión, y transacciones de quemado. No incluye transacciones regulares de transferencia del activo. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Obtiene la oferta total actual para el activo especificado. Para el activo nativo (L-BTC), esto es calculado como [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Para los activos emitidos, esto es calculado como [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. No disponible para activos con emisión ciega u oculta. Si se especifica /decimal, retorna la oferta como decimal de acuerdo a la divisibilidad del activo. De otro modo, lo retorna en la unidad base. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Muestra estadísticas sobre todas las transacciones de Bisq. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Muestra detalles sobre una transacción Bisq. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Muestra :length de las últimas transacciones de Bisq, empezando desde :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Muestra todas las transacciones de Bisq que existen en un bloque de Bitcoin. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Muestra :lenght bloques de Bitcoin que contienen transacciones Bisq, comenzando por: index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Muestra la altura del último bloque de Bitcoin procesado por Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Muestra todas las transacciones de Bisq que pertenecen a una dirección de Bitcoin, con el prefijo 'B' delante de la dirección. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Dirección + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total recibido + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total enviado + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Saldo + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + de + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Errar cargando datos de dirección + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + Ahora mismo + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + Hace segundo + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + Hace segundos + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + Hace segundo + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + Hace segundos + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + Hace minuto + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + Hace minutos + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + Hace minuto + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + Hace minutos + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + Hace hora + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + Hace horas + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + Hace día + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + Hace día + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + Hace semana + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + Hace semanas + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + Hace mes + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + Hace meses + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + Hace año + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + Hace años + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Óptima + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Pagado por demás x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Pagado de más x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf new file mode 100644 index 000000000..00733aba4 --- /dev/null +++ b/frontend/src/locale/messages.fa.xlf @@ -0,0 +1,2217 @@ + + + + + Transaction + تراکنش + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + این تراکنش جایگزین شده است: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + تایید + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + تأیید + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + تأیید نشده + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + ورودی‌ها و خروجی‌ها + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + جزئیات + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + جزئیات + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + اندازه + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + وزن + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + برچسب‌زمانی + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + کارمزد + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + کارمزد بر vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + قرارگرفته در بلاک + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + تأیید شده + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + بعد از + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + ویژگی‌ها + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + تخمین + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + ساتوشی + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + اولین زمان دیده‌شدن + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + در چند (یا چندین) ساعت آینده + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + دقیقه + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + بلاک + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + تراکنش پیدا نشد. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + منتظر دیده‌شدن در mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + محرمانه + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (سکه‌های تازه تولید شده) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + شاهد + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + اسکریپت نقد کردن P2SH + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + اسکریپت شاهد P2WSH + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + اسکریپت خروجی قبلی + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + بازکردن همه + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-out به + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + نوع + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + داده + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + ساتوشی + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + تأیید + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + تأیید + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + تأیید نشده + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + پیدایش + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + بلاک + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + چکیده + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + برچسب‌زمانی + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + اندازه + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + وزن + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + استخراج‌کننده + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + کارمزد میانه + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + محموع کارمزدها + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + یارانه بلاک + کارمزدها + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + تراکنش + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + تراکنش + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + خطا در بازکردن داده‌های بلاک. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + طول + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + استخراج‌شده + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + تراکنش‌ها + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + پُرشده + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + چندامضایی از + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Peg-out لایه + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + در + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + دقیقه + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + دقیقه + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + بلاک + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + خاموش + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + در حال اتصال... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + درباره پروژه + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + پروژه متن‌باز ممپول یک کاوشگر باکیفیت و سایت بصری‌ساز برای همه زیست‌بوم بیت‌کوین است و کاربر را درگیر حواس‌پرتی‌هایی مثل آلت‌کوین‌ها، تبلیغات و جاسوس‌افزارها نمی‌کند. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + توسعه‌دهنده‌ها + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + توسعه‌دهنده + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + امور عملیاتی + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + حامیان ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + حامی شوید ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + درخواست فاکتور + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + شرایط خدمات + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + برای حمایت به + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + برو + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + مبلغ مورد نیاز است + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + حداقل مبلغ 0.001 بیت‌کوین است + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + اگر 0.01 بیت‌کوین یا بیشتر اهدا کنید، تصویر شما به لیست حامیان بالا اضافه می‌شود :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + منتظر تراکنش... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + اهدا هدیه تایید شد! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + ممنون! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + اگر یک نام‌کاربری توئیتری مشخص کرده باشید، تصویر حساب شما بعد از بازنشانی به این صفحه اضافه خواهد شد. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + در حال بازکردن گراف‌ها... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + وضعیت ممپول به vByte (ساتوشی به vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + تراکنش vByte بر ثانیه (vB بر ثانیه) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + منتظر بلاک‌ها... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + تراکنش vByte بر ثانیه: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + اندازه ممپول: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + زیرساخت در حال همگام‌سازی است + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + بازه‌ی کارمزد + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + مجموع کارمزدها + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + نام + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + دقت + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + مبلغ سوزانده‌شده + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + صادرکننده + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + تراکنش صدور + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + مبلغ صادر شده + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + مبلغ در گردش + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + خطا در بازکردن داده‌های دارایی. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + ناشناخته + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + اولویت پایین + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + اولویت متوسط + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + اولویت بالا + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + آخرین بلاک‌ها + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + تراکنش‌ها + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + نمایش همه » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + آخرین تراکنش‌ها + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + شناسه + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + مبلغ + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + کارمزد + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + اندازه ممپول + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + تأیید نشده + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + بلاک + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + تراکنش‌های منتشرشده + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + تنظیم سختی بلاک‌ها + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + نقطه اتصال + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + توضیحات + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + دستور پیش‌فرض: action: 'want', data: ['blocks', ...] که نشان می‌دهد چه چیزی باید ارسال شود. گزینه‌های در دسترس: blocks,mempool-block,live-2h-chart, و stats.دستورهای مربوط به آدرس 'track-address': '3PbJ...bF9B'جهت دریافت تمام تراکنش‌های جدیدی که خروجی یا ورودی‌های آنها شامل این آدرس می‌شود. آرایه‌ای از تراکنش‌ها برمی‌گرداند. address-transactionsبرای تراکنش‌های جدید ممپول، و block-transactionsبرای تراکنش‌های بلاک تایید شده‌ی جدید. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + کارمزدها + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + کارمزدهای پیشنهادی ما را برای تراکنش‌های جدید برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + ممپول فعلی را در قالب بلاک‌های احتمالی برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + ممپول + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + آمارهای ممپول فعلی را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + دریافت لیست کامل شناسه تراکنش‌های ممپول به عنوان آرایه. ترتیب شناسه‌ها دلبخواه است و منطبق با ترتیب bitcoind نیست. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + دریافت لیست 10 تراکنش اخیر که وارد ممپول شده‌اند. هر شئ ترامنش شامل یک سری داده خلاصه است که شامل این فیلد‌ها می‌شود: txid, fee, vsize, و value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + بلاک‌ها + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + وضعیت تایید یک بلاک را برمی‌گرداند. فیلدهای در دسترس: in_best_chain(از نوع boolean و مقدارش برای بلاک‌های یتیم false است)، next_best(چکیده بلاک بعدی، فقط برای بلاک‌های بهترین زنجیره در دسترس است). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + لیست تراکنش‌های بلاک را برمی‌گرداند (25 تراکنش ابتدایی که از start_index شروع می‌شود). تراکنش‌های ارسالی شامل فیلد status نیستند، چون مقدار آن برای همه تراکنش‌های یک بلاک یکسان است. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + لیست شناسه تمام تراکنش‌های بلاک را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + تراکنش موجود در اندیس :indexبلاک مشخص شده را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + نمایش خام بلاک در قالب باینری را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + چکیده بلاک موجود در طول :heightرا برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + لیست 10 بلاک آخر را از آخرین بلاک و یا در صورت تنظیم کردن فیلد مربوطه از :start_heightبرمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + طول آخرین بلاک را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + چکیده آخرین بلاک را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + تراکنش‌ها + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + جزئیات تراکنش را برمی‌گرداند. فیلدهای در دسترس: txid, version, locktime, size, weight, fee, vin, vout, و status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + وضعیت تایید یک تراکنش را برمی‌گرداند. فیلدهای در دسترس: confirmed(boolean),block_height (optional) و block_hash(optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + یک تراکنش را در قالب hex برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + یک تراکنش را در قالب داده‌های باینری برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + یک «اثبات وجود در مرکل» برای تراکنش برمی‌گرداند که در قالب Electrum's blockchain.transaction.get_merkleاست. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + وضعیت خرج شدن همه خروجی تراکنش‌ها را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + یک تراکنش خام را در شبکه منتشر می‌کند. تراکنش باید به صورت hex در بدنه درخواست وارد شود. مقدار txidدر صورت موفقیت برگردانده می‌شود. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + یک «اثبات وجود در مرکل» برای تراکنش برمی‌گرداند که در قالب bitcoind's merkleblockاست. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + آدرس‌ها + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + دریافت تاریخچه تراکنش‌های تایید شده برای یک آدرس/چکیده‌اسکریپت، مرتب شده از جدید به قدیم. در صفحه 25 تراکنش برمی‌گرداند. دریافت تراکنش‌های بیشتر با تعیین آخرین شناسه تراکنش دیده شده در پرس‌جو قبلی میسر خواهد شد. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + دریافت تاریخچه تراکنش‌های تایید نشده برای یک آدرس/چکیده‌اسکریپت. تا 50 تراکنش (بدون صفحه بندی). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + دارایی‌ها + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + اطلاعاتی درباره یک دارایی Liquid برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + آمار‌های مربوط به تمام تراکنش‌های Bisq برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + جزئیات یک تراکنش Bisq را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + مقدار :length آخرین تراکنش Bisq را برمی‌گرداند، شروع از :index + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + تمام تراکنش‌های Bisq موجود در یک بلاک بیت‌کوین را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + مقدار :length بلاک‌های بیت‌کوینی که شامل تراکنش‌های Bisq هستند را برمی‌گرداند، شروع از :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + طول آخرین بلاک بیت‌کوین پردازش شده توسط Bisq را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + تمام تراکنش‌های Bisq مربوط به یک آدرس بیت‌کوین، که یک 'B' به ابتدای آن افزوده شده را برمی‌گرداند. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + آدرس + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + مجموع دریافت‌ها + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + مجموع ارسال‌ها + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + موجودی + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + از + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + حطا در بازکردن داده‌های آدرس. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + همین الان + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + ثانیه پیش + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + ثانیه پیش + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + ثانیه پیش + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + ثانیه پیش + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + دقیقه پیش + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + دقیقه پیش + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + دقیقه پیش + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + دقیقه پیش + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + ساعت پیش + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + ساعت پیش + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + روز پیش + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + روز پیش + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + هفته پیش + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + هفته پیش + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + ماه پیش + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + ماه پیش + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + سال پیش + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + سال پیش + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + بهینه + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + برابر اضافه پرداخت! + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + برابر اضافه پرداخت! + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf new file mode 100644 index 000000000..cd3d5cf18 --- /dev/null +++ b/frontend/src/locale/messages.fr.xlf @@ -0,0 +1,2134 @@ + + + + + Transaction + Transaction + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Cette transaction a été remplacée par: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + confirmation + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + confirmations + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + non confirmées + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Entrées & Sorties + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Détails + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Détails + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Taille + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Poids + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Frais + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Frais par vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Inclus dans le bloc + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Confirmé + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Après + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Fonctionnalités + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + HAP + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Vu pour la première fois + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Dans plusieurs heures (ou plus) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minutes + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + bloc + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transaction introuvable. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Veuillez patienter pendant que nous attendons qu'elle apparaisse dans le mempool + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Confidentiel + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Nouveaux bitcoins générés) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Témoin + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Script de sortie précédent + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Charger tout + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + Donnée + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + Sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + confirmation + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + confirmations + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Non-confirmé + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Taille + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Poids + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Mineur + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Frais médian + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Frais totaux + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + Transaction + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + Transactions + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Erreur dans le chargement des données du bloc + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Hauteur + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Miné + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transactions + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Remplis + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Dans + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + Minute + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + Minutes + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + Blocs + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Hors-ligne + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Reconnection... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + À propos du projet + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Le projet open-source mempool vise à implémenter un explorateur de haute qualité pour l'entièreté de l'éco-système Bitcoin, sans distraction comme des altcoins, des publicités, our des traqueurs tiers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Développement + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Opérations + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsors ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Devenir sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Conditions d'utilisation + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Naviguer vers + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Montant requis + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Le montant minimum est de 0,001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Si vous donnez 0,01 BTC ou plus, votre photo de profil sera ajoutée à la liste des sponsors ci-dessus :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + En attente de la transaction... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Don confirmé! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Merci! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Si vous avez indiqué un pseudo Twitter, la photo de profil devrait maintenant être visible sur cette page lorsque vous rechargez. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Chargement des graphs... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool par vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transaction vBytes par seconde (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + En attente de blocs... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes par seconde: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Taille du mempool: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Synchronisation du backend + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Frais totaux + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Nom + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Précision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Montant brulé + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Montant en circulation + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Erreur dans le chargement des données de l'asset + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Inconnue + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Priorité faible + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Priorité moyenne + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Priorité haute + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Derniers blocs + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Tout voir >> + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Dernières transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Montant + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Frais + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Taille du mempool + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Non confirmées + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + bloc + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Transactions entrantes + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Ajustement de la difficulté + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Description + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Frais + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Retourne la hauteur du dernier bloc + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Retourne le hash du dernier bloc + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Adresse + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total reçu + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total envoyé + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + De + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Erreur dans le chargement des données de l'adresse + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + À l'instant + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf new file mode 100644 index 000000000..7783b8dd5 --- /dev/null +++ b/frontend/src/locale/messages.ja.xlf @@ -0,0 +1,2226 @@ + + + + + Transaction + トランザクション + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + このトランザクションは以下のように置き換えられました。 + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + 確認 + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + 確認 + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + 未確認 + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + インプットとアウトプット + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + 詳細 + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + 詳細 + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + サイズ + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + 重み + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + タイムスタンプ + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + 手数料 + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + vByteあたりの手数料 + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + サトシ/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + ブロックに含まれています + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + 確認済み + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + 特徴 + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + サトシ + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + 最初に見た + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + 数時間(またはそれ以上) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + ブロック + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + トランザクションが見つかりません。 + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + mempoolに表示されるのを待っています... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + 機密 + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + コインベース + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (新しく生成されたコイン) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + ペグイン + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + ウィットネス + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH引き換えスクリプト + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSHウィットネススクリプト + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + 前の出力スクリプト + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + すべてをロード + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + にペグアウト + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + タイプ + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + データ + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + サトシ + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + 確認 + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + 確認 + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + 未確認 + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + ジェネシス + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + ブロック + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + ハッシュ + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + タイムスタンプ + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + サイズ + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + 重み + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + マイナー + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + 料金の中央値 + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + 合計料金 + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + 補助金+手数料: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + トランザクション + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + トランザクション + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + ブロックデータを読み込み中にエラーが発生しました。 + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID、アドレス、ブロックハッシュなど + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + 高さ + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + 採掘された + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + トランザクション + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + サイズ + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + / マルチシグ + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + レイヤーペグアウト + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + あと + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + ブロック + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + オフライン + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + 再接続中... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + レイヤー2のネットワーク + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + プロジェクトについて + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + mempoolオープンソースプロジェクトは、アルトコイン、広告、サードパーティのトラッカーなどの気が散るものなく、ビットコインエコシステム全体に高品質のエクスプローラーと視覚化Webサイトを実装することを目的としています。 + + src/app/components/about/about.component.html + 16 + + + + Maintainers + メンテナー + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + 開発 + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + オペレーション + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + スポンサー❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + スポンサーになる❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + 請求書を依頼する + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + 利用規約 + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + 案内する + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + スポンサーに対して + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + 必要な金額 + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + 最小額は0.001BTCです + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + 0.01 BTC以上を寄付すると、プロフィール写真が上記のスポンサーリストに追加されます:) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + トランザクションを待ち... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + 寄付が確定しました! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + ありがとうございました! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Twitterハンドルを指定した場合、リロード時にプロフィール写真がこのページに表示されます。 + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + グラフを読み込み中... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + vバイト単位のMempool(サトシ/vバイト) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + トランザクションvバイト毎秒(vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + ブロックを待ち... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vバイト毎秒: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempoolサイズ: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + バックエンド同期中 + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + 料金スパン + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + 合計料金 + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + 精度 + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + バーン額 + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + 発行者 + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + 発行トランザクション + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + ペグイン + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + ペグアウト + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + 発行額 + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + 流通貨幣額 + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + アセットデータを読み込み中にエラーが発生しました。 + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + 未知 + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + 低優先 + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + 中優先 + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + 高優先 + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + 最新のブロック + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + すべてを表示» + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + 最新のトランザクション + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + 金額 + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + 手数料 + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + 米ドル + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Mempoolサイズ + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + 未確認 + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + ブロック + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + 着信トランザクション + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + 難易度調整 + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + ウェブソケット + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + エンドポイント + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + 記述 + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + 手数料 + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + 新トランザクションの現在提案手数料を返す。 + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + 予想ブロックとして現在のmempoolを返す。 + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + 現在のmempoolバックログ統計を返す。 + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + mempool内txidの全リストを配列として取得する。txidは順序不同の状態であり、bitcoindと一致しません。 + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + ブロック + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + ブロック内すべてのtxidのリストを返す。 + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + 最新ブロックの高さを返す。 + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + 最新ブロックのハッシュを返す。 + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + トランザクション + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + バイナリー・データとしてトランザクションを返す。 + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + アドレス + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + 資産 + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + 流動資産に関する情報を返す + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + すべてのBisqトランザクションに関する統計を返す。 + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Bisqトランザクションの詳細を返す。 + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + アドレス + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + 受領合計 + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + 送金合計 + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + 残高 + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + / + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + アドレスデータを読み込み中にエラーが発生しました。 + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + ちょうど今 + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + 分前 + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + 分前 + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + 分前 + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + 分前 + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + 時間前 + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + 時間前 + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + 日前 + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + 日前 + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + 週間前 + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + 週間前 + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + ヶ月前 + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + ヶ月前 + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + 年前 + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + 年前 + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + セグウィット + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + 最適 + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + 過払い + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + 過払い + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf new file mode 100644 index 000000000..f8a3ebfba --- /dev/null +++ b/frontend/src/locale/messages.ko.xlf @@ -0,0 +1,2067 @@ + + + + + Transaction + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Terms of Service + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Description + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Fees + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Blocks + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transactions + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Addresses + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf new file mode 100644 index 000000000..8b693bbd4 --- /dev/null +++ b/frontend/src/locale/messages.nl.xlf @@ -0,0 +1,2154 @@ + + + + + Transaction + Transactie + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Deze transactie is vervangen door: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + bevestiging + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + bevestigingen + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Onbevestigd + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Inputs & Outputs + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Details + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Details + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Grootte + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Gewicht + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Tijdstempel + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Vergoeding + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Vergoeding per vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Zit in blok + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Bevestigd + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Na + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Kenmerken + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Eerst gezien + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Binnen een aantal uren (of meer) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minuten + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + blok + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transactie niet gevonden. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Wachten tot het in de mempool verschijnt... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Vertrouwelijk + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Nieuw-gegenereerde munten) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Getuige-data + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH claim-script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH claim-script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Vorig output-script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + bevestiging + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + bevestigingen + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Onbevestigd + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Tijdstempel + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Grootte + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Gewicht + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Mijner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Gemiddelde vergoeding + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Totale vergoedingen + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Subsidie + vergoedingen: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transactie + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transacties + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Fout bij het laden van de blokdata. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Hoogte + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Gedolven + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transacties + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Gevuld + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig van + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Laag Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Binnen + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minuut + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minuten + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + blokken + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Opnieuw verbinden... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Over het project + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Onderhouders + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Ontwikkeling + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operaties + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsoren ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Wordt een sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Verzoek factuur + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Servicevoorwaarden + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Navigeer naar + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Bedrag vereist + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Minimumbedrag is 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Als je 0.01 BTC of meer doneert, wordt je profielfoto aan de bovenstaande lijst van sponsoren toegevoegd :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Wachten op transactie... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Donatie bevestigd! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Bedankt! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Als je een Twittergebruikersnaam hebt ingevuld dan zou de profielfoto nu op deze pagina zichtbaar zijn als je herlaadt. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Grafiek laden... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool per vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transactie-vBytes per seconde (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Wachten op blokken... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes per seconde: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempoolgrootte: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Backend is aan het synchroniseren + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Totale vergoedingen + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Naam + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Nauwkeurigheid + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Vernietigde hoeveelheid + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Uitgever + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Uitgegeven bedrag + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Circulerend bedrag + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Fout bij het laden van activagegevens. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Onbekend + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Lage prioriteit + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Gemiddelde prioriteit + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Hoge prioriteit + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Laatste blokken + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TX's + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Bekijk alles » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Laatste transacties + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Bedrag + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Vergoeding + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Mempoolgrootte + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Onbevestigd + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blok + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Inkomende transacties + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Moeilijkheidsaanpassing + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Eindpunt + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Omschrijving + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Vergoedingen + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Geeft de huidige voorgestelde transactiekosten voor nieuwe transacties. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Geeft de huidige mempool als kandidaat-blokken. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Geeft de huidige achterstand-statistieken van de mempool. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Blokken + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Adressen + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + adres + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Totaal ontvangen + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Totaal verstuurd + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balans + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + van + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Fout bij het laden van adresdata. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimaal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Te veel betaald x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Te veel betaald x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nn.xlf b/frontend/src/locale/messages.nn.xlf new file mode 100644 index 000000000..8800500d6 --- /dev/null +++ b/frontend/src/locale/messages.nn.xlf @@ -0,0 +1,2224 @@ + + + + + Transaction + Transaksjon + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Denne transaksjonen har blitt byttet ut med: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + Bekreftelse + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + Bekreftelser + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Ubekreftet + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Inputs og Outputs + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detaljer + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Detaljer + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Størrelse + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Vekt + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Tidspunkt + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Avgift + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Avgift per vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Inkludert i blokk + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Bekreftet + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Etter + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Funksjoner + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Først sett + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Om flere timer(eller mer) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minutter + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + blokker + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transaksjon ikke funnet + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Venter på at den kommer inn i mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Konfidensiell + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Nygenererte Mynter) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig(ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig(HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Vitne + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Forrige output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Last alt + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-out til + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + bekreftelse + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + bekreftelser + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Ubekreftet + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Blokk + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Tidspunkt + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Størrelse + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Vekt + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Medianavgift + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Totale avgifter + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Subsidie + avgifter: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transaksjon + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transaksjoner + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Lasting av blokk data feilet. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Høyde + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Mined + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transaksjon + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Fyllingsgrad + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig av + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Lag Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Inn + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minutt + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minutter + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + blokker + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Kobler til igjen... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Om prosjektet + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Mempool åpen-kildekode prosjektet prøver å implementere en utforsker og visualiserings webside av høy kvalitet for hele Bitcoin økosystemet, uten distraksjoner som altcoins, reklame eller tredjeparts trackere. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Vedlikeholdere + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Utviklere + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operasjoner + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsorer ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Bli en sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Be om faktura + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Vilkår for bruk + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Naviger til + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + for å sponse + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Sum som kreves + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Minimum sum er 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Hvis du donerer 0.01 BTC eller mer, så blir ditt profilbilde lagt til i listen av sponsorer ovenfor :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Venter på transaksjon... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Donasjon bekreftet! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Tusen takk! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Hvis du spesifiserte en Twitter handle, så skal profilbilde nå være synlig på denne siden når du reloader. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Laster grafer... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transaksjon vBytes per sekund (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Venter på blokker... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes per sekund: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempool størrelse + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Baksiden synkroniserer + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Avgiftsintervall + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Totale avgifter + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Navn + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Presisjon + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Sum brent + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Utsteder + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Utsteder TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged inn + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Utstedt sum + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Sirkulerende sum + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Lasting av ressurs data feilet. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Ukjent + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Lav prioritet + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Medium prioritet + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Høy prioritet + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Nyeste blokker + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Se alt » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Nyeste transaksjoner + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Sum + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Avgift + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Mempool størrelse + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Ubekreftet + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blokk + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Innkommende transaksjoner + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Vanskelighetsjustering + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endepunkt + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Beskrivelse + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Standard push: operasjon: 'want', data: ['blocks', ...] til å uttrykke hva du vil pushe. Tilgjengelig: blocks , mempool-block , live-2h-chart , og stats . Push transaksjoner relatert til adresse: 'track-address': '3PbJ...bF9B' til å motta alle nye transaksjoner som inneholder den adressen som input eller output. Returnerer en tabell av transaksjoner. adress-transactions for nye mempool transaksjoner, og block-transactions for nye blokkbekreftede transaksjoner. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Avgifter + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Returnerer vår nåværende foreslåtte avgift for nye transaksjoner. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Returnerer nåværende mempool som anslåtte blokker. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Returnerer nåværende mempool ettersleps-statistikk. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Får en full liste over txider i det nåværende mempool som en tabell. Sorteringen av txidene er tilfeldig og er ikke lik bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Får en liste over de siste 10 transaksjoner som går inn i mempool. Hvert transaksjons-objekt inneholder en forenklet oversikt, med følgende felt: txid , avgift , vsize , and verdi . + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Blokker + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Returnerer bekreftelsesstatus for en blokk. Tilgjengelige felt: in_best_chain (boolean, false for foreldreløse blokker), next_best (hashen for den neste blokken, bare tilgjengelig for blokker i den beste kjeden). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Returnerer en liste av transaksjoner i blkken (opp til 25 transaksjoner som begynner på start_index ). Transaksjoner som blir returnert her har ikke status felt, siden alle transaksjoner deler den samme blokken og bekreftelsesstatus. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Returnerer en liste av alle txider i blokken. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Returnerer transaksonen på indeks :index i den spesifiserte blokken. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Returnerer blokk representasjonen i binær. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Returnerer hashen til blokken som for tiden er :height . + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Returnerer de 10 nyeste blokkene starter fra toppen eller fra :start_height hvis spesifisert. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Returnerer høyden på den siste blokken. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Returnerer hashen av den siste blokken. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Returnerer detaljer om en blokk. Tilgjengelige felt: id , høyde , versjon , tidspunkt , bits , nonce , merkle_root , antall_tx , størrelse, vekt , bevis , og forrige_blokkhash . + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transaksjoner + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Returnerer detaljer om en transaksjon, Tilgjengelige felt: txid , versjon , locktime , størrelse , vekt , avgift , vin , vout , og status . + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Returnerer bekreftelsesstatusen til en transaksjon. Tilgjengelige felt: bekreftet (boolean), blokk_høyde (valgfri), og blokk_hash (valgfri). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Returnerer en transaksjon serialisert som hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Returnerer en transaksjon som binær data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Returnerer ett merkle inkluderingsbevis for transaksjonen som bruker Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Returnerer spendingstatusen til en transaksjon output. Tilgjengelige felt: brukt (boolean), txid (valgfri), vin (valgfri), og status (valgfri, statusen til spending-transaksonen). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Returnerer spending status fra alle transakjons outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Kringkast en rå transaksjon til nettverket. Transaksjonen må være gitt som hex. txid blir returnert. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Returnerer ett merkle inkluderingsbevis for transaksjonen som bruker bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Adresser + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Returnerer detaljer om en adresse. Tilgjengelige felt: adresse , chain_stats , og mempool_stats . chain, mempool _stats alle inneholder ett objekt med tx_count , funded_txo_count , funded_txo_sum , spend_txo_count , og spend_txo_sum . + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Få transaksjonshistorien til den spesifiserte adressen/scripthash, sortert med nyeste først. Returnerer opp til 50 mempool transaksjoner pluss de første 25 bekreftede transaksjonene. Du kan be om flere bekreftede transaksjoner hvis du bruker :last_seen_txid (se nedenfor). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Få bekreftet transaksjonshistorie for den spesifiserte adressen/scripthash, sortert med nyeste først. Returnerer 25 transaksjoner per side. Flere kan bli bedt om hvis du spesifiserer den siste txid som er sett av den forrige. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Få ubekreftet transaksjonshistorie av den spesifiserte adressen/scripthash. Returnerer opp til 50 transaksjoner (ingen paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Får en liste av ubrukte transaksjon-outputs assosiert med adressen/scripthash. Tilgjengelige felt: txid , vout, verdi , og status (med statusen for finansieringstransaksjonen). Det er også en verdiforpliktelse felt som kan vises istedenfor verdi , pluss følgende ytterligere felt: ressurs /ressrsforpliktelse , nonce /nonceforpliktelse , overgivelse_bevis , og intervall_bevis . + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Returnerer informasjon om en Liquid ressurs. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Returnerer transaksjoner assosiert med den spesifiserte Liquid ressurs. For nettverkets native ressurs, returnerer en liste av peg in, peg out, og burn transaksjoner. For brukerutsdedte ressurser, returnerer en liste av utstedelse, gjenutstedelse, og brenn transaksjoner. Inkluderer ikke normale transaksjoner som overfører denne ressursen. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Får den nåværende totale forsyningen for den spesifiserte ressursen. For den native ressursen (L-BTC), dette er kalkulert slik [kjede,mempool]_stats.peg_in_mengde - [kjede,mempool]_stats.peg_out_mengde - [kjede,mempool]_stats.brent_mengde. For utstedte ressurser er det kalkulert slik [kjede,mempool]_stats.utstedt_mengde - [kjede,mempool]_stats.brent_mengde. Ikke tilgjengelig for ressurser med blindet utstedelse. Hvis /decimal er spesifisert, returnerer forsyningen som en desimal i henhold til ressursens delbarhet. Ellers, returnerer i baseenheter. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Returnerer statistikk om alle Bisq transaksjoner. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Returnerer detaljer om en Bisq transaksjon. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Returnerer :lengde av siste Bisq transaksjoner, starter fra :indeks. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Returnerer alle Bisq transaksjoner som eksisterer i en Bitcoin blokk. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Returnerer :lengde Bitcoin blokker som inneholder Bisq transaksjoner, starter fra :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Returnerer den nyeste prosesserte Bitcoin blokkhøyde prosessert av Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Returnerer alle Bisq transaksjoner som tilhører en Bitcoin adresse, med 'B' prefikset foran adressen. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Adresse + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Totalt mottatt + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Totalt sendt + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balanse + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + av + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Lasting av adressedata feilet. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + Akkurat nå + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + sek siden + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + sek siden + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + sekund siden + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + sekunder siden + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + min siden + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + min siden + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + minutt siden + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + minutter siden + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + time siden + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + timer siden + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + dag siden + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + dager siden + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + uke siden + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + uker siden + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + måned siden + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + måneder siden + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + år siden + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + år siden + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Overbetalt x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Overbetalt x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf new file mode 100644 index 000000000..556fac6c0 --- /dev/null +++ b/frontend/src/locale/messages.pl.xlf @@ -0,0 +1,2046 @@ + + + + + Transaction + Transakcja + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Ta transakcja została zastąpiona przez: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + potwierdzenie + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + potwierdzenia + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Niepotwierdzona + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Wejścia i Wyjścia + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Szczegóły + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Szczegóły + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Rozmiar + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Waga + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Datownik + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Opłata + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Opłata za vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Włączona w blok + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Potwierdzona + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Po + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Cechy + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + Szacowany czas + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Najpierw widoczna + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + W ciągu kilku godzin (lub dłużej) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minut + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + blok + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transakcja nie odnaleziona + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Oczekiwanie aż pojawi się w mempool + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Nowo Wygenerowane Monety) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf new file mode 100644 index 000000000..69be4cf97 --- /dev/null +++ b/frontend/src/locale/messages.pt.xlf @@ -0,0 +1,2187 @@ + + + + + Transaction + Transação + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Essa transação foi substituída por: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + confirmação + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + confirmações + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Não confirmado + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Entradas & Saídas + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detalhes + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Detalhes + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Tamanho + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Peso + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Data e horário + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Taxa + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Taxa por vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Incluído no bloco + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Confirmado + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Depois + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Características + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Visto pela primeira vez + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Em várias horas (ou mais) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minutos + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + bloco + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transação não encontrada. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Aguardando que apareça no mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Coinbase + Conteúdo no bloco + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Moedas Recém-Geradas) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Indexado em + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Testemunho + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH script de resgate + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH script de testemunho + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Script de saída anterior + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Carregar tudo + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Atrelado para + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Tipo + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + dados + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + confirmação + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + confirmações + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Não confirmado + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Confidential + Confidencial + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 112 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Data e horário + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Tamanho + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Peso + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Minerador + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Taxa média + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Total de taxas + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Recompensa + taxas: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transação + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transações + + src/app/components/block/block.component.html + 85 + + + src/app/components/address/address.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + shared.transaction-count.plural + + + Error loading block data. + Erro ao carregar os dados do bloco. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + Address + Endereço + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total recebido + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total enviado + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Saldo + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + de + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Erro ao carregar os dados do endereço. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + Height + Altura + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Minerado + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transações + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Preenchido + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig de + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Camada Atrelado + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Em + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minuto + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minutos + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + blocos + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Sem conexão + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Reconectando... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + About the project + Sobre o projeto + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + O projeto de código aberto mempool visa implementar um explorador de alta qualidade e um site de visualização para todo o ecossistema Bitcoin, sem distrações como altcoins, publicidade ou rastreadores de terceiros. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Mantenedores + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Desenvolvimento + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operação + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Patrocinadores ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Seja um patrocinador ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Solicitação de Pagamento + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Termos de Serviço + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Navegar para + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + patrocinar + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Quantidade necessária + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Quantidade mínima é 0,001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Se você doar 0,01 BTC ou mais, sua foto de perfil será adicionada na lista de patrocinadores acima :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Aguardando transação... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Doação confirmada! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Obrigado! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Se você especificou um identificador do Twitter, a foto do perfil agora deve estar visível nesta página quando você recarregar. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Carregando gráficos... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool em vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transação vBytes por segundo (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Aguardando os blocos... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Transação vBytes por segundo: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Tamanho do mempool: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Processo interno está sincronizando + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Extensão da taxa + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Taxas totais + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Nome + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Precisão + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Quantia queimada + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Emissor + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Emissão da transação + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Indexado em + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Atrelado + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Quantia emitida + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Quantidade circulante + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Erro ao carregar os dados do ativo. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Desconhecido + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Baixa prioridade + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Média prioridade + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Alta prioridade + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Últimos blocos + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + Transações + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Ver tudo » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Últimas transações + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + ID da transação + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Quantia + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Taxa + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + Dólar + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Tamanho do mempool + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Não confirmado + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + bloco + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Transações de entrada + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Próximo ajuste de dificuldade + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Descrição + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Empurrão padrão: action: 'want', data: ['blocks', ...] para expressar o que você deseja empurrar. Disponível: blocks , mempool-block, live-2h-chart e stats. Empurrar transações relacionadas ao endereço: 'track-address': '3PbJ ... bF9B' para receber todas as novas transações contendo aquele endereço como entrada ou saída. Retorna um array de transações. endereço de transações para novas transações no mempool e transações no bloco para novas transações de bloco confirmadas. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Taxas + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Retorna nossas taxas sugeridas atualmente para novas transações. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Retorna o mempool atual como blocos projetados. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Retorna as estatísticas atuais do backlog do mempool. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Obtenha a lista completa de ID de transações no mempool como um array. A ordem dos IDs de transações é arbitrária e não corresponde ao Bitcoin Core daemon. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Obtenha uma lista das últimas 10 transações para entrar no mempool. Cada objeto de transação contém dados de visão geral simplificados, com os seguintes campos: ID da transação, taxa, tamanho virtual e valor. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Blocos + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Retorna o status de confirmação de um bloco. Campos disponíveis: na_melhor_corrente (booleano, falso para blocos órfãos), melhor_próximo (o hash do próximo bloco, disponível apenas para blocos na melhor cadeia). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Retorna uma lista de transações no bloco (até 25 transações começando em índice_inicial). As transações retornadas aqui não possuem o campo de status, pois todas as transações compartilham o mesmo bloco e status de confirmação. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Retorna uma lista de todos os IDs de transações no bloco. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Retorna a transação no índice :índice dentro do bloco especificado. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Retorna a representação do bloco bruto em binário. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Retorna o hash do bloco atualmente na :altura. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Retorna os 10 blocos mais novos começando na ponta ou em :inicio_altura se especificado. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Retorna a altura do último bloco. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Retorna o hash do último bloco. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Retorna detalhes sobre um bloco. Campos disponíveis: id, altura, versão, data e horário, bits, nonce, merkle_root, tx_count, tamanho, peso, prova e bloco anterior. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transações + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Retorna detalhes sobre uma transação. Campos disponíveis: ID da transação, versão, tempo de bloqueio, tamanho, peso, taxa, vin, vout e status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Retorna o status de confirmação de uma transação. Campos disponíveis: confirmado (booleano), altura_bloco (opcional) e hash_bloco (opcional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Retorna uma transação serializada como hexadecimal. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Retorna uma transação como dados binários. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Retorna uma prova de inclusão de merkle para a transação usando o formato Electrum do blockchain.transaction.get_merkle. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Retorna o status de gastos de uma saída de transação. Campos disponíveis: gasto (booleano), ID da transação (opcional), vin (opcional) e status (opcional, o status da transação de gasto). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Retorna o status de gastos de todas as saídas da transação. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Transmita uma transação bruta para a rede. A transação deve ser fornecida como hexadecimal no corpo da solicitação. O ID da transação será retornado em caso de sucesso. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Retorna uma prova de inclusão de merkle para a transação usando o bloco no formato merkle do Bitcoin Core daemon. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Endereços + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Retorna detalhes sobre um endereço. Campos disponíveis: endereço, chain_stats e mempool_stats. cadeia, mempool_stats cada um contém um objeto com tx_count, funded_txo_count, funded_txo_sum, gastou_txo_count e gastou_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Obtenha o histórico de transações para o endereço/scripthash especificado, classificado com o mais recente primeiro. Retorna até 50 transações no mempool mais as primeiras 25 transações confirmadas. Você pode solicitar mais transações confirmadas usando :last_seen_txid (veja abaixo). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Obtenha o histórico de transações confirmadas para o endereço/scripthash especificado, ordenado pelo mais recente. Retorna 25 transações por página. Mais podem ser solicitados especificando o último ID de transação visto pela consulta anterior. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Obtenha o histórico de transações não confirmadas para o endereço/scripthash especificado. Retorna até 50 transações (sem paginação). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Obtenha a lista de saídas de transações não gastas associadas ao endereço/scripthash. Campos disponíveis: ID de transação, vout, value e status (com o status da transação de financiamento). Também há um campo de compromisso de valor que pode aparecer no lugar do valor, além dos seguintes campos adicionais: ativo / compromisso de ativo, nonce / compromisso de nonce, surjection_proof e range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Ativos + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Retorna informações sobre um ativo da Liquid. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Retorna as transações associadas ao recurso da Liquid especificado. Para o ativo nativo da rede, retorna uma lista de transações de indexado em, atrelado e queima. Para ativos emitidos pelo usuário, retorna uma lista de transações de emissão, reemissão e queima. Não inclui transações regulares de transferência deste ativo. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Obtenha o suprimento total atual do ativo especificado. Para o ativo nativo (L-BTC), isso é calculado como [cadeia, mempool] _stats.peg_in_amount - [cadeia, mempool] _stats.peg_out_amount - [cadeia, mempool] _stats.burned_amount. Para ativos emitidos, isso é calculado como [cadeia, mempool] _stats.issued_amount - [cadeia, mempool] _stats.burned_amount. Não disponível para ativos com emissões ocultas. Se / decimal for especificado, retorna o fornecimento como decimal de acordo com a divisibilidade do ativo. Caso contrário, retornado em unidades básicas. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Retorna estatísticas sobre todas as transações Bisq. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Retorna detalhes sobre uma transação Bisq. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Retorna :comprimento das últimas transações Bisq, começando em :índice. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Retorna todas as transações Bisq que existem em um bloco Bitcoin. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Retorna :comprimento dos blocos de Bitcoin que contêm transações Bisq, a partir de :índice. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Retorna a altura do bloco Bitcoin processado mais recentemente pelo Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Retorna todas as transações Bisq pertencentes a um endereço Bitcoin, com 'B' prefixado na frente do endereço. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + Replace-by-fee + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Ótimo + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Em excesso x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Em excesso x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + diff --git a/frontend/src/locale/messages.pt_BR.xlf b/frontend/src/locale/messages.pt_BR.xlf new file mode 100644 index 000000000..e92233b7f --- /dev/null +++ b/frontend/src/locale/messages.pt_BR.xlf @@ -0,0 +1,2203 @@ + + + + + Transaction + Transação + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Essa transação foi substituída por: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + confirmação + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + confirmações + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Não confirmado + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Entradas & Saídas + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detalhes + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Detalhes + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Tamanho + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Peso + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Data e horário + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Taxa + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Taxa por vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Incluído no bloco + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Confirmado + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Depois + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Características + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Visto pela primeira vez + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Em várias horas (ou mais) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minutos + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + bloco + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transação não encontrada. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Aguardando que apareça no mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Confidencial + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Conteúdo no bloco + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Moedas Recém-Geradas) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Indexado em + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Testemunho + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH script de resgate + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH script de testemunho + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Script de saída anterior + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Carregar tudo + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Atrelado para + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Tipo + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + dados + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + confirmação + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + confirmações + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Não confirmado + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Data e horário + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Tamanho + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Peso + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Minerador + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Taxa média + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Total de taxas + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Recompensa + taxas: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transação + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transações + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Erro ao carregar os dados do bloco. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Altura + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Minerado + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transações + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Preenchido + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig de + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Camada Atrelado + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Em + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minuto + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minutos + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + blocos + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Sem conexão + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Reconectando... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Sobre o projeto + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + O projeto de código aberto mempool visa implementar um explorador de alta qualidade e um site de visualização para todo o ecossistema Bitcoin, sem distrações como altcoins, publicidade ou rastreadores de terceiros. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Mantenedores + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Desenvolvimento + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operação + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Patrocinadores ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Seja um patrocinador ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Solicitação de Pagamento + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Termos de Serviço + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Navegar para + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + patrocinar + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Quantidade necessária + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Quantidade mínima é 0,001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Se você doar 0,01 BTC ou mais, sua foto de perfil será adicionada na lista de patrocinadores acima :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Aguardando transação... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Doação confirmada! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Obrigado! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Se você especificou um identificador do Twitter, a foto do perfil agora deve estar visível nesta página quando você recarregar. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Carregando gráficos... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool em vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transação vBytes por segundo (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Aguardando os blocos... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Transação vBytes por segundo: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Tamanho do mempool: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Processo interno está sincronizando + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Extensão da taxa + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Taxas totais + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Nome + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Precisão + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Quantia queimada + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Emissor + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Emissão da transação + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Indexado em + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Atrelado + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Quantia emitida + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Quantidade circulante + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Erro ao carregar os dados do ativo. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Desconhecido + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Baixa prioridade + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Média prioridade + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Alta prioridade + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Últimos blocos + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + Transações + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Ver tudo » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Últimas transações + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + ID da transação + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Quantia + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Taxa + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + Dólar + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Tamanho do mempool + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Não confirmado + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + bloco + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Transações de entrada + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Próximo ajuste de dificuldade + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Descrição + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Empurrão padrão: action: 'want', data: ['blocks', ...] para expressar o que você deseja empurrar. Disponível: blocks , mempool-block, live-2h-chart e stats. Empurrar transações relacionadas ao endereço: 'track-address': '3PbJ ... bF9B' para receber todas as novas transações contendo aquele endereço como entrada ou saída. Retorna um array de transações. endereço de transações para novas transações no mempool e transações no bloco para novas transações de bloco confirmadas. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Taxas + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Retorna nossas taxas sugeridas atualmente para novas transações. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Retorna o mempool atual como blocos projetados. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Retorna as estatísticas atuais do backlog do mempool. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Obtenha a lista completa de ID de transações no mempool como um array. A ordem dos IDs de transações é arbitrária e não corresponde ao Bitcoin Core daemon. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Obtenha uma lista das últimas 10 transações para entrar no mempool. Cada objeto de transação contém dados de visão geral simplificados, com os seguintes campos: ID da transação, taxa, tamanho virtual e valor. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Blocos + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Retorna o status de confirmação de um bloco. Campos disponíveis: na_melhor_corrente (booleano, falso para blocos órfãos), melhor_próximo (o hash do próximo bloco, disponível apenas para blocos na melhor cadeia). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Retorna uma lista de transações no bloco (até 25 transações começando em índice_inicial). As transações retornadas aqui não possuem o campo de status, pois todas as transações compartilham o mesmo bloco e status de confirmação. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Retorna uma lista de todos os IDs de transações no bloco. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Retorna a transação no índice :índice dentro do bloco especificado. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Retorna a representação do bloco bruto em binário. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Retorna o hash do bloco atualmente na :altura. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Retorna os 10 blocos mais novos começando na ponta ou em :inicio_altura se especificado. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Retorna a altura do último bloco. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Retorna o hash do último bloco. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Retorna detalhes sobre um bloco. Campos disponíveis: id, altura, versão, data e horário, bits, nonce, merkle_root, tx_count, tamanho, peso, prova e bloco anterior. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transações + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Retorna detalhes sobre uma transação. Campos disponíveis: ID da transação, versão, tempo de bloqueio, tamanho, peso, taxa, vin, vout e status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Retorna o status de confirmação de uma transação. Campos disponíveis: confirmado (booleano), altura_bloco (opcional) e hash_bloco (opcional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Retorna uma transação serializada como hexadecimal. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Retorna uma transação como dados binários. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Retorna uma prova de inclusão de merkle para a transação usando o formato Electrum do blockchain.transaction.get_merkle. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Retorna o status de gastos de uma saída de transação. Campos disponíveis: gasto (booleano), ID da transação (opcional), vin (opcional) e status (opcional, o status da transação de gasto). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Retorna o status de gastos de todas as saídas da transação. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Transmita uma transação bruta para a rede. A transação deve ser fornecida como hexadecimal no corpo da solicitação. O ID da transação será retornado em caso de sucesso. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Retorna uma prova de inclusão de merkle para a transação usando o bloco no formato merkle do Bitcoin Core daemon. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Endereços + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Retorna detalhes sobre um endereço. Campos disponíveis: endereço, chain_stats e mempool_stats. cadeia, mempool_stats cada um contém um objeto com tx_count, funded_txo_count, funded_txo_sum, gastou_txo_count e gastou_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Obtenha o histórico de transações para o endereço/scripthash especificado, classificado com o mais recente primeiro. Retorna até 50 transações no mempool mais as primeiras 25 transações confirmadas. Você pode solicitar mais transações confirmadas usando :last_seen_txid (veja abaixo). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Obtenha o histórico de transações confirmadas para o endereço/scripthash especificado, ordenado pelo mais recente. Retorna 25 transações por página. Mais podem ser solicitados especificando o último ID de transação visto pela consulta anterior. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Obtenha o histórico de transações não confirmadas para o endereço/scripthash especificado. Retorna até 50 transações (sem paginação). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Obtenha a lista de saídas de transações não gastas associadas ao endereço/scripthash. Campos disponíveis: ID de transação, vout, value e status (com o status da transação de financiamento). Também há um campo de compromisso de valor que pode aparecer no lugar do valor, além dos seguintes campos adicionais: ativo / compromisso de ativo, nonce / compromisso de nonce, surjection_proof e range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Ativos + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Retorna informações sobre um ativo da Liquid. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Retorna as transações associadas ao recurso da Liquid especificado. Para o ativo nativo da rede, retorna uma lista de transações de indexado em, atrelado e queima. Para ativos emitidos pelo usuário, retorna uma lista de transações de emissão, reemissão e queima. Não inclui transações regulares de transferência deste ativo. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Obtenha o suprimento total atual do ativo especificado. Para o ativo nativo (L-BTC), isso é calculado como [cadeia, mempool] _stats.peg_in_amount - [cadeia, mempool] _stats.peg_out_amount - [cadeia, mempool] _stats.burned_amount. Para ativos emitidos, isso é calculado como [cadeia, mempool] _stats.issued_amount - [cadeia, mempool] _stats.burned_amount. Não disponível para ativos com emissões ocultas. Se / decimal for especificado, retorna o fornecimento como decimal de acordo com a divisibilidade do ativo. Caso contrário, retornado em unidades básicas. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Retorna estatísticas sobre todas as transações Bisq. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Retorna detalhes sobre uma transação Bisq. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Retorna :comprimento das últimas transações Bisq, começando em :índice. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Retorna todas as transações Bisq que existem em um bloco Bitcoin. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Retorna :comprimento dos blocos de Bitcoin que contêm transações Bisq, a partir de :índice. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Retorna a altura do bloco Bitcoin processado mais recentemente pelo Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Retorna todas as transações Bisq pertencentes a um endereço Bitcoin, com 'B' prefixado na frente do endereço. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Endereço + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total recebido + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total enviado + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Saldo + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + de + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Erro ao carregar os dados do endereço. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + Replace-by-fee + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Ótimo + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Em excesso x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Em excesso x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf new file mode 100644 index 000000000..4b2471e05 --- /dev/null +++ b/frontend/src/locale/messages.sl.xlf @@ -0,0 +1,2183 @@ + + + + + Transaction + Transakcija + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Ta transakcija je bila nadomeščena z: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + potrditev + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + potrditev + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Nepotrjeno + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Vhodi & Izhodi + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Podrobnosti + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Podrobnosti + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Velikost + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Utež + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Datum in čas + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Omrežnina + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Omrežnina na vBajt + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Vključeno v blok + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Potrjeno + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Po + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Lastnosti + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Prejeto + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + V nekaj urah (ali več) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minut + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + blok + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transakcije ni mogoče najti. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Čakanje, da se prikaže v mempool-u... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Zaupno + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Novo ustvarjeni kovanci) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH redeem skripta + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH witness skripta + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Skripta prejšnjega izhoda + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Prikaži vse + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-out v + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Tip + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + podatki + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + potrditev + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + potrditev + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Nepotrjeno + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + Prvotni + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Blok + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Zgoščena vrednost + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Datum in čas + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Velikost + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Utež + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Rudar + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Mediana omrežnine + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Skupaj omrežnin + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Nagrada + omrežnine: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transakcija + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transakcije + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Napaka pri nalaganju podatkov bloka. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID, višina bloka, hash ali naslov + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Višina + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Narudarjeno + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transakcije + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Napolnjenost + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig od + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Čez + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minuta + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minut + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + blokov + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Brez povezave + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Ponovno povezovanje... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Omrežja 2. plasti + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + O projektu + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Vzdrževalci + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Razvoj + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operacije + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponzorji ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Postanite sponzor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Ustvari račun + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Pogoji storitve + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Pojdite na + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + za sponzorstvo + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Znesek je zahtevan + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Najmanjši znesek je 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Čakanje na transakcijo... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Prispevek potrjen! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Hvala vam! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Nalaganje grafov... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool v vBajtih (sat/vBajt) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Pretočnost, vBajtov na sekundo (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Čakanje na prikaz blokov... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBajtov na sekundo: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempool velikost: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Sinhronizacija zaledja (backend) + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBajtov/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Razpon omrežnin + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Skupaj omrežnin + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Naziv + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Decimalna mesta + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Umaknjeno iz obtoka (burned) + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Izdajatelj + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Izdajna transakcija + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Izdani znesek + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Znesek v obtoku + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Napaka pri nalaganju podatkov o sredstvu. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Neznano + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Nizka prioriteta + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Srednja prioriteta + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Visoka prioriteta + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Najnovejši bloki + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Prikaži vse » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Najnovejše transakcije + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Znesek + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Omrežnina + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Mempool velikost + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Nepotrjeno + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blok + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Pretočnost + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Prilagoditev težavnosti + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Končna točka + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Opis + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Omrežnine + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Bloki + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transakcije + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Naslovi + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Sredstva + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Naslov + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Skupaj prejeto + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Skupaj poslano + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Stanje + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + od + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Napaka pri nalaganju podatkov naslova. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + pravkar + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + pred s + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + pred s + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + pred s + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + pred s + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + pred min + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + pred min + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + pred min + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + pred min + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + pred h + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + pred h + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + pred d + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + pred d + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + pred tednom + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + pred tedni + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + pred mesecem + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + pred meseci + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + pred letom + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + pred leti + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimalno + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + -krat preplačano + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + -krat preplačano + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf new file mode 100644 index 000000000..01f4f38d6 --- /dev/null +++ b/frontend/src/locale/messages.sv.xlf @@ -0,0 +1,2226 @@ + + + + + Transaction + Transaktion + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Transaktionen har blivit ersatts av: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + bekräftelse + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + bekräftelser + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Obekräftad + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Inputs & Outputs + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detaljer + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Detaljer + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Storlek + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Weight + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Tidsstämpel + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Avgift + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Avgift per vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Ingår i blocket + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Bekräftad + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Efter + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Funktioner + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Först sedd + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Om flera timmar (eller mer) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minuter + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Transaktionen hittades inte + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Väntar på den att dyka upp i mempoolen... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Konfidentiell + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Nyskapade mynt) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Föregående outputscript + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Ladda alla + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-out till + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Typ + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + bekräftelse + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + bekräftelser + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Obekräftad + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Tidsstämpel + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Storlek + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Weight + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Medianavgift + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Avgifter totalt + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Subvention + avgifter: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transaktion + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transaktioner + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Kunde inte ladda blockdata. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID, blockhöjd, hash eller address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Höjd + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Minead + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transaktioner + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Fylld + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig av + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Lager Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Om + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minut + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minuter + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + blocks + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Frånkopplad + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Återansluter... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Lager 2-nätverk + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Om projektet + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Det öppna källkodprojektet Mempool syftar till att implementera en högkvalitativ utforskare och visualiserare för hela Bitcoin-ekosystemet, utan distraktioner som altcoins, reklam eller tredjepartsspårare. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Vidmakthållare + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Utveckling + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operation + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsorer ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Bli sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Begär faktura + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Användarvillkor + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Navigera till + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + för att sponsra + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Belopp som krävs + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Lägsta belopp är 0,001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Om du donerar 0,01 BTC eller mer läggs din profilbild till i listan över sponsorer ovan :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Väntar på transaktion... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Donation bekräftad! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Tack! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Om du har angett en Twitter-handle ska profilbilden nu synas på den här sidan när du laddar om. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Laddar grafen... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool i vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Transaktion vBytes per sekund (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Väntar på block... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes per sekund: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempoolstorlek: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Backend synkroniserar + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Avgiftspann + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Avgifter totalt + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Namn + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Bränt antal + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Utgivare + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Ufärdande TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Peggad in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Peggad ut + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Utgivet antal + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Cirkulerande antal + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Fel vid laddandet av asset data + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Okänd + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Låg prioritet + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Medium prioritet + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Hög prioritet + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Senaste blocken + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Visa alla » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Senaste transaktionerna + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Belopp + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Avgift + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Mempoolstorlek + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Obekräftade + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + block + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Inkommande transaktioner + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Svårighetsjustering + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Ändpunkt + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Beskrivning + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Standard push: action: 'want', data: ['blocks', ...] för att uttrycka vad du vill ha pushat. Tillgängligt: blocks, mempool-block, live-2h-chart, and stats.Pusha transaktioner relaterade till address: 'track-address': '3PbJ...bF9B' för att ta emot alla nya transaktioner innehållandes addressen som input eller output. Retunerar en matris av transaktioner. address-transactions för nya mempooltransaktioner, och block-transactions för nya blockkonfinmerade transaktioner. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Avgifter + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Returnerar våra nuvarande förslagna avgifter för nya transaktioner. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Retunera nuvarande mempool som projicerade block. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Returnerar aktuell mempool eftersläpningsstatistik. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Få en fullständig lista över txids i mempoolen som en matris. Ordningen på txiderna är godtycklig och matchar inte bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Få en lista över de senaste 10 transaktionerna för att komma in i mempoolen. Varje transaktionsobjekt innehåller förenklad översiktsdata med följande fält: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Block + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Returnerar bekräftelsestatus för ett block. Tillgängliga fält: in_best_chain (boolean, false för orphanblock), next_best (hash för nästa block, endast tillgängligt för block i den bästa kedjan). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Returnerar en lista med transaktioner i blocket (upp till 25 transaktioner som börjar vid start_index ). Transaktioner som returneras här har inte fältet status , eftersom alla transaktioner har samma blockerings- och bekräftelsestatus. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Returnerar en lista över alla txids i blocket. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Returnerar transaktionen vid index : index inom det angivna blocket. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Returnerar blocket i rå binär form. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Returnerar hash för blocket för närvarande vid :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Returnerar de 10 senaste blocken med början vid toppen alternativt :start_height om angivet. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Returnerar höjden på det senaste blocket. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Returnerar hashen för det senaste blocket. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Returnerar information om ett block. Tillgängliga fält: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , och previousblockhash . + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transaktioner + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Returnerar information om en transaktion. Tillgängliga fält: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Returnerar konfirmationsstatus för ett block. Tillgängliga fält: confirmed (boolean), block_height (valfritt), and block_hash (valfritt). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Returnerar en transaktion serialiserad som en hash. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Returnerar en transaktion som binär data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Returnerar ett merkle-inkluderingsbevis för transaktionen med Electrums blockchain.transaction.get_merkle-format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Returnerar spenderingsstatus för en transaktions output. Tillgängliga fält: spent (valfritt), txid (valfritt), vin (valfritt), and status (valfritt, statusen för spenderingstransaktionen). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Returnerar spenderingsstatus för transaktionens alla outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Skickar ut en rå transaktion till nätverket. Transaktionen ska tillhandahållas som hex. Transaktionens txid kommer att returneras om det lyckas. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Returnerar ett merkle-inkluderingsbevis för transaktionen med bitcoinds merkleblockformat som format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Adresser + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Returnerar detaljer om en address. Tillgängliga fält: address, chain_stats, och mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, och spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Få transaktionshistorik för den angivna adressen/scripthash, sorterad efter nyast först. Returnerar upp till 50 mempool-transaktioner plus de 25 första bekräftade transaktionerna. Du kan begära fler bekräftade transaktioner med :last_seen_txid (se nedan). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Få bekräftad transaktionshistorik för den angivna adressen/scripthash, sorterad efter nyaste först. Returnerar 25 transaktioner per sida. Mer kan begäras genom att ange den sista txid ifrån föregående fråga. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Få obekräftad transaktionshistorik för den angivna adressen/scripthash. Returnerar upp till 50 transaktioner (ingen pagenering). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Hämta listan över ospenderade transaktionsoutputs som är associerade med adressen/scripthash. Tillgängliga fält: txid, vout, value, och status (med status för funding tx).Det finns även ett valuecommitment fält som kan visa sig istället för value, plus följande ytterligare fält: asset/assetcommitment, nonce/noncecommitment, surjection_proof, och range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Returnerar information om en Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Returnerar transaktioner associerade med den angivna Liquid asseten För nätverkets inhemska asset, returneras en lista över peg-in, peg-out och burn-transaktioner. För användarutgivna assets returneras en lista över utgivnings-, återutgivnings- och burn-transaktioner. Inkluderar inte vanliga transaktioner som överför denna asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Hämta nuvarande utbud för den specifika asseten. För den inhemska asseten (L-BTC), är detta kalkylerat som [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. För utgivna assets, är detta kalkylerat som [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Inte tillgängligt för assets med blind utgivelse. Om /decimal är specifierat, returnera utbudet decimalt enligt assetens delbarhet. Annars, returnera i basenhet. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Returnerar statistik om alla Bisq-transaktioner. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Returnerar information om en Bisq-transaktion. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Returnerar :length på de senaste Bisq-transaktionerna, med start från :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Returnerar alla Bisq-transaktioner som finns i ett Bitcoin-block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Returnerar :length Bitcoin-block som innehåller Bisq-transaktioner, från och med :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Returnerar blockhöjden på det senast bearbetade Bitcoin-block som behandlats av Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Returnerar alla Bisq-transaktioner som tillhör en Bitcoin-adress, med "B" framför adressen. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Totalt mottaget + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Totalt skickat + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balans + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + av + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Kunde inte ladda addressdata. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + Just nu + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + sek sedan + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + sek sedan + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + sekund sedan + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + sekunder sedan + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + min sedan + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + min sedan + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + minut sedan + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + minuter sedan + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + timme sedan + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + timmar sedan + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + dag sedan + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + dagar sedan + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + vecka sedan + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + veckor sedan + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + månad sedan + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + månader sedan + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + år sedan + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + år sedan + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Överbetalad x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Överbetalad x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf new file mode 100644 index 000000000..f433cc015 --- /dev/null +++ b/frontend/src/locale/messages.tr.xlf @@ -0,0 +1,2167 @@ + + + + + Transaction + İşlem + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Bu işlem takip eden işlemle değiştirilmiştir: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + onay + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + onaylar + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Onaylanmamış + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Giriş ve Çıkışlar + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detaylar + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Detaylar + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Boyut + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Ağırlık + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Zaman damgası + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Ücret + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + vByte başı ücret + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + İçinde bulunduğu blok + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Onaylı + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Sonra + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Özellikler + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + Tahmini Varış Süresi + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + İlk görüldüğü an + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Bir kaç saat içinde (veya daha sonra) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + dakikalar + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + blok + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + İşlem bulunamadı. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Mempool'da (bekleyen işlem havuzu) bekliyor. + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Gizli + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Yeni çıkarılmış coinler) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Tanık + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH alım scripti + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH tanık scripti + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Önceki çıkış scripti + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Hepsini yükle + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Tip + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + Data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + onay + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + onay + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Onaylanmamış + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Zaman damgası + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Boyut + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Ağırlık + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Madenci + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Medyan ücret + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Toplam ücret + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Ödül + ücretler: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + işlem + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + işlemler + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Blok datası yüklenirken hata oldu. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Yükseklik + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Çıkarıldı + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + İşlemler + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Doldu + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + Çoklu imzanın   bölü + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Katman Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Içeri + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + dakika + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + dakikalar + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + bloklar + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Çevrimdışı + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Tekrardan bağlanıyor.... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Proje hakkında + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Açık kaynak kodlu mempool projemiz ile Bitcoin ekosistemi tarafından tercih edildiği şekilde altcoinler, reklam ve 3. parti takipçiler olmayan, görsel olarak zengin bir blok gezgini yaratıyoruz. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Bakıcılar + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Geliştirici + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operasyonlar + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsorlar ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Sponsor olun ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Fatura isteyin + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Hizmet Koşulları + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Geç + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + Sponsora + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Gereken miktar + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Minimum izin verilen miktar 0.001 BTC'dir. + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + 0.01 BTC veya üstünde bağış yaparsanız, profil resminiz yukarıdaki listeye eklenecektir. + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + İşlem bekleniyor... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Bağış onaylandı! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Teşekkürler! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Bir Twitter kullanıcı adı belirlediyseniz, sayfayı yeniden yüklediğinizde profil resminizin görünür hale gelecektir. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Grafikler yükleniyor... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool (bekleyen işlem havuzunun) vByte (sat/vByte) görünümü + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + Saniye başı vBytes (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Bloklar bekleniyor... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Saniye başına düşen Tx vbyte: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempool (bekleyen işlem havuzu) boyutu + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Arka uç senkronize oluyor + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Ücret aralığı + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Toplam ücretler + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Isim + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Hassasiyet + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Yanan miktar + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Çıkaran + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Yayınlanma TX'i + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Yayınlanan miktar + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Dolaşan miktar + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Data seti yüklerken hata oldu. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Bilinmeyen + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Düşük öncelik + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Orta öncelik + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Yüksek öncelik + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Son bloklar + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + İşlemler + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Hepsini gör » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Son işlemler + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + İşlemID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Miktar + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Ücret + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Mempool (bekleyen işlem havuzu) boyutu + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Onaylanmadı + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blok + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Gelen işlemler + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vb/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Zorluk ayarı + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Websoketi + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Tanım + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Ücretler + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Yeni işlemler için tavsiye ettiğimiz ücretler + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Şu anki mempool (bekleyen işlem havuzunun) tahmini blok sayısı + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool (bekleyen işlem havuzu) + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Mempool sırada bekleyen işlem istatistiği + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Bloklar + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Bloğun içindeki txID listesini göster + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Ham blok sayısını binary olarak göster. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Son bulunan bloğun yüksekliği + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Son bulunan bloğun hash'i. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Işlemler + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Bir işlemi binary data olarak gösterir. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Bütün işlem çıkışlarının harcanma durumunu gösterir. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Adresler + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Varlıklar + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Liquid varlık hakkında bilgi döndürür + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Bütün Bisq işlemleri hakkında istatistik paylaş + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Bir Bisq işlemi için detay paylaş + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Adres + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Toplam alınan + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Toplam gönderilen + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Cari toplam + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + nun + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Adres datası yüklenirken hata oluştu. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimum + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + x kadar fazla ödendi + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + x kadar fazla ödendi + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf new file mode 100644 index 000000000..62f5eb1f8 --- /dev/null +++ b/frontend/src/locale/messages.uk.xlf @@ -0,0 +1,2226 @@ + + + + + Transaction + Транзакція + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Транзакція була замінена на: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + підтвердження + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + підтвердження + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Непідтверджена + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Входи і Виходи + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Деталі + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Деталі + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Розмір + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Вага + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Час + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Комісія + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Комісія за vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Додана в блок + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Підтверджена + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Після + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Властивості + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + Орієнтовний час + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Вперше помічена + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + За кілька годин (або довше) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + хвилин + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + блок + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Транзакція не знайдена. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Чекаємо її появи в мемпулі... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Конфіденційна + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Нові монети) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Закріплення + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH redeem скрипт + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH witness скрипт + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Скрипт попереднього виходу + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Завантажити всі + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Розкріплення до + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Тип + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + дані + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + підтвердження + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + підтвердження + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Непідтверджені + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + Генезис + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Блок + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Хеш + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Час + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Розмір + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Вага + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Майнер + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Середня комісія + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Всього комісій + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Нагорода + комісії: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + транзакція + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + транзакції + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + Не вдалося завантажити дані про блок. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID, висота блоку, хеш або адреса + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Висота + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Добутий + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Транзакції + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Заповнений + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + multisig з + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Розкріплення до шару + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + До + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + хвилина + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + хвилин + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + блоків + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Офлайн + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Повторне підключення... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Мережі 2 шару + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Про проект + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Mempool це проект з відкритим кодом націлений на створення високоякісного експлореру та сайту з візуалізацією для всієї екосистеми Біткоїна, без відволікаючих фактів на кшталт альткоїнів, реклами чи сторонніх трекерів. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Розробники + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Розробка + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Операції + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Спонсори ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Стати спонсором ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Отримати рахунок + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Умови використання + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Перейти до + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + спонсорувати + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Необхідна сума + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Мінімальна сума 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Якщо ви пожертвуєте 0.01 BTC або більше, фото вашого профілю буде додане до списку спонсорів вище :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Очікуємо на транзакцію... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Пожертвування підтверджене! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Дякую вам! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Якщо ви вкажете ваш юзернейм з Twitter, фото профілю буде відображатись після перезавантаження сторінки. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Завантаження графіків... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Мемпул в vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + vBytes за секунду транзакції (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Очікуємо на блоки... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + vBytes за секунду транзакції: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Розмір мемпулу: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Бекенд синхронізується + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + Діапазон комісії + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Всього комісій + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Назва + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Точність + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Спалена сума + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Емітент + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Емісійна транзакція + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Закріплено + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Розкріплено + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Емітована сума + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Сума в обігу + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + Не вдалося завантажити дані про актив. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Невідомо + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Повільно + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Помірно + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Швидко + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Останні блоки + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + Транзакцій + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Дивитись всі » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Останні транзакції + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Сума + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Комісія + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + Розмір мемпулу + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Непідтверджені + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + блок + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Вхідні транзакції + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Регулювання складності + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + Вебсокет + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Ендпоїнт + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Опис + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Надсилання за замовчуванням за замовчуванням: action: 'want', data: ['blocks', ...] щоб вказати, що має бути надіслано. Доступно: blocks, mempool-block, live-2h-chart і stats.Надіслати транзакції пов'язані з адресою: 'track-address': '3PbJ...bF9B' щоб отримати всі нові транзакції які містять дану адресу у входах чи виходах. Повертає масив транзакції. address-transactions для нових транзакції в мемпулі і block-transactions для підтверджених транзакцій. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Комісії + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Повертає комісію, яку ми радимо для нових транзакцій. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Повертає поточний мемпул у вигляді прогнозу блоків. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Мемпул + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Повертає поточну статистику про заповненість мемпулу. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Повертає повний список ідентифікаторів транзакцій в мемпулі у вигляді масиву. Порядок транзакцій довільний і не співпадає з bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Повертає список з 10 останніх транзакцій, які попали в мемпул. Кожна транзакція містить спрощені загальні дані з наступними полями: txid, fee, vsize та value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Блоки + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Повертає статус блоку. Доступні поля: in_best_chain(boolean, false для осиротілих блоків), next_best (хеш наступного блоку, доступний тільки для блоків в найкращому ланцюжці). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Повертає список транзакцій в блоці (до 25 транзакцій починаючи з start_index). Повернені транзакції не мають поля status оскільки всі транзакції мають однаковий блок та статус підтвердження. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Повертає список всіх ідентифікаторів транзакцій в блоці. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Повертає транзакцію на позиції :index всередині вказаного блоку. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Повертає сирий блок в двійковому форматі. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Повертає хеш блоку, який зараз знаходиться на висоті :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Повертає 10 найновіших блоків починаючи з верхівки або з :start_height якщо вона вказана. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Повертає висоту останнього блоку. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Повертає хеш останнього блоку. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Повертає деталі про блок. Доступні поля: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight, proof і previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Транзакції + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Повертає деталі про транзакцію. Доступні поля: txid, version, locktime, size, weight, fee, vin, vout і status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Повертає статус підтвердження транзакції. Доступні поля: confirmed (boolean), block_height (опціональне) і block_hash (опціональне). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Повертає транзакцію у серіалізовану в шістнадцяткове число. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Повертає транзакцію у вигляді двійкових даних. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Повертає доказ Меркла транзакції використовуючи формат Electrum blockchain.transaction.get_merkle. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Повертає статус витрати виходу транзакції. Доступні поля: spent (boolean), txid (опціональне), vin (опціональне), і status (опціональне, статус витрати транзакції). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Повертає статус витрати всіх виходів транзакції. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Транслювати сиру транзакцію в мережу. Транзакція має бути надана у вигляді шістнадцяткового числа всередині тіла запиту. У випадку вдалого надсилання буде повернутий txid транзакції. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Повертає доказ Меркла транзакції використовуючи формат bitcoind merkleblock. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Адреси + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Повертає деталі про адресу. Доступні поля: address, chain_stats і mempool_stats. chain,mempool_stats містять об'єкт з tx_count, funded_txo_count, funded_txo_sum, spent_txo_count і spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Повертає історію транзакцій для заданої адреси/scripthash відсортовану від новіших до старіших. Повертає до 50 транзакцій з мемпулу плюс 25 підтверджених транзакцій. Ви можете запросити більше підтверджених транзакцій використовуючи :last_seen_txid (див нижче). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Повертає підтверджену історію транзакцій для заданої адреси/scripthash відсортовану від новіших до старіших. Повертає 25 транзакцій на сторінку. Більше транзакцій може бути отримано вказавши останній ідентифікатор транзакції з попереднього запиту. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Повертає непідтверджену історію транзакцій для заданої адреси/scripthash. Повертає до 50 транзакцій (без сторінок). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Повертає список невитрачених виходів транзакцій пов'язаних з адресою/scripthash. Доступні поля: txid, vout, value і status (з статусом транзакції).Також є можливе поле valuecommitment яке може з'явитись замість value плюс наступні додаткові поля: asset/assetcommitment, nonce/noncecommitment, surjection_proof і range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Активи + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Повертає інформацію про актив на Liquid. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Повертає транзакції пов'язані з вказаним активом Liquid. Для нативного активу мережі повертає список транзакцій закріплення, розкріплення та спалення. Не включає звичайні транзакції з цим активом. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Повертає поточну сукупну пропозицію вказаного активу. Для нативного активу (L-BTC) вона розраховується наступним чином [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Для емітованих активів вона розраховується наступним чином [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Не доступний для активів з сліпою емісією. Якщо вказати /decimal, пропозиція повертається у вигляді десяткового числа відповідно до ділимості активу. Інакше число буде повернуте в базових одиницях. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Повертає статистику про всі транзакції Bisq. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Повертає деталі про транзакцію Bisq. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Повертає :length останній транзакцій Bisq починаючи з :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Повертає всі транзакції Bisq які місяться в блоці Біткоїна. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Повертає :length блоків Біткоїна, які містять транзакції Bisq починаючи з :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Повертає висоту останнього блоку Біткоїна, якого обробив Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Повертає всі транзакції Bisq які належать Біткоїн адресі з префіксом 'B' перед нею. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + Адреса + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Всього отримано + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Всього надіслано + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Баланс + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + з + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Не вдалося завантажити дані про адресу. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + щойно + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + сек тому + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + сек тому + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + секунду тому + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + секунд тому + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + хв тому + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + хв тому + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + хвилину тому + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + хвилин тому + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + годину тому + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + годин тому + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + день тому + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + днів тому + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + тиждень тому + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + тижні тому + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + місяць тому + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + місяців тому + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + рік тому + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + років тому + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Оптимальна + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + Переплата x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Переплата x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf new file mode 100644 index 000000000..84a8da4a6 --- /dev/null +++ b/frontend/src/locale/messages.xlf @@ -0,0 +1,2017 @@ + + + + + + Transaction + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf new file mode 100644 index 000000000..e3c280137 --- /dev/null +++ b/frontend/src/locale/messages.zh.xlf @@ -0,0 +1,2158 @@ + + + + + Transaction + 交易 + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + 交易已被代替为: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + 确认 + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + 确认 + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + 未确认 + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + 输入与输出 + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + 明细 + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + 明细 + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + 大小 + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + 权重 + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + 时间戳 + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + 手续费 + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + 单字节手续费 + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + 聪/字节 + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 154 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + 被包含在区块中 + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + 已确认 + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + 之后 + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + 特征 + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 137 + + Transaction features + transaction.features + + + ETA + 预估时间 + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + + + src/app/components/transaction/transaction.component.html + 150 + + Transaction Fee sat + transaction.fee.sat + + + First seen + 初次发现时间 + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + 在几个小时内(或更多) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + 分钟 + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + 区块 + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + 交易未找到 + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + 等待交易出现在内存池 + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + 机密 + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/asset/asset.component.html + 143 + + + src/app/components/address/address.component.html + 112 + + shared.confidential + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (新产生的货币) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + 加载全部 + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + 类型 + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + 数据 + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + 确认 + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + 确认 + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + 未确认 + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + 区块 + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + 哈希值 + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + 时间戳 + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + 大小 + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + 权重 + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + 矿工 + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + 中位数矿工手续费 + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + 总手续费 + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + 补贴+手续费: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + 交易 + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + 交易 + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + + src/app/components/address/address.component.html + 46 + + shared.transaction-count.plural + + + Error loading block data. + 在加载区块数据时出错 + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + 高度 + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + 已出块 + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + 交易 + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + 大小 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + latest-blocks.filled + + + multisig of + -多重签名 + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + 分钟 之内 + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + 分钟 之内 + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + 区块 + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + 离线 + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + 重新连接中 + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + 项目介绍 + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Mempool开源项目旨在为整个比特币生态系统搭建一个高质量、可视化,但不会像其他加密货币、广告或第三方中介这些分散注意力的网站。 + + src/app/components/about/about.component.html + 16 + + + + Maintainers + 维护人员 + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + 开发总工程师 + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + 首席运营官 + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + 赞助商❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + 成为赞助商❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + 请求开票 + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + 服务条款 + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + 导航 + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + 所需金额 + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + 最低金额为0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + 如果您捐赠超过0.01 BTC,您的个人资料与照片将被添加到赞助商列表中:) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + 交易等待中... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + 确认捐赠! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + 感谢! + + src/app/components/about/about.component.html + 175 + + about.sponsor.thank-you + + + If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + 图表加载中... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + 交易字节/秒 (虚拟字节) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Transaction vBytes per second (vB/s) + 交易字节/秒 (虚拟字节) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + 区块加载中... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + 交易字节/秒 + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + 内存池大小: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + 字节/秒 + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Fee span + 费用范围 + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + 总费用 + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + 名称 + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + 发行人 + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + 发行量 + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + 流通量 + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Error loading asset data. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + 未知 + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + 低优先级 + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + 中优先级 + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + 高优先级 + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + 最新区块 + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + 查看全部 » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + 最新交易 + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + 费用 + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + 美元 + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Mempool size + 内存池大小 + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + 未确认 + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + 区块 + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + 收款交易 + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + 字节/秒 + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + 难度调整 + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + 终点 + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + 描述 + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + 手续费 + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + 内存池 + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + 区块 + + src/app/components/api-docs/api-docs.component.html + 75 + + API Docs tab for Blocks + api-docs.tab.blocks + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + 返回至最后区块高度 + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + 返回至最后区块哈希值 + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + 交易 + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + 以二进制数据形式返回至交易页面 + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + 地址 + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + 资产 + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Address + 地址 + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + 总接收量 + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + 总发送量 + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + 余额 + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + 在加载地址数据时出错 + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + 刚刚 + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + 秒前 + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + 分钟前 + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + 分钟前 + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + 分钟前 + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + 分钟前 + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + 小时前 + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + 小时前 + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + 天前 + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + 天前 + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + 周前 + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + 周前 + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + 个月前 + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + 个月前 + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + 年前 + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + 年前 + + src/app/components/translation-strings/translation-strings.component.html + 21 + + + src/app/components/time-since/time-since.component.ts + 80 + + + + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + 最佳 + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + 溢缴款 x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + 溢缴款 x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + + \ No newline at end of file diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index c676354d9..f1a0ab361 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -97,6 +97,15 @@ body { color: #000; } +.form-control.form-control-secondary { + color: #fff; + background-color: #2d3348; + border: 1px solid #2d3348; +} +.form-control.form-control-secondary:focus { + color: #fff; +} + .h2-match-table { padding-left: .65rem; } diff --git a/frontend/sync-assets.js b/frontend/sync-assets.js index a95904664..a56ab3445 100644 --- a/frontend/sync-assets.js +++ b/frontend/sync-assets.js @@ -1,7 +1,7 @@ var https = require('https'); var fs = require('fs'); -var PATH = 'dist/mempool/browser/resources/'; +var PATH = 'dist/mempool/en-US/resources/'; if (process.argv[2] && process.argv[2] === 'dev') { PATH = 'src/resources/'; } diff --git a/production/nginx-mempool.conf b/production/nginx-mempool.conf new file mode 100644 index 000000000..d28f7f456 --- /dev/null +++ b/production/nginx-mempool.conf @@ -0,0 +1,200 @@ + root /mempool/public_html/mainnet/; + + index index.html; + + add_header Onion-Location http://mempoolhqx4isw62xs7abwphsq7ldayuidyx2v2oethdhhj6mlo2r6ad.onion$request_uri; + add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"; + + set $frameOptions "DENY"; + set $contentSecurityPolicy "frame-ancestors 'none'"; + if ($http_referer ~ ^https://mempool.space/) + { + set $frameOptions "ALLOW-FROM https://mempool.space"; + set $contentSecurityPolicy "frame-ancestors https://mempool.space"; + } + if ($http_referer ~ ^https://mempool.ninja/) + { + set $frameOptions "ALLOW-FROM https://mempool.ninja"; + set $contentSecurityPolicy "frame-ancestors https://mempool.ninja"; + } + if ($http_referer ~ ^https://node100.bitcoin.wiz.biz/) + { + set $frameOptions "ALLOW-FROM https://node100.bitcoin.wiz.biz"; + set $contentSecurityPolicy "frame-ancestors https://node100.bitcoin.wiz.biz"; + } + if ($http_referer ~ ^https://wiz.biz/) + { + set $frameOptions "ALLOW-FROM https://wiz.biz"; + set $contentSecurityPolicy "frame-ancestors https://wiz.biz"; + } + + add_header X-Frame-Options $frameOptions; + add_header Content-Security-Policy $contentSecurityPolicy; + + # fallback for all URLs i.e. /address/foo /tx/foo /block/000 + location / { + #return 302 https://mempool.space/$request_uri; + try_files /$lang/$uri /$lang/$uri/ $uri $uri/ /en-US/$uri @index; +# /$lang/index.html /en-US/index.html =404; + } + location @index { + add_header Cache-Control must-revalidate; + try_files /$lang/index.html /en-US/index.html =404; + } + + # location block using regex are matched in order + + # used to rewrite resources from // to /en-US/ + 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|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/resources/ { + 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|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/ { + try_files $uri $uri/ /$1/index.html =404; + } + + # add /sitemap for production SEO + location /sitemap { + try_files $uri =410; + } + # old /explorer redirect from v1 days + location /explorer { + rewrite /explorer/(.*) https://$host/$1 permanent; + } + + # static API docs + location = /api { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + location = /api/ { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + location = /liquid/api { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + location = /liquid/api/ { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + location = /testnet/api { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + location = /testnet/api/ { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + location = /bisq/api { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + location = /bisq/api/ { + #return 302 https://mempool.space/$request_uri; + try_files $uri $uri/ /en-US/index.html =404; + } + + # mainnet API + location /api/v1/donations { + proxy_pass http://127.0.0.1:8999; + # don't rate limit this API prefix + } + location /api/v1/donations/images { + proxy_pass http://127.0.0.1:8999; + proxy_cache cache; + proxy_cache_valid 200 1d; + } + location /api/v1/ws { + proxy_pass http://127.0.0.1:8999/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + location /api/v1 { + proxy_pass http://127.0.0.1:8999/api/v1; + limit_req burst=50 nodelay zone=api; + } + location /api/ { + proxy_pass http://[::1]:3000/; + limit_req burst=50 nodelay zone=electrs; + } + + # liquid API + location /liquid/api/v1/ws { + proxy_pass http://127.0.0.1:8998/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + location /liquid/api/v1 { + proxy_pass http://127.0.0.1:8998/api/v1; + limit_req burst=50 nodelay zone=api; + } + location /liquid/api/ { + proxy_pass http://[::1]:3001/; + limit_req burst=50 nodelay zone=electrs; + } + + # testnet API + location /testnet/api/v1/ws { + proxy_pass http://127.0.0.1:8997/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + location /testnet/api/v1 { + proxy_pass http://127.0.0.1:8997/api/v1; + limit_req burst=50 nodelay zone=api; + } + location /testnet/api/ { + proxy_pass http://[::1]:3002/; + limit_req burst=50 nodelay zone=electrs; + } + + # bisq API + location /bisq/api/v1/ws { + proxy_pass http://127.0.0.1:8996/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + location /bisq/api/v1/markets { + proxy_pass http://127.0.0.1:8996/api/v1/bisq/markets; + #limit_req burst=50 nodelay zone=api; + } + location /bisq/api/v1 { + proxy_pass http://127.0.0.1:8996/api/v1; + limit_req burst=50 nodelay zone=api; + } + location /bisq/api { + proxy_pass http://127.0.0.1:8996/api/v1/bisq; + limit_req burst=50 nodelay zone=api; + } + + # mainnet API + location /ws { + proxy_pass http://127.0.0.1:8999/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + location /ws/mainnet { + proxy_pass http://127.0.0.1:8999/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + location /ws/liquid { + proxy_pass http://127.0.0.1:8998/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + location /ws/testnet { + proxy_pass http://127.0.0.1:8997/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } diff --git a/production/nginx.conf b/production/nginx.conf index ae290bc62..f14aa0b1d 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -1,5 +1,4 @@ user nobody; - pid /var/run/nginx.pid; worker_processes auto; @@ -38,10 +37,6 @@ http { # number of requests per connection, does not affect SPDY keepalive_requests 100; - types_hash_max_size 2048; - - proxy_cache off; - # enable gzip compression gzip on; gzip_vary on; @@ -55,203 +50,117 @@ http { client_max_body_size 10m; # proxy cache + proxy_cache off; proxy_cache_path /var/cache/nginx keys_zone=cache:20m levels=1:2 inactive=600s max_size=500m; + types_hash_max_size 2048; # rate limit requests - limit_req_zone $binary_remote_addr zone=api:5m rate=50r/m; - limit_req_zone $binary_remote_addr zone=electrs:5m rate=1000r/m; + limit_req_zone $binary_remote_addr zone=api:5m rate=200r/m; + limit_req_zone $binary_remote_addr zone=electrs:5m rate=2000r/m; limit_req_status 429; # rate limit connections limit_conn_zone $binary_remote_addr zone=websocket:10m; limit_conn_status 429; - server { - listen 80 backlog=1024; - listen [::]:80 backlog=1024; + map $http_accept_language $header_lang { + default en-US; + ~*^en-US en-US; + ~*^en en-US; + ~*^cs cs; + ~*^de de; + ~*^es es; + ~*^fa fa; + ~*^fr fr; + ~*^ja ja; + ~*^nl nl; + ~*^nn nn; + ~*^pt pt; + ~*^sl sl; + ~*^sv sv; + ~*^tr tr; + ~*^uk uk; + ~*^zh zh; + } - server_name mempool.space; + map $cookie_lang $lang { + default $header_lang; + ~*^en-US en-US; + ~*^en en-US; + ~*^cs cs; + ~*^de de; + ~*^es es; + ~*^fa fa; + ~*^fr fr; + ~*^ja ja; + ~*^nl nl; + ~*^nn nn; + ~*^pt pt; + ~*^sl sl; + ~*^sv sv; + ~*^tr tr; + ~*^uk uk; + ~*^zh zh; + } + + server { + listen 80; + server_name mempool.space mempool.ninja bsq.ninja node100.bitcoin.wiz.biz; return 301 https://$host$request_uri; } server { - listen 127.0.0.1:81 backlog=1024; - listen [::]:443 ssl default http2 backlog=1024; + listen 443 ssl http2; + server_name bsq.ninja; + ssl_certificate /usr/local/etc/letsencrypt/live/bsq.ninja/fullchain.pem; + ssl_certificate_key /usr/local/etc/letsencrypt/live/bsq.ninja/privkey.pem; + include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; + ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; + + set $redirect_uri https://mempool.space/bisq; + if ($uri = /tx.html) { + set $redirect_uri https://mempool.space/bisq/tx/$arg_tx; + } + if ($uri = /txo.html) { + set $redirect_uri https://mempool.space/bisq/tx/$arg_txo; + } + if ($uri = /Address.html) { + set $redirect_uri https://mempool.space/bisq/address/$arg_addr; + } + return 301 $redirect_uri; + } + + server { + listen 443 ssl http2; + server_name node100.bitcoin.wiz.biz; + ssl_certificate /usr/local/etc/letsencrypt/live/node100.bitcoin.wiz.biz/fullchain.pem; + ssl_certificate_key /usr/local/etc/letsencrypt/live/node100.bitcoin.wiz.biz/privkey.pem; + include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; + ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; + + include /usr/local/etc/nginx/nginx-mempool.conf; + } + + server { + listen 443 ssl http2; + server_name mempool.ninja; + ssl_certificate /usr/local/etc/letsencrypt/live/mempool.ninja/fullchain.pem; + ssl_certificate_key /usr/local/etc/letsencrypt/live/mempool.ninja/privkey.pem; + include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; + ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; + + include /usr/local/etc/nginx/nginx-mempool.conf; + } + + server { + listen 127.0.0.1:81; listen 443 ssl default http2 backlog=1024; - server_name mempool.space; - ssl_certificate /usr/local/etc/letsencrypt/live/mempool.space/fullchain.pem; ssl_certificate_key /usr/local/etc/letsencrypt/live/mempool.space/privkey.pem; include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; - root /mempool/public_html/mainnet/; - index index.html; - - # security headers - - set $frameOptions "DENY"; - set $contentSecurityPolicy "frame-ancestors 'none'"; - if ($http_referer ~ ^https://mempool.space/) - { - set $frameOptions "ALLOW-FROM https://mempool.space"; - set $contentSecurityPolicy "frame-ancestors https://mempool.space"; - } - if ($http_referer ~ ^https://wiz.biz/) - { - set $frameOptions "ALLOW-FROM https://wiz.biz"; - set $contentSecurityPolicy "frame-ancestors https://wiz.biz"; - } - add_header X-Frame-Options $frameOptions; - add_header Content-Security-Policy $contentSecurityPolicy; - add_header Link "; rel=\"canonical\""; - add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"; - #add_header Onion-Location http://mempoolhqx4isw62xs7abwphsq7ldayuidyx2v2oethdhhj6mlo2r6ad.onion$request_uri; - - # / - - location / { - try_files $uri $uri/ /index.html =404; - } - -# # /sitemap -# location /sitemap { -# try_files $uri =410; -# } -# -# # /explorer -# location /explorer { -# rewrite /explorer/(.*) https://$host/$1 permanent; -# } - - # /api - - location = /api { - try_files $uri $uri/ /index.html =404; - } - location = /api/ { - try_files $uri $uri/ /index.html =404; - } - location /api/v1/donations/images { - # don't rate limit this URL prefix - proxy_pass http://127.0.0.1:8999; - proxy_cache cache; - proxy_cache_valid 200 1d; - } - location /api/v1/ws { - proxy_pass http://127.0.0.1:8999/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - limit_conn websocket 10; - } - location /api/v1 { - proxy_pass http://127.0.0.1:8999/api/v1; - limit_req burst=50 nodelay zone=api; - } - location /api/ { - proxy_pass http://[::1]:3000/; - limit_req burst=100 nodelay zone=electrs; - } - - # /mainnet/api - - location = /mainnet/api { - try_files $uri $uri/ /index.html =404; - } - location = /mainnet/api/ { - try_files $uri $uri/ /index.html =404; - } - location /mainnet/api/v1/ws { - proxy_pass http://127.0.0.1:8999/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - limit_conn websocket 10; - } - location /mainnet/api/v1 { - proxy_pass http://127.0.0.1:8999/api/v1; - limit_req burst=50 nodelay zone=api; - } - location /mainnet/api/ { - proxy_pass http://[::1]:3000/; - limit_req burst=100 nodelay zone=electrs; - } - - # /liquid/api - - location = /liquid/api { - try_files $uri $uri/ /index.html =404; - } - location = /liquid/api/ { - try_files $uri $uri/ /index.html =404; - } - location /liquid/api/v1/ws { - proxy_pass http://127.0.0.1:8998/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - limit_conn websocket 10; - } - location /liquid/api/v1 { - proxy_pass http://127.0.0.1:8998/api/v1; - limit_req burst=50 nodelay zone=api; - } - location /liquid/api/ { - proxy_pass http://[::1]:3001/; - limit_req burst=100 nodelay zone=electrs; - } - - # /testnet/api - - location = /testnet/api { - try_files $uri $uri/ /index.html =404; - } - location = /testnet/api/ { - try_files $uri $uri/ /index.html =404; - } - location /testnet/api/v1/ws { - proxy_pass http://127.0.0.1:8997/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - limit_conn websocket 10; - } - location /testnet/api/v1 { - proxy_pass http://127.0.0.1:8997/api/v1; - limit_req burst=50 nodelay zone=api; - } - location /testnet/api/ { - proxy_pass http://[::1]:3002/; - limit_req burst=100 nodelay zone=electrs; - } - - # /bisq - - location = /bisq/api { - try_files $uri $uri/ /index.html =404; - } - location = /bisq/api/ { - try_files $uri $uri/ /index.html =404; - } - location /bisq/api/v1/ws { - proxy_pass http://127.0.0.1:8996/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - } - location /bisq/api/v1/markets { - proxy_pass http://127.0.0.1:8996/api/v1/bisq/markets; - #limit_req burst=50 nodelay zone=api; - } - location /bisq/api/v1 { - proxy_pass http://127.0.0.1:8996/api/v1; - limit_req burst=50 nodelay zone=api; - } - location /bisq/api { - proxy_pass http://127.0.0.1:8996/api/v1/bisq; - limit_req burst=50 nodelay zone=api; - } + include /usr/local/etc/nginx/nginx-mempool.conf; } } diff --git a/production/test-nginx b/production/test-nginx new file mode 100755 index 000000000..fe91cd557 --- /dev/null +++ b/production/test-nginx @@ -0,0 +1,49 @@ +#!/usr/bin/env zsh +PROTO=https +HOSTNAME=mempool.ninja +URL_BASE=${PROTO}://${HOSTNAME} + +curltest() +{ + read output + if [ "${output}" = "$1" ];then + echo "PASS: |${output}|" + else + echo "FAIL: |${output}|" + echo "WANT: |$1|" + exit 1 + fi +} + +echo "Starting tests to ${URL_BASE}" + +echo "Test locale for / with no header or cookie" +curl -s ${URL_BASE}/ | grep '' + +echo "Test locale for / with 'ja' lang header and no cookie" +curl -s -H 'Accept-Language: ja' ${URL_BASE}/ | grep '' + +echo "Test locale for / with 'ja' lang header and 'en' lang cookie" +curl -s -H 'Accept-Language: ja' --cookie 'lang=en' ${URL_BASE}/ | grep '' + +echo "Test locale for / with 'ja' lang header and 'sv' lang cookie" +curl -s -H 'Accept-Language: ja' --cookie 'lang=sv' ${URL_BASE}/ | grep '' + +echo "Test locale for / with 'ja' lang header and 'foo' lang cookie" +curl -s -H 'Accept-Language: ja' --cookie 'lang=foo' ${URL_BASE}/ | grep '' + +echo "Test rewrite for /resources/pools.json with no header and no cookie" +curl -s -i ${URL_BASE}/resources/pools.json | grep -i content-type | tr -d '\r\n' | curltest 'content-type: application/json' + +echo "Test rewrite for /sv/resources/pools.json with no header and no cookie" +curl -s -i ${URL_BASE}/sv/resources/pools.json | grep -i content-type | tr -d '\r\n' | curltest 'content-type: application/json' + +echo "Test rewrite for /resources/pools.json with 'ja' lang header and no cookie" +curl -s -i -H 'Accept-Language: ja' ${URL_BASE}/resources/pools.json | grep -i content-type | tr -d '\r\n' | curltest 'content-type: application/json' + +echo "Test rewrite for /ja/resources/pools.json with 'ja' lang header and no cookie" +curl -s -i -H 'Accept-Language: ja' ${URL_BASE}/ja/resources/pools.json | grep -i content-type | tr -d '\r\n' | curltest 'content-type: application/json' + +#curl -s -i -H 'Accept-Language: sv' ${URL_BASE}/ja/resources/pools.json | grep -i content-type +#curl -s -i -H 'Accept-Language: foo' --cookie 'lang=sv' ${URL_BASE}/ja/resources/pools.json | grep -i content-type +#curl -s -i -H 'Accept-Language: foo' --cookie 'lang=sv' ${URL_BASE}/sv/resources/pools.json | grep -i content-type
    -
    Mempool size
    +
    Mempool size

    - {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blocks) + {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blockblocks)

    -
    Unconfirmed
    +
    Unconfirmed

    - {{ mempoolInfoData.value.memPoolInfo.size | number }} TXs + {{ mempoolInfoData.value.memPoolInfo.size | number }} TXs