From e35eb5aad26434b8b331207e99dd7480f2ed3d68 Mon Sep 17 00:00:00 2001 From: softsimon Date: Wed, 2 Dec 2020 22:22:14 +0700 Subject: [PATCH 01/42] Adding virtual size to transaction details. fixes #248 --- .../app/components/transaction/transaction.component.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index dfd27e13d..ed4acdc2c 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -177,6 +177,10 @@ Size {{ tx.size | bytes: 2 }} + + Virtual size + {{ tx.weight / 4 | vbytes: 2 }} + Weight {{ tx.weight | wuBytes: 2 }} @@ -253,6 +257,10 @@ + + + + From 6b498b96011db9c6bbbfc223eb1443511b130355 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 3 Dec 2020 09:47:39 +0900 Subject: [PATCH 02/42] Exempt localhost from nginx rate limits for Tor and AU usage --- production/nginx.conf | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/production/nginx.conf b/production/nginx.conf index f14aa0b1d..a92f86ae3 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -54,13 +54,23 @@ http { proxy_cache_path /var/cache/nginx keys_zone=cache:20m levels=1:2 inactive=600s max_size=500m; types_hash_max_size 2048; + # exempt localhost from rate limit + geo $limited_ip { + default 1; + 127.0.0.1 0; + } + map $limited_ip $limited_ip_key { + 1 $binary_remote_addr; + 0 ''; + } + # rate limit requests - 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_zone $limited_ip_key zone=api:5m rate=200r/m; + limit_req_zone $limited_ip_key zone=electrs:5m rate=2000r/m; limit_req_status 429; # rate limit connections - limit_conn_zone $binary_remote_addr zone=websocket:10m; + limit_conn_zone $limited_ip_key zone=websocket:10m; limit_conn_status 429; map $http_accept_language $header_lang { From 2b2bc2fc4163e36b9cd345dddc8c59f32e549a20 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 3 Dec 2020 09:56:29 +0900 Subject: [PATCH 03/42] Change nginx.conf Tor HS port from 81 to 80 to fix i18n bug --- production/README.md | 4 +++- production/nginx.conf | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/production/README.md b/production/README.md index 01248b70c..51c595945 100644 --- a/production/README.md +++ b/production/README.md @@ -102,10 +102,12 @@ Log notice syslog CookieAuthentication 1 CookieAuthFileGroupReadable 1 +CookieAuthFile /var/db/tor/control_auth_cookie +DataDirectory /var/db/tor DataDirectoryGroupReadable 1 HiddenServiceDir /var/db/tor/mempool -HiddenServicePort 80 127.0.0.1:81 +HiddenServicePort 80 127.0.0.1:80 HiddenServiceVersion 3 ``` diff --git a/production/nginx.conf b/production/nginx.conf index a92f86ae3..3f79a65cc 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -163,7 +163,7 @@ http { } server { - listen 127.0.0.1:81; + listen 127.0.0.1:80; listen 443 ssl default http2 backlog=1024; server_name mempool.space; ssl_certificate /usr/local/etc/letsencrypt/live/mempool.space/fullchain.pem; From 83501cfdbef4dd0cd1a5a4febf092f27e88b55df Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 3 Dec 2020 10:16:02 +0900 Subject: [PATCH 04/42] Enable locale 'vi' for Vietnamese --- frontend/angular.json | 4 + frontend/src/app/app.constants.ts | 2 +- frontend/src/locale/messages.vi.xlf | 2226 +++++++++++++++++++++++++++ production/nginx.conf | 2 + 4 files changed, 2233 insertions(+), 1 deletion(-) create mode 100644 frontend/src/locale/messages.vi.xlf diff --git a/frontend/angular.json b/frontend/angular.json index 3a3ff6926..f7f4ba5c4 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -71,6 +71,10 @@ "translation": "src/locale/messages.uk.xlf", "baseHref": "/uk/" }, + "vi": { + "translation": "src/locale/messages.vi.xlf", + "baseHref": "/vi/" + }, "zh": { "translation": "src/locale/messages.zh.xlf", "baseHref": "/zh/" diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 9ecf6b45a..2d9244561 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -110,6 +110,6 @@ export const languages: Language[] = [ // { code: 'th', name: 'ไทย' }, // Thai { code: 'tr', name: 'Türkçe' }, // Turkish { code: 'uk', name: 'Українська' }, // Ukrainian -// { code: 'vi', name: 'Tiếng Việt' }, // Vietnamese + { code: 'vi', name: 'Tiếng Việt' }, // Vietnamese { code: 'zh', name: '中文' }, // Chinese ]; diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf new file mode 100644 index 000000000..936163aac --- /dev/null +++ b/frontend/src/locale/messages.vi.xlf @@ -0,0 +1,2226 @@ + + + + + Transaction + Giao dịch + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Giao dịch này đã được thay thế bằng: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + xác nhận + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + xác nhận + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Chưa xác nhận + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Đầu vào & Đầu ra + + src/app/components/transaction/transaction.component.html + 165 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Chi tiết + + src/app/components/transaction/transaction.component.html + 167 + + Transaction Details + transaction.details + + + Details + Chi tiết + + src/app/components/transaction/transaction.component.html + 173 + + transaction.details + + + Size + Kích thước + + src/app/components/transaction/transaction.component.html + 178 + + Transaction Size + transaction.size + + + Weight + Cân nặng + + src/app/components/transaction/transaction.component.html + 182 + + Transaction Weight + transaction.weight + + + Timestamp + Dấu thời gian + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Chi phí + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 149 + + Transaction fee + transaction.fee + + + Fee per vByte + Phí mỗi 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 + Bao gồm trong khối + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Đã xác nhận + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Sau + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Điểm đặc trưng + + 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 + Lần đầu tiên nhìn thấy + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Trong vài giờ (hoặc hơn) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + phút + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 130 + + Transaction Minutes + transaction.minutes + + + block + khối + + 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. + Không tìm thấy giao dịch. + + src/app/components/transaction/transaction.component.html + 266 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Đang đợi nó xuất hiện trong mempool ... + + src/app/components/transaction/transaction.component.html + 267 + + transaction.error.waiting-for-it-to-appear + + + Confidential + Bảo mật + + 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) + (Coin mới được tạo) + + 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 + Nhân chứng + + 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 + Tập lệnh đầu ra trước đó + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Tải tất cả + + 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 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 + Kiểu + + src/app/components/transactions-list/transactions-list.component.html + 164 + + transactions-list.vout.scriptpubkey-type + + + data + dữ liệu + + 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 + xác nhận + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + xác nhận + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Unconfirmed + + 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 + Timestamp + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Size + + 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 + 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 + 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: + 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. + Error loading block data. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + TXID, block height, hash or address + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Height + + 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 + 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 + 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 of + + 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 + minutes + + 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 + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Reconnecting... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + 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. + 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 + Maintainers + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Development + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operations + + 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 ❤️ + Become a sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + 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 + Navigate to + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + to sponsor + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Amount required + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + 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 :) + 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... + Waiting for transaction... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Donation confirmed! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + 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. + 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... + Loading graphs... + + 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) + Transaction vBytes per second (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Waiting for blocks... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes per second: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempool size: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + 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 + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Total fees + + 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 + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Burned amount + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Issuer + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + 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 + Issued amount + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating 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. + Error loading asset data. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Unknown + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + 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 + 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 + 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 + 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 » + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + 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 + Amount + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + 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 + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + block + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + 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 + 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 + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Error loading address data. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + just now + just now + + src/app/components/translation-strings/translation-strings.component.html + 3 + + + src/app/components/time-since/time-since.component.ts + 49 + + + + sec ago + sec ago + + src/app/components/translation-strings/translation-strings.component.html + 4 + + + src/app/components/time-since/time-since.component.ts + 74 + + + + secs ago + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 96 + + + + second ago + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 71 + + + + seconds ago + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 93 + + + + min ago + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + mins ago + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 89 + + + + minute ago + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 64 + + + + minutes ago + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 86 + + + + hour ago + hour ago + + src/app/components/translation-strings/translation-strings.component.html + 12 + + + src/app/components/time-since/time-since.component.ts + 62 + + + + hours ago + hours ago + + src/app/components/translation-strings/translation-strings.component.html + 13 + + + src/app/components/time-since/time-since.component.ts + 84 + + + + day ago + day ago + + src/app/components/translation-strings/translation-strings.component.html + 14 + + + src/app/components/time-since/time-since.component.ts + 61 + + + + days ago + days ago + + src/app/components/translation-strings/translation-strings.component.html + 15 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + week ago + week ago + + src/app/components/translation-strings/translation-strings.component.html + 16 + + + src/app/components/time-since/time-since.component.ts + 60 + + + + weeks ago + weeks ago + + src/app/components/translation-strings/translation-strings.component.html + 17 + + + src/app/components/time-since/time-since.component.ts + 82 + + + + month ago + month ago + + src/app/components/translation-strings/translation-strings.component.html + 18 + + + src/app/components/time-since/time-since.component.ts + 59 + + + + months ago + months ago + + src/app/components/translation-strings/translation-strings.component.html + 19 + + + src/app/components/time-since/time-since.component.ts + 81 + + + + year ago + year ago + + src/app/components/translation-strings/translation-strings.component.html + 20 + + + src/app/components/time-since/time-since.component.ts + 58 + + + + years ago + 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 + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Overpaid x + 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 + 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/production/nginx.conf b/production/nginx.conf index 3f79a65cc..80007bd23 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -90,6 +90,7 @@ http { ~*^sv sv; ~*^tr tr; ~*^uk uk; + ~*^vi vi; ~*^zh zh; } @@ -110,6 +111,7 @@ http { ~*^sv sv; ~*^tr tr; ~*^uk uk; + ~*^vi vi; ~*^zh zh; } From 8875579c08af581da1eaa56b6dac4b050ca59857 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 3 Dec 2020 10:16:21 +0900 Subject: [PATCH 05/42] Update strings from Transifex --- frontend/src/locale/messages.cs.xlf | 4 ++-- frontend/src/locale/messages.de.xlf | 2 +- frontend/src/locale/messages.fa.xlf | 2 +- frontend/src/locale/messages.fr.xlf | 29 ++++++++++++++++++++++++++++- frontend/src/locale/messages.nl.xlf | 21 ++++++++++++++++++++- frontend/src/locale/messages.nn.xlf | 2 ++ frontend/src/locale/messages.sl.xlf | 27 +++++++++++++++++++++++++-- 7 files changed, 79 insertions(+), 8 deletions(-) diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 5400db808..1493f28b0 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -635,7 +635,7 @@ Subsidy + fees: - Nově vytěžené + poplatky: + Vytěžené + poplatky: src/app/components/block/block.component.html 57 @@ -666,7 +666,7 @@ transactions - transakce + transakcí src/app/components/block/block.component.html 85 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index dcbdd0b7f..ce156daa2 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -1997,7 +1997,7 @@ min ago - vor einer min. + vor einer Min. src/app/components/translation-strings/translation-strings.component.html 8 diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 00733aba4..b9d6c34d1 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -734,7 +734,7 @@ Transactions - تراکنش‌ها + تراکنش src/app/components/latest-blocks/latest-blocks.component.html 12 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index cd3d5cf18..4571c6c1c 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -101,6 +101,7 @@ Timestamp + Horodatage src/app/components/transaction/transaction.component.html 42 @@ -361,6 +362,7 @@ Peg-in + Peg-in src/app/components/transactions-list/transactions-list.component.html 41 @@ -369,6 +371,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -377,6 +380,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -386,6 +390,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -404,6 +409,7 @@ P2SH redeem script + Script de rachat P2SH src/app/components/transactions-list/transactions-list.component.html 84 @@ -412,6 +418,7 @@ P2WSH witness script + Script témoin PW2SH src/app/components/transactions-list/transactions-list.component.html 88 @@ -442,6 +449,7 @@ Peg-out to + Peg-out à src/app/components/transactions-list/transactions-list.component.html 125 @@ -450,6 +458,7 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html 168 @@ -459,6 +468,7 @@ ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html 172 @@ -527,6 +537,7 @@ Genesis + Genèse src/app/components/block/block.component.html 4 @@ -535,6 +546,7 @@ Block + Bloc src/app/components/block/block.component.html 4 @@ -552,6 +564,7 @@ Timestamp + Horodatage src/app/components/block/block.component.html 22 @@ -622,6 +635,7 @@ Subsidy + fees: + Subvention + frais: src/app/components/block/block.component.html 57 @@ -686,6 +700,7 @@ TXID, block height, hash or address + TXID, hauteur de bloc, hash ou addresse src/app/components/search-form/search-form.component.html 4 @@ -746,6 +761,7 @@ multisig of + multisig de src/app/components/address-labels/address-labels.component.html 1 @@ -754,6 +770,7 @@ Layer Peg-out + Couche Peg-out src/app/components/address-labels/address-labels.component.html 2 @@ -821,6 +838,7 @@ Layer 2 Networks + Réseaux de couche 2 src/app/components/master-page/master-page.component.html 19 @@ -838,7 +856,7 @@ 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. + 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 telles que les altcoins, les publicités, ou les traqueurs tiers. src/app/components/about/about.component.html 16 @@ -846,6 +864,7 @@ Maintainers + Mainteneurs src/app/components/about/about.component.html 22 @@ -890,6 +909,7 @@ Request invoice + Demander une facture src/app/components/about/about.component.html 85 @@ -925,6 +945,7 @@ to sponsor + pour sponsoriser src/app/components/about/about.component.html 65 @@ -1073,6 +1094,7 @@ Fee span + L'envergure des frais src/app/components/mempool-block/mempool-block.component.html 20 @@ -1120,6 +1142,7 @@ Issuer + Émetteur/trice src/app/components/asset/asset.component.html 28 @@ -1129,6 +1152,7 @@ Issuance TX + TX d'émission src/app/components/asset/asset.component.html 32 @@ -1138,6 +1162,7 @@ Pegged in + Pegged in src/app/components/asset/asset.component.html 43 @@ -1147,6 +1172,7 @@ Pegged out + Pegged in src/app/components/asset/asset.component.html 47 @@ -1156,6 +1182,7 @@ Issued amount + Montant émis src/app/components/asset/asset.component.html 51 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 8b693bbd4..ba41f8f46 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -237,7 +237,7 @@ ETA - ETA + Verwacht src/app/components/transaction/transaction.component.html 115 @@ -435,6 +435,7 @@ Load all + Laad alles src/app/components/transactions-list/transactions-list.component.html 106 @@ -532,6 +533,7 @@ Genesis + Genesis src/app/components/block/block.component.html 4 @@ -540,6 +542,7 @@ Block + Blok src/app/components/block/block.component.html 4 @@ -693,6 +696,7 @@ TXID, block height, hash or address + TXID, blokhoogte, hash of adres src/app/components/search-form/search-form.component.html 4 @@ -830,6 +834,7 @@ Layer 2 Networks + Laag-2-netwerken src/app/components/master-page/master-page.component.html 19 @@ -847,6 +852,7 @@ 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. + Het (open source) mempool project heeft als doel om een hoge kwaliteit explorer en visaulisatie te bieden voor het gehele Bitcoin-ecosysteem, zonder afleidingen als altcoins, reclame of trackers. src/app/components/about/about.component.html 16 @@ -1526,6 +1532,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Geeft de volledige lijst txids als een array. Deze is niet gesorteerd en komt niet overeen met bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1535,6 +1542,7 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Lijst van laatste 10 transacties die in de mempool komen. Elk transactieobject bevat gesimplificeerde data, met de velden: txid, fee, vgrootte, en waarde src/app/components/api-docs/api-docs.component.html 67 @@ -1554,6 +1562,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Geeft de bevesigingsstatus van een blok. Beschikbare velden: in_best_chain (boolean, false voor wees-blokken), next_best (hash van het volgende blok, enkel beschikbaar voor blokken in de 1-na-beste chain) src/app/components/api-docs/api-docs.component.html 89 @@ -1561,6 +1570,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Geeft een lijst van transacties in het blok (tot 25 transacties beginnend bij start_index). Teruggegeven transacties hebben geen status-veld, aangezien deze allemaal hetzelfde blok en bevestigingsstatus delen. src/app/components/api-docs/api-docs.component.html 93 @@ -1568,6 +1578,7 @@ Returns a list of all txids in the block. + Geeft een lijst van alle txids in het blok. src/app/components/api-docs/api-docs.component.html 97 @@ -1575,6 +1586,7 @@ Returns the transaction at index :index within the specified block. + Geeft de transactie op index :index binnen het opgegeven blok. src/app/components/api-docs/api-docs.component.html 101 @@ -1582,6 +1594,7 @@ Returns the raw block representation in binary. + Geeft rauwe block, in binaire vorm. src/app/components/api-docs/api-docs.component.html 105 @@ -1589,6 +1602,7 @@ Returns the hash of the block currently at :height. + Geeft de hash van het blok op hoogte :height. src/app/components/api-docs/api-docs.component.html 109 @@ -1596,6 +1610,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Geeft de 10 laatste blokken vanaf het einde of vanaf :start_height, als meegegeven. src/app/components/api-docs/api-docs.component.html 113 @@ -1603,6 +1618,7 @@ Returns the height of the last block. + Geeft de hoogte van het laatste blok. src/app/components/api-docs/api-docs.component.html 117 @@ -1610,6 +1626,7 @@ Returns the hash of the last block. + Geeft de hash van het laatste blok. src/app/components/api-docs/api-docs.component.html 121 @@ -1617,6 +1634,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Geeft de details van een blok. Beschikbare velden: 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 @@ -1624,6 +1642,7 @@ Transactions + Transacties src/app/components/api-docs/api-docs.component.html 129 diff --git a/frontend/src/locale/messages.nn.xlf b/frontend/src/locale/messages.nn.xlf index 8800500d6..3748135df 100644 --- a/frontend/src/locale/messages.nn.xlf +++ b/frontend/src/locale/messages.nn.xlf @@ -700,6 +700,7 @@ TXID, block height, hash or address + TXID, blokkhøyde, hash eller adresse src/app/components/search-form/search-form.component.html 4 @@ -837,6 +838,7 @@ Layer 2 Networks + Lag 2-nettverk src/app/components/master-page/master-page.component.html 19 diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 4b2471e05..90a771945 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -608,7 +608,7 @@ Median fee - Mediana omrežnine + Mediana omrežnin src/app/components/block/block.component.html 45 @@ -666,7 +666,7 @@ transactions - transakcije + transakcij src/app/components/block/block.component.html 85 @@ -856,6 +856,7 @@ 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. + Cilj odprtokodnega projekta mempool je ustvariti visokokakovostno spletno mesto za raziskovanje in vizualizacijo celotnega Bitcoin ekosistema, brez motečih vsebin, kot so alternativne kriptovalute, oglaševanje ali sledilci tretjih ponudnikov. src/app/components/about/about.component.html 16 @@ -971,6 +972,7 @@ If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Če prispevate 0.01 BTC ali več, bo vaša fotografija profila dodana na zgornji seznam sponzorjev :) src/app/components/about/about.component.html 92 @@ -1006,6 +1008,7 @@ If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Če ste navedli Twitter uporabniško ime, bi morala biti fotografija profila zdaj vidna na tej strani ob ponovnem nalaganju. src/app/components/about/about.component.html 176 @@ -1497,6 +1500,7 @@ Returns our currently suggested fees for new transactions. + Vrne trenutno predlagano omrežnino za nove transakcije. src/app/components/api-docs/api-docs.component.html 37 @@ -1506,6 +1510,7 @@ Returns current mempool as projected blocks. + Vrne trenutni mempool, kot projekcijo blokov. src/app/components/api-docs/api-docs.component.html 41 @@ -1525,6 +1530,7 @@ Returns current mempool backlog statistics. + Vrne trenutno statistiko mempoola. src/app/components/api-docs/api-docs.component.html 59 @@ -1534,6 +1540,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Vrne celoten seznam txid-jev v mempoolu v obliki polja. Vrstni red txid-jev je arbitraren in se ne ujema z bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1543,6 +1550,7 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Vrne seznam zadnjih 10 transakcij dodanih v mempool. Vsak objekt transakcije vsebuje naslednja polja: txid, fee, vsize, in value. src/app/components/api-docs/api-docs.component.html 67 @@ -1562,6 +1570,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Vrne stanje potrditve bloka. Razpoložljiva polja: in_best_chain (boolean, false za osirotele bloke, angl. orphaned), next_best (zgoščena vrednost oz. hash naslednjega bloka, na voljo samo za bloke v veljavni verigi). src/app/components/api-docs/api-docs.component.html 89 @@ -1576,6 +1585,7 @@ Returns a list of all txids in the block. + Vrne seznam vseh txid-jev v bloku. src/app/components/api-docs/api-docs.component.html 97 @@ -1583,6 +1593,7 @@ Returns the transaction at index :index within the specified block. + Vrne transakcijo z zaporedno številko :index znotraj podanega bloka. src/app/components/api-docs/api-docs.component.html 101 @@ -1590,6 +1601,7 @@ Returns the raw block representation in binary. + Vrne neobdelane podatke o bloku v binarni obliki. src/app/components/api-docs/api-docs.component.html 105 @@ -1597,6 +1609,7 @@ Returns the hash of the block currently at :height. + Vrne zgoščeno vrednost (hash) bloka na višini :height. src/app/components/api-docs/api-docs.component.html 109 @@ -1604,6 +1617,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Vrne 10 najnovejših blokov z najvišjim na začetku ali od višine :start_height, če je podana. src/app/components/api-docs/api-docs.component.html 113 @@ -1611,6 +1625,7 @@ Returns the height of the last block. + Vrne višino zadnjega bloka. src/app/components/api-docs/api-docs.component.html 117 @@ -1618,6 +1633,7 @@ Returns the hash of the last block. + Vrne zgoščeno vrednost (hash) zadnjega bloka. src/app/components/api-docs/api-docs.component.html 121 @@ -1625,6 +1641,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Vrne podatke o bloku. Razpoložljiva polja: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, in previousblockhash. src/app/components/api-docs/api-docs.component.html 85 @@ -1642,6 +1659,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Vrne podatke o transakciji. Razpoložljiva polja: txid, version, locktime, size, weight, fee, vin, vout, in status. src/app/components/api-docs/api-docs.component.html 139 @@ -1656,6 +1674,7 @@ Returns a transaction serialized as hex. + Vrne transakcijo v šestnajstiški obliki. src/app/components/api-docs/api-docs.component.html 147 @@ -1663,6 +1682,7 @@ Returns a transaction as binary data. + Vrne transakcijo v binarni obliki. src/app/components/api-docs/api-docs.component.html 151 @@ -1715,6 +1735,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Vrne podatke o naslovu. Razpoložljiva polja: address, chain_stats, in mempool_stats. chain,mempool_stats vsebujeta objekt z tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, in spent_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -1798,6 +1819,7 @@ Returns details about a Bisq transaction. + Vrne podrobnosti o Bisq transakciji. src/app/components/api-docs/api-docs.component.html 252 @@ -1812,6 +1834,7 @@ Returns all Bisq transactions that exist in a Bitcoin block. + Vrne vse Bisq transakcije vsebovane v Bitcoin bloku. src/app/components/api-docs/api-docs.component.html 260 From 129f122993f877130d15fd7bafa4a57efa37e048 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 3 Dec 2020 18:52:03 +0900 Subject: [PATCH 06/42] Replace nginx.conf try_files for /$lang/index.html with rewrite (fixes #250) --- production/nginx-mempool.conf | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/production/nginx-mempool.conf b/production/nginx-mempool.conf index d28f7f456..617c4cadf 100644 --- a/production/nginx-mempool.conf +++ b/production/nginx-mempool.conf @@ -33,13 +33,11 @@ # 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; + try_files /$lang/$uri /$lang/$uri/ $uri $uri/ /en-US/$uri @index-redirect; } - location @index { - add_header Cache-Control must-revalidate; - try_files /$lang/index.html /en-US/index.html =404; + location @index-redirect { + add_header vary accept-language; + rewrite (.*) /$lang/index.html; } # location block using regex are matched in order From 9509891abc45877e6f67d1ef605c21117c51fa19 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 3 Dec 2020 20:09:08 +0900 Subject: [PATCH 07/42] Update transifex-client configuration to use master branch --- frontend/.tx/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/.tx/config b/frontend/.tx/config index ec792e837..3016be606 100644 --- a/frontend/.tx/config +++ b/frontend/.tx/config @@ -1,7 +1,7 @@ [main] host = https://www.transifex.com -[mempool.frontend-src-locale-messages-xlf--wiz-i18n] +[mempool.frontend-src-locale-messages-xlf--master] file_filter = frontend/src/locale/messages..xlf source_lang = en-US type = XLIFF From fb11d73751fa5acf3382b72352583182a79db380 Mon Sep 17 00:00:00 2001 From: softsimon Date: Thu, 3 Dec 2020 18:34:19 +0700 Subject: [PATCH 08/42] i18n all the remaining strings. --- frontend/src/app/app.module.ts | 4 +- frontend/src/app/assets/assets.component.ts | 3 + .../bisq-address/bisq-address.component.ts | 2 +- .../bisq/bisq-block/bisq-block.component.ts | 2 +- .../bisq-blocks/bisq-blocks.component.html | 12 +- .../bisq/bisq-blocks/bisq-blocks.component.ts | 2 +- .../bisq/bisq-stats/bisq-stats.component.html | 36 +- .../bisq/bisq-stats/bisq-stats.component.ts | 3 +- .../bisq-transaction.component.ts | 2 +- .../bisq-transactions.component.html | 14 +- .../bisq-transactions.component.ts | 6 +- .../app/components/about/about.component.ts | 2 +- .../components/address/address.component.ts | 2 +- .../api-docs/api-docs.component.html | 2 +- .../components/api-docs/api-docs.component.ts | 3 + .../app/components/asset/asset.component.html | 2 +- .../app/components/asset/asset.component.ts | 2 +- .../app/components/block/block.component.html | 2 +- .../app/components/block/block.component.ts | 2 +- .../clipboard/clipboard.component.html | 2 +- .../clipboard/clipboard.component.ts | 5 +- .../fees-box/fees-box.component.html | 6 +- .../latest-blocks.component.html | 2 +- .../latest-blocks/latest-blocks.component.ts | 2 +- .../master-page/master-page.component.html | 20 +- .../mempool-block.component.html | 2 +- .../mempool-block/mempool-block.component.ts | 8 +- .../search-form/search-form.component.html | 2 +- .../statistics/statistics.component.html | 2 +- .../statistics/statistics.component.ts | 2 +- .../television/television.component.ts | 2 +- .../transaction/transaction.component.ts | 2 +- .../translation-strings.component.html | 22 - .../translation-strings.component.ts | 10 - .../tx-features/tx-features.component.html | 8 +- .../tx-fee-rating.component.html | 4 +- .../app/dashboard/dashboard.component.html | 8 +- .../src/app/dashboard/dashboard.component.ts | 2 +- frontend/src/locale/messages.xlf | 986 ++++++++++++------ 39 files changed, 776 insertions(+), 424 deletions(-) delete mode 100644 frontend/src/app/components/translation-strings/translation-strings.component.html delete mode 100644 frontend/src/app/components/translation-strings/translation-strings.component.ts diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index a80d81599..1018fa0de 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -43,11 +43,10 @@ import { NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; import { FeesBoxComponent } from './components/fees-box/fees-box.component'; import { DashboardComponent } from './dashboard/dashboard.component'; import { FontAwesomeModule, FaIconLibrary } from '@fortawesome/angular-fontawesome'; -import { faAngleDoubleDown, faAngleDoubleUp, faAngleDown, faAngleUp, faBolt, faChartArea, faCogs, faCubes, faDatabase, faExchangeAlt, faInfoCircle, +import { faAngleDown, faAngleUp, faBolt, faChartArea, faCogs, faCubes, faDatabase, faExchangeAlt, faInfoCircle, 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'; @NgModule({ @@ -83,7 +82,6 @@ import { StorageService } from './services/storage.service'; DashboardComponent, ApiDocsComponent, TermsOfServiceComponent, - TranslationStringsComponent, ], imports: [ BrowserModule, diff --git a/frontend/src/app/assets/assets.component.ts b/frontend/src/app/assets/assets.component.ts index 40a4a29be..2ae0f21d5 100644 --- a/frontend/src/app/assets/assets.component.ts +++ b/frontend/src/app/assets/assets.component.ts @@ -6,6 +6,7 @@ import { distinctUntilChanged, map, filter, mergeMap, tap, take } from 'rxjs/ope import { ActivatedRoute, Router } from '@angular/router'; import { merge, combineLatest, Observable } from 'rxjs'; import { AssetExtended } from '../interfaces/electrs.interface'; +import { SeoService } from '../services/seo.service'; @Component({ selector: 'app-assets', @@ -32,9 +33,11 @@ export class AssetsComponent implements OnInit { private formBuilder: FormBuilder, private route: ActivatedRoute, private router: Router, + private seoService: SeoService, ) { } ngOnInit() { + this.seoService.setTitle($localize`:@@ee8f8008bae6ce3a49840c4e1d39b4af23d4c263:Assets`); this.itemsPerPage = Math.max(Math.round(this.contentSpace / this.fiveItemsPxSize) * 5, 10); this.searchForm = this.formBuilder.group({ diff --git a/frontend/src/app/bisq/bisq-address/bisq-address.component.ts b/frontend/src/app/bisq/bisq-address/bisq-address.component.ts index f3968fcf0..dd7b8aeb5 100644 --- a/frontend/src/app/bisq/bisq-address/bisq-address.component.ts +++ b/frontend/src/app/bisq/bisq-address/bisq-address.component.ts @@ -36,7 +36,7 @@ export class BisqAddressComponent implements OnInit, OnDestroy { this.transactions = null; document.body.scrollTo(0, 0); this.addressString = params.get('id') || ''; - this.seoService.setTitle('Address: ' + this.addressString); + this.seoService.setTitle($localize`:@@729754dd19eb9ce0670b0aeb5a6ae60574c2c563:Address` + ': ' + this.addressString); return this.bisqApiService.getAddress$(this.addressString) .pipe( diff --git a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts index 6980f3ae8..536e72c36 100644 --- a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts +++ b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts @@ -82,7 +82,7 @@ export class BisqBlockComponent implements OnInit, OnDestroy { } this.isLoading = false; this.blockHeight = block.height; - this.seoService.setTitle('Block: #' + block.height + ': ' + block.hash); + this.seoService.setTitle($localize`:@@729754dd19eb9ce0670b0aeb5a6ae60574c2c563:Block` + ': #' + block.height + ': ' + block.hash); this.block = block; }); } diff --git a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html index e1953ec63..abcf8684b 100644 --- a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html +++ b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html @@ -1,5 +1,5 @@
-

Blocks

+

Blocks


@@ -9,15 +9,15 @@
- - - - + + + + - + diff --git a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts index 86c161b02..ee4108ae5 100644 --- a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts +++ b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts @@ -32,7 +32,7 @@ export class BisqBlocksComponent implements OnInit { ) { } ngOnInit(): void { - this.seoService.setTitle('Blocks'); + this.seoService.setTitle($localize`:@@8a7b4bd44c0ac71b2e72de0398b303257f7d2f54:Blocks`); this.itemsPerPage = Math.max(Math.round(this.contentSpace / this.fiveItemsPxSize) * 5, 10); this.loadingItems = Array(this.itemsPerPage); if (document.body.clientWidth < 768) { diff --git a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html index b34cc17ce..3b786c687 100644 --- a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html +++ b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html @@ -1,5 +1,5 @@
-

BSQ Statistics

+

BSQ statistics


@@ -7,41 +7,37 @@
HeightConfirmedTotal SentTransactionsHeightConfirmedTotal sentTransactions
{{ block.height }} ago {{ calculateTotalOutput(block) / 100 | number: '1.2-2' }} BSQ {{ block.txs.length }}
- - - - - + - + - + - + - + - + - + - + @@ -55,23 +51,23 @@ - + - + - + - + - + @@ -79,11 +75,11 @@ - + - + diff --git a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts index 9b58e621e..53f2051ae 100644 --- a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts +++ b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts @@ -21,8 +21,7 @@ export class BisqStatsComponent implements OnInit { ) { } ngOnInit() { - this.seoService.setTitle('BSQ Statistics'); - + this.seoService.setTitle($localize`:@@2a30a4cdb123a03facc5ab8c5b3e6d8b8dbbc3d4:BSQ statistics`); this.stateService.bsqPrice$ .subscribe((bsqPrice) => { this.price = bsqPrice; diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts index 50b880113..ee90bf95c 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts @@ -43,7 +43,7 @@ export class BisqTransactionComponent implements OnInit, OnDestroy { this.error = null; document.body.scrollTo(0, 0); this.txId = params.get('id') || ''; - this.seoService.setTitle('Transaction: ' + this.txId); + this.seoService.setTitle($localize`:@@b59ea65c89a5ae15b787d8318fdad9edd6fec243:Transaction` + ': ' + this.txId); if (history.state.data) { return of(history.state.data); } diff --git a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html index 371cc9edd..a261ecab5 100644 --- a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html +++ b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -1,5 +1,5 @@
-

Transactions

+

Transactions

@@ -15,11 +15,11 @@
PropertyValue
Existing amountExisting amount {{ (stats.minted - stats.burnt) / 100 | number: '1.2-2' }} BSQ
Minted amountMinted amount {{ stats.minted | number: '1.2-2' }} BSQ
Burnt amountBurnt amount {{ stats.burnt | number: '1.2-2' }} BSQ
AddressesAddresses {{ stats.addresses | number }}
Unspent TXOsUnspent TXOs {{ stats.unspent_txos | number }}
Spent TXOsSpent TXOs {{ stats.spent_txos | number }}
PricePrice
Market capMarket cap
Existing amountExisting amount
Minted amountMinted amount
Burnt amountBurnt amount
AddressesAddresses
Unspent TXOsUnspent TXOs
PricePrice
Market capMarket cap
- - - - - + + + + + @@ -37,7 +37,7 @@ {{ calculateTotalOutput(tx.outputs) / 100 | number: '1.2-2' }} BSQ - + diff --git a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts index 7c9859511..c46c8fdfa 100644 --- a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts +++ b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts @@ -52,7 +52,9 @@ export class BisqTransactionsComponent implements OnInit { }; txTypeDropdownTexts: IMultiSelectTexts = { - defaultTitle: 'Filter', + defaultTitle: $localize`:@@bisq-transactions.filter:Filter`, + checkAll: $localize`:@@bisq-transactions.selectall:Select all`, + uncheckAll: $localize`:@@bisq-transactions.unselectall:Unselect all`, }; // @ts-ignore @@ -72,7 +74,7 @@ export class BisqTransactionsComponent implements OnInit { ) { } ngOnInit(): void { - this.seoService.setTitle('Transactions'); + this.seoService.setTitle($localize`:@@add4cd82e3e38a3110fe67b3c7df56e9602644ee:Transactions`); this.radioGroupForm = this.formBuilder.group({ txTypes: [this.txTypesDefaultChecked], diff --git a/frontend/src/app/components/about/about.component.ts b/frontend/src/app/components/about/about.component.ts index 94ec35446..390137f7e 100644 --- a/frontend/src/app/components/about/about.component.ts +++ b/frontend/src/app/components/about/about.component.ts @@ -35,7 +35,7 @@ export class AboutComponent implements OnInit { ngOnInit() { this.gitCommit$ = this.stateService.gitCommit$.pipe(map((str) => str.substr(0, 8))); - this.seoService.setTitle('About'); + this.seoService.setTitle($localize`:@@004b222ff9ef9dd4771b777950ca1d0e4cd4348a:About`); this.websocketService.want(['blocks']); this.donationForm = this.formBuilder.group({ diff --git a/frontend/src/app/components/address/address.component.ts b/frontend/src/app/components/address/address.component.ts index bb596e6f8..8031e4352 100644 --- a/frontend/src/app/components/address/address.component.ts +++ b/frontend/src/app/components/address/address.component.ts @@ -61,7 +61,7 @@ export class AddressComponent implements OnInit, OnDestroy { this.transactions = null; document.body.scrollTo(0, 0); this.addressString = params.get('id') || ''; - this.seoService.setTitle('Address: ' + this.addressString); + this.seoService.setTitle($localize`:@@729754dd19eb9ce0670b0aeb5a6ae60574c2c563:Address` + ': ' + this.addressString); return merge( of(true), 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 73013525c..14204e36d 100644 --- a/frontend/src/app/components/api-docs/api-docs.component.html +++ b/frontend/src/app/components/api-docs/api-docs.component.html @@ -1,7 +1,7 @@
-

{{ network.val === '' ? 'Bitcoin' : network.val.charAt(0).toUpperCase() + network.val.slice(1) }} API Service

+

{{ network.val === '' ? 'Bitcoin' : network.val.charAt(0).toUpperCase() + network.val.slice(1) }} API Service

- + diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index 4a27ccf06..429b8bcc9 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -95,7 +95,7 @@ export class BlockComponent implements OnInit, OnDestroy { tap((block: Block) => { this.block = block; this.blockHeight = block.height; - this.seoService.setTitle('Block: #' + block.height + ': ' + block.id); + this.seoService.setTitle($localize`:@@block.component.block:Block` + ' ' + block.height + ': ' + block.id); this.isLoadingBlock = false; if (block.coinbaseTx) { this.coinbaseTx = block.coinbaseTx; diff --git a/frontend/src/app/components/clipboard/clipboard.component.html b/frontend/src/app/components/clipboard/clipboard.component.html index 3ee729ebc..1150074ac 100644 --- a/frontend/src/app/components/clipboard/clipboard.component.html +++ b/frontend/src/app/components/clipboard/clipboard.component.html @@ -1,4 +1,4 @@ - + diff --git a/frontend/src/app/components/clipboard/clipboard.component.ts b/frontend/src/app/components/clipboard/clipboard.component.ts index b2febef7c..317cba7b6 100644 --- a/frontend/src/app/components/clipboard/clipboard.component.ts +++ b/frontend/src/app/components/clipboard/clipboard.component.ts @@ -1,4 +1,4 @@ -import { Component, OnInit, ViewChild, ElementRef, AfterViewInit, Input, ChangeDetectionStrategy } from '@angular/core'; +import { Component, ViewChild, ElementRef, AfterViewInit, Input, ChangeDetectionStrategy } from '@angular/core'; import * as ClipboardJS from 'clipboard'; import * as tlite from 'tlite'; @@ -12,6 +12,7 @@ export class ClipboardComponent implements AfterViewInit { @ViewChild('btn') btn: ElementRef; @ViewChild('buttonWrapper') buttonWrapper: ElementRef; @Input() text: string; + copiedMessage: string = $localize`:@@clipboard.copied-message:Copied!`; clipboard: any; @@ -19,7 +20,7 @@ export class ClipboardComponent implements AfterViewInit { ngAfterViewInit() { this.clipboard = new ClipboardJS(this.btn.nativeElement); - this.clipboard.on('success', (e) => { + this.clipboard.on('success', () => { tlite.show(this.buttonWrapper.nativeElement); setTimeout(() => { tlite.hide(this.buttonWrapper.nativeElement); 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 5fd3d3198..4a3207bd4 100644 --- a/frontend/src/app/components/fees-box/fees-box.component.html +++ b/frontend/src/app/components/fees-box/fees-box.component.html @@ -3,19 +3,19 @@ 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 4a2032c41..6dd106134 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.html +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.html @@ -1,5 +1,5 @@
-

Blocks

+

Blocks


diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.ts b/frontend/src/app/components/latest-blocks/latest-blocks.component.ts index f67bcccb2..ccc898355 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.ts +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.ts @@ -34,7 +34,7 @@ export class LatestBlocksComponent implements OnInit, OnDestroy { ) { } ngOnInit() { - this.seoService.setTitle('Blocks'); + this.seoService.setTitle($localize`:@@f4cba7faeb126346f09cc6af30124f9a343f7a28:Blocks`); this.websocketService.want(['blocks']); this.network$ = merge(of(''), this.stateService.networkChanged$); 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 15e6ec3e5..cf0b79453 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -26,37 +26,37 @@ 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 dee0f4c19..aa7a3091b 100644 --- a/frontend/src/app/components/mempool-block/mempool-block.component.html +++ b/frontend/src/app/components/mempool-block/mempool-block.component.html @@ -14,7 +14,7 @@
- + diff --git a/frontend/src/app/components/mempool-block/mempool-block.component.ts b/frontend/src/app/components/mempool-block/mempool-block.component.ts index 312faead5..da1f54aae 100644 --- a/frontend/src/app/components/mempool-block/mempool-block.component.ts +++ b/frontend/src/app/components/mempool-block/mempool-block.component.ts @@ -69,13 +69,11 @@ export class MempoolBlockComponent implements OnInit, OnDestroy { getOrdinal(mempoolBlock: MempoolBlock): string { const blocksInBlock = Math.ceil(mempoolBlock.blockVSize / 1000000); if (this.mempoolBlockIndex === 0) { - return 'Next block'; + return $localize`:@@mempool-block.next.block:Next block`; } else if (this.mempoolBlockIndex === env.KEEP_BLOCKS_AMOUNT - 1 && blocksInBlock > 1 ) { - return `Stack of ${blocksInBlock} blocks`; + return $localize`:@@mempool-block.stack.of.blocks:Stack of ${blocksInBlock}:INTERPOLATION: mempool blocks`; } else { - const s = ['th', 'st', 'nd', 'rd']; - const v = this.mempoolBlockIndex + 1 % 100; - return this.mempoolBlockIndex + 1 + (s[(v - 20) % 10] || s[v] || s[0]) + ' next block'; + return $localize`:@@mempool-block.block.no:Mempool block ${this.mempoolBlockIndex + 1}:INTERPOLATION:`; } } } 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 c16374917..a4ad5d9d4 100644 --- a/frontend/src/app/components/search-form/search-form.component.html +++ b/frontend/src/app/components/search-form/search-form.component.html @@ -4,7 +4,7 @@
- +
diff --git a/frontend/src/app/components/statistics/statistics.component.html b/frontend/src/app/components/statistics/statistics.component.html index 872b48e06..87c1011d5 100644 --- a/frontend/src/app/components/statistics/statistics.component.html +++ b/frontend/src/app/components/statistics/statistics.component.html @@ -40,7 +40,7 @@ 1Y - +
diff --git a/frontend/src/app/components/statistics/statistics.component.ts b/frontend/src/app/components/statistics/statistics.component.ts index c9d65a809..8daa192c1 100644 --- a/frontend/src/app/components/statistics/statistics.component.ts +++ b/frontend/src/app/components/statistics/statistics.component.ts @@ -52,7 +52,7 @@ export class StatisticsComponent implements OnInit { } ngOnInit() { - this.seoService.setTitle('Graphs'); + this.seoService.setTitle($localize`:@@5d4f792f048fcaa6df5948575d7cb325c9393383:Graphs`); this.stateService.networkChanged$.subscribe((network) => this.network = network); this.inverted = this.storageService.getValue('inverted-graph') === 'true'; const isMobile = window.innerWidth <= 767.98; diff --git a/frontend/src/app/components/television/television.component.ts b/frontend/src/app/components/television/television.component.ts index 0c5b2a920..e4d12051e 100644 --- a/frontend/src/app/components/television/television.component.ts +++ b/frontend/src/app/components/television/television.component.ts @@ -24,7 +24,7 @@ export class TelevisionComponent implements OnInit { ) { } ngOnInit() { - this.seoService.setTitle('TV view'); + this.seoService.setTitle($localize`:@@46ce8155c9ab953edeec97e8950b5a21e67d7c4e:TV view`); this.websocketService.want(['blocks', 'live-2h-chart', 'mempool-blocks']); this.apiService.list2HStatistics$() diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index 5983a20fe..bad73f0b7 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -45,7 +45,7 @@ export class TransactionComponent implements OnInit, OnDestroy { this.subscription = this.route.paramMap.pipe( switchMap((params: ParamMap) => { this.txId = params.get('id') || ''; - this.seoService.setTitle('Transaction: ' + this.txId); + this.seoService.setTitle($localize`:@@b59ea65c89a5ae15b787d8318fdad9edd6fec243:Transaction` + ': ' + this.txId); this.resetTransaction(); return merge( of(true), diff --git a/frontend/src/app/components/translation-strings/translation-strings.component.html b/frontend/src/app/components/translation-strings/translation-strings.component.html deleted file mode 100644 index 4107925f4..000000000 --- a/frontend/src/app/components/translation-strings/translation-strings.component.html +++ /dev/null @@ -1,22 +0,0 @@ -{{counter}} -
- Just now - {{counter}} sec ago - {{counter}} secs ago - {{counter}} second ago - {{counter}} seconds ago - {{counter}} min ago - {{counter}} mins ago - {{counter}} minute ago - {{counter}} minutes ago - {{counter}} hour ago - {{counter}} hours ago - {{counter}} day ago - {{counter}} days ago - {{counter}} week ago - {{counter}} weeks ago - {{counter}} month ago - {{counter}} months ago - {{counter}} year ago - {{counter}} years ago -
diff --git a/frontend/src/app/components/translation-strings/translation-strings.component.ts b/frontend/src/app/components/translation-strings/translation-strings.component.ts deleted file mode 100644 index 25938ce77..000000000 --- a/frontend/src/app/components/translation-strings/translation-strings.component.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-translation-strings', - templateUrl: './translation-strings.component.html' -}) -export class TranslationStringsComponent { - counter: string; - constructor() { } -} diff --git a/frontend/src/app/components/tx-features/tx-features.component.html b/frontend/src/app/components/tx-features/tx-features.component.html index f8d959043..f015f0000 100644 --- a/frontend/src/app/components/tx-features/tx-features.component.html +++ b/frontend/src/app/components/tx-features/tx-features.component.html @@ -1,8 +1,8 @@ -SegWit +SegWit - SegWit + SegWit - SegWit + SegWit -RBF +RBF diff --git a/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html b/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html index eceb137bb..ff2ab4e33 100644 --- a/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html +++ b/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html @@ -1,3 +1,3 @@ Optimal -Overpaid {{ overpaidTimes }}x -Overpaid {{ overpaidTimes }}x +Overpaid {{ overpaidTimes }}x +Overpaid {{ overpaidTimes }}x diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index f3043c487..449efbf26 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -128,8 +128,8 @@ @@ -161,7 +161,7 @@
TransactionTypeAmountConfirmedHeightTransactionTypeAmountConfirmedHeight
ago {{ tx.blockHeight }}
Median fee~{{ block.medianFee | number:'1.0-0' }} sat/vB ()~{{ block.medianFee | number:'1.0-0' }} sat/vB ()
Low priority

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

Medium priority

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

High priority

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

Median fee~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB ()~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB ()
Fee span
Mempool size

- {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blockblocks) + {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} {mempoolBlocksData.blocks, plural, =1 {block} other {blocks}})

@@ -182,7 +182,7 @@
-
{{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} vB/s
+
{{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} vB/s
diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts index a0ffc82d1..6267b9ed1 100644 --- a/frontend/src/app/dashboard/dashboard.component.ts +++ b/frontend/src/app/dashboard/dashboard.component.ts @@ -256,9 +256,9 @@ export class DashboardComponent implements OnInit { 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) { } + this.document.location.href = (language === 'en' ? '/' : '/' + language); } } diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 84a8da4a6..c0c07e7fa 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -4,11 +4,22 @@ Transaction + + src/app/components/transaction/transaction.component.ts + 48 + src/app/components/transaction/transaction.component.html 12 - shared.transaction + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + This transaction has been replaced by: @@ -50,7 +61,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -59,7 +70,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -68,7 +79,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -76,16 +87,25 @@ Size src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -107,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -120,7 +140,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -133,7 +153,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -213,7 +233,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -231,7 +251,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -262,7 +282,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -275,7 +295,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -284,7 +304,7 @@ Transaction not found. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -292,30 +312,10 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -442,6 +442,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -489,6 +493,33 @@ transactions-list.unconfirmed + + Confidential + + 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 + + + Block + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -565,6 +596,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees @@ -613,6 +668,10 @@ 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 @@ -625,10 +684,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -639,6 +694,69 @@ block.error.loading-block-data + + Address + + src/app/components/address/address.component.ts + 64 + + + src/app/components/address/address.component.html + 2 + + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 14 + + 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 + TXID, block height, hash or address @@ -647,6 +765,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -657,6 +818,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -677,10 +846,26 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions @@ -748,6 +933,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.api + Offline @@ -772,6 +981,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -940,6 +1201,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -993,6 +1262,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1009,6 +1299,13 @@ mempool-block.total-fees + + Asset + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1094,6 +1391,20 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + + + In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Error loading asset data. @@ -1196,6 +1507,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1214,6 +1529,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size @@ -1232,13 +1563,13 @@ Unconfirmed count dashboard.unconfirmed - - block + + {VAR_PLURAL, plural, =1 {block} other {blocks}} src/app/dashboard/dashboard.component.html 164 - dashboard.block + dashboard.blocks Incoming transactions @@ -1265,6 +1596,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1419,15 +1758,6 @@ 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). @@ -1702,262 +2032,20 @@ 272 - - Address + + Copied! - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 83 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -1976,6 +2064,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -1994,6 +2106,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2012,6 +2136,266 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + + + Confirmed + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 13 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + From a831d04694201912647515032a0e8152fbb06b00 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 3 Dec 2020 22:37:06 +0900 Subject: [PATCH 09/42] Fix incorrectly used 'nn' locale, rename it to 'nb' instead --- frontend/angular.json | 6 +++--- frontend/src/app/app.constants.ts | 4 ++-- frontend/src/locale/{messages.nn.xlf => messages.nb.xlf} | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) rename frontend/src/locale/{messages.nn.xlf => messages.nb.xlf} (99%) diff --git a/frontend/angular.json b/frontend/angular.json index f7f4ba5c4..636d4da0f 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -47,9 +47,9 @@ "translation": "src/locale/messages.nl.xlf", "baseHref": "/nl/" }, - "nn": { - "translation": "src/locale/messages.nn.xlf", - "baseHref": "/nn/" + "nb": { + "translation": "src/locale/messages.nb.xlf", + "baseHref": "/nb/" }, "pt": { "translation": "src/locale/messages.pt.xlf", diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 2d9244561..e5ae0dd4e 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -94,8 +94,8 @@ export const languages: Language[] = [ // { 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: 'nb', name: 'Norsk' }, // Norwegian Bokmål +// { code: 'nn', name: 'Norsk Nynorsk' }, // Norwegian Nynorsk // { code: 'pl', name: 'Polski' }, // Polish { code: 'pt', name: 'Português' }, // Portuguese // { code: 'pt-BR', name: 'Português (Brazil)' }, // Portuguese (Brazil) diff --git a/frontend/src/locale/messages.nn.xlf b/frontend/src/locale/messages.nb.xlf similarity index 99% rename from frontend/src/locale/messages.nn.xlf rename to frontend/src/locale/messages.nb.xlf index 3748135df..f5d873e64 100644 --- a/frontend/src/locale/messages.nn.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -1,5 +1,5 @@ - + Transaction From cc451d29abb401a5fecc5e08a61e5ab27b69e868 Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Dec 2020 04:07:01 +0900 Subject: [PATCH 10/42] Update translated strings from Transifex --- frontend/src/locale/messages.es.xlf | 8 +- frontend/src/locale/messages.fa.xlf | 4 + frontend/src/locale/messages.ja.xlf | 2 +- frontend/src/locale/messages.nb.xlf | 100 ++++++++-------- frontend/src/locale/messages.nl.xlf | 2 + frontend/src/locale/messages.pt.xlf | 170 +++++++++++++++------------- frontend/src/locale/messages.sl.xlf | 3 + 7 files changed, 157 insertions(+), 132 deletions(-) diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 543c1b3ec..7ebfea6d9 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -1643,7 +1643,7 @@ 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. + Muestra información acerca de 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 @@ -1661,7 +1661,7 @@ 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. + Muestra información acerca de 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 @@ -1743,7 +1743,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. - 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. + Muestra 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 @@ -1793,7 +1793,7 @@ Returns information about a Liquid asset. - Muestra información sobre activos de Liquid. + Muestra información acerca de activos de Liquid. src/app/components/api-docs/api-docs.component.html 223 diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index b9d6c34d1..5b750ca27 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -700,6 +700,7 @@ TXID, block height, hash or address + شناسه تراکنش، طول بلاک، چکیده یا آدرس src/app/components/search-form/search-form.component.html 4 @@ -837,6 +838,7 @@ Layer 2 Networks + شبکه‌های لایه 2 src/app/components/master-page/master-page.component.html 19 @@ -1641,6 +1643,7 @@ 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 @@ -1698,6 +1701,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + وضعیت خرج‌شدن یک تراکنش را برمی‌گرداند. فیلدهای در دسترس: spent(boolean), txid (optional), vin (optional), و status(optional وضعیت تراکنش خرج شونده). src/app/components/api-docs/api-docs.component.html 163 diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 7783b8dd5..e1c68fc6b 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -700,7 +700,7 @@ TXID, block height, hash or address - TXID、アドレス、ブロックハッシュなど + TXID, アドレス, ブロックハッシュなど src/app/components/search-form/search-form.component.html 4 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index f5d873e64..7563b6169 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -52,7 +52,7 @@ Inputs & Outputs - Inputs og Outputs + Inndata og Utdata src/app/components/transaction/transaction.component.html 165 @@ -291,7 +291,7 @@ block - blokker + blokk src/app/components/transaction/transaction.component.html 126 @@ -691,7 +691,7 @@ Error loading block data. - Lasting av blokk data feilet. + Lasting av blokkdata feilet. src/app/components/block/block.component.html 165 @@ -735,7 +735,7 @@ Transactions - Transaksjon + Transaksjoner src/app/components/latest-blocks/latest-blocks.component.html 12 @@ -856,7 +856,7 @@ 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. + Åpen-kildekode prosjektet Mempool 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 @@ -954,7 +954,7 @@ Amount required - Sum som kreves + Beløp som kreves src/app/components/about/about.component.html 82 @@ -963,7 +963,7 @@ Minimum amount is 0.001 BTC - Minimum sum er 0.001 BTC + Minimum beløp er 0.001 BTC src/app/components/about/about.component.html 83 @@ -1008,7 +1008,7 @@ 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. + Hvis du spesifiserte en Twitter handle, så skal profilbilde ditt nå vises på denne siden når du laster siden på nytt. src/app/components/about/about.component.html 176 @@ -1026,7 +1026,7 @@ Mempool by vBytes (sat/vByte) - Mempool by vBytes (sat/vByte) + Mempool i vBytes (sat/vByte) src/app/components/statistics/statistics.component.html 16 @@ -1035,7 +1035,7 @@ Transaction vBytes per second (vB/s) - Transaksjon vBytes per sekund (vB/s) + Transaksjoner per sekund (vB/s) src/app/components/statistics/statistics.component.html 57 @@ -1072,7 +1072,7 @@ Backend is synchronizing - Baksiden synkroniserer + Backend synkroniserer src/app/components/footer/footer.component.html 7 @@ -1132,7 +1132,7 @@ Burned amount - Sum brent + Beløp som er brent src/app/components/asset/asset.component.html 55 @@ -1152,7 +1152,7 @@ Issuance TX - Utsteder TX + Utstedelse TX src/app/components/asset/asset.component.html 32 @@ -1182,7 +1182,7 @@ Issued amount - Utstedt sum + Beløp som er utstedt src/app/components/asset/asset.component.html 51 @@ -1192,7 +1192,7 @@ Circulating amount - Sirkulerende sum + Sirkulerende beløp src/app/components/asset/asset.component.html 59 @@ -1206,7 +1206,7 @@ Error loading asset data. - Lasting av ressurs data feilet. + Lasting av ressursdata feilet. src/app/components/asset/asset.component.html 132 @@ -1312,7 +1312,7 @@ Amount - Sum + Beløp src/app/dashboard/dashboard.component.html 108 @@ -1387,7 +1387,7 @@ Difficulty adjustment - Vanskelighetsjustering + Vanskelighetsgradjustering src/app/dashboard/dashboard.component.html 194 @@ -1482,7 +1482,7 @@ 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. + 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 inndata eller utdata. 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 @@ -1531,7 +1531,7 @@ Returns current mempool backlog statistics. - Returnerer nåværende mempool ettersleps-statistikk. + Returnerer statistikk for nåværende mempool. src/app/components/api-docs/api-docs.component.html 59 @@ -1541,7 +1541,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. - 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. + Gir deg en full liste over txider i det nåværende mempoolet. Sorteringen av txidene er tilfeldig og er ikke lik bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1551,7 +1551,7 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. - 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 . + Gir deg en liste over de 10 siste transaksjonene som har gått inn i mempool. Hvert transaksjons-objekt inneholder en forenklet oversikt, med følgende felt: txid , fee , vsize , and value . src/app/components/api-docs/api-docs.component.html 67 @@ -1571,7 +1571,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). - 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). + Returnerer bekreftelsesstatus for en blokk. Tilgjengelige felt: in_best_chain (boolsk verdi, 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 @@ -1579,7 +1579,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. - 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. + Returnerer en liste av transaksjoner i blokken (opp til 25 transaksjoner som begynner på start_index ). Transaksjoner som blir returnert har ikke status felt, siden alle transaksjoner har samme blokk og bekreftelsesstatus. src/app/components/api-docs/api-docs.component.html 93 @@ -1587,7 +1587,7 @@ Returns a list of all txids in the block. - Returnerer en liste av alle txider i blokken. + Returnerer en liste over alle txider i blokken. src/app/components/api-docs/api-docs.component.html 97 @@ -1603,7 +1603,7 @@ Returns the raw block representation in binary. - Returnerer blokk representasjonen i binær. + Returnerer en blokk i binær. src/app/components/api-docs/api-docs.component.html 105 @@ -1619,7 +1619,7 @@ 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. + Returnerer de 10 nyeste blokkene som starter fra toppen eller fra :start_height hvis spesifisert. src/app/components/api-docs/api-docs.component.html 113 @@ -1627,7 +1627,7 @@ Returns the height of the last block. - Returnerer høyden på den siste blokken. + Returnerer høyden til den siste blokken. src/app/components/api-docs/api-docs.component.html 117 @@ -1635,7 +1635,7 @@ Returns the hash of the last block. - Returnerer hashen av den siste blokken. + Returnerer hashen til den siste blokken. src/app/components/api-docs/api-docs.component.html 121 @@ -1643,7 +1643,7 @@ 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 . + Returnerer detaljer om en blokk. Tilgjengelige felt: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size, weight , proof , og previousblockhash . src/app/components/api-docs/api-docs.component.html 85 @@ -1661,7 +1661,7 @@ 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 . + Returnerer detaljer om en transaksjon, Tilgjengelige felt: txid , version , locktime , size , weight , fee , vin , vout , og status . src/app/components/api-docs/api-docs.component.html 139 @@ -1669,7 +1669,7 @@ 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). + Returnerer bekreftelsesstatusen til en transaksjon. Tilgjengelige felt: confirmed (boolsk verdi), block_height (valgfri), og block_hash (valgfri). src/app/components/api-docs/api-docs.component.html 143 @@ -1701,7 +1701,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). - Returnerer spendingstatusen til en transaksjon output. Tilgjengelige felt: brukt (boolean), txid (valgfri), vin (valgfri), og status (valgfri, statusen til spending-transaksonen). + Returnerer bruktstatusen til en transaksjons utdata. Tilgjengelige felt: spent (boolsk verdi), txid (valgfri), vin (valgfri), og status (valgfri, statusen til transaksonen som brukte den). src/app/components/api-docs/api-docs.component.html 163 @@ -1709,7 +1709,7 @@ Returns the spending status of all transaction outputs. - Returnerer spending status fra alle transakjons outputs. + Returnerer brukt status for alle transakjons utdata. src/app/components/api-docs/api-docs.component.html 167 @@ -1717,7 +1717,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. - Kringkast en rå transaksjon til nettverket. Transaksjonen må være gitt som hex. txid blir returnert. + Send en rå transaksjon ut på nettverket. Transaksjonen må være gitt som hex. txid blir returnert hvis det er vellykket. src/app/components/api-docs/api-docs.component.html 171 @@ -1725,7 +1725,7 @@ 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. + Returnerer et merkle-inkluderingsbevis for transaksjonen, den bruker bitcoind's merkleblock format. src/app/components/api-docs/api-docs.component.html 155 @@ -1743,7 +1743,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. - 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 . + Returnerer detaljer om en adresse. Tilgjengelige felt: address , chain_stats , og mempool_stats . chain,mempool_stats, alle inneholder ett objekt med tx_count , funded_txo_count , funded_txo_sum, spent_txo_count, og spend_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -1751,7 +1751,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). - 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). + Gir deg 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 @@ -1759,7 +1759,7 @@ Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. - 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. + Gir deg den bekreftede transaksjonshistorien 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 txiden som ble sett av det forrige kallet. src/app/components/api-docs/api-docs.component.html 197 @@ -1767,7 +1767,7 @@ 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). + Gir deg ubekreftet transaksjonshistorie for den spesifiserte adressen/scripthash. Returnerer opp til 50 transaksjoner (ingen paging). src/app/components/api-docs/api-docs.component.html 201 @@ -1775,7 +1775,7 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. - 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 . + Gir deg en liste av ubrukte transaksjons-utdata assosiert med adressen/scripthash. Tilgjengelige felt: txid , vout, value , og status (med statusen for finansieringstransaksjonen). Det er også et valuecommitment felt som kan vises istedenfor value , pluss de følgende felter: asset /assetcommitment , nonce /noncecommitment , surjection_proof , og range_proof . src/app/components/api-docs/api-docs.component.html 205 @@ -1783,7 +1783,7 @@ Assets - Assets + Ressurser src/app/components/api-docs/api-docs.component.html 213 @@ -1801,7 +1801,7 @@ Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. - 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. + Returnerer transaksjoner assosiert med den spesifiserte Liquid ressursen. For nettverkets native ressurs, returneres en liste av peg in, peg out, og brenn transaksjoner. For brukerutsdedte ressurser, returneres 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 @@ -1809,7 +1809,7 @@ Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. - 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. + Gir deg 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, returneres forsyningen som en desimal i henhold til ressursens delbarhet, ellers returneres den i baseenheter. src/app/components/api-docs/api-docs.component.html 231 @@ -1843,7 +1843,7 @@ Returns :length of latest Bisq transactions, starting from :index. - Returnerer :lengde av siste Bisq transaksjoner, starter fra :indeks. + Returnerer :length av de siste Bisq transaksjonene, starter fra :index. src/app/components/api-docs/api-docs.component.html 256 @@ -1859,7 +1859,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. - Returnerer :lengde Bitcoin blokker som inneholder Bisq transaksjoner, starter fra :index. + Returnerer :length Bitcoin blokker som inneholder Bisq transaksjoner, starter fra :index. src/app/components/api-docs/api-docs.component.html 264 @@ -1867,7 +1867,7 @@ Returns the most recently processed Bitcoin block height processed by Bisq. - Returnerer den nyeste prosesserte Bitcoin blokkhøyde prosessert av Bisq. + Returnerer den nyeste prosesserte Bitcoin blokkhøyden som er prosessert av Bisq. src/app/components/api-docs/api-docs.component.html 268 @@ -1875,7 +1875,7 @@ 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. + Returnerer alle Bisq transaksjoner som hører til en Bitcoin adresse, med 'B' prefikset foran adressen. src/app/components/api-docs/api-docs.component.html 272 @@ -2203,7 +2203,7 @@ Overpaid x - Overbetalt x + Overbetalte x src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2213,7 +2213,7 @@ Overpaid x - Overbetalt x + Overbetalte x src/app/components/tx-fee-rating/tx-fee-rating.component.html 3 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index ba41f8f46..25425c1b7 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -1936,6 +1936,7 @@ second ago + seconde geleden src/app/components/translation-strings/translation-strings.component.html 6 @@ -1947,6 +1948,7 @@ seconds ago + seconden geleden src/app/components/translation-strings/translation-strings.component.html 7 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 69be4cf97..5000443eb 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -321,6 +321,27 @@ 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 @@ -514,27 +535,6 @@ 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 @@ -669,10 +669,6 @@ 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 @@ -685,6 +681,10 @@ src/app/components/footer/footer.component.html 16 + + src/app/components/address/address.component.html + 46 + shared.transaction-count.plural @@ -696,59 +696,13 @@ block.error.loading-block-data - - Address - Endereço + + TXID, block height, hash or address - src/app/components/address/address.component.html - 2 + src/app/components/search-form/search-form.component.html + 4 - 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 + search-form.searchbar-placeholder Height @@ -879,6 +833,14 @@ 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 @@ -1915,6 +1877,60 @@ 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 @@ -2184,4 +2200,4 @@ - + \ No newline at end of file diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 90a771945..cc735193c 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -1578,6 +1578,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Vrne seznam transakcij v bloku (do 25 transakcij z začetkomstart_index). Podatki o transakciji ne vsebujejo polja status, saj gre za transakcije istega bloka z istim številom potrditev. src/app/components/api-docs/api-docs.component.html 93 @@ -1667,6 +1668,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Vrne stanje potrditve transakcije. Razpoložljiva polja: confirmed (boolean), block_height (opcijsko), in block_hash (opcijsko). src/app/components/api-docs/api-docs.component.html 143 @@ -1704,6 +1706,7 @@ Returns the spending status of all transaction outputs. + Vrne stanje porabe vseh izhodov transakcije. src/app/components/api-docs/api-docs.component.html 167 From 73db9c5023bbafdc4930cc1d9642c616d421246f Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Dec 2020 04:11:14 +0900 Subject: [PATCH 11/42] Enable 'ar' locale for Arabic --- frontend/angular.json | 4 + frontend/src/app/app.constants.ts | 2 +- frontend/src/locale/messages.ar.xlf | 2169 +++++++++++++++++++++++++++ production/nginx.conf | 2 + 4 files changed, 2176 insertions(+), 1 deletion(-) create mode 100644 frontend/src/locale/messages.ar.xlf diff --git a/frontend/angular.json b/frontend/angular.json index 636d4da0f..e15faaf3f 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -19,6 +19,10 @@ "baseHref":"/" }, "locales": { + "ar": { + "translation": "src/locale/messages.ar.xlf", + "baseHref": "/ar/" + }, "cs": { "translation": "src/locale/messages.cs.xlf", "baseHref": "/cs/" diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index e5ae0dd4e..8e82ffd20 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -65,7 +65,7 @@ export interface Language { } export const languages: Language[] = [ -// { code: 'ar', name: 'العربية' }, // Arabic + { code: 'ar', name: 'العربية' }, // Arabic // { code: 'bg', name: 'Български' }, // Bulgarian // { code: 'bs', name: 'Bosanski' }, // Bosnian // { code: 'ca', name: 'Català' }, // Catalan diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf new file mode 100644 index 000000000..9bc3fb894 --- /dev/null +++ b/frontend/src/locale/messages.ar.xlf @@ -0,0 +1,2169 @@ + + + + + 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) + البرنامج النصي (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + البرنامج النصي. (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 + + 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 + الحد الأدنى للمبلغ هو 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) + + 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 + إصدار 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/production/nginx.conf b/production/nginx.conf index 80007bd23..8f68ebe08 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -77,6 +77,7 @@ http { default en-US; ~*^en-US en-US; ~*^en en-US; + ~*^ar ar; ~*^cs cs; ~*^de de; ~*^es es; @@ -98,6 +99,7 @@ http { default $header_lang; ~*^en-US en-US; ~*^en en-US; + ~*^ar ar; ~*^cs cs; ~*^de de; ~*^es es; From ea521651fd57edbf3f9db2108268f8ab277610de Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Dec 2020 04:11:35 +0900 Subject: [PATCH 12/42] Update extracted i18n strings from source --- frontend/src/locale/messages.xlf | 209 ++++++++++++++++--------------- 1 file changed, 109 insertions(+), 100 deletions(-) diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 84a8da4a6..7d9eeaf59 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -50,7 +50,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -59,7 +59,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -68,7 +68,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -76,16 +76,25 @@ Size src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -107,7 +116,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -120,7 +129,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -133,7 +142,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -213,7 +222,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -231,7 +240,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -262,7 +271,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -275,7 +284,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -284,7 +293,7 @@ Transaction not found. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -292,30 +301,10 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -489,6 +478,26 @@ transactions-list.unconfirmed + + Confidential + + 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 @@ -613,6 +622,10 @@ 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 @@ -625,10 +638,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -639,6 +648,54 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address @@ -1702,56 +1759,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1769,7 +1778,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1780,7 +1789,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1791,7 +1800,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1802,7 +1811,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1813,7 +1822,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1824,7 +1833,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1835,7 +1844,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1846,7 +1855,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -1868,7 +1877,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -1890,7 +1899,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -1912,7 +1921,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -1934,7 +1943,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -1956,7 +1965,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 From e49ecd9368e266fb3d66c8df100fb56c3975b5dc Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Dec 2020 05:56:40 +0900 Subject: [PATCH 13/42] Implement auto RTL support for i18n locales like Arabic, Persian, etc. Fixes #255 --- frontend/src/app/components/app/app.component.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/app/app.component.ts b/frontend/src/app/components/app/app.component.ts index 6a961710a..59f4fed32 100644 --- a/frontend/src/app/components/app/app.component.ts +++ b/frontend/src/app/components/app/app.component.ts @@ -1,4 +1,4 @@ -import { Component, HostListener, OnInit } from '@angular/core'; +import { Component, HostListener, OnInit, Inject, LOCALE_ID, HostBinding } from '@angular/core'; import { Router, NavigationEnd } from '@angular/router'; import { WebsocketService } from '../../services/websocket.service'; import { StateService } from 'src/app/services/state.service'; @@ -15,7 +15,14 @@ export class AppComponent implements OnInit { public router: Router, private websocketService: WebsocketService, private stateService: StateService, - ) { } + @Inject(LOCALE_ID) private locale: string, + ) { + if (this.locale.startsWith('ar') || this.locale.startsWith('fa')) { + this.dir = 'rtl'; + } + } + + @HostBinding('attr.dir') dir = 'ltr'; @HostListener('document:keydown', ['$event']) handleKeyboardEvents(event: KeyboardEvent) { From 62363802bef1aee1a5d283052152dc960fded111 Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Dec 2020 22:41:58 +0900 Subject: [PATCH 14/42] Always render app-mempool-graph using LTR --- .../src/app/components/statistics/statistics.component.html | 2 +- .../src/app/components/television/television.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/statistics/statistics.component.html b/frontend/src/app/components/statistics/statistics.component.html index 872b48e06..88ebc2c29 100644 --- a/frontend/src/app/components/statistics/statistics.component.html +++ b/frontend/src/app/components/statistics/statistics.component.html @@ -45,7 +45,7 @@
- +
diff --git a/frontend/src/app/components/television/television.component.html b/frontend/src/app/components/television/television.component.html index 49e1bb1da..2b5273b11 100644 --- a/frontend/src/app/components/television/television.component.html +++ b/frontend/src/app/components/television/television.component.html @@ -5,7 +5,7 @@
- +
From 92d163f49557bd77cbb7c51137c6f69c4facc7b6 Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Dec 2020 22:54:09 +0900 Subject: [PATCH 15/42] More fixes for RTL --- frontend/src/app/components/about/about.component.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 4924ab364..031dc9949 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -12,7 +12,7 @@

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.

@@ -22,7 +22,7 @@

Maintainers

-
+
@@ -178,19 +178,19 @@



-
+ - + - + From 768fbdfbfa8e0064b86e168c59762909f4c1763b Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Dec 2020 23:03:17 +0900 Subject: [PATCH 16/42] Update translated strings from Transifex --- frontend/src/locale/messages.ar.xlf | 224 +-- frontend/src/locale/messages.cs.xlf | 224 +-- frontend/src/locale/messages.de.xlf | 228 +-- frontend/src/locale/messages.en_US.xlf | 209 +-- frontend/src/locale/messages.es.xlf | 224 +-- frontend/src/locale/messages.fa.xlf | 234 +-- frontend/src/locale/messages.fi_FI.xlf | 2189 ++++++++++++++++++++++++ frontend/src/locale/messages.fr.xlf | 224 +-- frontend/src/locale/messages.hr.xlf | 2045 ++++++++++++++++++++++ frontend/src/locale/messages.ja.xlf | 224 +-- frontend/src/locale/messages.nb.xlf | 242 +-- frontend/src/locale/messages.nl.xlf | 223 +-- frontend/src/locale/messages.pl.xlf | 209 +-- frontend/src/locale/messages.pt.xlf | 223 +-- frontend/src/locale/messages.sl.xlf | 249 +-- frontend/src/locale/messages.sv.xlf | 224 +-- frontend/src/locale/messages.tr.xlf | 223 +-- frontend/src/locale/messages.uk.xlf | 224 +-- frontend/src/locale/messages.vi.xlf | 224 +-- frontend/src/locale/messages.zh.xlf | 222 +-- 20 files changed, 6349 insertions(+), 1939 deletions(-) create mode 100644 frontend/src/locale/messages.fi_FI.xlf create mode 100644 frontend/src/locale/messages.hr.xlf diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 9bc3fb894..29ae249d9 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -55,7 +55,7 @@ المساهمات و الانتاجيه src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ التفاصيل src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ التفاصيل src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ حجم src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight وزن src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -249,7 +258,7 @@ سات src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -283,7 +292,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -297,7 +306,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -307,7 +316,7 @@ الصفقة غير موجودة. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -316,31 +325,10 @@ في انتظار ظهورها على الميم بوول src/app/components/transaction/transaction.component.html - 267 + 274 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 كوين بيس @@ -529,6 +517,27 @@ transactions-list.unconfirmed + + Confidential + خصوصي + + 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 منشأ @@ -665,6 +674,10 @@ 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 @@ -677,10 +690,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -692,6 +701,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address @@ -1825,63 +1888,8 @@ 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 - الآن + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1900,7 +1908,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1912,7 +1920,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1924,7 +1932,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1936,7 +1944,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1948,7 +1956,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1960,7 +1968,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1972,7 +1980,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1984,7 +1992,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2008,7 +2016,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2032,7 +2040,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2056,7 +2064,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2080,7 +2088,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2104,7 +2112,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 1493f28b0..11af89114 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -55,7 +55,7 @@ Vstupy a Výstupy src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Detaily src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Detaily src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Velikost src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Váha src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Transakce nebyla nalezena. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Čekání na to, až se objeví v mempoolu... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +523,27 @@ transactions-list.unconfirmed + + Confidential + Důvěrné + + 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 Genesis @@ -671,6 +680,10 @@ 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 @@ -683,10 +696,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +707,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, výška bloku, hash nebo adresa @@ -1881,63 +1944,8 @@ 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ď + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1956,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1976,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1988,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2000,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2012,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2024,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2036,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2048,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2072,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2096,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2120,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2144,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2168,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index ce156daa2..e2a3660c5 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -52,10 +52,10 @@ Inputs & Outputs - Inputs & Outputs + Eingänge & Ausgänge src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,27 @@ Größe src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Virtuelle Größe + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Gewicht src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +128,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +142,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +156,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +240,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +260,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +294,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +308,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +318,7 @@ Transaktion nicht gefunden. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +327,10 @@ Warten bis sie im Mempool erscheint... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +524,27 @@ transactions-list.unconfirmed + + Confidential + Vertraulich + + 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 Genesis @@ -671,6 +681,10 @@ 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 @@ -683,10 +697,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +708,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, Blockhöhe, Hash oder Adresse @@ -1881,63 +1945,9 @@ 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 + Just now + Gerade eben src/app/components/translation-strings/translation-strings.component.html 3 @@ -1956,7 +1966,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1978,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1990,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2002,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2014,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2026,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2038,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2050,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2074,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2098,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2122,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2146,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2170,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 0396140a1..109c0e0d7 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -49,7 +49,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -58,7 +58,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -67,7 +67,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -75,16 +75,25 @@ Size src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -106,7 +115,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -119,7 +128,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -212,7 +221,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -230,7 +239,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -261,7 +270,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -274,7 +283,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -283,7 +292,7 @@ Transaction not found. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -291,30 +300,10 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -488,6 +477,26 @@ transactions-list.unconfirmed + + Confidential + + 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 @@ -612,6 +621,10 @@ 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 @@ -624,10 +637,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -638,6 +647,54 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address @@ -1701,56 +1758,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1768,7 +1777,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1779,7 +1788,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1790,7 +1799,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1801,7 +1810,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1812,7 +1821,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1823,7 +1832,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1834,7 +1843,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1845,7 +1854,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -1867,7 +1876,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -1889,7 +1898,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -1911,7 +1920,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -1933,7 +1942,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -1955,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 7ebfea6d9..f308e149e 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -55,7 +55,7 @@ Entradas y salidas src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Detalles src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Detalles src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Tamaño src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Peso src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Transacción no encontrada src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Esperando a que aparezca en la mempool... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +523,27 @@ 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 Génesis @@ -671,6 +680,10 @@ 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 @@ -683,10 +696,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +707,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, altura de bloque, hash o dirección @@ -1881,63 +1944,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1956,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1976,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1988,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2000,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2012,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2024,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2036,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2048,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2072,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2096,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2120,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2144,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2168,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 5b750ca27..49ca89fce 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -22,7 +22,7 @@ confirmation - تایید + تأیید src/app/components/transaction/transaction.component.html 15 @@ -55,7 +55,7 @@ ورودی‌ها و خروجی‌ها src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ جزئیات src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ جزئیات src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,27 @@ اندازه src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + اندازه مجازی + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight وزن src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +128,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +142,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +156,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +240,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +260,7 @@ ساتوشی src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +294,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +308,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +318,7 @@ تراکنش پیدا نشد. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +327,10 @@ منتظر دیده‌شدن در mempool... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +524,27 @@ transactions-list.unconfirmed + + Confidential + محرمانه + + 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 پیدایش @@ -671,6 +681,10 @@ 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 @@ -683,10 +697,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,9 +708,63 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address - شناسه تراکنش، طول بلاک، چکیده یا آدرس + شناسه تراکنش، آدرس، طول یا چکیده بلاک src/app/components/search-form/search-form.component.html 4 @@ -735,7 +799,7 @@ Transactions - تراکنش + تراکنش‌ها src/app/components/latest-blocks/latest-blocks.component.html 12 @@ -1272,7 +1336,7 @@ TXs - تراکنش‌ها + تراکنش src/app/dashboard/dashboard.component.html 80 @@ -1743,6 +1807,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + جزئیاتی درباره آدرس برمی‌گرداند. فیلدهای در دسترس: address, chain_stats, و 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 @@ -1750,6 +1815,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + تاریخچه تراکنش مربوط یه یک آدرس/چکیده‌اسکریپت برمی‌گرداند که از جدید به قدیم مرتب شده‌اند. تا 50 تراکنش از ممپول به اضافه 25 تراکنش تایید شده. می‌توانید درخواست تراکنش تایید شده بیشتر را با استفاده از :last_seen_txidانجام دهید (پایین را ببینید). src/app/components/api-docs/api-docs.component.html 193,194 @@ -1876,62 +1942,8 @@ 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 + Just now همین الان src/app/components/translation-strings/translation-strings.component.html @@ -1951,7 +1963,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1963,7 +1975,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1975,7 +1987,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1987,7 +1999,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1999,7 +2011,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2011,7 +2023,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2023,7 +2035,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2035,7 +2047,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2059,7 +2071,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2083,7 +2095,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2107,7 +2119,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2131,7 +2143,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2155,7 +2167,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.fi_FI.xlf b/frontend/src/locale/messages.fi_FI.xlf new file mode 100644 index 000000000..c08f59cbc --- /dev/null +++ b/frontend/src/locale/messages.fi_FI.xlf @@ -0,0 +1,2189 @@ + + + + + Transaction + Siirtotapahtuma + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Tämä siirtotapahtuma on korvattu seuraavalla: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + vahvistus + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + vahvistukset + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Vahvistamaton + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Syötteet ja Ulostulot + + src/app/components/transaction/transaction.component.html + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Tarkemmat tiedot + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + Tarkemmat tiedot + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + Koko + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + Paino + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Weight + transaction.weight + + + Timestamp + Aikaleima + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Siirtokulu + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + Siirtokulu vByte: ä kohti + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + 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 + 153 + + + 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 + Sisältyy lohkoon + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Vahvistettu + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Jälkeen + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Ominaisuudet + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 136 + + 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 + 149 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Ensimmäinen nähty + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Muutamassa tunnissa (tai enemmän) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minuutit + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction Minutes + transaction.minutes + + + block + lohko + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + Siirtotapahtumaa ei löydy. + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Odotetaan sen ilmestymistä mempooliin... + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + Coinbase + Kolikkopohja + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Hiljattain Luodut Kolikot) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Kiinnitä + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nJärjestys + + 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 + Todistaja + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH lunastusskripti + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH todistajaskripti + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Edellinen ulostuloskripti + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Lataa kaikki + + 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 + Irrota + + 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 + Tyyppi + + 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 + vahvistus + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + vahvistukset + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Vahvistamaton + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Confidential + Luottamuksellinen + + 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 + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Lohko + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Tiiviste + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Aikaleima + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Koko + + src/app/components/block/block.component.html + 31 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Paino + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Louhija + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Mediaani siirtokulu + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Total fees + Siirtokulut yhteensä + + 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: + Tukipalkkio + siirtokulut: + + 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 + siirtokulu + + 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 + siirtokulut + + 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. + Virhe lohkotietoja ladattaessa. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + 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 + + + TXID, block height, hash or address + Siirtotunniste (TXID), lohkon järjestysnumero, tiiviste tai osoite + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Height + Järjestysnumero + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + latest-blocks.height + + + Mined + Louhittu + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Siirtotapahtumat + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + latest-blocks.transactions + + + Filled + Täytetty + + 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 tai + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Kerros Irrota + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Sisään + + 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 + minuutti + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minuutit + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + lohkot + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + Offline + Pois verkosta + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Muodostaa yhteyden uudelleen... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + 2 kerroksen verkoissa + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + About the project + Tietoja projektista + + 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 avoimen lähdekoodin projektin tavoitteena on toteuttaa korkealaatuinen tutkimus- ja visualisointisivusto koko Bitcoin-ekosysteemille ilman häiriötekijöitä, kuten altcoineja, mainontaa tai kolmannen osapuolen seurantalaitteita. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Ylläpitäjät + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Kehitys + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Toiminnot + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsorit ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Ryhdy sponsoriksi ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Pyydä lasku + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Käyttöehdot + + 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 + Navigoi + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + sponsorointi + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Vaadittu määrä + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Vähimmäismäärä on 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 :) + Jos lahjoitat 0,01 BTC tai enemmän, profiilikuvasi lisätään yllä olevaan sponsoriluetteloon :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Odotetaan siirtotapahtumaa... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Lahjoitus vahvistettu! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Kiitos! + + 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. + Jos määritit Twitter-tilin, profiilikuvan pitäisi olla nyt näkyvissä tällä sivulla, kun lataat uudelleen. + + src/app/components/about/about.component.html + 176 + + about.sponsor.sponsor-completed + + + Loading graphs... + Ladataan kaavioita... + + 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) + Siirtotapahtuma vBytes sekunnissa (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Odotetaan lohkoja... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Siirtotapahtuma vBytes sekunnissa: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempoolin koko: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Backendiä synkronoidaan + + 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 + Siirtokuluväli + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Siirtokulut yhteensä + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Name + Nimi + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Tarkkuus + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Palanut määrä + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Liikkeeseenlaskija + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Liikkeeseenlasku siirtotapahtuma + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Kiinnitetty + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Irrotettu + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Liikkeeseenlaskettu määrä + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Kierrossa oleva määrä + + 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. + Omaisuustietojen lataamisessa tapahtui virhe. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Tuntematon + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Matala tärkeys + + 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 + Keskitasoinen prioriteetti + + 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 + Korkea prioriteetti + + 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 + Viimeisimmät lohkot + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + Siirtotapahtumat + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Näytä kaikki » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Viimeisimmät siirtotapahtumat + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + Siirtotunniste + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Määrä + + src/app/dashboard/dashboard.component.html + 108 + + dashboard.latest-transactions.amount + + + Fee + Siirtokulu + + 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 + Mempoolin koko + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Vahvistamaton + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + lohko + + src/app/dashboard/dashboard.component.html + 164 + + dashboard.block + + + Incoming transactions + Saapuvat siirtotapahtumat + + 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 + Vaikeudensäätö + + 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 + Päätepiste + + 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 + Kuvaus + + 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. + Oletuspainike: toiminto: 'want', data: ['blocks', ...] ilmaisemaan mitä haluat painettavan. Saatavana: lohkot, mempool-lohko, live-2h-kaavio ja tilastot. Paina osoitteeseen liittyviä siirtotapahtumia: 'track-address': '3PbJ ... bF9B' saadaksesi kaikki uudet siirtotapahtumat, jotka sisältävät kyseisen osoitteen syötteenä tai ulostulona. Palauttaa joukon siirtotapahtumia. osoite-siirtotapahtumat uusille mempool-siirtotapahtumille ja lohko-siirtotapahtumat uusille lohkovahvistetuille siirtotapahtumille. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Siirtokulut + + 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. + Palauttaa tällä hetkellä ehdotetut siirtokulut uusista siirtotapahtumista. + + 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. + Palauttaa nykyisen mempoolin ennustettuina lohkoina. + + 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. + Palauttaa nykyisen mempool-backlogin tilastot. + + 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. + Hanki täysi luettelo siirtotunnisteista mempoolissa taulukkona. Siirtotunnisteiden järjestys on mielivaltainen eikä vastaa bitcoind:tä. + + 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. + Hanki luettelo 10 viimeisestä siirtotapahtumasta, jotta pääset mempooliin. Jokainen siirtotapahtumaobjekti sisältää yksinkertaistettua yleistietoa seuraavilla kentillä: siirtotunniste, siirtokulu, vkoko ja arvo. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Blocks + Lohkot + + 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). + Palauttaa lohkon vahvistustilan. Käytettävissä olevat kentät: in_best_chain (totuusarvo, väärä orvoille lohkoille), next_best (seuraavan lohkon tiiviste, käytettävissä vain parhaan ketjun lohkoille). + + 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. + Palauttaa lohkon siirtotapahtumaluettelon (enintään 25 siirtotapahtumaa alkaen start_index). Täällä palautetuilla siirtotapahtumilla ei ole tila-kenttää, koska kaikilla siirtotapahtumilla on sama lohko ja vahvistustila. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Palauttaa luettelon kaikista lohkossa olevista siirtotunnisteista (txid). + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Palauttaa siirtotapahtuman indeksissä: indeksi määritetyn lohkon sisällä. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Palauttaa raakalohkon esityksen binäärisenä. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Palauttaa lohkon tiivisteen järjestysnumerolla. + + 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. + Palauttaa 10 uusinta lohkoa alkaen kärjestä tai osoitteesta: start_height, jos määritetty. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Palauttaa viimeisen lohkon järjestysnumeron. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Palauttaa viimeisen lohkon tiivisteen. + + 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. + Palauttaa lohkon tiedot. Käytettävissä olevat kentät: tunnus, järjestysnumero, versio, aikaleima, bitit, nonssi, merkle-juuri, siirtotapahtumien määrä, koko, paino, todiste ja edellinen lohkotiiviste. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Siirtotapahtumat + + 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. + Palauttaa siirtotapahtuman tiedot. Saatavilla olevat kentät: siirtotunniste, versio, lukitusaika, koko, paino, siirtokulu, vin, vout ja tila. + + 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). + Palauttaa siirtotapahtuman vahvistustilan. Käytettävissä olevat kentät: vahvistettu (totuusarvo), lohkon_järjestysnumero (valinnainen) ja lohkon_tiiviste (valinnainen). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Palauttaa siirtotapahtuman, joka on sarjoitettu heksalla. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Palauttaa siirtotapahtuman binääritietona. + + 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. + Palauttaa merkle-todistuksen siirtotapahtumalle käyttäen Electrumin blockchain.transaction.get_merkle -muotoa. + + 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). + Palauttaa siirtotapahtuma ulostulon kulutustilan. Käytettävissä olevat kentät: käytetty (totuusarvo), siirtotunniste (valinnainen), vin (valinnainen) ja tila (valinnainen, kulutetun siirtotapahtuman tila). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Palauttaa kaikkien siirtotapahtumien ulostulon kulutustilan. + + 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. + Lähetä raaka siirtotapahtuma verkkoon. Siirtotapahtuma tulee ilmoittaa heksoina pyynnön rungossa. Siirtotunniste (txid) palautetaan onnistumisen yhteydessä. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Palauttaa merkle-todisteen siirtotapahtumalle käyttäen bitcoind:n merkleblock-muotoa. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Osoitteet + + 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. + Palauttaa osoitteen tiedot. Saatavilla olevat kentät: osoite, ketjun tilat ja mempoolin tilat. ketju, mempoolin tilat sisältäen kukin objektin, jossa on siirtotapahtumien määrä, rahoitettujen siirtotapahtumaobjektien määrä, rahoitettujen siirtotapahtumien summa, käytettyjen siirtotapahtumien määrä ja käytettyjen siirtotapahtumaobjektien summa. + + 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 + + + + 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 + 70 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 88 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 72 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 90 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 65 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 85 + + + + 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 + 80 + + + + 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 + 79 + + + + 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 + 78 + + + + 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 + 77 + + + + 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 + 76 + + + + 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.fr.xlf b/frontend/src/locale/messages.fr.xlf index 4571c6c1c..948b333c9 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -55,7 +55,7 @@ Entrées & Sorties src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Détails src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Détails src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Taille src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Poids src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Transaction introuvable. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Veuillez patienter pendant que nous attendons qu'elle apparaisse dans le mempool src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +523,27 @@ transactions-list.unconfirmed + + Confidential + Confidentiel + + 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 Genèse @@ -671,6 +680,10 @@ 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 @@ -683,10 +696,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +707,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, hauteur de bloc, hash ou addresse @@ -1837,63 +1900,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1911,7 +1919,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1922,7 +1930,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1933,7 +1941,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1944,7 +1952,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1955,7 +1963,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1966,7 +1974,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1977,7 +1985,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1988,7 +1996,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2010,7 +2018,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2032,7 +2040,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2054,7 +2062,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2076,7 +2084,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2098,7 +2106,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf new file mode 100644 index 000000000..60e5845bd --- /dev/null +++ b/frontend/src/locale/messages.hr.xlf @@ -0,0 +1,2045 @@ + + + + + Transaction + Transakcija + + src/app/components/transaction/transaction.component.html + 12 + + shared.transaction + + + This transaction has been replaced by: + Ova transakcija je zamijenja od: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + potvrda + + src/app/components/transaction/transaction.component.html + 15 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + potvrde + + src/app/components/transaction/transaction.component.html + 15 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Nepotvrđeno + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Ulazi & Izlazi + + src/app/components/transaction/transaction.component.html + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detalji + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + Detalji + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + Veličina + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + Virtualna veličina + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + Težina + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Weight + transaction.weight + + + Timestamp + Vremenski otisak + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Naknada + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + Naknada po vByte-u + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + 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 + 153 + + + 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 + Uključen u bloku + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Potvrđena + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Poslje + + 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 + 136 + + 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 + 149 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Prvo viđeno + + 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 + 129 + + Transaction Minutes + transaction.minutes + + + block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction ETA (X blocks) + transaction.eta.block + + + Transaction not found. + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + 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 + + + Confidential + + 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 + + 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/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. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + 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 + + + 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 + + + + 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 + 70 + + + + secs ago + + src/app/components/translation-strings/translation-strings.component.html + 5 + + + src/app/components/time-since/time-since.component.ts + 88 + + + + second ago + + src/app/components/translation-strings/translation-strings.component.html + 6 + + + src/app/components/time-since/time-since.component.ts + 72 + + + + seconds ago + + src/app/components/translation-strings/translation-strings.component.html + 7 + + + src/app/components/time-since/time-since.component.ts + 90 + + + + min ago + + src/app/components/translation-strings/translation-strings.component.html + 8 + + + src/app/components/time-since/time-since.component.ts + 65 + + + + mins ago + + src/app/components/translation-strings/translation-strings.component.html + 9 + + + src/app/components/time-since/time-since.component.ts + 83 + + + + minute ago + + src/app/components/translation-strings/translation-strings.component.html + 10 + + + src/app/components/time-since/time-since.component.ts + 67 + + + + minutes ago + + src/app/components/translation-strings/translation-strings.component.html + 11 + + + src/app/components/time-since/time-since.component.ts + 85 + + + + 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 + 80 + + + + 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 + 79 + + + + 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 + 78 + + + + 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 + 77 + + + + 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 + 76 + + + + 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.ja.xlf b/frontend/src/locale/messages.ja.xlf index e1c68fc6b..e7768af84 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -55,7 +55,7 @@ インプットとアウトプット src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ 詳細 src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ 詳細 src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ サイズ src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight 重み src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ サトシ src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ トランザクションが見つかりません。 src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ mempoolに表示されるのを待っています... src/app/components/transaction/transaction.component.html - 267 + 274 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 コインベース @@ -535,6 +523,27 @@ transactions-list.unconfirmed + + Confidential + 機密 + + 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 ジェネシス @@ -671,6 +680,10 @@ 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 @@ -683,10 +696,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +707,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, アドレス, ブロックハッシュなど @@ -1881,63 +1944,8 @@ 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 - ちょうど今 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1956,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1976,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1988,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2000,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2012,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2024,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2036,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2048,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2072,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2096,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2120,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2144,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2168,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 7563b6169..62b6cff41 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -55,7 +55,7 @@ Inndata og Utdata src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,27 @@ Størrelse src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Virtuell størrelse + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Vekt src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +128,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +142,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +156,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +240,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +260,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +294,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +308,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +318,7 @@ Transaksjon ikke funnet src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +327,10 @@ Venter på at den kommer inn i mempool... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -362,7 +351,7 @@ Peg-in - Peg-in + Peg-inn src/app/components/transactions-list/transactions-list.component.html 41 @@ -400,7 +389,7 @@ Witness - Vitne + Witness src/app/components/transactions-list/transactions-list.component.html 80 @@ -449,7 +438,7 @@ Peg-out to - Peg-out til + Peg-ut til src/app/components/transactions-list/transactions-list.component.html 125 @@ -535,6 +524,27 @@ transactions-list.unconfirmed + + Confidential + Konfidensiell + + 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 Genesis @@ -599,7 +609,7 @@ Miner - Miner + Utvinner src/app/components/block/block.component.html 74 @@ -671,6 +681,10 @@ 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 @@ -683,10 +697,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +708,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, blokkhøyde, hash eller adresse @@ -722,7 +786,7 @@ Mined - Mined + Utvunnet src/app/components/latest-blocks/latest-blocks.component.html 11 @@ -770,7 +834,7 @@ Layer Peg-out - Lag Peg-out + Lag Peg-ut src/app/components/address-labels/address-labels.component.html 2 @@ -779,7 +843,7 @@ In - Inn + Om src/app/components/mempool-blocks/mempool-blocks.component.html 17 @@ -1172,7 +1236,7 @@ Pegged out - Pegged out + Pegged ut src/app/components/asset/asset.component.html 47 @@ -1709,7 +1773,7 @@ Returns the spending status of all transaction outputs. - Returnerer brukt status for alle transakjons utdata. + Returnerer brukt status for alle transakjons-utdata. src/app/components/api-docs/api-docs.component.html 167 @@ -1881,62 +1945,8 @@ 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 + Just now Akkurat nå src/app/components/translation-strings/translation-strings.component.html @@ -1956,7 +1966,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1978,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1990,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2002,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2014,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2026,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2038,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2050,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2074,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2098,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2122,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2146,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2170,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 25425c1b7..fbfc459c5 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -55,7 +55,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Grootte src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Gewicht src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Transactie niet gevonden. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Wachten tot het in de mempool verschijnt... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -531,6 +519,27 @@ transactions-list.unconfirmed + + Confidential + Vertrouwelijk + + 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 Genesis @@ -667,6 +676,10 @@ 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 @@ -679,10 +692,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -694,6 +703,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, blokhoogte, hash of adres @@ -1847,62 +1910,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1920,7 +1929,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1931,7 +1940,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1943,7 +1952,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1955,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1966,7 +1975,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1977,7 +1986,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1988,7 +1997,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1999,7 +2008,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2021,7 +2030,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2043,7 +2052,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2065,7 +2074,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2087,7 +2096,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2109,7 +2118,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 556fac6c0..9c5358a57 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -55,7 +55,7 @@ Wejścia i Wyjścia src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Szczegóły src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Szczegóły src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Rozmiar src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Waga src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Transakcja nie odnaleziona src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +326,10 @@ Oczekiwanie aż pojawi się w mempool src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -518,6 +507,26 @@ transactions-list.unconfirmed + + Confidential + + 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 @@ -642,6 +651,10 @@ 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 @@ -654,10 +667,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -668,6 +677,54 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address @@ -1731,56 +1788,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1798,7 +1807,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1809,7 +1818,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1820,7 +1829,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1831,7 +1840,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1842,7 +1851,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1853,7 +1862,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1864,7 +1873,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1875,7 +1884,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -1897,7 +1906,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -1919,7 +1928,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -1941,7 +1950,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -1963,7 +1972,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -1985,7 +1994,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 5000443eb..296045a63 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -55,7 +55,7 @@ Entradas & Saídas src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Detalhes src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Detalhes src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Tamanho src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Peso src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Transação não encontrada. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Aguardando que apareça no mempool... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +523,27 @@ 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 @@ -669,6 +678,10 @@ 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 @@ -681,10 +694,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -696,6 +705,60 @@ 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 + TXID, block height, hash or address @@ -1877,62 +1940,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1950,7 +1959,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1961,7 +1970,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1972,7 +1981,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1983,7 +1992,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1994,7 +2003,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2005,7 +2014,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2016,7 +2025,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2027,7 +2036,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2049,7 +2058,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2071,7 +2080,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2093,7 +2102,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2115,7 +2124,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2137,7 +2146,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index cc735193c..332aa03b9 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -55,7 +55,7 @@ Vhodi & Izhodi src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Podrobnosti src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Podrobnosti src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,27 @@ Velikost src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Navidezna velikost + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Utež src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +128,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +142,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +156,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +240,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +260,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +294,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +308,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +318,7 @@ Transakcije ni mogoče najti. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +327,10 @@ Čakanje, da se prikaže v mempool-u... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +524,27 @@ transactions-list.unconfirmed + + Confidential + Zaupno + + 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 Prvotni @@ -671,6 +681,10 @@ 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 @@ -683,10 +697,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +708,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, višina bloka, hash ali naslov @@ -856,7 +920,7 @@ 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. - Cilj odprtokodnega projekta mempool je ustvariti visokokakovostno spletno mesto za raziskovanje in vizualizacijo celotnega Bitcoin ekosistema, brez motečih vsebin, kot so alternativne kriptovalute, oglaševanje ali sledilci tretjih ponudnikov. + Cilj odprtokodnega projekta mempool, je ustvariti visokokakovostno spletno mesto za raziskovanje in vizualizacijo celotnega Bitcoin ekosistema, brez motečih vsebin, kot so alternativne kriptovalute, oglaševanje ali sledilci tretjih ponudnikov. src/app/components/about/about.component.html 16 @@ -936,7 +1000,7 @@ Navigate to - Pojdite na + Pojdite na src/app/components/about/about.component.html 65 @@ -945,7 +1009,7 @@ to sponsor - za sponzorstvo + za sponzorstvo src/app/components/about/about.component.html 65 @@ -1482,6 +1546,7 @@ 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. + Začetni potisk: action: 'want', data: ['blocks', ...] za izbiro potisnih podatkov. Razpoložljivo: blocks, mempool-block, live-2h-chart, in stats.Potisk transakcij povezanih z naslovom: 'track-address': '3PbJ...bF9B' za prejem vseh novih transakcij, ki vsebujejo ta naslov v vhodu ali izhodu. Vrne polje transakcij. address-transactions za nove transakcije v mempool-u, in block-transactions za potrjene transakcije v novem bloku. src/app/components/api-docs/api-docs.component.html 19 @@ -1692,6 +1757,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Vrne merkle dokaz o vsebovanosti za transakcijo (angl. merkle inclusion proof), v Electrum blockchain.transaction.get_merkle obliki. src/app/components/api-docs/api-docs.component.html 159 @@ -1699,6 +1765,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Vrne stanje porabe izhoda transakcije. Razpoložljiva polja: spent (boolean), txid (opcijsko), vin (opcijsko), in status (opcijsko, stanje potrditve transakcije). src/app/components/api-docs/api-docs.component.html 163 @@ -1714,6 +1781,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + V omrežju objavi neobdelano (raw) transakcijo. Transakcija mora biti podana v telesu zahteve v šestnajstiški obliki. Ob uspehu bo vrnjen txid. src/app/components/api-docs/api-docs.component.html 171 @@ -1721,6 +1789,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Vrne merkle dokaz o vsebovanosti za transakcijo (angl. merkle inclusion proof), v bitcoind's merkleblock obliki. src/app/components/api-docs/api-docs.component.html 155 @@ -1746,6 +1815,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Pridobi zgodovino transakcij za podan naslov/scripthash, urejeno po času, najnovejša na začetku. Vrne do 50 mempool ter prvih 25 potrjenih transakcij. Z uporabo :last_seen_txid je mogoče pridobiti več potrjenih transakcij (glej spodaj). src/app/components/api-docs/api-docs.component.html 193,194 @@ -1753,6 +1823,7 @@ Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Pridobi zgodovino potrjenih transakcij za podan naslov/scripthash, urejeno po času, najnovejša na začetku. Vrne 25 transakcij na stran. Več jih je mogoče pridobiti z navedbo zadnjega vrnjenega txid-ja. src/app/components/api-docs/api-docs.component.html 197 @@ -1760,6 +1831,7 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Pridobi zgodovino nepotrjenih transakcij za podan naslov/scripthash. Vrne do 50 transakcij (brez ostranjevanja, angl. paging). src/app/components/api-docs/api-docs.component.html 201 @@ -1767,6 +1839,7 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Vrne seznam neporabljenih izhodov transakcij povezanih z naslovom/scripthash. Razpoložljiva polja: txid, vout, value, in status (stanje potrditve transakcije). Polje valuecommitment lahko nadomešča value. Dodatna polja: asset/assetcommitment, nonce/noncecommitment, surjection_proof, in range_proof. src/app/components/api-docs/api-docs.component.html 205 @@ -1784,6 +1857,7 @@ Returns information about a Liquid asset. + Vrne podatke o Liquid sredstvu. src/app/components/api-docs/api-docs.component.html 223 @@ -1791,6 +1865,7 @@ Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Vrne transakcije povezane s podanim Liquid sredstvom. Za izvorno sredstvo omrežja, vrne seznam peg in, peg out, in burn transakcij. Za uporabniško izdana sredstva, vrne seznam izdajnih, transakcij ponovne izdaje in burn transakcij. Ne vključuje rednih transakcij prenosa tega sredstva. src/app/components/api-docs/api-docs.component.html 227 @@ -1798,6 +1873,7 @@ Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Pridobi trenutni znesek v obtoku za podano sredstvo. Za izvorno sredstvo (L-BTC), je izračunan kot [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Za izdana sredstva pa [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Ni na voljo za sredstva z zaupnim zneskom izdaje. Če je podan /decimal, vrne znesek na število decimalnih mest sredstva natančno. Sicer vrnjeno v osnovnih enotah. src/app/components/api-docs/api-docs.component.html 231 @@ -1815,6 +1891,7 @@ Returns statistics about all Bisq transactions. + Vrne statistične podatke o vseh Bisq transakcijah. src/app/components/api-docs/api-docs.component.html 248 @@ -1830,6 +1907,7 @@ Returns :length of latest Bisq transactions, starting from :index. + Vrne :length zadnjih Bisq transakcij, z začetkom od :index. src/app/components/api-docs/api-docs.component.html 256 @@ -1845,6 +1923,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Vrne :length Bitcoin blokov, ki vsebujejo Bisq transakcije, z začetkom od :index. src/app/components/api-docs/api-docs.component.html 264 @@ -1852,6 +1931,7 @@ Returns the most recently processed Bitcoin block height processed by Bisq. + Vrne višino najnovejšega Bitcoin bloka, ki vsebuje Bisq transakcije. src/app/components/api-docs/api-docs.component.html 268 @@ -1859,68 +1939,15 @@ Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Vrne vse Bisq transakcije povezane z Bitcoin naslovom, pred naslovom se uporabi predpono 'B'. 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 + Just now + Pravkar src/app/components/translation-strings/translation-strings.component.html 3 @@ -1939,7 +1966,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1951,7 +1978,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1963,7 +1990,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1975,7 +2002,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1987,7 +2014,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1999,7 +2026,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2011,7 +2038,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2023,7 +2050,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2047,7 +2074,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2071,7 +2098,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2095,7 +2122,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2119,7 +2146,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2143,7 +2170,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 01f4f38d6..09cc2a938 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -55,7 +55,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Storlek src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Weight src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Transaktionen hittades inte src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Väntar på den att dyka upp i mempoolen... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +523,27 @@ transactions-list.unconfirmed + + Confidential + Konfidentiell + + 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 Genesis @@ -671,6 +680,10 @@ 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 @@ -683,10 +696,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +707,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, blockhöjd, hash eller address @@ -1881,63 +1944,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1956,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1976,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1988,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2000,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2012,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2024,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2036,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2048,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2072,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2096,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2120,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2144,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2168,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index f433cc015..a689a8b66 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -55,7 +55,7 @@ Giriş ve Çıkışlar src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Detaylar src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Detaylar src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Boyut src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Ağırlık src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ İşlem bulunamadı. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Mempool'da (bekleyen işlem havuzu) bekliyor. src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -527,6 +515,27 @@ transactions-list.unconfirmed + + Confidential + Gizli + + 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 @@ -661,6 +670,10 @@ 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 @@ -673,10 +686,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -688,6 +697,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address @@ -1841,62 +1904,8 @@ 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 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1914,7 +1923,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1925,7 +1934,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1936,7 +1945,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1947,7 +1956,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1958,7 +1967,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1969,7 +1978,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1980,7 +1989,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1991,7 +2000,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2013,7 +2022,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2035,7 +2044,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2057,7 +2066,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2079,7 +2088,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2101,7 +2110,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 62f5eb1f8..0a98c3d49 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -55,7 +55,7 @@ Входи і Виходи src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Деталі src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Деталі src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Розмір src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Вага src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Транзакція не знайдена. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Чекаємо її появи в мемпулі... src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -535,6 +523,27 @@ transactions-list.unconfirmed + + Confidential + Конфіденційна + + 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 Генезис @@ -671,6 +680,10 @@ 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 @@ -683,10 +696,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +707,60 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address TXID, висота блоку, хеш або адреса @@ -1881,63 +1944,8 @@ 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 - щойно + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1956,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1976,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1988,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2000,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2012,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2024,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2036,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2048,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2072,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2096,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2120,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2144,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2168,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 936163aac..6c19874ce 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -55,7 +55,7 @@ Đầu vào & Đầu ra src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ Chi tiết src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ Chi tiết src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ Kích thước src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Cân nặng src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ Không tìm thấy giao dịch. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ Đang đợi nó xuất hiện trong mempool ... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Bảo mật - - 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 @@ -535,6 +523,27 @@ transactions-list.unconfirmed + + Confidential + Bảo mật + + 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 Genesis @@ -671,6 +680,10 @@ 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 @@ -683,10 +696,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +707,60 @@ block.error.loading-block-data + + Address + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + Error loading address data. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + TXID, block height, hash or address TXID, block height, hash or address @@ -1881,63 +1944,8 @@ 272 - - Address - Address - - src/app/components/address/address.component.html - 2 - - shared.address - - - Total received - Total received - - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Total sent - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Balance - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - of - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Error loading address data. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - just now - just now + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1956,7 +1964,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1968,7 +1976,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1980,7 +1988,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1992,7 +2000,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -2004,7 +2012,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -2016,7 +2024,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -2028,7 +2036,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -2040,7 +2048,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -2064,7 +2072,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2088,7 +2096,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2112,7 +2120,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2136,7 +2144,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2160,7 +2168,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index e3c280137..55a9c2f70 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -55,7 +55,7 @@ 输入与输出 src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +65,7 @@ 明细 src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +75,7 @@ 明细 src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +84,26 @@ 大小 src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight 权重 src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +127,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +141,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +155,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +239,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +259,7 @@ src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,7 +293,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes @@ -298,7 +307,7 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction ETA (X blocks) transaction.eta.block @@ -308,7 +317,7 @@ 交易未找到 src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,31 +326,10 @@ 等待交易出现在内存池 src/app/components/transaction/transaction.component.html - 267 + 274 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 @@ -524,6 +512,27 @@ transactions-list.unconfirmed + + Confidential + 机密 + + 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 @@ -659,6 +668,10 @@ 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 @@ -671,10 +684,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -686,6 +695,59 @@ block.error.loading-block-data + + 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 + TXID, block height, hash or address @@ -1816,62 +1878,8 @@ 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 - 刚刚 + Just now src/app/components/translation-strings/translation-strings.component.html 3 @@ -1890,7 +1898,7 @@ src/app/components/time-since/time-since.component.ts - 74 + 70 @@ -1902,7 +1910,7 @@ src/app/components/time-since/time-since.component.ts - 96 + 88 @@ -1914,7 +1922,7 @@ src/app/components/time-since/time-since.component.ts - 71 + 72 @@ -1926,7 +1934,7 @@ src/app/components/time-since/time-since.component.ts - 93 + 90 @@ -1938,7 +1946,7 @@ src/app/components/time-since/time-since.component.ts - 67 + 65 @@ -1950,7 +1958,7 @@ src/app/components/time-since/time-since.component.ts - 89 + 83 @@ -1962,7 +1970,7 @@ src/app/components/time-since/time-since.component.ts - 64 + 67 @@ -1974,7 +1982,7 @@ src/app/components/time-since/time-since.component.ts - 86 + 85 @@ -1998,7 +2006,7 @@ src/app/components/time-since/time-since.component.ts - 84 + 80 @@ -2022,7 +2030,7 @@ src/app/components/time-since/time-since.component.ts - 83 + 79 @@ -2046,7 +2054,7 @@ src/app/components/time-since/time-since.component.ts - 82 + 78 @@ -2070,7 +2078,7 @@ src/app/components/time-since/time-since.component.ts - 81 + 77 @@ -2094,7 +2102,7 @@ src/app/components/time-since/time-since.component.ts - 80 + 76 From 232fc65af229cd4b0197e38624de4fc45d3948f5 Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 4 Dec 2020 21:29:31 +0700 Subject: [PATCH 17/42] i18n correcctions based on feedback. Added even more missing i18n strings. --- .../bisq-address/bisq-address.component.ts | 2 +- .../bisq/bisq-block/bisq-block.component.ts | 2 +- .../bisq-blocks/bisq-blocks.component.html | 10 +++++----- .../bisq/bisq-stats/bisq-stats.component.html | 18 +++++++++--------- .../bisq-transaction.component.html | 2 +- .../bisq-transaction.component.ts | 2 +- .../bisq-transfers.component.html | 4 +++- .../components/address/address.component.ts | 2 +- .../app/components/asset/asset.component.html | 2 +- .../app/components/asset/asset.component.ts | 2 +- .../app/components/block/block.component.ts | 2 +- .../latest-blocks/latest-blocks.component.html | 2 +- .../mempool-block/mempool-block.component.html | 2 +- .../transaction/transaction.component.html | 6 ++++-- .../transaction/transaction.component.ts | 2 +- .../src/app/dashboard/dashboard.component.html | 2 +- 16 files changed, 33 insertions(+), 29 deletions(-) diff --git a/frontend/src/app/bisq/bisq-address/bisq-address.component.ts b/frontend/src/app/bisq/bisq-address/bisq-address.component.ts index dd7b8aeb5..aded75d8e 100644 --- a/frontend/src/app/bisq/bisq-address/bisq-address.component.ts +++ b/frontend/src/app/bisq/bisq-address/bisq-address.component.ts @@ -36,7 +36,7 @@ export class BisqAddressComponent implements OnInit, OnDestroy { this.transactions = null; document.body.scrollTo(0, 0); this.addressString = params.get('id') || ''; - this.seoService.setTitle($localize`:@@729754dd19eb9ce0670b0aeb5a6ae60574c2c563:Address` + ': ' + this.addressString); + this.seoService.setTitle($localize`:@@bisq-address.component.browser-title:Address: ${this.addressString}:INTERPOLATION:`); return this.bisqApiService.getAddress$(this.addressString) .pipe( diff --git a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts index 536e72c36..6e59bfa42 100644 --- a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts +++ b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts @@ -82,7 +82,7 @@ export class BisqBlockComponent implements OnInit, OnDestroy { } this.isLoading = false; this.blockHeight = block.height; - this.seoService.setTitle($localize`:@@729754dd19eb9ce0670b0aeb5a6ae60574c2c563:Block` + ': #' + block.height + ': ' + block.hash); + this.seoService.setTitle($localize`:@@bisq-block.component.browser-title:Block ${block.height}:INTERPOLATION:: ${block.hash}:INTERPOLATION:`); this.block = block; }); } diff --git a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html index abcf8684b..629dc78a7 100644 --- a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html +++ b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html @@ -1,5 +1,5 @@
-

Blocks

+

Blocks


@@ -9,10 +9,10 @@
- - - - + + + + diff --git a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html index 3b786c687..447c4f1aa 100644 --- a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html +++ b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html @@ -1,5 +1,5 @@
-

BSQ statistics

+

BSQ statistics


@@ -9,35 +9,35 @@
HeightConfirmedTotal sentTransactionsHeightConfirmedTotal sentTransactions
- + - + - + - + - + - + - + - + diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html index 7da741274..dfac3c929 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html @@ -4,7 +4,7 @@ - +
diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts index ee90bf95c..2dd745762 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts @@ -43,7 +43,7 @@ export class BisqTransactionComponent implements OnInit, OnDestroy { this.error = null; document.body.scrollTo(0, 0); this.txId = params.get('id') || ''; - this.seoService.setTitle($localize`:@@b59ea65c89a5ae15b787d8318fdad9edd6fec243:Transaction` + ': ' + this.txId); + this.seoService.setTitle($localize`:@@bisq.transaction.browser-title:Transaction: ${this.txId}:INTERPOLATION:`); if (history.state.data) { return of(history.state.data); } diff --git a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html index d2da552f2..438980d5c 100644 --- a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html +++ b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -64,7 +64,9 @@
- +  
- + 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 aa7a3091b..9f30409fb 100644 --- a/frontend/src/app/components/mempool-block/mempool-block.component.html +++ b/frontend/src/app/components/mempool-block/mempool-block.component.html @@ -29,7 +29,7 @@ - +
Existing amountExisting amount {{ (stats.minted - stats.burnt) / 100 | number: '1.2-2' }} BSQ
Minted amountMinted amount {{ stats.minted | number: '1.2-2' }} BSQ
Burnt amountBurnt amount {{ stats.burnt | number: '1.2-2' }} BSQ
AddressesAddresses {{ stats.addresses | number }}
Unspent TXOsUnspent TXOs {{ stats.unspent_txos | number }}
Spent TXOsSpent TXOs {{ stats.spent_txos | number }}
PricePrice
Market capMarket cap
Timestamp Mined TransactionsFilledSize
{{ mempoolBlock.nTx }}
FilledSize
diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index ed4acdc2c..5c942e169 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -123,10 +123,10 @@ - < {{ 1 * txInBlockIndex + 1 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }}) + < {{ 1 * txInBlockIndex + 1 }} minutes ({{ txInBlockIndex + 1 }} block) - ~{{ 10 * txInBlockIndex + 10 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }}) + ~{{ 10 * txInBlockIndex + 10 }} minutes ({{ txInBlockIndex + 1 }} block) @@ -285,3 +285,5 @@

+ +{{ txInBlockIndex + 1 }} blocks diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index bad73f0b7..cbd3916fc 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -45,7 +45,7 @@ export class TransactionComponent implements OnInit, OnDestroy { this.subscription = this.route.paramMap.pipe( switchMap((params: ParamMap) => { this.txId = params.get('id') || ''; - this.seoService.setTitle($localize`:@@b59ea65c89a5ae15b787d8318fdad9edd6fec243:Transaction` + ': ' + this.txId); + this.seoService.setTitle($localize`:@@bisq.transaction.browser-title:Transaction: ${this.txId}:INTERPOLATION:`); this.resetTransaction(); return merge( of(true), diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 449efbf26..c4f2ba5a7 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -161,7 +161,7 @@
Mempool size

- {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} {mempoolBlocksData.blocks, plural, =1 {block} other {blocks}}) + {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} block{{ mempoolBlocksData.blocks }} blocks)

From ea496915c41155dc9c94169913759b7af998dd09 Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 4 Dec 2020 21:38:14 +0700 Subject: [PATCH 18/42] Updated messages.xlf --- frontend/src/locale/messages.xlf | 878 +++++++++++++++++++++++-------- 1 file changed, 648 insertions(+), 230 deletions(-) diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 7d9eeaf59..fe18566c6 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -2,12 +2,27 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -25,6 +40,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -34,6 +57,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -276,8 +307,8 @@ Transaction Minutes transaction.minutes - - block + + block src/app/components/transaction/transaction.component.html 126 @@ -286,8 +317,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -305,6 +335,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase @@ -431,6 +469,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -498,6 +540,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -540,6 +589,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -574,6 +631,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees @@ -648,6 +729,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address @@ -704,6 +792,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -714,6 +845,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -734,24 +873,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -805,6 +948,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.api + Offline @@ -829,6 +996,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -997,6 +1216,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -1050,6 +1277,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1066,6 +1314,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1151,6 +1406,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1253,6 +1524,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1271,6 +1546,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size @@ -1289,13 +1580,21 @@ Unconfirmed count dashboard.unconfirmed - - block + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1322,6 +1621,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1476,15 +1783,6 @@ 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). @@ -1759,214 +2057,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -1985,6 +2089,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2003,6 +2131,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2021,6 +2161,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + From 67df21fe50e6f53611bb7f7d1115964aafa4eb10 Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 4 Dec 2020 21:49:03 +0700 Subject: [PATCH 19/42] Fixing about-link title translation. --- .../src/app/components/master-page/master-page.component.html | 2 +- frontend/src/locale/messages.xlf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 cf0b79453..4d4fcef27 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -56,7 +56,7 @@ diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index fe18566c6..8fb520c75 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -970,7 +970,7 @@ src/app/components/about/about.component.ts 38 - master-page.api + master-page.about Offline From 6476d1e77cccdf30a3a95b0d1db6b3ff19c3886f Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 5 Dec 2020 00:11:40 +0900 Subject: [PATCH 20/42] Update translations from Transifex --- frontend/src/locale/messages.ar.xlf | 901 ++++++++++++++++------- frontend/src/locale/messages.cs.xlf | 901 ++++++++++++++++------- frontend/src/locale/messages.de.xlf | 903 ++++++++++++++++------- frontend/src/locale/messages.en_US.xlf | 878 ++++++++++++++++------ frontend/src/locale/messages.es.xlf | 901 ++++++++++++++++------- frontend/src/locale/messages.fa.xlf | 903 ++++++++++++++++------- frontend/src/locale/messages.fi_FI.xlf | 883 ++++++++++++++++------ frontend/src/locale/messages.fr.xlf | 881 ++++++++++++++++------ frontend/src/locale/messages.hr.xlf | 878 ++++++++++++++++------ frontend/src/locale/messages.ja.xlf | 967 +++++++++++++++++------- frontend/src/locale/messages.nb.xlf | 903 ++++++++++++++++------- frontend/src/locale/messages.nl.xlf | 885 ++++++++++++++++------ frontend/src/locale/messages.pl.xlf | 879 ++++++++++++++++------ frontend/src/locale/messages.pt.xlf | 883 ++++++++++++++++------ frontend/src/locale/messages.sl.xlf | 903 ++++++++++++++++------- frontend/src/locale/messages.sv.xlf | 969 ++++++++++++++++++------- frontend/src/locale/messages.tr.xlf | 883 ++++++++++++++++------ frontend/src/locale/messages.uk.xlf | 901 ++++++++++++++++------- frontend/src/locale/messages.vi.xlf | 901 ++++++++++++++++------- frontend/src/locale/messages.zh.xlf | 921 ++++++++++++++++------- 20 files changed, 13134 insertions(+), 4890 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 29ae249d9..a2d16c61c 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction صفقه @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -297,9 +328,8 @@ Transaction Minutes transaction.minutes - - block - كتله + + block src/app/components/transaction/transaction.component.html 126 @@ -308,8 +338,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -329,6 +358,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase كوين بيس @@ -465,6 +502,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -538,6 +579,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis منشأ @@ -585,6 +633,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -622,6 +678,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees الرسوم الكلية @@ -701,6 +781,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address العنوان @@ -763,6 +850,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + كتله + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height ارتفاع @@ -774,6 +905,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -796,25 +935,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -873,6 +1015,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline غير متصل @@ -899,6 +1065,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project نبذه عن المشروع @@ -1085,6 +1303,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -1140,6 +1366,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span امتداد الرسوم @@ -1158,6 +1405,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name الأسم @@ -1252,6 +1506,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. خطأ في تحميل اصل البيانات. @@ -1363,6 +1633,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1383,6 +1657,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size حجم الميم بول @@ -1403,14 +1693,21 @@ Unconfirmed count dashboard.unconfirmed - - block - كتله + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1439,6 +1736,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1597,16 +1902,6 @@ 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). @@ -1888,232 +2183,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - منذ ثوان - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - منذ ثانيه - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - منذ ثوان - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - منذ دقيقه - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - منذ دقائق - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - منذ دقيقه - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - منذ دقائق - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - منذ اسبوع + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2133,6 +2216,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2152,6 +2259,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x دفع اكثر مما يستحق @@ -2172,6 +2291,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 11af89114..cdfde6f4d 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transakce @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -471,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +585,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -591,6 +639,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +684,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Celkové poplatky @@ -707,6 +787,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Adresa @@ -770,6 +857,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloky + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Výška @@ -781,6 +912,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -803,25 +942,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -881,6 +1023,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -908,6 +1074,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project O projektu @@ -1096,6 +1314,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transakce vBytů za sekundu (vB/s) @@ -1155,6 +1381,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Rozsah poplatků @@ -1173,6 +1420,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Jméno @@ -1267,6 +1521,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Chyba při načítání dat aktiva. @@ -1380,6 +1650,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1400,6 +1674,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Velikost Mempoolu @@ -1420,14 +1710,21 @@ Unconfirmed count dashboard.unconfirmed - - block - blok + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1457,6 +1754,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1622,16 +1927,6 @@ 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). @@ -1944,232 +2239,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - před s. - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - před sekundou - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - před sekundami - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - před min. - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - před min. - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - před minutou - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - před minutami - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - před týdnem + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2189,6 +2272,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2209,6 +2316,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Přeplaceno x @@ -2229,6 +2348,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index e2a3660c5..b698980a6 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transaktion @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -299,9 +330,8 @@ Transaction Minutes transaction.minutes - - block - Block + + block src/app/components/transaction/transaction.component.html 126 @@ -310,8 +340,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -331,6 +360,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -472,6 +509,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -545,6 +586,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -592,6 +640,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -629,6 +685,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Gesamtgebühren @@ -708,6 +788,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Adresse @@ -771,6 +858,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blöcke + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Höhe @@ -782,6 +913,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -804,25 +943,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -882,6 +1024,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -909,6 +1075,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Über das Projekt @@ -1097,6 +1315,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaktion vBytes pro Sekunde (vB / s) @@ -1156,6 +1382,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Gebührenspanne @@ -1174,6 +1421,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Name @@ -1268,6 +1522,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Fehler beim Laden der Asset-Daten. @@ -1381,6 +1651,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1401,6 +1675,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempool Größe @@ -1421,14 +1711,21 @@ Unconfirmed count dashboard.unconfirmed - - block - Block + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1458,6 +1755,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1623,16 +1928,6 @@ 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). @@ -1945,233 +2240,20 @@ 272 - - Just now - Gerade eben + + Copied! - 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 - 70 - - - - secs ago - vor Sek. - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - vor einer Sekunde - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - vor Sekunden - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - vor einer Min. - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - vor Min. - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - vor einer Minute - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - vor Minuten - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - vor einer Woche + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2191,6 +2273,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2211,6 +2317,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Überbezahlt x @@ -2231,6 +2349,285 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Gerade eben + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 109c0e0d7..45eb732bb 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -1,12 +1,27 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -24,6 +39,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -33,6 +56,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -275,8 +306,8 @@ Transaction Minutes transaction.minutes - - block + + block src/app/components/transaction/transaction.component.html 126 @@ -285,8 +316,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -304,6 +334,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase @@ -430,6 +468,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -497,6 +539,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -539,6 +588,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -573,6 +630,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees @@ -647,6 +728,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address @@ -703,6 +791,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -713,6 +844,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -733,24 +872,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -804,6 +947,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline @@ -828,6 +995,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -996,6 +1215,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -1049,6 +1276,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1065,6 +1313,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1150,6 +1405,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1252,6 +1523,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1270,6 +1545,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size @@ -1288,13 +1579,21 @@ Unconfirmed count dashboard.unconfirmed - - block + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1321,6 +1620,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1475,15 +1782,6 @@ 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). @@ -1758,214 +2056,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -1984,6 +2088,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2002,6 +2130,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2020,6 +2160,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index f308e149e..ed6f1d85e 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transacción @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - bloque + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -471,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +585,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Génesis @@ -591,6 +639,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +684,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Total de tasas @@ -707,6 +787,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Dirección @@ -770,6 +857,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloques + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Altura @@ -781,6 +912,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -803,25 +942,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -881,6 +1023,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Sin conexión @@ -908,6 +1074,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Sobre el proyecto @@ -1096,6 +1314,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) vBytes de transacciones por segundo (vB/s) @@ -1155,6 +1381,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Rango de tasas @@ -1173,6 +1420,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Nombre @@ -1267,6 +1521,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Error cargando datos del activo @@ -1380,6 +1650,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1400,6 +1674,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Tamaño de la mempool @@ -1420,14 +1710,21 @@ Unconfirmed count dashboard.unconfirmed - - block - bloque + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1457,6 +1754,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1622,16 +1927,6 @@ 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"). @@ -1944,232 +2239,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - Hace segundos - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - Hace segundo - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - Hace segundos - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - Hace minuto - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - Hace minutos - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - Hace minuto - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - Hace minutos - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - Hace semana + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2189,6 +2272,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2209,6 +2316,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Pagado por demás x @@ -2229,6 +2348,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 49ca89fce..585e390fd 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction تراکنش @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -299,9 +330,8 @@ Transaction Minutes transaction.minutes - - block - بلاک + + block src/app/components/transaction/transaction.component.html 126 @@ -310,8 +340,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -331,6 +360,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -472,6 +509,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -545,6 +586,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis پیدایش @@ -592,6 +640,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -629,6 +685,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees محموع کارمزدها @@ -708,6 +788,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address آدرس @@ -771,6 +858,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + بلاک‌ها + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height طول @@ -782,6 +913,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -804,25 +943,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 چندامضایی از @@ -882,6 +1024,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline خاموش @@ -909,6 +1075,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project درباره پروژه @@ -1097,6 +1315,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) تراکنش vByte بر ثانیه (vB بر ثانیه) @@ -1156,6 +1382,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span بازه‌ی کارمزد @@ -1174,6 +1421,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name نام @@ -1268,6 +1522,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. خطا در بازکردن داده‌های دارایی. @@ -1381,6 +1651,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1401,6 +1675,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size اندازه ممپول @@ -1421,14 +1711,21 @@ Unconfirmed count dashboard.unconfirmed - - block - بلاک + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1458,6 +1755,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1623,16 +1928,6 @@ 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(چکیده بلاک بعدی، فقط برای بلاک‌های بهترین زنجیره در دسترس است). @@ -1942,233 +2237,20 @@ 272 - - Just now - همین الان + + Copied! - 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 - 70 - - - - secs ago - ثانیه پیش - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - ثانیه پیش - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - ثانیه پیش - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - هفته پیش + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2188,6 +2270,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2208,6 +2314,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x برابر اضافه پرداخت! @@ -2228,6 +2346,285 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + همین الان + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fi_FI.xlf b/frontend/src/locale/messages.fi_FI.xlf index c08f59cbc..9a8a1f7d4 100644 --- a/frontend/src/locale/messages.fi_FI.xlf +++ b/frontend/src/locale/messages.fi_FI.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Siirtotapahtuma @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - lohko + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Kolikkopohja @@ -471,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +585,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -591,6 +639,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +684,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Siirtokulut yhteensä @@ -707,6 +787,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address @@ -764,6 +851,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Lohkot + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Järjestysnumero @@ -775,6 +906,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -797,25 +936,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Täytetty - - 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 tai @@ -875,6 +1017,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Pois verkosta @@ -902,6 +1068,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Tietoja projektista @@ -1090,6 +1308,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Siirtotapahtuma vBytes sekunnissa (vB/s) @@ -1149,6 +1375,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Siirtokuluväli @@ -1167,6 +1414,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Nimi @@ -1261,6 +1515,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Omaisuustietojen lataamisessa tapahtui virhe. @@ -1374,6 +1644,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1394,6 +1668,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempoolin koko @@ -1414,14 +1704,21 @@ Unconfirmed count dashboard.unconfirmed - - block - lohko + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1451,6 +1748,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1616,16 +1921,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Lohkot - - 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). Palauttaa lohkon vahvistustilan. Käytettävissä olevat kentät: in_best_chain (totuusarvo, väärä orvoille lohkoille), next_best (seuraavan lohkon tiiviste, käytettävissä vain parhaan ketjun lohkoille). @@ -1922,214 +2217,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2148,6 +2249,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2166,6 +2291,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2184,6 +2321,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 948b333c9..c951fcbe9 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transaction @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - bloc + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -471,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +585,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genèse @@ -591,6 +639,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +684,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Frais totaux @@ -707,6 +787,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Adresse @@ -770,6 +857,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Hauteur @@ -781,6 +911,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -803,25 +941,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 multisig de @@ -881,6 +1022,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Hors-ligne @@ -908,6 +1073,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project À propos du projet @@ -1096,6 +1313,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaction vBytes par seconde (vB/s) @@ -1155,6 +1380,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span L'envergure des frais @@ -1173,6 +1419,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Nom @@ -1267,6 +1520,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Erreur dans le chargement des données de l'asset @@ -1380,6 +1649,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1400,6 +1673,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Taille du mempool @@ -1420,14 +1709,21 @@ Unconfirmed count dashboard.unconfirmed - - block - bloc + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1457,6 +1753,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1615,15 +1919,6 @@ 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). @@ -1900,214 +2195,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2127,6 +2228,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2146,6 +2271,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2164,6 +2301,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index 60e5845bd..ce51bd454 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transakcija @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -295,8 +326,8 @@ Transaction Minutes transaction.minutes - - block + + block src/app/components/transaction/transaction.component.html 126 @@ -305,8 +336,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -324,6 +354,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase @@ -450,6 +488,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -517,6 +559,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -559,6 +608,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -593,6 +650,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees @@ -667,6 +748,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address @@ -723,6 +811,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -733,6 +864,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -753,24 +892,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -824,6 +967,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline @@ -848,6 +1015,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -1016,6 +1235,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -1069,6 +1296,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1085,6 +1333,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1170,6 +1425,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1272,6 +1543,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1290,6 +1565,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size @@ -1308,13 +1599,21 @@ Unconfirmed count dashboard.unconfirmed - - block + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1341,6 +1640,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1495,15 +1802,6 @@ 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). @@ -1778,214 +2076,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2004,6 +2108,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2022,6 +2150,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2040,6 +2180,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index e7768af84..ef04355aa 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -1,6 +1,18 @@ + + Transaction: + トランザクション: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction トランザクション @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -91,6 +123,7 @@ Virtual size + 仮想サイズ src/app/components/transaction/transaction.component.html 181 @@ -298,9 +331,9 @@ Transaction Minutes transaction.minutes - - block - ブロック + + block + ブロック src/app/components/transaction/transaction.component.html 126 @@ -309,8 +342,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +362,15 @@ transaction.error.waiting-for-it-to-appear + + blocks + ブロック + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase コインベース @@ -471,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +589,14 @@ shared.confidential + + Block : + ブロック + + src/app/components/block/block.component.ts + 98 + + Genesis ジェネシス @@ -591,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + 140vBytesの平均ネイティブsegwitトランザクションに基づく + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees 合計料金 @@ -707,6 +793,14 @@ block.error.loading-block-data + + Address: + アドレス: + + src/app/components/address/address.component.ts + 64 + + Address アドレス @@ -770,6 +864,52 @@ search-form.searchbar-placeholder + + Search + 検索 + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + ブロック + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + ブロック + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height 高さ @@ -781,6 +921,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -803,25 +951,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 / マルチシグ @@ -881,6 +1032,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + このアプリについて + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline オフライン @@ -908,6 +1085,63 @@ master-page.layer2-networks-header + + Stats + 統計 + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + ダッシュボード + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + グラフ + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + テレビ + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + 資産 + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project プロジェクトについて @@ -1096,6 +1330,15 @@ statistics.memory-by-vBytes + + Invert + 反転 + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) トランザクションvバイト毎秒(vB/s) @@ -1155,6 +1398,30 @@ shared.vbytes-per-second + + Next block + 次のブロック + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + mempoolブロックのスタック + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempoolブロック + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span 料金スパン @@ -1173,6 +1440,14 @@ mempool-block.total-fees + + Asset: + アセット: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1267,6 +1542,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + ペグイン/アウトおよびバーントランザクション + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + 発行およびバーントランザクション + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. アセットデータを読み込み中にエラーが発生しました。 @@ -1380,6 +1673,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1400,6 +1697,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempoolサイズ @@ -1420,14 +1733,23 @@ Unconfirmed count dashboard.unconfirmed - - block - ブロック + + block + ブロック src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + ブロック + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1457,6 +1779,15 @@ dashboard.difficulty-adjustment + + API Service + APIサービス + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket ウェブソケット @@ -1622,16 +1953,6 @@ 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). @@ -1944,232 +2265,22 @@ 272 - - Just now + + Copied! + コピー されました! - 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 - 70 - - - - secs ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - 週間前 + + This transaction saved % on fees by using native SegWit-Bech32 + このトランザクションでは、ネイティブのSegWit-Bech32を使用することで、手数料を%節約できました。 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2189,6 +2300,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + このトランザクションでは、SegWitを使用することで料金を%節約し、ネイティブSegWit-Bech32に完全にアップグレードすることで%をさらに節約できました。 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + このトランザクションでは、ネイティブSegWit-Bech32にアップグレードすることで料金を%節約でき、SegWit-P2SHにアップグレードすることで%を節約できます。 + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + このトランザクションは、手数料の引き上げを可能にする手数料による交換(RBF)をサポートします + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2209,6 +2347,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + このブロックに入るのに必要なのは〜 sat / vBだけですした + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x 過払い @@ -2229,6 +2380,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + ちょうど今 + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + 年前 + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + ヶ月前 + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + 週間前 + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + 日前 + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + 時間前 + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + 分前 + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + 分前 + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + 年前 + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + ヶ月前 + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + 週間前 + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + 日前 + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + 時間前 + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + 分前 + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + 分前 + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ統計 + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + 既存量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + 発行量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + 破壊量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + アドレス + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + UTXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + STXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + 価格 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + 時価総額 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + アドレス: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + ブロック + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + フィルタ + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + すべて選択 + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + すべて選択解除 + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + 承認済み + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 62b6cff41..2569dfaf9 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transaksjon @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -299,9 +330,8 @@ Transaction Minutes transaction.minutes - - block - blokk + + block src/app/components/transaction/transaction.component.html 126 @@ -310,8 +340,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -331,6 +360,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -472,6 +509,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -545,6 +586,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -592,6 +640,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -629,6 +685,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Totale avgifter @@ -708,6 +788,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Adresse @@ -771,6 +858,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blokker + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Høyde @@ -782,6 +913,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -804,25 +943,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -882,6 +1024,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -909,6 +1075,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Om prosjektet @@ -1097,6 +1315,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaksjoner per sekund (vB/s) @@ -1156,6 +1382,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Avgiftsintervall @@ -1174,6 +1421,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Navn @@ -1268,6 +1522,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Lasting av ressursdata feilet. @@ -1381,6 +1651,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1401,6 +1675,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempool størrelse @@ -1421,14 +1711,21 @@ Unconfirmed count dashboard.unconfirmed - - block - blokk + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1458,6 +1755,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1623,16 +1928,6 @@ 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 (boolsk verdi, false for foreldreløse blokker), next_best (hashen for den neste blokken, bare tilgjengelig for blokker i den beste kjeden). @@ -1945,233 +2240,20 @@ 272 - - Just now - Akkurat nå + + Copied! - 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 - 70 - - - - secs ago - sek siden - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - sekund siden - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - sekunder siden - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - min siden - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - min siden - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - minutt siden - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - minutter siden - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - uke siden + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2191,6 +2273,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2211,6 +2317,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Overbetalte x @@ -2231,6 +2349,285 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Akkurat nå + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index fbfc459c5..45aeeee64 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transactie @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -467,6 +504,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -540,6 +581,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -587,6 +635,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -624,6 +680,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Totale vergoedingen @@ -703,6 +783,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address adres @@ -766,6 +853,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blokken + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Hoogte @@ -777,6 +908,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -799,25 +938,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -877,6 +1019,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -904,6 +1070,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Over het project @@ -1092,6 +1310,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transactie-vBytes per seconde (vB/s) @@ -1151,6 +1377,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1168,6 +1415,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Naam @@ -1259,6 +1513,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Fout bij het laden van activagegevens. @@ -1372,6 +1642,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1392,6 +1666,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempoolgrootte @@ -1412,14 +1702,21 @@ Unconfirmed count dashboard.unconfirmed - - block - blok + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1449,6 +1746,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1613,16 +1918,6 @@ 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). Geeft de bevesigingsstatus van een blok. Beschikbare velden: in_best_chain (boolean, false voor wees-blokken), next_best (hash van het volgende blok, enkel beschikbaar voor blokken in de 1-na-beste chain) @@ -1910,216 +2205,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - seconde geleden - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - seconden geleden - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2139,6 +2238,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2159,6 +2282,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Te veel betaald x @@ -2179,6 +2314,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 9c5358a57..bba88e87d 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transakcja @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -460,6 +497,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -527,6 +568,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -569,6 +617,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -603,6 +659,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees @@ -677,6 +757,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address @@ -733,6 +820,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -743,6 +873,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -763,24 +901,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -834,6 +976,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline @@ -858,6 +1024,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -1026,6 +1244,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -1079,6 +1305,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1095,6 +1342,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1180,6 +1434,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1282,6 +1552,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1300,6 +1574,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size @@ -1318,13 +1608,21 @@ Unconfirmed count dashboard.unconfirmed - - block + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1351,6 +1649,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1505,15 +1811,6 @@ 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). @@ -1788,214 +2085,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2014,6 +2117,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2032,6 +2159,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2050,6 +2189,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 296045a63..f6704976c 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transação @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - bloco + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Conteúdo no bloco @@ -471,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +585,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -589,6 +637,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -626,6 +682,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Total de taxas @@ -705,6 +785,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Endereço @@ -767,6 +854,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blocos + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Altura @@ -778,6 +909,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -800,25 +939,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -878,6 +1020,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Sem conexão @@ -904,6 +1070,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Sobre o projeto @@ -1092,6 +1310,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transação vBytes por segundo (vB/s) @@ -1151,6 +1377,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Extensão da taxa @@ -1169,6 +1416,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Nome @@ -1263,6 +1517,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Erro ao carregar os dados do ativo. @@ -1376,6 +1646,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1396,6 +1670,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Tamanho do mempool @@ -1416,14 +1706,21 @@ Unconfirmed count dashboard.unconfirmed - - block - bloco + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1453,6 +1750,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1618,16 +1923,6 @@ 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). @@ -1940,214 +2235,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2167,6 +2268,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF Replace-by-fee @@ -2187,6 +2312,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Em excesso x @@ -2207,6 +2344,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 332aa03b9..9e4e7b9e2 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transakcija @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -299,9 +330,8 @@ Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 @@ -310,8 +340,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -331,6 +360,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -472,6 +509,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -545,6 +586,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Prvotni @@ -592,6 +640,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -629,6 +685,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Skupaj omrežnin @@ -708,6 +788,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Naslov @@ -771,6 +858,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloki + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Višina @@ -782,6 +913,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -804,25 +943,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -882,6 +1024,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Brez povezave @@ -909,6 +1075,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project O projektu @@ -1097,6 +1315,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Pretočnost, vBajtov na sekundo (vB/s) @@ -1156,6 +1382,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Razpon omrežnin @@ -1174,6 +1421,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Naziv @@ -1268,6 +1522,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Napaka pri nalaganju podatkov o sredstvu. @@ -1381,6 +1651,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1401,6 +1675,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempool velikost @@ -1421,14 +1711,21 @@ Unconfirmed count dashboard.unconfirmed - - block - blok + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1458,6 +1755,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1623,16 +1928,6 @@ 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). Vrne stanje potrditve bloka. Razpoložljiva polja: in_best_chain (boolean, false za osirotele bloke, angl. orphaned), next_best (zgoščena vrednost oz. hash naslednjega bloka, na voljo samo za bloke v veljavni verigi). @@ -1945,233 +2240,20 @@ 272 - - Just now - Pravkar + + Copied! - 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 - 70 - - - - secs ago - pred s - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - pred s - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - pred s - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - pred tednom + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2191,6 +2273,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2211,6 +2317,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x -krat preplačano @@ -2231,6 +2349,285 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Pravkar + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 09cc2a938..be04d4448 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -1,6 +1,18 @@ + + Transaction: + Transaktion: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transaktion @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -91,6 +123,7 @@ Virtual size + Virtual size src/app/components/transaction/transaction.component.html 181 @@ -298,9 +331,9 @@ Transaction Minutes transaction.minutes - - block - block + + block + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +342,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +362,15 @@ transaction.error.waiting-for-it-to-appear + + blocks + block + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -471,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +589,14 @@ shared.confidential + + Block : + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -591,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + Baserat på en genomsnittlig native segwit-transaktion på 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Avgifter totalt @@ -707,6 +793,14 @@ block.error.loading-block-data + + Address: + Adress: + + src/app/components/address/address.component.ts + 64 + + Address Address @@ -770,6 +864,52 @@ search-form.searchbar-placeholder + + Search + Sök + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Block + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Block + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Höjd @@ -781,6 +921,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -803,25 +951,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 @@ -881,6 +1032,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + Om + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Frånkopplad @@ -908,6 +1085,63 @@ master-page.layer2-networks-header + + Stats + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + instrumentbräda + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Grafer + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV-vy + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Om projektet @@ -1096,6 +1330,15 @@ statistics.memory-by-vBytes + + Invert + Invertera + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaktion vBytes per sekund (vB/s) @@ -1155,6 +1398,30 @@ shared.vbytes-per-second + + Next block + Nästa block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Stack med mempoolblock + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempoolblock + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Avgiftspann @@ -1173,6 +1440,14 @@ mempool-block.total-fees + + Asset: + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Namn @@ -1267,6 +1542,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Peg-in/ut och burn-transaktioner + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Utfärdande och burn-transaktioner + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Fel vid laddandet av asset data @@ -1380,6 +1673,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1400,6 +1697,24 @@ dashboard.latest-transactions.USD + + Collapse + Kollapsa + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + Expandera + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempoolstorlek @@ -1420,14 +1735,23 @@ Unconfirmed count dashboard.unconfirmed - - block - block + + block + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1457,6 +1781,15 @@ dashboard.difficulty-adjustment + + API Service + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1622,16 +1955,6 @@ 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). @@ -1944,232 +2267,22 @@ 272 - - Just now + + Copied! + Kopierad! - 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 - 70 - - - - secs ago - sek sedan - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - sekund sedan - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - sekunder sedan - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - min sedan - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - min sedan - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - minut sedan - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - minuter sedan - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - vecka sedan + + This transaction saved % on fees by using native SegWit-Bech32 + Denna transaktion sparade % på avgifter genom att använda native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2189,6 +2302,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Denna transaktion sparade % på avgifter genom att använda SegWit och kunde spara % mer genom att helt uppgradera till native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Denna transaktion kan spara % på avgifter genom att uppgradera till native SegWit-Bech32 eller % genom att uppgradera till SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Denna transaktion stödjer Replace-By-Fee (RBF) som möjliggör ökning av avgiften + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2209,6 +2349,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Endast ~ sat/vB behövdes för att komma med i detta block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Överbetalad x @@ -2229,6 +2382,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Just nu + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + år sedan + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + månad sedan + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + veckor sedan + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + dag sedan + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + timmar sedan + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + min sedan + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + minut sedan + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + sek sedan + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + sekund sedan + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + år sedan + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + månad sedan + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + veckor sedan + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + dagar sedan + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + timmar sedan + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + min sedan + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + minuter sedan + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + sek sedan + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + sekunder sedan + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ-statistik + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Befintligt antal + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Myntat antal + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Antal brända + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Adresser + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Ospenderade TXO:er + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Spenderade TXO:er + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Pris + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Marknadsvärde + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Adress: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Välj alla + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Avmarkera alla + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Bekräftad + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index a689a8b66..0a154927a 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction İşlem @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase @@ -463,6 +500,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -536,6 +577,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -581,6 +629,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -618,6 +674,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Toplam ücret @@ -697,6 +777,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Adres @@ -759,6 +846,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloklar + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Yükseklik @@ -770,6 +901,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -792,25 +931,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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ü @@ -870,6 +1012,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Çevrimdışı @@ -896,6 +1062,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Proje hakkında @@ -1084,6 +1302,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Saniye başı vBytes (vB/s) @@ -1143,6 +1369,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Ücret aralığı @@ -1161,6 +1408,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Isim @@ -1255,6 +1509,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Data seti yüklerken hata oldu. @@ -1368,6 +1638,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1388,6 +1662,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempool (bekleyen işlem havuzu) boyutu @@ -1408,14 +1698,21 @@ Unconfirmed count dashboard.unconfirmed - - block - blok + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1445,6 +1742,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websoketi @@ -1607,16 +1912,6 @@ 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). @@ -1904,214 +2199,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2131,6 +2232,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2151,6 +2276,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x x kadar fazla ödendi @@ -2171,6 +2308,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 0a98c3d49..812dbbc48 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Транзакція @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - блок + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -471,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +585,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Генезис @@ -591,6 +639,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +684,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Всього комісій @@ -707,6 +787,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Адреса @@ -770,6 +857,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Блоки + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Висота @@ -781,6 +912,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -803,25 +942,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 з @@ -881,6 +1023,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Офлайн @@ -908,6 +1074,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Про проект @@ -1096,6 +1314,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) vBytes за секунду транзакції (vB/s) @@ -1155,6 +1381,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Діапазон комісії @@ -1173,6 +1420,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Назва @@ -1267,6 +1521,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Не вдалося завантажити дані про актив. @@ -1380,6 +1650,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1400,6 +1674,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Розмір мемпулу @@ -1420,14 +1710,21 @@ Unconfirmed count dashboard.unconfirmed - - block - блок + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1457,6 +1754,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Вебсокет @@ -1622,16 +1927,6 @@ 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 (хеш наступного блоку, доступний тільки для блоків в найкращому ланцюжці). @@ -1944,232 +2239,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - сек тому - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - секунду тому - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - секунд тому - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - хв тому - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - хв тому - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - хвилину тому - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - хвилин тому - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - тиждень тому + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2189,6 +2272,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2209,6 +2316,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Переплата x @@ -2229,6 +2348,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 6c19874ce..b805b4669 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Giao dịch @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +329,8 @@ Transaction Minutes transaction.minutes - - block - khối + + block src/app/components/transaction/transaction.component.html 126 @@ -309,8 +339,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +359,14 @@ transaction.error.waiting-for-it-to-appear + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -471,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -544,6 +585,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -591,6 +639,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -628,6 +684,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees Total fees @@ -707,6 +787,13 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + Address Address @@ -770,6 +857,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Height @@ -781,6 +912,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -803,25 +942,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - 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 of @@ -881,6 +1023,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -908,6 +1074,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project About the project @@ -1096,6 +1314,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaction vBytes per second (vB/s) @@ -1155,6 +1381,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Fee span @@ -1173,6 +1420,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Name @@ -1267,6 +1521,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Error loading asset data. @@ -1380,6 +1650,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1400,6 +1674,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size Mempool size @@ -1420,14 +1710,21 @@ Unconfirmed count dashboard.unconfirmed - - block - block + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1457,6 +1754,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket Websocket @@ -1622,16 +1927,6 @@ 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). @@ -1944,232 +2239,20 @@ 272 - - Just now + + Copied! - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - sec ago - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 70 - - - - secs ago - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - hour ago - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 80 - - - - day ago - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - days ago - - src/app/components/translation-strings/translation-strings.component.html + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 78 - - - - month ago - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 77 - - - - year ago - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2189,6 +2272,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2209,6 +2316,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Overpaid x @@ -2229,6 +2348,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 55a9c2f70..4d994d021 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -1,6 +1,18 @@ + + Transaction: + 交易: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction 交易 @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -298,9 +330,9 @@ Transaction Minutes transaction.minutes - - block - 区块 + + block + 个区块 src/app/components/transaction/transaction.component.html 126 @@ -309,8 +341,7 @@ src/app/components/transaction/transaction.component.html 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. @@ -330,6 +361,15 @@ transaction.error.waiting-for-it-to-appear + + blocks + 个区块 + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Coinbase @@ -460,6 +500,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -533,6 +577,13 @@ shared.confidential + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -579,6 +630,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -616,6 +675,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + Total fees 总手续费 @@ -695,6 +778,14 @@ block.error.loading-block-data + + Address: + 地址: + + src/app/components/address/address.component.ts + 64 + + Address 地址 @@ -756,6 +847,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + 区块 + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height 高度 @@ -767,6 +902,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -789,25 +932,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + 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 -多重签名 @@ -866,6 +1012,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline 离线 @@ -892,6 +1062,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project 项目介绍 @@ -1078,6 +1300,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) 交易字节/秒 (虚拟字节) @@ -1136,6 +1366,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span 费用范围 @@ -1154,6 +1405,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name 名称 @@ -1243,6 +1501,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1353,6 +1627,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1373,6 +1651,22 @@ dashboard.latest-transactions.USD + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + Mempool size 内存池大小 @@ -1393,14 +1687,21 @@ Unconfirmed count dashboard.unconfirmed - - block - 区块 + + block src/app/dashboard/dashboard.component.html 164 - dashboard.block + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks Incoming transactions @@ -1430,6 +1731,14 @@ dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1588,16 +1897,6 @@ 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). @@ -1878,232 +2177,20 @@ 272 - - Just now + + Copied! - 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 - 70 - - - - secs ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 88 - - - - second ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 72 - - - - seconds ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 90 - - - - min ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 65 - - - - mins ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - minute ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - minutes ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 85 - - - - 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 - 80 - - - - 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 + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 79 - - - week ago - 周前 + + This transaction saved % on fees by using native SegWit-Bech32 - 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 - 78 - - - - 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 - 77 - - - - 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 - 76 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -2122,6 +2209,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2141,6 +2252,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x 溢缴款 x @@ -2161,6 +2284,300 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + 年前 + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + 个月前 + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + 周前 + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + 天前 + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + 个小时前 + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + 分钟前 + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + 分钟前 + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + 年前 + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + 个月前 + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + 周前 + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + 天前 + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + 价格 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + 地址: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + 区块: + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file From 9ebb9a5d6528ded6748b1a073b363d23fd6833a1 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 5 Dec 2020 00:12:08 +0900 Subject: [PATCH 21/42] Use --force when running `tx pull` for Transifex strings --- frontend/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index 55b25656c..8c09f2cb2 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -23,7 +23,7 @@ "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", + "i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1 --force", "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 --localize && npm run sync-assets", From 10b9778b3c2f14493a7b8d864fc34df7d042d7f1 Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 4 Dec 2020 22:30:09 +0700 Subject: [PATCH 22/42] Adding missing Asset page strings. Fixed block title translations. --- frontend/src/app/assets/assets.component.html | 28 +++--- .../bisq/bisq-block/bisq-block.component.ts | 2 +- .../app/components/block/block.component.ts | 2 +- frontend/src/locale/messages.xlf | 88 ++++++++++++++++++- 4 files changed, 102 insertions(+), 18 deletions(-) diff --git a/frontend/src/app/assets/assets.component.html b/frontend/src/app/assets/assets.component.html index 7414ea3c7..c5332bbd1 100644 --- a/frontend/src/app/assets/assets.component.html +++ b/frontend/src/app/assets/assets.component.html @@ -1,14 +1,14 @@
-

Registered assets

+

Registered assets


- +
- +
@@ -16,11 +16,11 @@ - - - - - + + + + + @@ -43,11 +43,11 @@
NameTickerIssuer domainAsset IDIssuance TXNameTickerIssuer domainAsset IDIssuance TX
- - - - - + + + + + @@ -64,7 +64,7 @@
- Error loading assets data. + Error loading assets data.
{{ error.error }}
diff --git a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts index 6e59bfa42..d1cc3eeca 100644 --- a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts +++ b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts @@ -82,7 +82,7 @@ export class BisqBlockComponent implements OnInit, OnDestroy { } this.isLoading = false; this.blockHeight = block.height; - this.seoService.setTitle($localize`:@@bisq-block.component.browser-title:Block ${block.height}:INTERPOLATION:: ${block.hash}:INTERPOLATION:`); + this.seoService.setTitle($localize`:@@bisq-block.component.browser-title:Block ${block.height}:BLOCK_HEIGHT:: ${block.hash}:BLOCK_HASH:`); this.block = block; }); } diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index 3cc413f33..3ef6e29cd 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -95,7 +95,7 @@ export class BlockComponent implements OnInit, OnDestroy { tap((block: Block) => { this.block = block; this.blockHeight = block.height; - this.seoService.setTitle($localize`:@@block.component.browser-title:Block ${block.height}:INTERPOLATION:: ${block.id}:INTERPOLATION:`); + this.seoService.setTitle($localize`:@@block.component.browser-title:Block ${block.height}:BLOCK_HEIGHT:: ${block.id}:BLOCK_ID:`); this.isLoadingBlock = false; if (block.coinbaseTx) { this.coinbaseTx = block.coinbaseTx; diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 8fb520c75..d4657a6ec 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -541,7 +541,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1430,6 +1430,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown @@ -2405,7 +2489,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 From 6acacc7792e03de65041f47b0d14cd3e1410fe19 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 5 Dec 2020 00:36:00 +0900 Subject: [PATCH 23/42] Update translations from Transifex --- frontend/src/locale/messages.ar.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.cs.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.de.xlf | 117 ++++++++++++++++++++++++- frontend/src/locale/messages.en_US.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.es.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.fa.xlf | 95 +++++++++++++++++++- frontend/src/locale/messages.fr.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.hr.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.ja.xlf | 108 +++++++++++++++++++++-- frontend/src/locale/messages.nb.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.nl.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.pl.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.pt.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.sl.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.sv.xlf | 100 ++++++++++++++++++++- frontend/src/locale/messages.tr.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.uk.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.vi.xlf | 88 ++++++++++++++++++- frontend/src/locale/messages.zh.xlf | 96 +++++++++++++++++++- 19 files changed, 1701 insertions(+), 47 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index a2d16c61c..e345515ef 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -580,7 +580,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1531,6 +1531,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown غير معروف @@ -2535,7 +2619,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index cdfde6f4d..1fff39902 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -586,7 +586,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1546,6 +1546,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Neznámo @@ -2592,7 +2676,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index b698980a6..680322997 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -3,6 +3,7 @@ Transaction: + Transaktion: src/app/components/transaction/transaction.component.ts 48 @@ -332,6 +333,7 @@ block + Block src/app/components/transaction/transaction.component.html 126 @@ -362,6 +364,7 @@ blocks + Blöcke src/app/components/transaction/transaction.component.html 289 @@ -587,7 +590,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -687,6 +690,7 @@ Based on average native segwit transaction of 140 vBytes + Basierend auf einer durchschnittlichen nativen Segwit-Transaktion von 140 vByte src/app/components/block/block.component.html 46 @@ -790,6 +794,7 @@ Address: + Adresse: src/app/components/address/address.component.ts 64 @@ -860,6 +865,7 @@ Search + Suche src/app/components/search-form/search-form.component.html 7 @@ -880,6 +886,7 @@ Blocks + Blöcke src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1026,6 +1033,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1038,6 +1046,7 @@ About + Über src/app/components/master-page/master-page.component.html 59 @@ -1077,6 +1086,7 @@ Stats + Statistiken src/app/components/master-page/master-page.component.html 35 @@ -1085,6 +1095,7 @@ Dashboard + Dashboard src/app/components/master-page/master-page.component.html 40 @@ -1093,6 +1104,7 @@ Graphs + Grafiken src/app/components/master-page/master-page.component.html 46 @@ -1105,6 +1117,7 @@ TV view + TV-Ansicht src/app/components/master-page/master-page.component.html 49 @@ -1117,6 +1130,7 @@ Assets + Vermögenswerte src/app/components/master-page/master-page.component.html 53 @@ -1317,6 +1331,7 @@ Invert + Umkehren src/app/components/statistics/statistics.component.html 43 @@ -1384,6 +1399,7 @@ Next block + Nächster Block src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1391,6 +1407,7 @@ Stack of mempool blocks + Stapel von -Mempoolblöcken src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1398,6 +1415,7 @@ Mempool block + Mempool-Block src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1423,6 +1441,7 @@ Asset: + Vermögenswert: src/app/components/asset/asset.component.ts 73 @@ -1524,6 +1543,7 @@ Peg In/Out and Burn Transactions + Peg In/Out- und Burn-Transaktionen src/app/components/asset/asset.component.html 75 @@ -1532,6 +1552,7 @@ Issuance and Burn Transactions + Ausgabe und Verbrennung von Transaktionen src/app/components/asset/asset.component.html 75 @@ -1547,6 +1568,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Unbekannt @@ -1677,6 +1782,7 @@ Collapse + Reduzieren src/app/dashboard/dashboard.component.html 131 @@ -1685,6 +1791,7 @@ Expand + Erweitern src/app/dashboard/dashboard.component.html 132 @@ -1713,6 +1820,7 @@ block + Block src/app/dashboard/dashboard.component.html 164 @@ -1721,6 +1829,7 @@ blocks + Blöcke src/app/dashboard/dashboard.component.html 164 @@ -1757,6 +1866,7 @@ API Service + API-Service src/app/components/api-docs/api-docs.component.html 4 @@ -2242,6 +2352,7 @@ Copied! + Kopiert! src/app/components/clipboard/clipboard.component.ts 15 @@ -2249,6 +2360,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Diese Transaktion konnte durch natives SegWit-Bech32 % an Gebühren einsparen src/app/components/tx-features/tx-features.component.html 1 @@ -2275,6 +2387,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Diese Transaktion konnte mit SegWit % an Gebühren einsparen, und könnte mit einem vollständiges Upgrade auf natives SegWit-Bech32 % zusätzlich einsparen src/app/components/tx-features/tx-features.component.html 3 @@ -2594,7 +2707,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 45eb732bb..c2efb8bdb 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -540,7 +540,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1429,6 +1429,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown @@ -2404,7 +2488,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index ed6f1d85e..9c4df9661 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -586,7 +586,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1546,6 +1546,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Desconocido @@ -2592,7 +2676,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 585e390fd..9e916b85a 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -3,6 +3,7 @@ Transaction: + تراکنش: src/app/components/transaction/transaction.component.ts 48 @@ -332,6 +333,7 @@ block + بلاک src/app/components/transaction/transaction.component.html 126 @@ -362,6 +364,7 @@ blocks + بلاک src/app/components/transaction/transaction.component.html 289 @@ -587,7 +590,8 @@ shared.confidential - Block : + Block : + بلاک : src/app/components/block/block.component.ts 98 @@ -687,6 +691,7 @@ Based on average native segwit transaction of 140 vBytes + بر اساس میانگین تراکنش سگویتی اصیل با اندازه 140 ساتوشی بر بایت مجازی src/app/components/block/block.component.html 46 @@ -790,6 +795,7 @@ Address: + آدرس: src/app/components/address/address.component.ts 64 @@ -860,6 +866,7 @@ Search + جستجو src/app/components/search-form/search-form.component.html 7 @@ -1547,6 +1554,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown ناشناخته @@ -2591,7 +2682,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index c951fcbe9..8b30d450e 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -586,7 +586,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1545,6 +1545,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Inconnue @@ -2545,7 +2629,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index ce51bd454..c537578d8 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -560,7 +560,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1449,6 +1449,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown @@ -2424,7 +2508,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index ef04355aa..b0d15fd2f 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -590,8 +590,8 @@ shared.confidential - Block : - ブロック + Block : + ブロック src/app/components/block/block.component.ts 98 @@ -1569,6 +1569,98 @@ asset.error.loading-asset-data + + Registered assets + 登録アセット + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + クリアー + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + アセット名 + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + ティッカー + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + 発行者ドメイン名 + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + アセットID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + 発行トランザクション + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + アセットデータの読み込み中にエラーが発生しました。 + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown 未知 @@ -2430,7 +2522,7 @@ min ago - 分前 + 分前 src/app/components/time-since/time-since.component.ts 65 @@ -2438,7 +2530,7 @@ minute ago - 分前 + 分前 src/app/components/time-since/time-since.component.ts 67 @@ -2502,7 +2594,7 @@ mins ago - 分前 + 分前 src/app/components/time-since/time-since.component.ts 83 @@ -2510,7 +2602,7 @@ minutes ago - 分前 + 分前 src/app/components/time-since/time-since.component.ts 85 @@ -2653,8 +2745,8 @@ - Block : - ブロック + Block : + ブロック src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 2569dfaf9..c03b5320b 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -587,7 +587,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1547,6 +1547,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Ukjent @@ -2594,7 +2678,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 45aeeee64..9bec28bee 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -582,7 +582,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1538,6 +1538,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Onbekend @@ -2558,7 +2642,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index bba88e87d..1818a932c 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -569,7 +569,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1458,6 +1458,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown @@ -2433,7 +2517,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index f6704976c..f19872059 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -586,7 +586,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1542,6 +1542,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Desconhecido @@ -2588,7 +2672,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 9e4e7b9e2..e501afaff 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -587,7 +587,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1547,6 +1547,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Neznano @@ -2594,7 +2678,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index be04d4448..eaf6798ed 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -590,8 +590,8 @@ shared.confidential - Block : - Block : + Block : + Block : src/app/components/block/block.component.ts 98 @@ -1569,6 +1569,98 @@ asset.error.loading-asset-data + + Registered assets + Registrerade assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + Rensa + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Namn + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Utfärdardomän + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Utfärdande TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Fel vid inläsning av assets-data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Okänd @@ -2655,8 +2747,8 @@ - Block : - Block : + Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 0a154927a..fa4044955 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -578,7 +578,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1534,6 +1534,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Bilinmeyen @@ -2552,7 +2636,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 812dbbc48..999ac57e5 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -586,7 +586,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1546,6 +1546,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Невідомо @@ -2592,7 +2676,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index b805b4669..a0bc30691 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -586,7 +586,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -1546,6 +1546,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown Unknown @@ -2592,7 +2676,7 @@ - Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 4d994d021..6c54c22b5 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -578,7 +578,7 @@ shared.confidential - Block : + Block : src/app/components/block/block.component.ts 98 @@ -849,6 +849,7 @@ Search + 搜索 src/app/components/search-form/search-form.component.html 7 @@ -869,6 +870,7 @@ Blocks + 区块 src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1525,6 +1527,90 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + Unknown 未知 @@ -2397,6 +2483,7 @@ hours ago + 个小时前 src/app/components/time-since/time-since.component.ts 80 @@ -2404,6 +2491,7 @@ mins ago + 分钟前 src/app/components/time-since/time-since.component.ts 83 @@ -2411,6 +2499,7 @@ minutes ago + 分钟前 src/app/components/time-since/time-since.component.ts 85 @@ -2418,6 +2507,7 @@ secs ago + 秒前 src/app/components/time-since/time-since.component.ts 88 @@ -2425,6 +2515,7 @@ seconds ago + 秒前 src/app/components/time-since/time-since.component.ts 90 @@ -2543,8 +2634,7 @@ - Block : - 区块: + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 From 336e45a7b1acbac700afbeab9a691349d829433b Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 4 Dec 2020 23:07:53 +0700 Subject: [PATCH 24/42] i18n: Added "miner identification" and updated "navigate to sponsor" --- .../app/components/about/about.component.html | 2 +- .../app/components/miner/miner.component.ts | 4 +-- frontend/src/locale/messages.xlf | 28 +++++++++++-------- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 031dc9949..7af5e9c9f 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -62,7 +62,7 @@

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

diff --git a/frontend/src/app/components/miner/miner.component.ts b/frontend/src/app/components/miner/miner.component.ts index a17dd37f6..c022526fb 100644 --- a/frontend/src/app/components/miner/miner.component.ts +++ b/frontend/src/app/components/miner/miner.component.ts @@ -39,7 +39,7 @@ export class MinerComponent implements OnChanges { if (pools.payout_addresses[vout.scriptpubkey_address]) { this.miner = pools.payout_addresses[vout.scriptpubkey_address].name; - this.title = 'Identified by payout address: ' + vout.scriptpubkey_address; + this.title = $localize`:@@miner-identified-by-payout:Identified by payout address: '${vout.scriptpubkey_address}:PAYOUT_ADDRESS:'`; this.url = pools.payout_addresses[vout.scriptpubkey_address].link; break; } @@ -49,7 +49,7 @@ export class MinerComponent implements OnChanges { const coinbaseAscii = this.hex2ascii(this.coinbaseTransaction.vin[0].scriptsig); if (coinbaseAscii.indexOf(tag) > -1) { this.miner = pools.coinbase_tags[tag].name; - this.title = 'Identified by coinbase tag: \'' + tag + '\''; + this.title = $localize`:@@miner-identified-by-coinbase:Identified by coinbase tag: '${tag}:TAG:'`; this.url = pools.coinbase_tags[tag].link; break; } diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index d4657a6ec..1952899fc 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -1128,21 +1128,13 @@ Terms of Service shared.terms-of-service - - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1514,6 +1506,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown From f4c27e4c26603039cfc2f65b9d691c7463a5404c Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 5 Dec 2020 00:16:23 +0700 Subject: [PATCH 25/42] i18n: Added X of X transaction. Flipped collapse/expand --- .../components/address/address.component.html | 6 ++- .../app/dashboard/dashboard.component.html | 4 +- frontend/src/locale/messages.xlf | 42 ++++++++++--------- 3 files changed, 30 insertions(+), 22 deletions(-) diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html index 7109c21e3..35a02bf38 100644 --- a/frontend/src/app/components/address/address.component.html +++ b/frontend/src/app/components/address/address.component.html @@ -43,7 +43,11 @@
-

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

+

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

diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index c4f2ba5a7..3f0f0bcd2 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -128,8 +128,8 @@ diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 1952899fc..121429c7b 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -532,7 +532,7 @@
src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -703,10 +703,6 @@ 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 @@ -768,19 +764,27 @@ address.balance
- - of + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1636,22 +1640,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size From 5774b395a72082d363c3c83ffaf24f0cfe5529db Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 5 Dec 2020 02:39:50 +0900 Subject: [PATCH 26/42] Update translation strings from Transifex --- frontend/src/locale/messages.ar.xlf | 73 ++++++------ frontend/src/locale/messages.cs.xlf | 73 ++++++------ frontend/src/locale/messages.de.xlf | 123 ++++++++++++++------ frontend/src/locale/messages.en_US.xlf | 70 +++++++----- frontend/src/locale/messages.es.xlf | 73 ++++++------ frontend/src/locale/messages.fa.xlf | 148 +++++++++++++++++++------ frontend/src/locale/messages.fr.xlf | 73 ++++++------ frontend/src/locale/messages.hr.xlf | 70 +++++++----- frontend/src/locale/messages.ja.xlf | 76 +++++++------ frontend/src/locale/messages.nb.xlf | 73 ++++++------ frontend/src/locale/messages.nl.xlf | 73 ++++++------ frontend/src/locale/messages.pl.xlf | 70 +++++++----- frontend/src/locale/messages.pt.xlf | 73 ++++++------ frontend/src/locale/messages.sl.xlf | 73 ++++++------ frontend/src/locale/messages.sv.xlf | 84 ++++++++------ frontend/src/locale/messages.tr.xlf | 73 ++++++------ frontend/src/locale/messages.uk.xlf | 73 ++++++------ frontend/src/locale/messages.vi.xlf | 73 ++++++------ frontend/src/locale/messages.zh.xlf | 74 +++++++------ 19 files changed, 902 insertions(+), 616 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index e345515ef..58616cae1 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -571,7 +571,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -754,10 +754,6 @@ 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 @@ -824,21 +820,28 @@ address.balance - - of - على + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. خطأ في تحميل بيانات العنوان. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1205,23 +1208,13 @@ Terms of Service shared.terms-of-service - - Navigate to - انتقل إلى + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - لرعاية - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1615,6 +1608,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown غير معروف @@ -1741,22 +1748,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size حجم الميم بول diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 1fff39902..40fc72c5b 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -577,7 +577,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -760,10 +760,6 @@ 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 @@ -830,21 +826,28 @@ address.balance - - of - z + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Chyba při načítání údajů o adrese. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1215,23 +1218,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Přejít na + + Navigate to https://mempool.space/about to sponsor 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 + about.navigate-to-sponsor Amount required @@ -1630,6 +1623,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Neznámo @@ -1758,22 +1765,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Velikost Mempoolu diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index 680322997..88b59703b 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -581,7 +581,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -591,6 +591,7 @@ Block : + Block : src/app/components/block/block.component.ts 98 @@ -765,10 +766,6 @@ 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 @@ -836,21 +833,28 @@ address.balance - - of - von + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Fehler beim Laden der Adressdaten. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1230,23 +1234,14 @@ Terms of Service shared.terms-of-service - - Navigate to - Gehe zu + + Navigate to https://mempool.space/about to sponsor + Um zu sponsern, Navigieren Sie zu https://mempool.space/about 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 + about.navigate-to-sponsor Amount required @@ -1570,6 +1565,7 @@ Registered assets + Registrierte Vermögenswerte src/app/assets/assets.component.html 2 @@ -1578,6 +1574,7 @@ Clear + Löschen src/app/assets/assets.component.html 11 @@ -1586,6 +1583,7 @@ Name + Name src/app/assets/assets.component.html 19 @@ -1598,6 +1596,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1610,6 +1609,7 @@ Issuer domain + Ausstellerdomäne src/app/assets/assets.component.html 21 @@ -1622,6 +1622,7 @@ Asset ID + Vermögenswert ID src/app/assets/assets.component.html 22 @@ -1634,6 +1635,7 @@ Issuance TX + Ausgabe TX src/app/assets/assets.component.html 23 @@ -1646,12 +1648,29 @@ Error loading assets data. + Fehler beim Laden der Daten der Vermögenswerte. src/app/assets/assets.component.html 67 Asset data load error + + Identified by payout address: '' + Identifiziert durch die Auszahlungsadresse: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identifiziert durch den Coinbase-Tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Unbekannt @@ -1780,24 +1799,24 @@ dashboard.latest-transactions.USD - - Collapse - Reduzieren - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand Erweitern src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + Reduzieren + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Mempool Größe @@ -2396,6 +2415,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Diese Transaktion könne durch ein Upgrade auf natives SegWit-Bech32 % an Gebühren eingesparen, durch ein Upgrade auf SegWit-P2SH % src/app/components/tx-features/tx-features.component.html 5 @@ -2404,6 +2424,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Diese Transaktion unterstützt Replace-By-Fee (RBF) und ermöglicht damit Gebührenerhöhungen src/app/components/tx-features/tx-features.component.html 8 @@ -2432,6 +2453,7 @@ Only ~ sat/vB was needed to get into this block + Nur ~ sat/vB wurden benötigt, um in diesen Block zu gelangen src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2472,6 +2494,7 @@ year ago + vor einem Jahr src/app/components/time-since/time-since.component.ts 58 @@ -2479,6 +2502,7 @@ month ago + vor einem Monat src/app/components/time-since/time-since.component.ts 59 @@ -2486,6 +2510,7 @@ week ago + vor einer Woche src/app/components/time-since/time-since.component.ts 60 @@ -2493,6 +2518,7 @@ day ago + vor einem Tag src/app/components/time-since/time-since.component.ts 61 @@ -2500,6 +2526,7 @@ hour ago + vor einer Stunde src/app/components/time-since/time-since.component.ts 62 @@ -2507,6 +2534,7 @@ min ago + vor einer Min. src/app/components/time-since/time-since.component.ts 65 @@ -2514,6 +2542,7 @@ minute ago + vor einer Minute src/app/components/time-since/time-since.component.ts 67 @@ -2521,6 +2550,7 @@ sec ago + vor einer Sek. src/app/components/time-since/time-since.component.ts 70 @@ -2528,6 +2558,7 @@ second ago + vor Sekunden src/app/components/time-since/time-since.component.ts 72 @@ -2535,6 +2566,7 @@ years ago + vor Jahren src/app/components/time-since/time-since.component.ts 76 @@ -2542,6 +2574,7 @@ months ago + vor Monaten src/app/components/time-since/time-since.component.ts 77 @@ -2549,6 +2582,7 @@ weeks ago + vor Wochen src/app/components/time-since/time-since.component.ts 78 @@ -2556,6 +2590,7 @@ days ago + vor Tagen src/app/components/time-since/time-since.component.ts 79 @@ -2563,6 +2598,7 @@ hours ago + vor Stunden src/app/components/time-since/time-since.component.ts 80 @@ -2570,6 +2606,7 @@ mins ago + vor Min. src/app/components/time-since/time-since.component.ts 83 @@ -2577,6 +2614,7 @@ minutes ago + vor Minuten src/app/components/time-since/time-since.component.ts 85 @@ -2584,6 +2622,7 @@ secs ago + vor Sek. src/app/components/time-since/time-since.component.ts 88 @@ -2591,6 +2630,7 @@ seconds ago + vor Sekunden src/app/components/time-since/time-since.component.ts 90 @@ -2598,6 +2638,7 @@ BSQ statistics + BSQ-Statistiken src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2609,6 +2650,7 @@ Existing amount + Bestehender Betrag src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2621,6 +2663,7 @@ Minted amount + Geprägte Menge src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2633,6 +2676,7 @@ Burnt amount + Verbrannte Menge src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2645,6 +2689,7 @@ Addresses + Adressen src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2657,6 +2702,7 @@ Unspent TXOs + Unspent TXOs src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2669,6 +2715,7 @@ Spent TXOs + Spent TXOs src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2677,6 +2724,7 @@ Price + Preis src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2689,6 +2737,7 @@ Market cap + Marktkapitalisierung src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2701,6 +2750,7 @@ Address: + Adresse: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2708,6 +2758,7 @@ Block : + Block : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2715,6 +2766,7 @@ Filter + Auswahl src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2722,6 +2774,7 @@ Select all + Alle Auswählen src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2729,6 +2782,7 @@ Unselect all + Auswahl aufheben src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2736,6 +2790,7 @@ Confirmed + Bestätigt src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index c2efb8bdb..22f4acc18 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -531,7 +531,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -702,10 +702,6 @@ 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 @@ -767,19 +763,27 @@ address.balance - - of + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1127,21 +1131,13 @@ Terms of Service shared.terms-of-service - - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1513,6 +1509,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown @@ -1629,22 +1639,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 9c4df9661..2ae11316d 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -577,7 +577,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -760,10 +760,6 @@ 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 @@ -830,21 +826,28 @@ address.balance - - of - de + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Errar cargando datos de dirección src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1215,23 +1218,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Navegar a + + Navigate to https://mempool.space/about to sponsor 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 + about.navigate-to-sponsor Amount required @@ -1630,6 +1623,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Desconocido @@ -1758,22 +1765,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Tamaño de la mempool diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 9e916b85a..4578929ef 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -181,7 +181,7 @@ sat/vB - sat/vB + ‏sat بر vB‏ src/app/components/transaction/transaction.component.html 81 @@ -581,7 +581,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -766,10 +766,6 @@ 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 @@ -837,21 +833,30 @@ address.balance - - of - از + + of transaction + از تراکنش src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + از تراکنش + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. حطا در بازکردن داده‌های آدرس. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -887,6 +892,7 @@ Blocks + بلاک‌ها src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1033,6 +1039,7 @@ API + رابط برنامه‌نویسی نرم‌افزار (API) src/app/components/master-page/master-page.component.html 56 @@ -1045,6 +1052,7 @@ About + درباره src/app/components/master-page/master-page.component.html 59 @@ -1084,6 +1092,7 @@ Stats + آمار src/app/components/master-page/master-page.component.html 35 @@ -1092,6 +1101,7 @@ Dashboard + داشبورد src/app/components/master-page/master-page.component.html 40 @@ -1100,6 +1110,7 @@ Graphs + گراف‌ها src/app/components/master-page/master-page.component.html 46 @@ -1112,6 +1123,7 @@ TV view + نمایش تلویزیونی src/app/components/master-page/master-page.component.html 49 @@ -1124,6 +1136,7 @@ Assets + دارایی‌ها src/app/components/master-page/master-page.component.html 53 @@ -1223,23 +1236,14 @@ Terms of Service shared.terms-of-service - - Navigate to - برای حمایت به + + Navigate to https://mempool.space/about to sponsor + برای حامی شدن به اینجا برو https://mempool.space/about src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - برو - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1324,6 +1328,7 @@ Invert + معکوس src/app/components/statistics/statistics.component.html 43 @@ -1391,6 +1396,7 @@ Next block + بلاک بعدی src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1398,6 +1404,7 @@ Stack of mempool blocks + مجموعه بلاک ممپول src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1405,6 +1412,7 @@ Mempool block + بلاک ممپول src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1430,6 +1438,7 @@ Asset: + دارایی: src/app/components/asset/asset.component.ts 73 @@ -1531,6 +1540,7 @@ Peg In/Out and Burn Transactions + تراکنش‌های سوزاندن و PegIn/Out src/app/components/asset/asset.component.html 75 @@ -1539,6 +1549,7 @@ Issuance and Burn Transactions + تراکنش‌های صدور و سوزاندن src/app/components/asset/asset.component.html 75 @@ -1556,6 +1567,7 @@ Registered assets + دارایی‌های ثبت‌شده src/app/assets/assets.component.html 2 @@ -1564,6 +1576,7 @@ Clear + پاک‌کردن src/app/assets/assets.component.html 11 @@ -1572,6 +1585,7 @@ Name + نام src/app/assets/assets.component.html 19 @@ -1584,6 +1598,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1596,6 +1611,7 @@ Issuer domain + دامنه صادرکننده src/app/assets/assets.component.html 21 @@ -1608,6 +1624,7 @@ Asset ID + شناسه دارایی src/app/assets/assets.component.html 22 @@ -1620,6 +1637,7 @@ Issuance TX + تراکنش صادرکننده src/app/assets/assets.component.html 23 @@ -1632,12 +1650,29 @@ Error loading assets data. + خطا در بارکردن داده‌های دارایی‌ها. src/app/assets/assets.component.html 67 Asset data load error + + Identified by payout address: '' + شناسایی شده با آدرس پرداخت: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + شناسایی شده با برچسب coinbase تراکنش: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown ناشناخته @@ -1766,21 +1801,23 @@ dashboard.latest-transactions.USD - - Collapse + + Expand + بستن src/app/dashboard/dashboard.component.html 131 - dashboard.collapse + dashboard.expand - - Expand + + Collapse + بازکردن src/app/dashboard/dashboard.component.html 132 - dashboard.expand + dashboard.collapse Mempool size @@ -1804,6 +1841,7 @@ block + بلاک src/app/dashboard/dashboard.component.html 164 @@ -1812,6 +1850,7 @@ blocks + بلاک src/app/dashboard/dashboard.component.html 164 @@ -1848,6 +1887,7 @@ API Service + خدمات API src/app/components/api-docs/api-docs.component.html 4 @@ -2225,6 +2265,7 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + دریافت لیست خروجی تراکنش‌های مرتبط با آدرس/چکیده‌اسکریپت. فیلدهای در دسترس: txid, vout, value, و status (به همراه وضعیت تراکنش پرداخت‌کننده). همچنین یک فیلد valuecommitmentوجود دارد که ممکن است به جای value قرار بگیرد، به اضافه این فیلدها: asset/assetcommitment, nonce/noncecommitment, surjection_proof, و range_proof. src/app/components/api-docs/api-docs.component.html 205 @@ -2250,6 +2291,7 @@ Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + تراکنش‌های مرتبط با دارایی Liquid مشخص شده را برمی‌گرداند. برای دارایی‌های اصیل شبکه، لیستی از peg-in ها، peg-outها و تراکنش‌های سوزاندن برمی‌گرداند. برای دارایی‌هایی که کاربر آن را صادر کرده است، لیستی از صدورها، باز صدورها و تراکنش‌های سوزاندن برمی‌گرداند. شامل تراکنش‌های معمولی برای انتقال این دارایی نمی‌شود. src/app/components/api-docs/api-docs.component.html 227 @@ -2257,6 +2299,11 @@ 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 مشخص بشود، مقدار کل را به صورت decimal با توجه به تقسیم‌پذیری دارایی برمی‌گرداند. در غیر این صورت با واحدهای پایه برمی‌گرداند. src/app/components/api-docs/api-docs.component.html 231 @@ -2330,6 +2377,7 @@ Copied! + کپی شد! src/app/components/clipboard/clipboard.component.ts 15 @@ -2337,6 +2385,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + این تراکنش با استفاده کردن از SegWit-Bech32 حدودا درصد در کارمزد صرفه‌جویی کرده است src/app/components/tx-features/tx-features.component.html 1 @@ -2363,6 +2412,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + این تراکنش درصد با استفاده کردن از SegWit در کارمزد صرفه‌جویی کرده و می‌تونست با SegWit-Bech32 تا درصد بیشتر هم صرفه‌جویی کنه! src/app/components/tx-features/tx-features.component.html 3 @@ -2371,6 +2421,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + این تراکنش می‌تونست با استفاده کردن از SegWit-P2SH تا درصد یا SegWit-Bech32 تا درصد در کارمزد صرفه‌جویی کنه! src/app/components/tx-features/tx-features.component.html 5 @@ -2379,6 +2430,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + این تراکنش از امکان جایگزینی با کارمزد (RBF) پشتیبانی می‌کند و اجازه افزایش کارمزد را می‌دهد. src/app/components/tx-features/tx-features.component.html 8 @@ -2407,6 +2459,7 @@ Only ~ sat/vB was needed to get into this block + تنها به حدود ساتوشی بر بایت مجازی sat/vB نیاز بود تا در این بلاک قرار بگیرد src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2447,6 +2500,7 @@ year ago + سال پیش src/app/components/time-since/time-since.component.ts 58 @@ -2454,6 +2508,7 @@ month ago + ماه پیش src/app/components/time-since/time-since.component.ts 59 @@ -2461,6 +2516,7 @@ week ago + هفته پیش src/app/components/time-since/time-since.component.ts 60 @@ -2468,6 +2524,7 @@ day ago + روز پیش src/app/components/time-since/time-since.component.ts 61 @@ -2475,6 +2532,7 @@ hour ago + ساعت پیش src/app/components/time-since/time-since.component.ts 62 @@ -2482,6 +2540,7 @@ min ago + دقیقه پیش src/app/components/time-since/time-since.component.ts 65 @@ -2489,6 +2548,7 @@ minute ago + دقیقه پیش src/app/components/time-since/time-since.component.ts 67 @@ -2496,6 +2556,7 @@ sec ago + ثانیه پیش src/app/components/time-since/time-since.component.ts 70 @@ -2503,6 +2564,7 @@ second ago + ثانیه پیش src/app/components/time-since/time-since.component.ts 72 @@ -2510,6 +2572,7 @@ years ago + سال پیش src/app/components/time-since/time-since.component.ts 76 @@ -2517,6 +2580,7 @@ months ago + ماه پیش src/app/components/time-since/time-since.component.ts 77 @@ -2524,6 +2588,7 @@ weeks ago + هفته پیش src/app/components/time-since/time-since.component.ts 78 @@ -2531,6 +2596,7 @@ days ago + روز پیش src/app/components/time-since/time-since.component.ts 79 @@ -2538,6 +2604,7 @@ hours ago + ساعت پیش src/app/components/time-since/time-since.component.ts 80 @@ -2545,6 +2612,7 @@ mins ago + دقیقه پیش src/app/components/time-since/time-since.component.ts 83 @@ -2552,6 +2620,7 @@ minutes ago + دقیقه پیش src/app/components/time-since/time-since.component.ts 85 @@ -2559,6 +2628,7 @@ secs ago + ثانیه پیش src/app/components/time-since/time-since.component.ts 88 @@ -2566,6 +2636,7 @@ seconds ago + ثانیه پیش src/app/components/time-since/time-since.component.ts 90 @@ -2573,6 +2644,7 @@ BSQ statistics + آمارهای BSQ src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2584,6 +2656,7 @@ Existing amount + مقدار موجود src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2596,6 +2669,7 @@ Minted amount + مقدار استخراج‌شده src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2608,6 +2682,7 @@ Burnt amount + مقدار سوزانده‌شده src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2620,6 +2695,7 @@ Addresses + آدرس‌ها src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2632,6 +2708,7 @@ Unspent TXOs + خروجی تراکنش‌های خرج‌نشده src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2644,6 +2721,7 @@ Spent TXOs + خروجی تراکنش‌های خرج‌شده src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2652,6 +2730,7 @@ Price + قیمت src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2664,6 +2743,7 @@ Market cap + حجم بازار src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2676,6 +2756,7 @@ Address: + آدرس: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2683,6 +2764,7 @@ Block : + بلاک : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2690,6 +2772,7 @@ Filter + پالایش src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2697,6 +2780,7 @@ Select all + انتخاب همه src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2704,6 +2788,7 @@ Unselect all + لغو انتخاب همه src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2711,6 +2796,7 @@ Confirmed + تأیید شده src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 8b30d450e..05769e68b 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -577,7 +577,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -760,10 +760,6 @@ 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 @@ -830,21 +826,28 @@ address.balance - - of - De + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Erreur dans le chargement des données de l'adresse src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1214,23 +1217,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Naviguer vers + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - pour sponsoriser - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1629,6 +1622,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Inconnue @@ -1757,22 +1764,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Taille du mempool diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index c537578d8..386a8bd26 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -551,7 +551,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -722,10 +722,6 @@ 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 @@ -787,19 +783,27 @@ address.balance - - of + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1147,21 +1151,13 @@ Terms of Service shared.terms-of-service - - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1533,6 +1529,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown @@ -1649,22 +1659,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index b0d15fd2f..42298ea01 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -581,7 +581,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -766,10 +766,6 @@ 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 @@ -837,21 +833,30 @@ address.balance - - of - / + + of transaction + / トランザクション src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + / トランザクション + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. アドレスデータを読み込み中にエラーが発生しました。 src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1231,23 +1236,14 @@ Terms of Service shared.terms-of-service - - Navigate to - 案内する + + Navigate to https://mempool.space/about to sponsor + スポンサーになるには、https://mempool.space/aboutに移動します。 src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - スポンサーに対して - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1661,6 +1657,22 @@ Asset data load error + + Identified by payout address: '' + コインベースアドレスで識別: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + コインベースタグで識別: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown 未知 @@ -1789,21 +1801,23 @@ dashboard.latest-transactions.USD - - Collapse + + Expand + 展開 src/app/dashboard/dashboard.component.html 131 - dashboard.collapse + dashboard.expand - - Expand + + Collapse + 折りたたみ src/app/dashboard/dashboard.component.html 132 - dashboard.expand + dashboard.collapse Mempool size @@ -2376,7 +2390,7 @@ SegWit - セグウィット + SegWit src/app/components/tx-features/tx-features.component.html 1 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index c03b5320b..d638078c2 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -578,7 +578,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -761,10 +761,6 @@ 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 @@ -831,21 +827,28 @@ address.balance - - of - av + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Lasting av adressedata feilet. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1216,23 +1219,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Naviger til + + Navigate to https://mempool.space/about to sponsor 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 + about.navigate-to-sponsor Amount required @@ -1631,6 +1624,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Ukjent @@ -1759,22 +1766,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Mempool størrelse diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 9bec28bee..2d344974a 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -573,7 +573,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -756,10 +756,6 @@ 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 @@ -826,21 +822,28 @@ address.balance - - of - van + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Fout bij het laden van adresdata. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1211,23 +1214,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Navigeer naar + + Navigate to https://mempool.space/about to sponsor 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 + about.navigate-to-sponsor Amount required @@ -1622,6 +1615,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Onbekend @@ -1750,22 +1757,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Mempoolgrootte diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 1818a932c..f0268df8e 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -560,7 +560,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -731,10 +731,6 @@ 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 @@ -796,19 +792,27 @@ address.balance - - of + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1156,21 +1160,13 @@ Terms of Service shared.terms-of-service - - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1542,6 +1538,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown @@ -1658,22 +1668,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index f19872059..25a4e5671 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -577,7 +577,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -758,10 +758,6 @@ 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 @@ -828,21 +824,28 @@ address.balance - - of - de + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Erro ao carregar os dados do endereço. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1211,23 +1214,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Navegar para + + Navigate to https://mempool.space/about to sponsor 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 + about.navigate-to-sponsor Amount required @@ -1626,6 +1619,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Desconhecido @@ -1754,22 +1761,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Tamanho do mempool diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index e501afaff..36d456162 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -578,7 +578,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -761,10 +761,6 @@ 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 @@ -831,21 +827,28 @@ address.balance - - of - od + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Napaka pri nalaganju podatkov naslova. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1216,23 +1219,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Pojdite na + + Navigate to https://mempool.space/about to sponsor 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 + about.navigate-to-sponsor Amount required @@ -1631,6 +1624,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Neznano @@ -1759,22 +1766,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Mempool velikost diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index eaf6798ed..5f26790c9 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -581,7 +581,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -766,10 +766,6 @@ 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 @@ -803,7 +799,7 @@ Address - Address + Adress src/app/components/address/address.component.html 2 @@ -837,21 +833,30 @@ address.balance - - of - av + + of transaction + av transaktion src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + av transaktioner + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Kunde inte ladda addressdata. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1025,7 +1030,7 @@ blocks - blocks + block src/app/components/mempool-blocks/mempool-blocks.component.html 24 @@ -1231,23 +1236,14 @@ Terms of Service shared.terms-of-service - - Navigate to - Navigera till + + Navigate to https://mempool.space/about to sponsor + Navigera till https://mempool.space/about för att sponsra 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 + about.navigate-to-sponsor Amount required @@ -1661,6 +1657,22 @@ Asset data load error + + Identified by payout address: '' + Identiferad av utbetalningsadressen: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identifierad av Coinbase-taggen: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Okänd @@ -1789,24 +1801,24 @@ dashboard.latest-transactions.USD - - Collapse - Kollapsa - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand Expandera src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + Kollapsa + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Mempoolstorlek diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index fa4044955..152352552 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -569,7 +569,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -750,10 +750,6 @@ 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 @@ -820,21 +816,28 @@ address.balance - - of - nun + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Adres datası yüklenirken hata oluştu. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1203,23 +1206,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Geç + + Navigate to https://mempool.space/about to sponsor 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 + about.navigate-to-sponsor Amount required @@ -1618,6 +1611,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Bilinmeyen @@ -1746,22 +1753,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Mempool (bekleyen işlem havuzu) boyutu diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 999ac57e5..485f9eb99 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -577,7 +577,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -760,10 +760,6 @@ 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 @@ -830,21 +826,28 @@ address.balance - - of - з + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Не вдалося завантажити дані про адресу. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1215,23 +1218,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Перейти до + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - спонсорувати - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1630,6 +1623,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Невідомо @@ -1758,22 +1765,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Розмір мемпулу diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index a0bc30691..7d4ddd99b 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -577,7 +577,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -760,10 +760,6 @@ 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 @@ -830,21 +826,28 @@ address.balance - - of - of + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Error loading address data. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1215,23 +1218,13 @@ Terms of Service shared.terms-of-service - - Navigate to - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1630,6 +1623,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Unknown @@ -1758,22 +1765,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size Mempool size diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 6c54c22b5..83c1dbbe4 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -569,7 +569,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -579,6 +579,7 @@ Block : + 区块 : src/app/components/block/block.component.ts 98 @@ -751,10 +752,6 @@ 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 @@ -822,20 +819,28 @@ address.balance - - of + + of transaction src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. 在加载地址数据时出错 src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data @@ -1205,22 +1210,13 @@ Terms of Service shared.terms-of-service - - Navigate to - 导航 + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1611,6 +1607,20 @@ Asset data load error + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown 未知 @@ -1737,22 +1747,22 @@ dashboard.latest-transactions.USD - - Collapse - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.collapse - Expand src/app/dashboard/dashboard.component.html - 132 + 131 dashboard.expand + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size 内存池大小 @@ -1775,6 +1785,7 @@ block + 个区块 src/app/dashboard/dashboard.component.html 164 @@ -1783,6 +1794,7 @@ blocks + 个区块 src/app/dashboard/dashboard.component.html 164 From 1fc1b4b86e066d5ac399ae05eba6af91f780aa78 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 5 Dec 2020 02:01:31 +0700 Subject: [PATCH 27/42] i18n: Asset search box --- frontend/src/app/assets/assets.component.html | 2 +- frontend/src/locale/messages.xlf | 310 +++++++++--------- 2 files changed, 160 insertions(+), 152 deletions(-) diff --git a/frontend/src/app/assets/assets.component.html b/frontend/src/app/assets/assets.component.html index c5332bbd1..fb7e54fd6 100644 --- a/frontend/src/app/assets/assets.component.html +++ b/frontend/src/app/assets/assets.component.html @@ -6,7 +6,7 @@
- +
diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 121429c7b..5fd44f7a8 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -1121,14 +1121,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1434,6 +1434,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1568,153 +1576,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2151,6 +2012,153 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! From 4d54723472c50207652b405eb6162c79339799ec Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 5 Dec 2020 02:08:54 +0700 Subject: [PATCH 28/42] Fix for changing locale on other networks than mainnet. fixes #253 --- frontend/src/app/dashboard/dashboard.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts index 6267b9ed1..132a8a24b 100644 --- a/frontend/src/app/dashboard/dashboard.component.ts +++ b/frontend/src/app/dashboard/dashboard.component.ts @@ -259,6 +259,6 @@ export class DashboardComponent implements OnInit { try { document.cookie = `lang=${language}; expires=Thu, 18 Dec 2050 12:00:00 UTC; path=/`; } catch (e) { } - this.document.location.href = (language === 'en' ? '/' : '/' + language); + this.document.location.href = `${language === 'en' ? '' : '/' + language}/${this.stateService.network}`; } } From 1af1f7211e704a5a95d1038b9f5479fc513affd5 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 5 Dec 2020 02:32:16 +0700 Subject: [PATCH 29/42] Remove extra garbage characters from OP_RETURN tooltip. fixes #254 --- .../transactions-list/transactions-list.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0db4eec8b..2f4301cf3 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -130,7 +130,7 @@ - OP_RETURN {{ vout.scriptpubkey_asm | hex2ascii }} + OP_RETURN {{ vout.scriptpubkey_asm | hex2ascii }} {{ vout.scriptpubkey_type | scriptpubkeyType }} From 94a5e8edaecfa0ebc489f310d154eb58f0c70710 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 5 Dec 2020 11:58:22 +0700 Subject: [PATCH 30/42] i18n update --- frontend/src/locale/messages.ar.xlf | 371 +++++++++++--------- frontend/src/locale/messages.cs.xlf | 424 +++++++++++++--------- frontend/src/locale/messages.de.xlf | 359 ++++++++++--------- frontend/src/locale/messages.en_US.xlf | 310 +++++++++-------- frontend/src/locale/messages.es.xlf | 336 +++++++++--------- frontend/src/locale/messages.fa.xlf | 353 ++++++++++--------- frontend/src/locale/messages.fr.xlf | 336 +++++++++--------- frontend/src/locale/messages.hr.xlf | 310 +++++++++-------- frontend/src/locale/messages.ja.xlf | 344 +++++++++--------- frontend/src/locale/messages.nb.xlf | 416 +++++++++++++--------- frontend/src/locale/messages.nl.xlf | 336 +++++++++--------- frontend/src/locale/messages.pl.xlf | 310 +++++++++-------- frontend/src/locale/messages.pt.xlf | 336 +++++++++--------- frontend/src/locale/messages.sl.xlf | 418 +++++++++++++--------- frontend/src/locale/messages.sv.xlf | 347 +++++++++--------- frontend/src/locale/messages.tr.xlf | 336 +++++++++--------- frontend/src/locale/messages.uk.xlf | 336 +++++++++--------- frontend/src/locale/messages.vi.xlf | 465 +++++++++---------------- frontend/src/locale/messages.zh.xlf | 336 +++++++++--------- 19 files changed, 3531 insertions(+), 3248 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 58616cae1..4d42db128 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -3,6 +3,7 @@ Transaction: + صفقه src/app/components/transaction/transaction.component.ts 48 @@ -122,6 +123,7 @@ Virtual size + الحجم الافتراضي src/app/components/transaction/transaction.component.html 181 @@ -233,7 +235,7 @@ Included in block - المدرجة في الكتلة + مدرجة في الكتلة src/app/components/transaction/transaction.component.html 51 @@ -330,6 +332,7 @@ block + كتله src/app/components/transaction/transaction.component.html 126 @@ -360,6 +363,7 @@ blocks + الكتله src/app/components/transaction/transaction.component.html 289 @@ -875,6 +879,7 @@ Blocks + كتل src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1197,14 +1202,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1532,6 +1537,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1670,163 +1683,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2274,8 +2130,168 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + كتل + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! + منسوخ! src/app/components/clipboard/clipboard.component.ts 15 @@ -2384,6 +2400,7 @@ Just now + الآن src/app/components/time-since/time-since.component.ts 49 @@ -2391,6 +2408,7 @@ year ago + قبل سنه src/app/components/time-since/time-since.component.ts 58 @@ -2398,6 +2416,7 @@ month ago + قبل شهر src/app/components/time-since/time-since.component.ts 59 @@ -2405,6 +2424,7 @@ week ago + قبل اسبوع src/app/components/time-since/time-since.component.ts 60 @@ -2412,6 +2432,7 @@ day ago + قبل يوم src/app/components/time-since/time-since.component.ts 61 @@ -2419,6 +2440,7 @@ hour ago + قبل ساعه src/app/components/time-since/time-since.component.ts 62 @@ -2426,6 +2448,7 @@ min ago + قبل دقيقه src/app/components/time-since/time-since.component.ts 65 @@ -2433,6 +2456,7 @@ minute ago + قبل دقيقه src/app/components/time-since/time-since.component.ts 67 @@ -2440,6 +2464,7 @@ sec ago + قبل ثانيه src/app/components/time-since/time-since.component.ts 70 @@ -2447,6 +2472,7 @@ second ago + قبل ثانيه src/app/components/time-since/time-since.component.ts 72 @@ -2454,6 +2480,7 @@ years ago + قبل سنوات src/app/components/time-since/time-since.component.ts 76 @@ -2461,6 +2488,7 @@ months ago + قبل اشهر src/app/components/time-since/time-since.component.ts 77 @@ -2468,6 +2496,7 @@ weeks ago + قبل اسابيع src/app/components/time-since/time-since.component.ts 78 @@ -2475,6 +2504,7 @@ days ago + قبل ايام src/app/components/time-since/time-since.component.ts 79 @@ -2482,6 +2512,7 @@ hours ago + قبل ساعات src/app/components/time-since/time-since.component.ts 80 @@ -2489,6 +2520,7 @@ mins ago + قبل دقائق src/app/components/time-since/time-since.component.ts 83 @@ -2496,6 +2528,7 @@ minutes ago + قبل دقائق src/app/components/time-since/time-since.component.ts 85 @@ -2503,6 +2536,7 @@ secs ago + قبل ثوان src/app/components/time-since/time-since.component.ts 88 @@ -2510,6 +2544,7 @@ seconds ago + قبل ثوان src/app/components/time-since/time-since.component.ts 90 @@ -2528,6 +2563,7 @@ Existing amount + المبلغ الحالي src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2540,6 +2576,7 @@ Minted amount + الكمية المسكوكة src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2552,6 +2589,7 @@ Burnt amount + الكمية المحروقه src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2564,6 +2602,7 @@ Addresses + العناوين src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2596,6 +2635,7 @@ Price + السعر src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2608,6 +2648,7 @@ Market cap + القيمة السوقية src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2620,6 +2661,7 @@ Address: + العنوان: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2627,6 +2669,7 @@ Block : + الكتله : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2634,6 +2677,7 @@ Filter + منقي src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2641,6 +2685,7 @@ Select all + تحديد الكل src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2648,6 +2693,7 @@ Unselect all + الغاء تحديد الكل src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2655,6 +2701,7 @@ Confirmed + تم تأكيد src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 40fc72c5b..37b593161 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -3,6 +3,7 @@ Transaction: + Transakce: src/app/components/transaction/transaction.component.ts 48 @@ -122,6 +123,7 @@ Virtual size + Virtuální velikost src/app/components/transaction/transaction.component.html 181 @@ -317,7 +319,7 @@ minutes - minut(y) + minut src/app/components/transaction/transaction.component.html 126 @@ -331,6 +333,7 @@ block + blok src/app/components/transaction/transaction.component.html 126 @@ -361,6 +364,7 @@ blocks + bloků src/app/components/transaction/transaction.component.html 289 @@ -587,6 +591,7 @@ Block : + Blok : src/app/components/block/block.component.ts 98 @@ -686,6 +691,7 @@ Based on average native segwit transaction of 140 vBytes + Na základě průměrné transakce nativního segwitu 140 vBytů src/app/components/block/block.component.html 46 @@ -785,6 +791,7 @@ Address: + Adresa: src/app/components/address/address.component.ts 64 @@ -828,6 +835,7 @@ of transaction + z transakce src/app/components/address/address.component.html 48 @@ -836,6 +844,7 @@ of transactions + z transakcí src/app/components/address/address.component.html 49 @@ -862,6 +871,7 @@ Search + Vyhledávání src/app/components/search-form/search-form.component.html 7 @@ -882,6 +892,7 @@ Blocks + Bloky src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -987,7 +998,7 @@ In - V + Za src/app/components/mempool-blocks/mempool-blocks.component.html 17 @@ -1010,7 +1021,7 @@ minutes - minut(y) + minut src/app/components/mempool-blocks/mempool-blocks.component.html 20 @@ -1028,6 +1039,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1040,6 +1052,7 @@ About + O projektu src/app/components/master-page/master-page.component.html 59 @@ -1079,6 +1092,7 @@ Stats + Statistiky src/app/components/master-page/master-page.component.html 35 @@ -1087,6 +1101,7 @@ Dashboard + Rozcestník src/app/components/master-page/master-page.component.html 40 @@ -1095,6 +1110,7 @@ Graphs + Grafy src/app/components/master-page/master-page.component.html 46 @@ -1107,6 +1123,7 @@ TV view + TV pohled src/app/components/master-page/master-page.component.html 49 @@ -1119,6 +1136,7 @@ Assets + Aktiva src/app/components/master-page/master-page.component.html 53 @@ -1207,19 +1225,20 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service Navigate to https://mempool.space/about to sponsor + Přejít na https://mempool.space/about na sponzory src/app/components/about/about.component.html 65 @@ -1309,6 +1328,7 @@ Invert + Převrátit src/app/components/statistics/statistics.component.html 43 @@ -1376,6 +1396,7 @@ Next block + Další blok src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1383,6 +1404,7 @@ Stack of mempool blocks + Zásobník mempool bloků src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1390,6 +1412,7 @@ Mempool block + Mempool blok src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1415,6 +1438,7 @@ Asset: + Aktivum: src/app/components/asset/asset.component.ts 73 @@ -1516,6 +1540,7 @@ Peg In/Out and Burn Transactions + Peg In/Out a spalování transakcí src/app/components/asset/asset.component.html 75 @@ -1524,6 +1549,7 @@ Issuance and Burn Transactions + Vydávání a spalování transakcí src/app/components/asset/asset.component.html 75 @@ -1541,14 +1567,25 @@ Registered assets + Registrovaná aktiva src/app/assets/assets.component.html 2 Registered assets page header + + Search asset + Vyhledat aktivum + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear + Vymazat src/app/assets/assets.component.html 11 @@ -1557,6 +1594,7 @@ Name + Jméno src/app/assets/assets.component.html 19 @@ -1569,6 +1607,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1581,6 +1620,7 @@ Issuer domain + Vydavatelská doména src/app/assets/assets.component.html 21 @@ -1593,6 +1633,7 @@ Asset ID + ID aktiva src/app/assets/assets.component.html 22 @@ -1605,6 +1646,7 @@ Issuance TX + Vydavatelské TX src/app/assets/assets.component.html 23 @@ -1617,6 +1659,7 @@ Error loading assets data. + Chyba při načítání dat aktiv. src/app/assets/assets.component.html 67 @@ -1625,6 +1668,7 @@ Identified by payout address: '' + Identifikováno podle výplatní adresy: '' src/app/components/miner/miner.component.ts 42 @@ -1632,6 +1676,7 @@ Identified by coinbase tag: '' + Identifikováno štítkem coinbase: '' src/app/components/miner/miner.component.ts 52 @@ -1685,168 +1730,9 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service + API Služba src/app/components/api-docs/api-docs.component.html 4 @@ -2330,8 +2216,173 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + Rozšířit + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Zavřít + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + bloků + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! + Zkopírováno! src/app/components/clipboard/clipboard.component.ts 15 @@ -2339,6 +2390,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Tato transakce ušetřila % na poplatcích pomocí nativního SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 1 @@ -2365,6 +2417,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Tato transakce ušetřila % na poplatcích pomocí SegWit a mohla by ušetřit o % více úplným upgradem na nativní SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 3 @@ -2373,6 +2426,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Tato transakce by mohla ušetřit % na poplatcích upgradem na nativní SegWit-Bech32 nebo % upgradem na SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -2381,6 +2435,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Tato transakce podporuje funkci Replace-By-Fee (RBF), která umožňuje navýšení poplatků src/app/components/tx-features/tx-features.component.html 8 @@ -2409,6 +2464,7 @@ Only ~ sat/vB was needed to get into this block + Jen ~ sat/vB bylo potřeba pro dostání se do tohoto bloku src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2441,6 +2497,7 @@ Just now + Právě teď src/app/components/time-since/time-since.component.ts 49 @@ -2448,6 +2505,7 @@ year ago + před rokem src/app/components/time-since/time-since.component.ts 58 @@ -2455,6 +2513,7 @@ month ago + před měsícem src/app/components/time-since/time-since.component.ts 59 @@ -2462,6 +2521,7 @@ week ago + před týdnem src/app/components/time-since/time-since.component.ts 60 @@ -2469,6 +2529,7 @@ day ago + před dnem src/app/components/time-since/time-since.component.ts 61 @@ -2476,6 +2537,7 @@ hour ago + před hodinou src/app/components/time-since/time-since.component.ts 62 @@ -2483,6 +2545,7 @@ min ago + před min. src/app/components/time-since/time-since.component.ts 65 @@ -2490,6 +2553,7 @@ minute ago + před minutou src/app/components/time-since/time-since.component.ts 67 @@ -2497,6 +2561,7 @@ sec ago + před s. src/app/components/time-since/time-since.component.ts 70 @@ -2504,6 +2569,7 @@ second ago + před sekundou src/app/components/time-since/time-since.component.ts 72 @@ -2511,6 +2577,7 @@ years ago + před roky src/app/components/time-since/time-since.component.ts 76 @@ -2518,6 +2585,7 @@ months ago + před měsíci src/app/components/time-since/time-since.component.ts 77 @@ -2525,6 +2593,7 @@ weeks ago + před týdny src/app/components/time-since/time-since.component.ts 78 @@ -2532,6 +2601,7 @@ days ago + před dny src/app/components/time-since/time-since.component.ts 79 @@ -2539,6 +2609,7 @@ hours ago + před hodinami src/app/components/time-since/time-since.component.ts 80 @@ -2546,6 +2617,7 @@ mins ago + před min. src/app/components/time-since/time-since.component.ts 83 @@ -2553,6 +2625,7 @@ minutes ago + před minutami src/app/components/time-since/time-since.component.ts 85 @@ -2560,6 +2633,7 @@ secs ago + před s. src/app/components/time-since/time-since.component.ts 88 @@ -2567,6 +2641,7 @@ seconds ago + před sekundami src/app/components/time-since/time-since.component.ts 90 @@ -2574,6 +2649,7 @@ BSQ statistics + BSQ statistiky src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2585,6 +2661,7 @@ Existing amount + Stávající částka src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2597,6 +2674,7 @@ Minted amount + Vydané množství src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2609,6 +2687,7 @@ Burnt amount + Spálené množství src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2621,6 +2700,7 @@ Addresses + Adresy src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2633,6 +2713,7 @@ Unspent TXOs + Neutracené TXO src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2645,6 +2726,7 @@ Spent TXOs + Utracené TXO src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2653,6 +2735,7 @@ Price + Cena src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2665,6 +2748,7 @@ Market cap + Tržní kapitalizace src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2677,6 +2761,7 @@ Address: + Adresa: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2684,6 +2769,7 @@ Block : + Blok : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2691,6 +2777,7 @@ Filter + FIltr src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2698,6 +2785,7 @@ Select all + Vybrat vše src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2705,6 +2793,7 @@ Unselect all + Odznačit vše src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2712,6 +2801,7 @@ Confirmed + Potvrzeno src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index 88b59703b..f1e110ab1 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -84,7 +84,7 @@ Inputs & Outputs - Eingänge & Ausgänge + Inputs und Outputs src/app/components/transaction/transaction.component.html 164 @@ -835,6 +835,7 @@ of transaction + Transaktion von src/app/components/address/address.component.html 48 @@ -843,6 +844,7 @@ of transactions + von Transaktionen src/app/components/address/address.component.html 49 @@ -1223,14 +1225,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1454,7 +1456,7 @@ Precision - Präzision + Nachkommastellen src/app/components/asset/asset.component.html 24 @@ -1514,7 +1516,7 @@ Issued amount - Ausgegebener Betrag + Ausgegebene Menge src/app/components/asset/asset.component.html 51 @@ -1572,6 +1574,15 @@ Registered assets page header + + Search asset + Asset suchen + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear Löschen @@ -1719,170 +1730,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - Erweitern - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - Reduzieren - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - Blöcke - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service API-Service @@ -2369,6 +2216,170 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + Erweitern + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Reduzieren + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + Blöcke + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! Kopiert! @@ -2406,7 +2417,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 - Diese Transaktion konnte mit SegWit % an Gebühren einsparen, und könnte mit einem vollständiges Upgrade auf natives SegWit-Bech32 % zusätzlich einsparen + Diese Transaktion könnte mit SegWit % an Gebühren einsparen, und könnte mit einem vollständiges Upgrade auf natives SegWit-Bech32 % zusätzlich einsparen src/app/components/tx-features/tx-features.component.html 3 @@ -2650,7 +2661,7 @@ Existing amount - Bestehender Betrag + Bestehender Menge src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2774,7 +2785,7 @@ Select all - Alle Auswählen + Alles Auswählen src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 22f4acc18..1cbce9ef3 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -1120,14 +1120,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1433,6 +1433,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1567,153 +1575,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2150,6 +2011,153 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 2ae11316d..fb7661196 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -1207,14 +1207,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1547,6 +1547,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1685,166 +1693,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2330,6 +2178,166 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 4578929ef..bbfe4c68d 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -1225,14 +1225,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1319,7 +1319,7 @@ Mempool by vBytes (sat/vByte) - وضعیت ممپول به vByte (ساتوشی به vByte) + وضعیت ممپول به vByte (ساتوشی بر vByte) src/app/components/statistics/statistics.component.html 16 @@ -1574,6 +1574,15 @@ Registered assets page header + + Search asset + جستجوی دارایی + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear پاک‌کردن @@ -1721,170 +1730,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - بستن - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - بازکردن - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - بلاک - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service خدمات API @@ -2375,6 +2220,170 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + بستن + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + بازکردن + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + بلاک + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! کپی شد! @@ -2412,7 +2421,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 - این تراکنش درصد با استفاده کردن از SegWit در کارمزد صرفه‌جویی کرده و می‌تونست با SegWit-Bech32 تا درصد بیشتر هم صرفه‌جویی کنه! + این تراکنش با استفاده کردن از SegWit درصد در کارمزد صرفه‌جویی کرده‌است. در صورت استفاده از SegWit-Bech32 این صرفه‌جویی تا درصد بیشتر افزایش پیدا می‌کرد! src/app/components/tx-features/tx-features.component.html 3 @@ -2421,7 +2430,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH - این تراکنش می‌تونست با استفاده کردن از SegWit-P2SH تا درصد یا SegWit-Bech32 تا درصد در کارمزد صرفه‌جویی کنه! + این تراکنش در صورت استفاده کردن از SegWit-P2SH تا درصد یا SegWit-Bech32 تا درصد کارمزد کمتری پرداخت می‌کرد! src/app/components/tx-features/tx-features.component.html 5 @@ -2459,7 +2468,7 @@ Only ~ sat/vB was needed to get into this block - تنها به حدود ساتوشی بر بایت مجازی sat/vB نیاز بود تا در این بلاک قرار بگیرد + تنها به حدود ساتوشی بر بایت مجازی نیاز بود تا در این بلاک قرار بگیرد src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 05769e68b..810ace42c 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -1206,14 +1206,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1546,6 +1546,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1684,166 +1692,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2286,6 +2134,166 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index 386a8bd26..1328d5730 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -1140,14 +1140,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1453,6 +1453,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1587,153 +1595,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2170,6 +2031,153 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 42298ea01..40a6d5976 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -1225,14 +1225,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1574,6 +1574,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear クリアー @@ -1721,170 +1729,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - 展開 - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - 折りたたみ - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - ブロック - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service APIサービス @@ -2371,6 +2215,170 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + 展開 + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + 折りたたみ + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + ブロック + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! コピー されました! diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index d638078c2..cdf10b23d 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -3,6 +3,7 @@ Transaction: + Transaksjon: src/app/components/transaction/transaction.component.ts 48 @@ -332,6 +333,7 @@ block + blokk src/app/components/transaction/transaction.component.html 126 @@ -362,6 +364,7 @@ blocks + blokker src/app/components/transaction/transaction.component.html 289 @@ -588,6 +591,7 @@ Block : + Blokk : src/app/components/block/block.component.ts 98 @@ -687,6 +691,7 @@ Based on average native segwit transaction of 140 vBytes + Basert på gjennomsnittlig native segwit-transaksjon på 140 vBytes src/app/components/block/block.component.html 46 @@ -786,6 +791,7 @@ Address: + Adresse: src/app/components/address/address.component.ts 64 @@ -829,6 +835,7 @@ of transaction + av transaksjon src/app/components/address/address.component.html 48 @@ -837,6 +844,7 @@ of transactions + av transaksjoner src/app/components/address/address.component.html 49 @@ -863,6 +871,7 @@ Search + Søk src/app/components/search-form/search-form.component.html 7 @@ -883,6 +892,7 @@ Blocks + Blokker src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1029,6 +1039,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1041,6 +1052,7 @@ About + Om src/app/components/master-page/master-page.component.html 59 @@ -1080,6 +1092,7 @@ Stats + Statistikk src/app/components/master-page/master-page.component.html 35 @@ -1088,6 +1101,7 @@ Dashboard + Dashbord src/app/components/master-page/master-page.component.html 40 @@ -1096,6 +1110,7 @@ Graphs + Grafer src/app/components/master-page/master-page.component.html 46 @@ -1108,6 +1123,7 @@ TV view + TV-modus src/app/components/master-page/master-page.component.html 49 @@ -1120,6 +1136,7 @@ Assets + Ressurser src/app/components/master-page/master-page.component.html 53 @@ -1208,19 +1225,20 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service Navigate to https://mempool.space/about to sponsor + Gå til https://mempool.space/about for å sponse src/app/components/about/about.component.html 65 @@ -1310,6 +1328,7 @@ Invert + Inverter src/app/components/statistics/statistics.component.html 43 @@ -1377,6 +1396,7 @@ Next block + Neste blokk src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1384,6 +1404,7 @@ Stack of mempool blocks + Bunke med mempool blokker src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1391,6 +1412,7 @@ Mempool block + Mempool-blokk src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1416,6 +1438,7 @@ Asset: + Ressurs: src/app/components/asset/asset.component.ts 73 @@ -1517,6 +1540,7 @@ Peg In/Out and Burn Transactions + Peg inn / ut og brenn transaksjoner src/app/components/asset/asset.component.html 75 @@ -1525,6 +1549,7 @@ Issuance and Burn Transactions + Utstedelse og forbrennings transaksjoner src/app/components/asset/asset.component.html 75 @@ -1542,14 +1567,25 @@ Registered assets + Registrerte ressurser src/app/assets/assets.component.html 2 Registered assets page header + + Search asset + Søk ressurs + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear + Fjern src/app/assets/assets.component.html 11 @@ -1558,6 +1594,7 @@ Name + Navn src/app/assets/assets.component.html 19 @@ -1570,6 +1607,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1582,6 +1620,7 @@ Issuer domain + Utsteder-domene src/app/assets/assets.component.html 21 @@ -1594,6 +1633,7 @@ Asset ID + Ressurs-ID src/app/assets/assets.component.html 22 @@ -1606,6 +1646,7 @@ Issuance TX + Utstedelse TX src/app/assets/assets.component.html 23 @@ -1618,6 +1659,7 @@ Error loading assets data. + Feil ved innlasting av ressursdata. src/app/assets/assets.component.html 67 @@ -1626,6 +1668,7 @@ Identified by payout address: '' + Identifisert av utbetalingsadresse: '' src/app/components/miner/miner.component.ts 42 @@ -1633,6 +1676,7 @@ Identified by coinbase tag: '' + Identifisert av coinbase tag: '' src/app/components/miner/miner.component.ts 52 @@ -1686,168 +1730,9 @@ 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 - Beløp - - src/app/dashboard/dashboard.component.html - 108 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - Vanskelighetsgradjustering - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment - API Service + API Service src/app/components/api-docs/api-docs.component.html 4 @@ -2331,8 +2216,173 @@ 272 + + 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 + Beløp + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + Utvid + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Slå sammen + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + blokker + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Vanskelighetsgradjustering + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + Copied! + Kopiert! src/app/components/clipboard/clipboard.component.ts 15 @@ -2340,6 +2390,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Denne transaksjonen sparte % på avgifter ved å bruke native SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 1 @@ -2366,6 +2417,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Denne transaksjonen sparte % på avgifter ved å bruke SegWit, men kunne spart % mer ved å oppgradere til native SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 3 @@ -2374,6 +2426,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Denne transaksjonen kunne spart % på avgifter ved å oppgradere til native SegWit-Bech32 eller % ved å oppgradere til SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -2382,6 +2435,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Denne transaksjonen støtter Replace-By-Fee (RBF) som gjør at du kan endre avgift src/app/components/tx-features/tx-features.component.html 8 @@ -2410,6 +2464,7 @@ Only ~ sat/vB was needed to get into this block + Bare ~ sat / vB var nødvendig for å bli inkludert i denne blokken src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2450,6 +2505,7 @@ year ago + år siden src/app/components/time-since/time-since.component.ts 58 @@ -2457,6 +2513,7 @@ month ago + måned siden src/app/components/time-since/time-since.component.ts 59 @@ -2464,6 +2521,7 @@ week ago + uke siden src/app/components/time-since/time-since.component.ts 60 @@ -2471,6 +2529,7 @@ day ago + dag siden src/app/components/time-since/time-since.component.ts 61 @@ -2478,6 +2537,7 @@ hour ago + time siden src/app/components/time-since/time-since.component.ts 62 @@ -2485,6 +2545,7 @@ min ago + min siden src/app/components/time-since/time-since.component.ts 65 @@ -2492,6 +2553,7 @@ minute ago + minutt siden src/app/components/time-since/time-since.component.ts 67 @@ -2499,6 +2561,7 @@ sec ago + sek siden src/app/components/time-since/time-since.component.ts 70 @@ -2506,6 +2569,7 @@ second ago + sekund siden src/app/components/time-since/time-since.component.ts 72 @@ -2513,6 +2577,7 @@ years ago + år siden src/app/components/time-since/time-since.component.ts 76 @@ -2520,6 +2585,7 @@ months ago + måneder siden src/app/components/time-since/time-since.component.ts 77 @@ -2527,6 +2593,7 @@ weeks ago + uker siden src/app/components/time-since/time-since.component.ts 78 @@ -2534,6 +2601,7 @@ days ago + dager siden src/app/components/time-since/time-since.component.ts 79 @@ -2541,6 +2609,7 @@ hours ago + timer siden src/app/components/time-since/time-since.component.ts 80 @@ -2548,6 +2617,7 @@ mins ago + min siden src/app/components/time-since/time-since.component.ts 83 @@ -2555,6 +2625,7 @@ minutes ago + minutter siden src/app/components/time-since/time-since.component.ts 85 @@ -2562,6 +2633,7 @@ secs ago + sek siden src/app/components/time-since/time-since.component.ts 88 @@ -2569,6 +2641,7 @@ seconds ago + sekunder siden src/app/components/time-since/time-since.component.ts 90 @@ -2576,6 +2649,7 @@ BSQ statistics + BSQ statistikk src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2587,6 +2661,7 @@ Existing amount + Eksisterende beløp src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2599,6 +2674,7 @@ Minted amount + Utstedt beløp src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2611,6 +2687,7 @@ Burnt amount + Brent beløp src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2623,6 +2700,7 @@ Addresses + Adresser src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2635,6 +2713,7 @@ Unspent TXOs + Ubrukte TXOer src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2647,6 +2726,7 @@ Spent TXOs + Brukte TXOer src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2655,6 +2735,7 @@ Price + Pris src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2667,6 +2748,7 @@ Market cap + Markedsverdi src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2679,6 +2761,7 @@ Address: + Adresse: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2686,6 +2769,7 @@ Block : + Blokk : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2693,6 +2777,7 @@ Filter + Filter src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2700,6 +2785,7 @@ Select all + Velg alle src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2707,6 +2793,7 @@ Unselect all + Avmarker alle src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2714,6 +2801,7 @@ Confirmed + Bekreftet src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 2d344974a..030c0b3b2 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -1203,14 +1203,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1539,6 +1539,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1677,166 +1685,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2296,6 +2144,166 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index f0268df8e..b7dc9c557 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -1149,14 +1149,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1462,6 +1462,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1596,153 +1604,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2179,6 +2040,153 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 25a4e5671..ebcba71a1 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -1203,14 +1203,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1543,6 +1543,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1681,166 +1689,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2326,6 +2174,166 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 36d456162..8222b2ce7 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -3,6 +3,7 @@ Transaction: + Transakcija: src/app/components/transaction/transaction.component.ts 48 @@ -332,6 +333,7 @@ block + blok src/app/components/transaction/transaction.component.html 126 @@ -362,6 +364,7 @@ blocks + blokov src/app/components/transaction/transaction.component.html 289 @@ -588,6 +591,7 @@ Block : + Blok : src/app/components/block/block.component.ts 98 @@ -687,6 +691,7 @@ Based on average native segwit transaction of 140 vBytes + Na podlagi povprečne native segwit transakcije (140 vBajtov). src/app/components/block/block.component.html 46 @@ -786,6 +791,7 @@ Address: + Naslov: src/app/components/address/address.component.ts 64 @@ -829,6 +835,7 @@ of transaction + od transakcija src/app/components/address/address.component.html 48 @@ -837,6 +844,7 @@ of transactions + od transakcij src/app/components/address/address.component.html 49 @@ -863,6 +871,7 @@ Search + Iskanje src/app/components/search-form/search-form.component.html 7 @@ -883,6 +892,7 @@ Blocks + Bloki src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1029,6 +1039,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1041,6 +1052,7 @@ About + O projektu src/app/components/master-page/master-page.component.html 59 @@ -1080,6 +1092,7 @@ Stats + Statistika src/app/components/master-page/master-page.component.html 35 @@ -1088,6 +1101,7 @@ Dashboard + Pregledna plošča src/app/components/master-page/master-page.component.html 40 @@ -1096,6 +1110,7 @@ Graphs + Grafi src/app/components/master-page/master-page.component.html 46 @@ -1108,6 +1123,7 @@ TV view + TV pogled src/app/components/master-page/master-page.component.html 49 @@ -1120,6 +1136,7 @@ Assets + Sredstva src/app/components/master-page/master-page.component.html 53 @@ -1208,19 +1225,20 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service Navigate to https://mempool.space/about to sponsor + Pojdite na https://mempool.space/about za sponzorstvo. src/app/components/about/about.component.html 65 @@ -1310,6 +1328,7 @@ Invert + Obrni src/app/components/statistics/statistics.component.html 43 @@ -1377,6 +1396,7 @@ Next block + Naslednji blok src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1384,6 +1404,7 @@ Stack of mempool blocks + Sklad mempool blokov src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1391,6 +1412,7 @@ Mempool block + Mempool blok src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1416,6 +1438,7 @@ Asset: + Sredstvo: src/app/components/asset/asset.component.ts 73 @@ -1443,7 +1466,7 @@ Burned amount - Umaknjeno iz obtoka (burned) + Uničeno src/app/components/asset/asset.component.html 55 @@ -1517,6 +1540,7 @@ Peg In/Out and Burn Transactions + Peg In/Out in Burn Transakcij src/app/components/asset/asset.component.html 75 @@ -1525,6 +1549,7 @@ Issuance and Burn Transactions + Izdajnih in Burn Transakcij src/app/components/asset/asset.component.html 75 @@ -1542,14 +1567,25 @@ Registered assets + Registrirana sredstva src/app/assets/assets.component.html 2 Registered assets page header + + Search asset + Iskanje sredstev + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear + Počisti src/app/assets/assets.component.html 11 @@ -1558,6 +1594,7 @@ Name + Naziv src/app/assets/assets.component.html 19 @@ -1570,6 +1607,7 @@ Ticker + Oznaka src/app/assets/assets.component.html 20 @@ -1582,6 +1620,7 @@ Issuer domain + Domena izdajatelja src/app/assets/assets.component.html 21 @@ -1594,6 +1633,7 @@ Asset ID + ID sredstva src/app/assets/assets.component.html 22 @@ -1606,6 +1646,7 @@ Issuance TX + Izdajna transakcija src/app/assets/assets.component.html 23 @@ -1618,6 +1659,7 @@ Error loading assets data. + Napaka pri nalaganju podatkov o sredstvih. src/app/assets/assets.component.html 67 @@ -1626,6 +1668,7 @@ Identified by payout address: '' + Prepoznano po naslovu za izplačilo: '' src/app/components/miner/miner.component.ts 42 @@ -1633,6 +1676,7 @@ Identified by coinbase tag: '' + Prepoznano po coinbase oznaki: '' src/app/components/miner/miner.component.ts 52 @@ -1686,168 +1730,9 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service + API Vmesnik src/app/components/api-docs/api-docs.component.html 4 @@ -2331,8 +2216,173 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + Razširi + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Strni + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + blokov + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! + Kopirano! src/app/components/clipboard/clipboard.component.ts 15 @@ -2340,6 +2390,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Ta transakcija je prihranila % omrežnine z uporabo native SegWit-Bech32. src/app/components/tx-features/tx-features.component.html 1 @@ -2366,6 +2417,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Ta transakcija je prihranila % omrežnine z uporabo SegWit in bi lahko dodatnih % s popolno nadgradnjo na native SegWit-Bech32. src/app/components/tx-features/tx-features.component.html 3 @@ -2374,6 +2426,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Ta transakcija bi lahko prihranila % omrežnine z nadgradnjo na native SegWit-Bech32 ali % z nadgradnjo na SegWit-P2SH. src/app/components/tx-features/tx-features.component.html 5 @@ -2382,6 +2435,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Ta transakcija omogoča povečanje omrežnine, Replace-By-Fee (RBF). src/app/components/tx-features/tx-features.component.html 8 @@ -2410,6 +2464,7 @@ Only ~ sat/vB was needed to get into this block + Samo ~ sat/vB je bilo potrebno za vključitev v ta blok. src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2450,6 +2505,7 @@ year ago + pred letom src/app/components/time-since/time-since.component.ts 58 @@ -2457,6 +2513,7 @@ month ago + pred mesecem src/app/components/time-since/time-since.component.ts 59 @@ -2464,6 +2521,7 @@ week ago + pred tednom src/app/components/time-since/time-since.component.ts 60 @@ -2471,6 +2529,7 @@ day ago + pred d src/app/components/time-since/time-since.component.ts 61 @@ -2478,6 +2537,7 @@ hour ago + pred h src/app/components/time-since/time-since.component.ts 62 @@ -2485,6 +2545,7 @@ min ago + pred min src/app/components/time-since/time-since.component.ts 65 @@ -2492,6 +2553,7 @@ minute ago + pred min src/app/components/time-since/time-since.component.ts 67 @@ -2499,6 +2561,7 @@ sec ago + pred s src/app/components/time-since/time-since.component.ts 70 @@ -2506,6 +2569,7 @@ second ago + pred s src/app/components/time-since/time-since.component.ts 72 @@ -2513,6 +2577,7 @@ years ago + pred leti src/app/components/time-since/time-since.component.ts 76 @@ -2520,6 +2585,7 @@ months ago + pred meseci src/app/components/time-since/time-since.component.ts 77 @@ -2527,6 +2593,7 @@ weeks ago + pred tedni src/app/components/time-since/time-since.component.ts 78 @@ -2534,6 +2601,7 @@ days ago + pred d src/app/components/time-since/time-since.component.ts 79 @@ -2541,6 +2609,7 @@ hours ago + pred h src/app/components/time-since/time-since.component.ts 80 @@ -2548,6 +2617,7 @@ mins ago + pred min src/app/components/time-since/time-since.component.ts 83 @@ -2555,6 +2625,7 @@ minutes ago + pred min src/app/components/time-since/time-since.component.ts 85 @@ -2562,6 +2633,7 @@ secs ago + pred s src/app/components/time-since/time-since.component.ts 88 @@ -2569,6 +2641,7 @@ seconds ago + pred s src/app/components/time-since/time-since.component.ts 90 @@ -2576,6 +2649,7 @@ BSQ statistics + BSQ Statistika src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2587,6 +2661,7 @@ Existing amount + Obstoječi znesek src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2599,6 +2674,7 @@ Minted amount + Skupni znesek src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2611,6 +2687,7 @@ Burnt amount + Uničeno src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2623,6 +2700,7 @@ Addresses + Naslovi src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2635,6 +2713,7 @@ Unspent TXOs + Neporabljeni TXO src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2647,6 +2726,7 @@ Spent TXOs + Porabljeni TXO src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2655,6 +2735,7 @@ Price + Tečaj src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2667,6 +2748,7 @@ Market cap + Tržna kapitalizacija src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2679,6 +2761,7 @@ Address: + Naslov: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2686,6 +2769,7 @@ Block : + Blok : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2693,6 +2777,7 @@ Filter + Filter src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2700,6 +2785,7 @@ Select all + Izberi vse src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2707,6 +2793,7 @@ Unselect all + Počisti izbiro src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2714,6 +2801,7 @@ Confirmed + Potrjeno src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 5f26790c9..9c685e975 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -123,7 +123,7 @@ Virtual size - Virtual size + Virtuell storlek src/app/components/transaction/transaction.component.html 181 @@ -1225,14 +1225,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1574,6 +1574,15 @@ Registered assets page header + + Search asset + Sök asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear Rensa @@ -1721,170 +1730,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - Expandera - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - Kollapsa - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - block - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service API Service @@ -2371,6 +2216,170 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + Expandera + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Kollapsa + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! Kopierad! diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 152352552..0b2cebb0e 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -1195,14 +1195,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1535,6 +1535,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1673,166 +1681,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2290,6 +2138,166 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 485f9eb99..89b012586 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -1207,14 +1207,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1547,6 +1547,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1685,166 +1693,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2330,6 +2178,166 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 7d4ddd99b..1be90c88f 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -179,7 +179,6 @@ sat/vB - sat / vB src/app/components/transaction/transaction.component.html 81 @@ -277,7 +276,6 @@ ETA - ETA src/app/components/transaction/transaction.component.html 115 @@ -287,7 +285,6 @@ sat - sat src/app/components/transaction/transaction.component.html 149 @@ -369,7 +366,6 @@ Coinbase - Coinbase src/app/components/transactions-list/transactions-list.component.html 39 @@ -387,7 +383,6 @@ Peg-in - Peg-in src/app/components/transactions-list/transactions-list.component.html 41 @@ -396,7 +391,6 @@ nSequence - nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -405,7 +399,6 @@ ScriptSig (ASM) - ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -415,7 +408,6 @@ ScriptSig (HEX) - ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -425,7 +417,6 @@ Witness - Nhân chứng src/app/components/transactions-list/transactions-list.component.html 80 @@ -434,7 +425,6 @@ P2SH redeem script - P2SH redeem script src/app/components/transactions-list/transactions-list.component.html 84 @@ -443,7 +433,6 @@ P2WSH witness script - P2WSH witness script src/app/components/transactions-list/transactions-list.component.html 88 @@ -474,7 +463,6 @@ Peg-out to - Peg-out to src/app/components/transactions-list/transactions-list.component.html 125 @@ -483,7 +471,6 @@ ScriptPubKey (ASM) - ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html 168 @@ -493,7 +480,6 @@ ScriptPubKey (HEX) - ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html 172 @@ -525,7 +511,6 @@ sat - sat src/app/components/transactions-list/transactions-list.component.html 196 @@ -553,7 +538,6 @@ Unconfirmed - Unconfirmed src/app/components/transactions-list/transactions-list.component.html 203 @@ -594,7 +578,6 @@ Genesis - Genesis src/app/components/block/block.component.html 4 @@ -603,7 +586,6 @@ Block - Block src/app/components/block/block.component.html 4 @@ -612,7 +594,6 @@ Hash - Hash src/app/components/block/block.component.html 18 @@ -621,7 +602,6 @@ Timestamp - Timestamp src/app/components/block/block.component.html 22 @@ -634,7 +614,6 @@ Size - Size src/app/components/block/block.component.html 31 @@ -655,7 +634,6 @@ Weight - Weight src/app/components/block/block.component.html 35 @@ -664,7 +642,6 @@ Miner - Miner src/app/components/block/block.component.html 74 @@ -673,7 +650,6 @@ Median fee - Median fee src/app/components/block/block.component.html 45 @@ -710,7 +686,6 @@ Total fees - Total fees src/app/components/block/block.component.html 50 @@ -724,7 +699,6 @@ Subsidy + fees: - Subsidy + fees: src/app/components/block/block.component.html 57 @@ -738,7 +712,6 @@ transaction - transaction src/app/components/block/block.component.html 85 @@ -755,7 +728,6 @@ transactions - transactions src/app/components/block/block.component.html 85 @@ -776,7 +748,6 @@ Error loading block data. - Error loading block data. src/app/components/block/block.component.html 165 @@ -792,7 +763,6 @@ Address - Address src/app/components/address/address.component.html 2 @@ -801,7 +771,6 @@ Total received - Total received src/app/components/address/address.component.html 20 @@ -810,7 +779,6 @@ Total sent - Total sent src/app/components/address/address.component.html 24 @@ -819,7 +787,6 @@ Balance - Balance src/app/components/address/address.component.html 28 @@ -844,7 +811,6 @@ Error loading address data. - Error loading address data. src/app/components/address/address.component.html 105 @@ -853,7 +819,6 @@ TXID, block height, hash or address - TXID, block height, hash or address src/app/components/search-form/search-form.component.html 4 @@ -870,7 +835,6 @@ Blocks - Blocks src/app/components/latest-blocks/latest-blocks.component.ts 37 @@ -906,7 +870,6 @@ Height - Height src/app/components/latest-blocks/latest-blocks.component.html 9 @@ -927,7 +890,6 @@ Mined - Mined src/app/components/latest-blocks/latest-blocks.component.html 11 @@ -940,7 +902,6 @@ Transactions - Transactions src/app/components/latest-blocks/latest-blocks.component.html 12 @@ -969,7 +930,6 @@ multisig of - multisig of src/app/components/address-labels/address-labels.component.html 1 @@ -978,7 +938,6 @@ Layer Peg-out - Layer Peg-out src/app/components/address-labels/address-labels.component.html 2 @@ -987,7 +946,6 @@ In - In src/app/components/mempool-blocks/mempool-blocks.component.html 17 @@ -1001,7 +959,6 @@ minute - minute src/app/components/mempool-blocks/mempool-blocks.component.html 17 @@ -1010,7 +967,6 @@ minutes - minutes src/app/components/mempool-blocks/mempool-blocks.component.html 20 @@ -1019,7 +975,6 @@ blocks - blocks src/app/components/mempool-blocks/mempool-blocks.component.html 24 @@ -1052,7 +1007,6 @@ Offline - Offline src/app/components/master-page/master-page.component.html 7 @@ -1061,7 +1015,6 @@ Reconnecting... - Reconnecting... src/app/components/master-page/master-page.component.html 8 @@ -1070,7 +1023,6 @@ Layer 2 Networks - Layer 2 Networks src/app/components/master-page/master-page.component.html 19 @@ -1131,7 +1083,6 @@ About the project - About the project src/app/components/about/about.component.html 13 @@ -1140,7 +1091,6 @@ 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. src/app/components/about/about.component.html 16 @@ -1148,7 +1098,6 @@ Maintainers - Maintainers src/app/components/about/about.component.html 22 @@ -1157,7 +1106,6 @@ Development - Development src/app/components/about/about.component.html 32 @@ -1166,7 +1114,6 @@ Operations - Operations src/app/components/about/about.component.html 40 @@ -1175,7 +1122,6 @@ Sponsors ❤️ - Sponsors ❤️ src/app/components/about/about.component.html 47 @@ -1184,7 +1130,6 @@ Become a sponsor ❤️ - Become a sponsor ❤️ src/app/components/about/about.component.html 63 @@ -1193,7 +1138,6 @@ Request invoice - Request invoice src/app/components/about/about.component.html 85 @@ -1202,19 +1146,18 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1228,7 +1171,6 @@ Amount required - Amount required src/app/components/about/about.component.html 82 @@ -1237,7 +1179,6 @@ Minimum amount is 0.001 BTC - Minimum amount is 0.001 BTC src/app/components/about/about.component.html 83 @@ -1246,7 +1187,6 @@ 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 :) src/app/components/about/about.component.html 92 @@ -1255,7 +1195,6 @@ Waiting for transaction... - Waiting for transaction... src/app/components/about/about.component.html 170 @@ -1264,7 +1203,6 @@ Donation confirmed! - Donation confirmed! src/app/components/about/about.component.html 175 @@ -1273,7 +1211,6 @@ Thank you! - Thank you! src/app/components/about/about.component.html 175 @@ -1282,7 +1219,6 @@ If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - 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 @@ -1291,7 +1227,6 @@ Loading graphs... - Loading graphs... src/app/components/statistics/statistics.component.html 6 @@ -1300,7 +1235,6 @@ Mempool by vBytes (sat/vByte) - Mempool by vBytes (sat/vByte) src/app/components/statistics/statistics.component.html 16 @@ -1317,7 +1251,6 @@ Transaction vBytes per second (vB/s) - Transaction vBytes per second (vB/s) src/app/components/statistics/statistics.component.html 57 @@ -1326,7 +1259,6 @@ Waiting for blocks... - Waiting for blocks... src/app/components/blockchain/blockchain.component.html 11 @@ -1336,7 +1268,6 @@ Tx vBytes per second: - Tx vBytes per second: src/app/components/footer/footer.component.html 5 @@ -1345,7 +1276,6 @@ Mempool size: - Mempool size: src/app/components/footer/footer.component.html 20 @@ -1354,7 +1284,6 @@ Backend is synchronizing - Backend is synchronizing src/app/components/footer/footer.component.html 7 @@ -1367,7 +1296,6 @@ vBytes/s - vBytes/s src/app/components/footer/footer.component.html 11 @@ -1397,7 +1325,6 @@ Fee span - Fee span src/app/components/mempool-block/mempool-block.component.html 20 @@ -1406,7 +1333,6 @@ Total fees - Total fees src/app/components/mempool-block/mempool-block.component.html 24 @@ -1422,7 +1348,6 @@ Name - Name src/app/components/asset/asset.component.html 20 @@ -1432,7 +1357,6 @@ Precision - Precision src/app/components/asset/asset.component.html 24 @@ -1442,7 +1366,6 @@ Burned amount - Burned amount src/app/components/asset/asset.component.html 55 @@ -1452,7 +1375,6 @@ Issuer - Issuer src/app/components/asset/asset.component.html 28 @@ -1462,7 +1384,6 @@ Issuance TX - Issuance TX src/app/components/asset/asset.component.html 32 @@ -1472,7 +1393,6 @@ Pegged in - Pegged in src/app/components/asset/asset.component.html 43 @@ -1482,7 +1402,6 @@ Pegged out - Pegged out src/app/components/asset/asset.component.html 47 @@ -1492,7 +1411,6 @@ Issued amount - Issued amount src/app/components/asset/asset.component.html 51 @@ -1502,7 +1420,6 @@ Circulating amount - Circulating amount src/app/components/asset/asset.component.html 59 @@ -1532,7 +1449,6 @@ Error loading asset data. - Error loading asset data. src/app/components/asset/asset.component.html 132 @@ -1547,6 +1463,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1639,7 +1563,6 @@ Unknown - Unknown src/app/components/miner/miner.component.html 10 @@ -1648,7 +1571,6 @@ Low priority - Low priority src/app/components/fees-box/fees-box.component.html 4 @@ -1661,7 +1583,6 @@ Medium priority - Medium priority src/app/components/fees-box/fees-box.component.html 10 @@ -1674,7 +1595,6 @@ High priority - High priority src/app/components/fees-box/fees-box.component.html 16 @@ -1685,166 +1605,6 @@ fees-box.high-priority - - Latest blocks - 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 » - View all » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - 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 - Amount - - src/app/dashboard/dashboard.component.html - 108 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - dashboard.latest-transactions.amount - - - Fee - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - Mempool size - Mempool size - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Unconfirmed - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - Incoming transactions - 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 - Difficulty adjustment - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment - API Service @@ -1855,7 +1615,6 @@ Websocket - Websocket src/app/components/api-docs/api-docs.component.html 9 @@ -1865,7 +1624,6 @@ Endpoint - Endpoint src/app/components/api-docs/api-docs.component.html 14 @@ -1903,7 +1661,6 @@ Description - Description src/app/components/api-docs/api-docs.component.html 15 @@ -1941,7 +1698,6 @@ 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 @@ -1950,7 +1706,6 @@ Fees - Fees src/app/components/api-docs/api-docs.component.html 27 @@ -1960,7 +1715,6 @@ 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 @@ -1970,7 +1724,6 @@ Returns current mempool as projected blocks. - Returns current mempool as projected blocks. src/app/components/api-docs/api-docs.component.html 41 @@ -1980,7 +1733,6 @@ Mempool - Mempool src/app/components/api-docs/api-docs.component.html 49 @@ -1990,7 +1742,6 @@ Returns current mempool backlog statistics. - Returns current mempool backlog statistics. src/app/components/api-docs/api-docs.component.html 59 @@ -2000,7 +1751,6 @@ 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 @@ -2010,7 +1760,6 @@ 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 @@ -2020,7 +1769,6 @@ 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 @@ -2028,7 +1776,6 @@ 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 @@ -2036,7 +1783,6 @@ 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 @@ -2044,7 +1790,6 @@ 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 @@ -2052,7 +1797,6 @@ Returns the raw block representation in binary. - Returns the raw block representation in binary. src/app/components/api-docs/api-docs.component.html 105 @@ -2060,7 +1804,6 @@ 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 @@ -2068,7 +1811,6 @@ 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 @@ -2076,7 +1818,6 @@ Returns the height of the last block. - Returns the height of the last block. src/app/components/api-docs/api-docs.component.html 117 @@ -2084,7 +1825,6 @@ Returns the hash of the last block. - Returns the hash of the last block. src/app/components/api-docs/api-docs.component.html 121 @@ -2092,7 +1832,6 @@ 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 @@ -2100,7 +1839,6 @@ Transactions - Transactions src/app/components/api-docs/api-docs.component.html 129 @@ -2110,7 +1848,6 @@ 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 @@ -2118,7 +1855,6 @@ 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 @@ -2126,7 +1862,6 @@ Returns a transaction serialized as hex. - Returns a transaction serialized as hex. src/app/components/api-docs/api-docs.component.html 147 @@ -2134,7 +1869,6 @@ Returns a transaction as binary data. - Returns a transaction as binary data. src/app/components/api-docs/api-docs.component.html 151 @@ -2142,7 +1876,6 @@ 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 @@ -2150,7 +1883,6 @@ 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 @@ -2158,7 +1890,6 @@ 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 @@ -2166,7 +1897,6 @@ 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 @@ -2174,7 +1904,6 @@ 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 @@ -2182,7 +1911,6 @@ Addresses - Addresses src/app/components/api-docs/api-docs.component.html 179 @@ -2192,7 +1920,6 @@ 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 @@ -2200,7 +1927,6 @@ 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 @@ -2208,7 +1934,6 @@ 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 @@ -2216,7 +1941,6 @@ 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 @@ -2224,7 +1948,6 @@ 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 @@ -2232,7 +1955,6 @@ Assets - Assets src/app/components/api-docs/api-docs.component.html 213 @@ -2242,7 +1964,6 @@ Returns information about a Liquid asset. - Returns information about a Liquid asset. src/app/components/api-docs/api-docs.component.html 223 @@ -2250,7 +1971,6 @@ 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 @@ -2258,7 +1978,6 @@ 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 @@ -2266,7 +1985,6 @@ BSQ - BSQ src/app/components/api-docs/api-docs.component.html 238 @@ -2276,7 +1994,6 @@ Returns statistics about all Bisq transactions. - Returns statistics about all Bisq transactions. src/app/components/api-docs/api-docs.component.html 248 @@ -2284,7 +2001,6 @@ Returns details about a Bisq transaction. - Returns details about a Bisq transaction. src/app/components/api-docs/api-docs.component.html 252 @@ -2292,7 +2008,6 @@ 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 @@ -2300,7 +2015,6 @@ 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 @@ -2308,7 +2022,6 @@ 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 @@ -2316,7 +2029,6 @@ 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 @@ -2324,12 +2036,158 @@ 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 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! @@ -2347,7 +2205,6 @@ SegWit - SegWit src/app/components/tx-features/tx-features.component.html 1 @@ -2389,7 +2246,6 @@ RBF - RBF src/app/components/tx-features/tx-features.component.html 8 @@ -2399,7 +2255,6 @@ Optimal - Optimal src/app/components/tx-fee-rating/tx-fee-rating.component.html 1 @@ -2421,7 +2276,6 @@ Overpaid x - Overpaid x src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2431,7 +2285,6 @@ Overpaid x - Overpaid x src/app/components/tx-fee-rating/tx-fee-rating.component.html 3 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 83c1dbbe4..6003ee2b7 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -1199,14 +1199,14 @@ 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 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service @@ -1531,6 +1531,14 @@ Registered assets page header + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + Clear @@ -1669,166 +1677,6 @@ 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - 个区块 - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - API Service @@ -2275,6 +2123,166 @@ 272 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + 个区块 + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + Copied! From c5cd80ac48c9d800c9fafb1461eab3e48bfefea6 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 5 Dec 2020 21:57:51 +0900 Subject: [PATCH 31/42] Update translation strings from Transifex --- frontend/src/locale/messages.es.xlf | 82 +++++++++++++++++++++++++++++ frontend/src/locale/messages.sv.xlf | 4 +- frontend/src/locale/messages.zh.xlf | 61 ++++++++++++++++++++- 3 files changed, 143 insertions(+), 4 deletions(-) diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index fb7661196..74020c2c3 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -3,6 +3,7 @@ Transaction: + Transacción: src/app/components/transaction/transaction.component.ts 48 @@ -122,6 +123,7 @@ Virtual size + Tamaño virtual src/app/components/transaction/transaction.component.html 181 @@ -331,6 +333,7 @@ block + bloque src/app/components/transaction/transaction.component.html 126 @@ -361,6 +364,7 @@ blocks + bloques src/app/components/transaction/transaction.component.html 289 @@ -587,6 +591,7 @@ Block : + Bloque : src/app/components/block/block.component.ts 98 @@ -686,6 +691,7 @@ Based on average native segwit transaction of 140 vBytes + Basado en el promedio de 140 vBytes de las transacciones segwit nativas src/app/components/block/block.component.html 46 @@ -785,6 +791,7 @@ Address: + Dirección: src/app/components/address/address.component.ts 64 @@ -828,6 +835,7 @@ of transaction + Transacción of src/app/components/address/address.component.html 48 @@ -836,6 +844,7 @@ of transactions + Transacción de src/app/components/address/address.component.html 49 @@ -862,6 +871,7 @@ Search + Buscar src/app/components/search-form/search-form.component.html 7 @@ -882,6 +892,7 @@ Blocks + Bloques src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1028,6 +1039,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1040,6 +1052,7 @@ About + Sobre nosotros src/app/components/master-page/master-page.component.html 59 @@ -1079,6 +1092,7 @@ Stats + Estadísticas src/app/components/master-page/master-page.component.html 35 @@ -1087,6 +1101,7 @@ Dashboard + Dashboard src/app/components/master-page/master-page.component.html 40 @@ -1095,6 +1110,7 @@ Graphs + Gráficos src/app/components/master-page/master-page.component.html 46 @@ -1107,6 +1123,7 @@ TV view + Vista de TV src/app/components/master-page/master-page.component.html 49 @@ -1119,6 +1136,7 @@ Assets + Activos src/app/components/master-page/master-page.component.html 53 @@ -1220,6 +1238,7 @@ Navigate to https://mempool.space/about to sponsor + Vaya a https://mempool.space/about para patrocinarnos src/app/components/about/about.component.html 65 @@ -1309,6 +1328,7 @@ Invert + Invertir src/app/components/statistics/statistics.component.html 43 @@ -1376,6 +1396,7 @@ Next block + Siguiente bloque src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1383,6 +1404,7 @@ Stack of mempool blocks + Grupo de bloques mempool src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1390,6 +1412,7 @@ Mempool block + Bloque mempool src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1415,6 +1438,7 @@ Asset: + Activo: src/app/components/asset/asset.component.ts 73 @@ -1516,6 +1540,7 @@ Peg In/Out and Burn Transactions + Transacciones Peg In/Out y Burn src/app/components/asset/asset.component.html 75 @@ -1524,6 +1549,7 @@ Issuance and Burn Transactions + Transacciones de emisión y quema src/app/components/asset/asset.component.html 75 @@ -1541,6 +1567,7 @@ Registered assets + Activos registrados src/app/assets/assets.component.html 2 @@ -1549,6 +1576,7 @@ Search asset + Buscar activos src/app/assets/assets.component.html 9 @@ -1557,6 +1585,7 @@ Clear + Borrar src/app/assets/assets.component.html 11 @@ -1565,6 +1594,7 @@ Name + Nombre src/app/assets/assets.component.html 19 @@ -1577,6 +1607,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1589,6 +1620,7 @@ Issuer domain + Dominio del emisor src/app/assets/assets.component.html 21 @@ -1601,6 +1633,7 @@ Asset ID + ID del activo src/app/assets/assets.component.html 22 @@ -1613,6 +1646,7 @@ Issuance TX + Emisión TX src/app/assets/assets.component.html 23 @@ -1625,6 +1659,7 @@ Error loading assets data. + Error al cargar los datos de los activos. src/app/assets/assets.component.html 67 @@ -1633,6 +1668,7 @@ Identified by payout address: '' + Identificado por la dirección de pago: '' src/app/components/miner/miner.component.ts 42 @@ -1640,6 +1676,7 @@ Identified by coinbase tag: '' + Identificado por la etiqueta de la coinbase: '' src/app/components/miner/miner.component.ts 52 @@ -1695,6 +1732,7 @@ API Service + Servicio de la API src/app/components/api-docs/api-docs.component.html 4 @@ -2260,6 +2298,7 @@ Expand + Expandir src/app/dashboard/dashboard.component.html 131 @@ -2268,6 +2307,7 @@ Collapse + Colapsar src/app/dashboard/dashboard.component.html 132 @@ -2296,6 +2336,7 @@ block + bloque src/app/dashboard/dashboard.component.html 164 @@ -2304,6 +2345,7 @@ blocks + bloques src/app/dashboard/dashboard.component.html 164 @@ -2340,6 +2382,7 @@ Copied! + Copiado! src/app/components/clipboard/clipboard.component.ts 15 @@ -2347,6 +2390,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Esta transacción ahorró un % en tarifas al usar SegWit-Bech32 nativo src/app/components/tx-features/tx-features.component.html 1 @@ -2373,6 +2417,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Esta transacción ahorró un % en tasas al usar SegWit y podría ahorrar un % más actualizando a SegWit-Bech32 nativo src/app/components/tx-features/tx-features.component.html 3 @@ -2381,6 +2426,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Esta transacción podría ahorrar un % en tasas actualizando a SegWit-Bech32 nativo o un % actualizando a SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -2389,6 +2435,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Esta transacción admite Replace-By-Fee (RBF) que permite el aumento de tarifas src/app/components/tx-features/tx-features.component.html 8 @@ -2417,6 +2464,7 @@ Only ~ sat/vB was needed to get into this block + Solo se necesitaba ~ sat/vB para entrar en este bloque src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2449,6 +2497,7 @@ Just now + Justo ahora src/app/components/time-since/time-since.component.ts 49 @@ -2456,6 +2505,7 @@ year ago + Hace año src/app/components/time-since/time-since.component.ts 58 @@ -2463,6 +2513,7 @@ month ago + Hace mes src/app/components/time-since/time-since.component.ts 59 @@ -2470,6 +2521,7 @@ week ago + Hace semana src/app/components/time-since/time-since.component.ts 60 @@ -2477,6 +2529,7 @@ day ago + Hace día src/app/components/time-since/time-since.component.ts 61 @@ -2484,6 +2537,7 @@ hour ago + Hace hora src/app/components/time-since/time-since.component.ts 62 @@ -2491,6 +2545,7 @@ min ago + Hace min. src/app/components/time-since/time-since.component.ts 65 @@ -2498,6 +2553,7 @@ minute ago + Hace minuto src/app/components/time-since/time-since.component.ts 67 @@ -2505,6 +2561,7 @@ sec ago + Hace seg. src/app/components/time-since/time-since.component.ts 70 @@ -2512,6 +2569,7 @@ second ago + Hace segundo src/app/components/time-since/time-since.component.ts 72 @@ -2519,6 +2577,7 @@ years ago + Hace año src/app/components/time-since/time-since.component.ts 76 @@ -2526,6 +2585,7 @@ months ago + Hace meses src/app/components/time-since/time-since.component.ts 77 @@ -2533,6 +2593,7 @@ weeks ago + Hace semanas src/app/components/time-since/time-since.component.ts 78 @@ -2540,6 +2601,7 @@ days ago + Hace días src/app/components/time-since/time-since.component.ts 79 @@ -2547,6 +2609,7 @@ hours ago + Hace horas src/app/components/time-since/time-since.component.ts 80 @@ -2554,6 +2617,7 @@ mins ago + Hace min. src/app/components/time-since/time-since.component.ts 83 @@ -2561,6 +2625,7 @@ minutes ago + Hace minutos src/app/components/time-since/time-since.component.ts 85 @@ -2568,6 +2633,7 @@ secs ago + Hace seg. src/app/components/time-since/time-since.component.ts 88 @@ -2575,6 +2641,7 @@ seconds ago + Hace segundos src/app/components/time-since/time-since.component.ts 90 @@ -2582,6 +2649,7 @@ BSQ statistics + Estadísticas de BSQ src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2593,6 +2661,7 @@ Existing amount + Cantidad existente src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2605,6 +2674,7 @@ Minted amount + Cantidad acuñada src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2617,6 +2687,7 @@ Burnt amount + Cantidad quemada src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2629,6 +2700,7 @@ Addresses + Direcciones src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2641,6 +2713,7 @@ Unspent TXOs + TXO no gastadas src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2653,6 +2726,7 @@ Spent TXOs + TXO gastadas src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2661,6 +2735,7 @@ Price + Precio src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2673,6 +2748,7 @@ Market cap + Capitalización de mercado src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2685,6 +2761,7 @@ Address: + Dirección: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2692,6 +2769,7 @@ Block : + Bloque : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2699,6 +2777,7 @@ Filter + Filtrar src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2706,6 +2785,7 @@ Select all + Seleccionar todas src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2713,6 +2793,7 @@ Unselect all + Deseleccionar todas src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2720,6 +2801,7 @@ Confirmed + Confirmadas src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 9c685e975..4dc81667f 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -133,7 +133,7 @@ Weight - Weight + Viktenheter src/app/components/transaction/transaction.component.html 185 @@ -1101,7 +1101,7 @@ Dashboard - instrumentbräda + Instrumentbräda src/app/components/master-page/master-page.component.html 40 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 6003ee2b7..20d100718 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -123,6 +123,7 @@ Virtual size + 虚拟大小 src/app/components/transaction/transaction.component.html 181 @@ -587,6 +588,7 @@ Genesis + 创世 src/app/components/block/block.component.html 4 @@ -678,6 +680,7 @@ Based on average native segwit transaction of 140 vBytes + 基于平均140字节的本地segwit交易 src/app/components/block/block.component.html 46 @@ -821,6 +824,7 @@ of transaction + 个交易 / 共个交易 src/app/components/address/address.component.html 48 @@ -829,6 +833,7 @@ of transactions + 个交易 / 共个交易 src/app/components/address/address.component.html 49 @@ -846,6 +851,7 @@ TXID, block height, hash or address + 交易ID、区块高度、哈希值或地址 src/app/components/search-form/search-form.component.html 4 @@ -972,6 +978,7 @@ Layer Peg-out + 层 Peg-out src/app/components/address-labels/address-labels.component.html 2 @@ -1021,6 +1028,7 @@ API + 应用程序接口 src/app/components/master-page/master-page.component.html 56 @@ -1033,6 +1041,7 @@ About + 关于 src/app/components/master-page/master-page.component.html 59 @@ -1063,6 +1072,7 @@ Layer 2 Networks + 第2层网络 src/app/components/master-page/master-page.component.html 19 @@ -1071,6 +1081,7 @@ Stats + 统计 src/app/components/master-page/master-page.component.html 35 @@ -1079,6 +1090,7 @@ Dashboard + 仪表板 src/app/components/master-page/master-page.component.html 40 @@ -1087,6 +1099,7 @@ Graphs + 图表 src/app/components/master-page/master-page.component.html 46 @@ -1099,6 +1112,7 @@ TV view + TV模式 src/app/components/master-page/master-page.component.html 49 @@ -1111,6 +1125,7 @@ Assets + 资产 src/app/components/master-page/master-page.component.html 53 @@ -1212,6 +1227,7 @@ Navigate to https://mempool.space/about to sponsor + 转到 https://mempool.space/about 成为赞助人 src/app/components/about/about.component.html 65 @@ -1300,6 +1316,7 @@ Invert + 倒置 src/app/components/statistics/statistics.component.html 43 @@ -1345,6 +1362,7 @@ Backend is synchronizing + 后端正在同步中... src/app/components/footer/footer.component.html 7 @@ -1366,6 +1384,7 @@ Next block + 下一区块 src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1373,6 +1392,7 @@ Stack of mempool blocks + 内存区块堆 src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1380,6 +1400,7 @@ Mempool block + 内存区块 src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1405,6 +1426,7 @@ Asset: + 资产: src/app/components/asset/asset.component.ts 73 @@ -1422,6 +1444,7 @@ Precision + 精确度 src/app/components/asset/asset.component.html 24 @@ -1431,6 +1454,7 @@ Burned amount + 燃烧量 src/app/components/asset/asset.component.html 55 @@ -1450,6 +1474,7 @@ Issuance TX + 发行交易 src/app/components/asset/asset.component.html 32 @@ -1517,6 +1542,7 @@ Error loading asset data. + 加载资产数据时出错 src/app/components/asset/asset.component.html 132 @@ -1525,6 +1551,7 @@ Registered assets + 注册资产 src/app/assets/assets.component.html 2 @@ -1533,6 +1560,7 @@ Search asset + 搜索资产 src/app/assets/assets.component.html 9 @@ -1541,6 +1569,7 @@ Clear + 清空 src/app/assets/assets.component.html 11 @@ -1549,6 +1578,7 @@ Name + 名称 src/app/assets/assets.component.html 19 @@ -1561,6 +1591,7 @@ Ticker + 代币 src/app/assets/assets.component.html 20 @@ -1573,6 +1604,7 @@ Issuer domain + 发行人 src/app/assets/assets.component.html 21 @@ -1585,6 +1617,7 @@ Asset ID + 资产ID src/app/assets/assets.component.html 22 @@ -1597,6 +1630,7 @@ Issuance TX + 发行交易 src/app/assets/assets.component.html 23 @@ -1617,6 +1651,7 @@ Identified by payout address: '' + 根据付款地址识别:“ src/app/components/miner/miner.component.ts 42 @@ -1624,6 +1659,7 @@ Identified by coinbase tag: '' + 根据coinbase标签识别:“ src/app/components/miner/miner.component.ts 52 @@ -1679,6 +1715,7 @@ API Service + API服务 src/app/components/api-docs/api-docs.component.html 4 @@ -2134,6 +2171,7 @@ TXs + 交易 src/app/dashboard/dashboard.component.html 80 @@ -2164,6 +2202,7 @@ TXID + 交易ID src/app/dashboard/dashboard.component.html 107 @@ -2203,6 +2242,7 @@ Expand + 更多 src/app/dashboard/dashboard.component.html 131 @@ -2211,6 +2251,7 @@ Collapse + 收起 src/app/dashboard/dashboard.component.html 132 @@ -2285,6 +2326,7 @@ Copied! + 已复制! src/app/components/clipboard/clipboard.component.ts 15 @@ -2333,6 +2375,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + 此交易支持“按需付费”(RBF),可增加手续费 src/app/components/tx-features/tx-features.component.html 8 @@ -2341,6 +2384,7 @@ RBF + 按需付费 src/app/components/tx-features/tx-features.component.html 8 @@ -2360,6 +2404,7 @@ Only ~ sat/vB was needed to get into this block + 只需支付〜 聪/字节即可进入此区块 src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2392,6 +2437,7 @@ Just now + 刚刚 src/app/components/time-since/time-since.component.ts 49 @@ -2431,7 +2477,7 @@ hour ago - 个小时前 + 小时前 src/app/components/time-since/time-since.component.ts 62 @@ -2503,7 +2549,7 @@ hours ago - 个小时前 + 小时前 src/app/components/time-since/time-since.component.ts 80 @@ -2543,6 +2589,7 @@ BSQ statistics + BSQ统计 src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2554,6 +2601,7 @@ Existing amount + 现存量 src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2566,6 +2614,7 @@ Minted amount + 铸造量 src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2578,6 +2627,7 @@ Burnt amount + 燃烧量 src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2590,6 +2640,7 @@ Addresses + 交易 src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2635,6 +2686,7 @@ Market cap + 市值 src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2655,6 +2707,7 @@ Block : + 区块 : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2662,6 +2715,7 @@ Filter + 筛选 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2669,6 +2723,7 @@ Select all + 全选 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2676,6 +2731,7 @@ Unselect all + 取消全选 src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2683,6 +2739,7 @@ Confirmed + 已确认 src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 From 805636229a89bef2a4a55c11ba7dcacb07bb351e Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 5 Dec 2020 22:42:48 +0900 Subject: [PATCH 32/42] Update translation strings from Transifex --- frontend/src/locale/messages.fa.xlf | 2 +- frontend/src/locale/messages.ja.xlf | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index bbfe4c68d..747963f16 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -2421,7 +2421,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 - این تراکنش با استفاده کردن از SegWit درصد در کارمزد صرفه‌جویی کرده‌است. در صورت استفاده از SegWit-Bech32 این صرفه‌جویی تا درصد بیشتر افزایش پیدا می‌کرد! + این تراکنش با استفاده کردن از SegWit حدودا درصد در کارمزد صرفه‌جویی کرده‌است. در صورت استفاده از SegWit-Bech32 این صرفه‌جویی تا درصد بیشتر افزایش پیدا می‌کرد! src/app/components/tx-features/tx-features.component.html 3 diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 40a6d5976..fb3581000 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -333,7 +333,7 @@ block - ブロック + ブロック src/app/components/transaction/transaction.component.html 126 @@ -364,7 +364,7 @@ blocks - ブロック + ブロック src/app/components/transaction/transaction.component.html 289 @@ -1576,6 +1576,7 @@ Search asset + アセット検索 src/app/assets/assets.component.html 9 @@ -2335,7 +2336,7 @@ block - ブロック + ブロック src/app/dashboard/dashboard.component.html 164 @@ -2344,7 +2345,7 @@ blocks - ブロック + ブロック src/app/dashboard/dashboard.component.html 164 From 159d9c71a1e978c73eb1a3cd248748580ffc7b2b Mon Sep 17 00:00:00 2001 From: TechMiX Date: Sat, 5 Dec 2020 14:59:08 +0100 Subject: [PATCH 33/42] add 'sat' string for i18n --- .../src/app/components/transaction/transaction.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 5c942e169..186f9f4e4 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -73,7 +73,7 @@
- + From 0247c7137ee67d6ed53cde330d1f01934ecbf283 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 6 Dec 2020 01:12:33 +0900 Subject: [PATCH 34/42] Update translation strings from Transifex --- frontend/src/locale/messages.sl.xlf | 4 +- frontend/src/locale/messages.uk.xlf | 82 +++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+), 2 deletions(-) diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 8222b2ce7..78e37d341 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -1466,7 +1466,7 @@ Burned amount - Uničeno + Uničeno (burned) src/app/components/asset/asset.component.html 55 @@ -2687,7 +2687,7 @@ Burnt amount - Uničeno + Uničeno (burned) src/app/bisq/bisq-stats/bisq-stats.component.html 20 diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 89b012586..3cc05ecca 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -3,6 +3,7 @@ Transaction: + Транзакція: src/app/components/transaction/transaction.component.ts 48 @@ -122,6 +123,7 @@ Virtual size + Віртуальний розмір src/app/components/transaction/transaction.component.html 181 @@ -331,6 +333,7 @@ block + блок src/app/components/transaction/transaction.component.html 126 @@ -361,6 +364,7 @@ blocks + блоки src/app/components/transaction/transaction.component.html 289 @@ -587,6 +591,7 @@ Block : + Блок : src/app/components/block/block.component.ts 98 @@ -686,6 +691,7 @@ Based on average native segwit transaction of 140 vBytes + На основі середнього розміру segwit транзакції в 140 vByte src/app/components/block/block.component.html 46 @@ -785,6 +791,7 @@ Address: + Адреса: src/app/components/address/address.component.ts 64 @@ -828,6 +835,7 @@ of transaction + з транзакції src/app/components/address/address.component.html 48 @@ -836,6 +844,7 @@ of transactions + з транзакцій src/app/components/address/address.component.html 49 @@ -862,6 +871,7 @@ Search + Пошук src/app/components/search-form/search-form.component.html 7 @@ -882,6 +892,7 @@ Blocks + Блоки src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1028,6 +1039,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1040,6 +1052,7 @@ About + Про src/app/components/master-page/master-page.component.html 59 @@ -1079,6 +1092,7 @@ Stats + Статистика src/app/components/master-page/master-page.component.html 35 @@ -1087,6 +1101,7 @@ Dashboard + Панель src/app/components/master-page/master-page.component.html 40 @@ -1095,6 +1110,7 @@ Graphs + Графіки src/app/components/master-page/master-page.component.html 46 @@ -1107,6 +1123,7 @@ TV view + TV перегляд src/app/components/master-page/master-page.component.html 49 @@ -1119,6 +1136,7 @@ Assets + Активи src/app/components/master-page/master-page.component.html 53 @@ -1220,6 +1238,7 @@ Navigate to https://mempool.space/about to sponsor + Перейдіть до https://mempool.space/about щоб спонсорувати src/app/components/about/about.component.html 65 @@ -1309,6 +1328,7 @@ Invert + Інвертувати src/app/components/statistics/statistics.component.html 43 @@ -1376,6 +1396,7 @@ Next block + Наступний блок src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1383,6 +1404,7 @@ Stack of mempool blocks + Набір з блоків мемпулу src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1390,6 +1412,7 @@ Mempool block + Блок мемпулу src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1415,6 +1438,7 @@ Asset: + Актив: src/app/components/asset/asset.component.ts 73 @@ -1516,6 +1540,7 @@ Peg In/Out and Burn Transactions + Транзакції закріплення/розкріплення та спалення src/app/components/asset/asset.component.html 75 @@ -1524,6 +1549,7 @@ Issuance and Burn Transactions + Транзакції випуску та спалення src/app/components/asset/asset.component.html 75 @@ -1541,6 +1567,7 @@ Registered assets + Зареєстровані активи src/app/assets/assets.component.html 2 @@ -1549,6 +1576,7 @@ Search asset + Шукати актив src/app/assets/assets.component.html 9 @@ -1557,6 +1585,7 @@ Clear + Очистити src/app/assets/assets.component.html 11 @@ -1565,6 +1594,7 @@ Name + Назва src/app/assets/assets.component.html 19 @@ -1577,6 +1607,7 @@ Ticker + Тікер src/app/assets/assets.component.html 20 @@ -1589,6 +1620,7 @@ Issuer domain + Домен емітента src/app/assets/assets.component.html 21 @@ -1601,6 +1633,7 @@ Asset ID + ID активу src/app/assets/assets.component.html 22 @@ -1613,6 +1646,7 @@ Issuance TX + Емісійна транзакція src/app/assets/assets.component.html 23 @@ -1625,6 +1659,7 @@ Error loading assets data. + Не вдалося завантажити дані про активи. src/app/assets/assets.component.html 67 @@ -1633,6 +1668,7 @@ Identified by payout address: '' + Ідентифікований за адресою виплати: '' src/app/components/miner/miner.component.ts 42 @@ -1640,6 +1676,7 @@ Identified by coinbase tag: '' + Ідентифікований за coinbase тегом: '' src/app/components/miner/miner.component.ts 52 @@ -1695,6 +1732,7 @@ API Service + Сервіс API src/app/components/api-docs/api-docs.component.html 4 @@ -2260,6 +2298,7 @@ Expand + Розгорнути src/app/dashboard/dashboard.component.html 131 @@ -2268,6 +2307,7 @@ Collapse + Згорнути src/app/dashboard/dashboard.component.html 132 @@ -2296,6 +2336,7 @@ block + блок src/app/dashboard/dashboard.component.html 164 @@ -2304,6 +2345,7 @@ blocks + блоки src/app/dashboard/dashboard.component.html 164 @@ -2340,6 +2382,7 @@ Copied! + Скопійовано! src/app/components/clipboard/clipboard.component.ts 15 @@ -2347,6 +2390,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Ця транзакція зекономила % на комісії використовуючи рідний SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 1 @@ -2373,6 +2417,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Ця транзакція зекономила % на комісії використовуючи SegWit і могла б зекономити % використовуючи рідний SegWit-Bech32 src/app/components/tx-features/tx-features.component.html 3 @@ -2381,6 +2426,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Ця транзакція могла б зекономити % на комісії використовуючи рідний SegWit-Bech32 або % використовуючи SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -2389,6 +2435,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Ця транзакція підтримує Replace-By-Fee (RBF) що дозволяє збільшення комісії src/app/components/tx-features/tx-features.component.html 8 @@ -2417,6 +2464,7 @@ Only ~ sat/vB was needed to get into this block + Для того щоб потрапити в цей блок було достатньо ~ sat/vB src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2449,6 +2497,7 @@ Just now + Щойно src/app/components/time-since/time-since.component.ts 49 @@ -2456,6 +2505,7 @@ year ago + рік тому src/app/components/time-since/time-since.component.ts 58 @@ -2463,6 +2513,7 @@ month ago + місяць тому src/app/components/time-since/time-since.component.ts 59 @@ -2470,6 +2521,7 @@ week ago + тиждень тому src/app/components/time-since/time-since.component.ts 60 @@ -2477,6 +2529,7 @@ day ago + день тому src/app/components/time-since/time-since.component.ts 61 @@ -2484,6 +2537,7 @@ hour ago + годину тому src/app/components/time-since/time-since.component.ts 62 @@ -2491,6 +2545,7 @@ min ago + хв тому src/app/components/time-since/time-since.component.ts 65 @@ -2498,6 +2553,7 @@ minute ago + хвилину тому src/app/components/time-since/time-since.component.ts 67 @@ -2505,6 +2561,7 @@ sec ago + сек тому src/app/components/time-since/time-since.component.ts 70 @@ -2512,6 +2569,7 @@ second ago + секунду тому src/app/components/time-since/time-since.component.ts 72 @@ -2519,6 +2577,7 @@ years ago + років тому src/app/components/time-since/time-since.component.ts 76 @@ -2526,6 +2585,7 @@ months ago + місяців тому src/app/components/time-since/time-since.component.ts 77 @@ -2533,6 +2593,7 @@ weeks ago + тижнів тому src/app/components/time-since/time-since.component.ts 78 @@ -2540,6 +2601,7 @@ days ago + днів тому src/app/components/time-since/time-since.component.ts 79 @@ -2547,6 +2609,7 @@ hours ago + годин тому src/app/components/time-since/time-since.component.ts 80 @@ -2554,6 +2617,7 @@ mins ago + хв тому src/app/components/time-since/time-since.component.ts 83 @@ -2561,6 +2625,7 @@ minutes ago + хвилин тому src/app/components/time-since/time-since.component.ts 85 @@ -2568,6 +2633,7 @@ secs ago + сек тому src/app/components/time-since/time-since.component.ts 88 @@ -2575,6 +2641,7 @@ seconds ago + секунд тому src/app/components/time-since/time-since.component.ts 90 @@ -2582,6 +2649,7 @@ BSQ statistics + Статистика BSQ src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2593,6 +2661,7 @@ Existing amount + Існуюча сума src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2605,6 +2674,7 @@ Minted amount + Створена сума src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2617,6 +2687,7 @@ Burnt amount + Спалена сума src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2629,6 +2700,7 @@ Addresses + Адреси src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2641,6 +2713,7 @@ Unspent TXOs + Невитрачені TXO src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2653,6 +2726,7 @@ Spent TXOs + Витрачені TXO src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2661,6 +2735,7 @@ Price + Ціна src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2673,6 +2748,7 @@ Market cap + Ринкова капіталізація src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2685,6 +2761,7 @@ Address: + Адреса: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2692,6 +2769,7 @@ Block : + Блок : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2699,6 +2777,7 @@ Filter + Фільтрувати src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2706,6 +2785,7 @@ Select all + Обрати всі src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2713,6 +2793,7 @@ Unselect all + Скасувати вибір усіх src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2720,6 +2801,7 @@ Confirmed + Підтверджена src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 From f93e1c460a2fdbcf2178349341f949f29efff638 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 6 Dec 2020 03:40:04 +0900 Subject: [PATCH 35/42] Disable Vietnamese locale 'vi' until translations are completed --- frontend/src/app/app.constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 8e82ffd20..9030245f1 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -110,6 +110,6 @@ export const languages: Language[] = [ // { code: 'th', name: 'ไทย' }, // Thai { code: 'tr', name: 'Türkçe' }, // Turkish { code: 'uk', name: 'Українська' }, // Ukrainian - { code: 'vi', name: 'Tiếng Việt' }, // Vietnamese +// { code: 'vi', name: 'Tiếng Việt' }, // Vietnamese { code: 'zh', name: '中文' }, // Chinese ]; From 8d565f5c628085bba3ed7a4ef53e6f1c552ee945 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 6 Dec 2020 03:44:29 +0900 Subject: [PATCH 36/42] Update translation strings from Transifex --- frontend/src/locale/messages.ar.xlf | 21 ++++++++++++++++++++- frontend/src/locale/messages.zh.xlf | 10 ++++++---- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 4d42db128..27ed502db 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -167,7 +167,7 @@ Fee per vByte - مجاني لكل ف بايت + الرسوم لكل ف بايت src/app/components/transaction/transaction.component.html 79 @@ -279,6 +279,7 @@ ETA + الوقت المقدر للوصول src/app/components/transaction/transaction.component.html 115 @@ -585,6 +586,7 @@ Block : + الكتله : src/app/components/block/block.component.ts 98 @@ -859,6 +861,7 @@ Search + بحث src/app/components/search-form/search-form.component.html 7 @@ -1025,6 +1028,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1037,6 +1041,7 @@ About + حول src/app/components/master-page/master-page.component.html 59 @@ -1075,6 +1080,7 @@ Stats + احصائيات src/app/components/master-page/master-page.component.html 35 @@ -1083,6 +1089,7 @@ Dashboard + لوحة التحكم src/app/components/master-page/master-page.component.html 40 @@ -1091,6 +1098,7 @@ Graphs + الرسوم البيانية src/app/components/master-page/master-page.component.html 46 @@ -1103,6 +1111,7 @@ TV view + وضع التلفزيون src/app/components/master-page/master-page.component.html 49 @@ -1115,6 +1124,7 @@ Assets + الأصول src/app/components/master-page/master-page.component.html 53 @@ -1136,6 +1146,7 @@ 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 المفتوح المصدر إلى صنع مستعرض عالي الجودة وبشكل صوري لنظام Bitcoin بأكمله، دون تشتيت الانتباه لأشياء مثل الـ altcoins أو وضع اعلانات أو متتبعات طرف ثالث. src/app/components/about/about.component.html 16 @@ -1215,6 +1226,7 @@ Navigate to https://mempool.space/about to sponsor + انتقل إلى https://mempool.space/about للاعلان src/app/components/about/about.component.html 65 @@ -1303,6 +1315,7 @@ Invert + عكس src/app/components/statistics/statistics.component.html 43 @@ -1366,6 +1379,7 @@ Next block + الكتلة التالية src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1405,6 +1419,7 @@ Asset: + الأصل: src/app/components/asset/asset.component.ts 73 @@ -1531,6 +1546,7 @@ Registered assets + الأصول المسجلة src/app/assets/assets.component.html 2 @@ -1539,6 +1555,7 @@ Search asset + البحث عن الأصول src/app/assets/assets.component.html 9 @@ -1547,6 +1564,7 @@ Clear + مسح src/app/assets/assets.component.html 11 @@ -1555,6 +1573,7 @@ Name + الأسم src/app/assets/assets.component.html 19 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 20d100718..422714036 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -580,7 +580,7 @@ Block : - 区块 : + 区块 src/app/components/block/block.component.ts 98 @@ -597,7 +597,7 @@ Block - 区块 + 区块 src/app/components/block/block.component.html 4 @@ -1551,7 +1551,7 @@ Registered assets - 注册资产 + 已注册资产 src/app/assets/assets.component.html 2 @@ -2653,6 +2653,7 @@ Unspent TXOs + 未用UTXO src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2665,6 +2666,7 @@ Spent TXOs + 已用UTXO src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2707,7 +2709,7 @@ Block : - 区块 : + 区块: src/app/bisq/bisq-block/bisq-block.component.ts 85 From a2740aaa02f4e9544f62a769fd1729d69f94de5d Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 7 Dec 2020 00:20:05 +0900 Subject: [PATCH 37/42] Enable 'ka' locale for Georgian --- frontend/angular.json | 4 + frontend/src/app/app.constants.ts | 1 + frontend/src/locale/messages.ka.xlf | 2763 +++++++++++++++++++++++++++ production/nginx-mempool.conf | 4 +- production/nginx.conf | 2 + 5 files changed, 2772 insertions(+), 2 deletions(-) create mode 100644 frontend/src/locale/messages.ka.xlf diff --git a/frontend/angular.json b/frontend/angular.json index e15faaf3f..0bf03662c 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -47,6 +47,10 @@ "translation": "src/locale/messages.ja.xlf", "baseHref": "/ja/" }, + "ka": { + "translation": "src/locale/messages.ka.xlf", + "baseHref": "/ka/" + }, "nl": { "translation": "src/locale/messages.nl.xlf", "baseHref": "/nl/" diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 9030245f1..8c1b46da8 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -81,6 +81,7 @@ export const languages: Language[] = [ { code: 'fa', name: 'فارسی' }, // Persian { code: 'fr', name: 'Français' }, // French // { code: 'gl', name: 'Galego' }, // Galician + { code: 'ka', name: 'ქართული' }, // Georgian // { code: 'ko', name: '한국어' }, // Korean // { code: 'hr', name: 'Hrvatski' }, // Croatian // { code: 'id', name: 'Bahasa Indonesia' },// Indonesian diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf new file mode 100644 index 000000000..78691d126 --- /dev/null +++ b/frontend/src/locale/messages.ka.xlf @@ -0,0 +1,2763 @@ + + + + + Transaction: + ტრანსაქცია: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + + Transaction + ტრანზაქცია + + src/app/components/transaction/transaction.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + + 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 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + დადასტურებული + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + 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 + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + დეტალები + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + დეტალები + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + ზომა + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + ვირტუალური ზომა + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + წონა + + src/app/components/transaction/transaction.component.html + 185 + + 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 + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + საკომისიო ყოველ vByte-ზე + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + სატ/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 153 + + + 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 + 136 + + 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 + 149 + + 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 + 129 + + Transaction Minutes + transaction.minutes + + + block + ბლოკი + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + shared.block + + + Transaction not found. + ტრანსაქცია ვერ მოიძებნა. + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + დაელოდეთ mempool-ში რომ გამოჩნდეს... + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + blocks + ბლოკები + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + + 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 + + + Confidential + კონფიდენციალური + + 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 + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + ბლოკი : + + src/app/components/block/block.component.ts + 98 + + + + 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/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + + 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 + + + Based on average native segwit transaction of 140 vBytes + გამომდინარე საშუალო native segwit 140 vByte ტრანსაქციიდან + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + 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 + + Transaction fee tooltip + + + 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 + + shared.transaction-count.plural + + + Error loading block data. + შეცდომა მონაცემების მოძებვნაზე + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + Address: + მისამართი: + + src/app/components/address/address.component.ts + 64 + + + + 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 transaction + ის ტრანსაქცია + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + ის ტრანსაქციები + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + შეცდომა მისამართის მონაცემების მოძებვნისას. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + + + TXID, block height, hash or address + TXID, ბლოკის სიმაღლე, ჰაში ან მისამართი + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + მოძებვნა + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + ბლოკები + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + ბლოკები + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + + + Height + სიმაღლე + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + + 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/master-page/master-page.component.html + 29 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + + latest-blocks.transactions + + + 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 + + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + ჩვენს შესახებ + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + + + 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 + + + Stats + სტატისტიკა + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + დაფა + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + დიაგრამები + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + სატელევიზიო ხედვა + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + აქტივები + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + + + 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 open-source პროექტია, რომლის მიზანია მაღალი ხარისხის ექსპლორერის შექმნა და ბლოქჩეინის ვიზუალიზაცია ბიტკოინ ეკოსისტემისთვის, შემაწუხებელი ალტკოინების, რეკლამის, და third-party ტრეკერების გარეშე + + 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/components/api-docs/api-docs.component.html + 284 + + + src/app/dashboard/dashboard.component.html + 143 + + Terms of Service + shared.terms-of-service + + + Navigate to https://mempool.space/about to sponsor + სპონსორობისთვის გადადით https://mempool.space/about - ზე + + src/app/components/about/about.component.html + 65 + + about.navigate-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) + Mempool by vBytes (sat / vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Invert + შებრუნება + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + + + 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 + Backend სინქრონდება + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/წამში + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Next block + შემდეგი ბლოკი + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + mempool ბლოკების რაოდენობა + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + მემპულის ბლოკი + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + + + 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 + + + Asset: + აქტივი: + + src/app/components/asset/asset.component.ts + 73 + + + + 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 + გამცემის 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 + + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + ემისია და დამწვარი ტრანზაქციები + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + + + Error loading asset data. + აქტივის მონაცემების მოძებვნისას მოხდა შეცდომა. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Registered assets + დარეგისტრირებული ქოინები + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + ქოინების მოძებვნა + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + წაშლა + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + სახელი + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + ნიშანი + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + გამომცემის მისამართი + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + ქოინის ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + გამოცემის TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + ქოინების მონაცემების მოძებვნისას მოხდა შეცდომა. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + იდენტიფიცირებულია გადახდის მისამართით: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + იდენტიფიცირებულია coinbase-ის მისამართით: '' + + src/app/components/miner/miner.component.ts + 52 + + + + 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 + + + API Service + API სერვისი + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + + + 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. + + 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 + მემპული + + 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-ის backlog სტატისტიკას + + 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. + მიიღეთ ტრანზაქციების ID-ის სტულია სია mempool-ი დან. ტრანზაქციები განრიგი არ ემთხვევა 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 + + + 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 + + + + 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 + ტრანსაქციის ID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + რაოდენობა + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + მეტის ნახვა + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + დახურვა + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + 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 + + shared.block + + + blocks + ბლოკები + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + 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 + + + Copied! + დაკოპირდა + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + ამ ტრანზაქციამ დაზოგა % საკომისიოებზე native SegWit-Bech32 გამოყენებით + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains + + + 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 + + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + ამ ტრანზაქციამ დაზოგა % საკომისიოებზე SegWit-ის გამოყენებით და შეიძლება კიდევ %-ით მეტის დაზოგვა მთლიანად native SegWit-Bech32-ის აფგრეიდით + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + ამ ტრანზაქციას შეეძლო დაეზოგა % საკომისიოებზე native SegWit-Bech32-ზე აფგრეიდით ან % SegWit-P2SH-ის აფგრეიდით + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + ამ ტრანზაქციით შესაძლებელია Replace-By-Fee (RBF) რაც შესაძლებელს საკომისიოს გაზრდას + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + + + 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 + + + Only ~ sat/vB was needed to get into this block + მინიმუმ ~ sat/vB იყო საჭირო ამ ბლოკში მოსახვედრად + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + + + 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 + + + Just now + ზუსტად ახლა + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + წლის წინ + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + თვის წინ + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + კვირის წინ + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + დღის წინ + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + საათის წინ + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + წლის წინ + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + თვის წინ + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + კვირის წინ + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + დღის წინ + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + საათის წინ + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ სტატისტიკა + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + არსებული რაოდენობა + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + მოპოვებული რაოდენობა + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + დამწვარი რაოდენობა + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + მისამართები + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + დაუხარჯავი TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + დახარჯული TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + ფასი + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + კაპიტალიზაცია + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + მისამართი: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + ბლოკი : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + გაფილტვრა + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + ყველას მონიშვნა + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + ყველას განვნიშვნა + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + დადასტურებული + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + + + + \ No newline at end of file diff --git a/production/nginx-mempool.conf b/production/nginx-mempool.conf index 617c4cadf..bd06fac65 100644 --- a/production/nginx-mempool.conf +++ b/production/nginx-mempool.conf @@ -43,11 +43,11 @@ # 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/ { + 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|ka|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)/ { + 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|ka|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; } diff --git a/production/nginx.conf b/production/nginx.conf index 8f68ebe08..cb64caa17 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -84,6 +84,7 @@ http { ~*^fa fa; ~*^fr fr; ~*^ja ja; + ~*^ka ka; ~*^nl nl; ~*^nn nn; ~*^pt pt; @@ -106,6 +107,7 @@ http { ~*^fa fa; ~*^fr fr; ~*^ja ja; + ~*^ka ka; ~*^nl nl; ~*^nn nn; ~*^pt pt; From c819ddc64afc581caf585d704d3e6a7a1abaea88 Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 7 Dec 2020 00:20:22 +0900 Subject: [PATCH 38/42] Update translation strings from Transifex --- frontend/src/locale/messages.ar.xlf | 40 ++++++++------ frontend/src/locale/messages.pt.xlf | 86 +++++++++++++++++++++++++++++ frontend/src/locale/messages.sl.xlf | 6 +- frontend/src/locale/messages.uk.xlf | 8 +-- frontend/src/locale/messages.zh.xlf | 12 ++-- 5 files changed, 121 insertions(+), 31 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 27ed502db..1fb9c66aa 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -785,6 +785,7 @@ Address: + العنوان: src/app/components/address/address.component.ts 64 @@ -828,6 +829,7 @@ of transaction + من تحويله src/app/components/address/address.component.html 48 @@ -836,6 +838,7 @@ of transactions + من تحويلات src/app/components/address/address.component.html 49 @@ -970,6 +973,7 @@ multisig of + متعدد التوقيع من src/app/components/address-labels/address-labels.component.html 1 @@ -2427,7 +2431,7 @@ year ago - قبل سنه + منذ سنه src/app/components/time-since/time-since.component.ts 58 @@ -2435,7 +2439,7 @@ month ago - قبل شهر + منذ شهر src/app/components/time-since/time-since.component.ts 59 @@ -2443,7 +2447,7 @@ week ago - قبل اسبوع + منذ اسبوع src/app/components/time-since/time-since.component.ts 60 @@ -2451,7 +2455,7 @@ day ago - قبل يوم + منذ يوم src/app/components/time-since/time-since.component.ts 61 @@ -2459,7 +2463,7 @@ hour ago - قبل ساعه + منذ ساعه src/app/components/time-since/time-since.component.ts 62 @@ -2467,7 +2471,7 @@ min ago - قبل دقيقه + منذ دقيقه src/app/components/time-since/time-since.component.ts 65 @@ -2475,7 +2479,7 @@ minute ago - قبل دقيقه + منذ دقيقه src/app/components/time-since/time-since.component.ts 67 @@ -2483,7 +2487,7 @@ sec ago - قبل ثانيه + منذ ثانيه src/app/components/time-since/time-since.component.ts 70 @@ -2491,7 +2495,7 @@ second ago - قبل ثانيه + منذ ثانيه src/app/components/time-since/time-since.component.ts 72 @@ -2499,7 +2503,7 @@ years ago - قبل سنوات + منذ سنوات src/app/components/time-since/time-since.component.ts 76 @@ -2507,7 +2511,7 @@ months ago - قبل اشهر + منذ اشهر src/app/components/time-since/time-since.component.ts 77 @@ -2515,7 +2519,7 @@ weeks ago - قبل اسابيع + منذ اسابيع src/app/components/time-since/time-since.component.ts 78 @@ -2523,7 +2527,7 @@ days ago - قبل ايام + منذ ايام src/app/components/time-since/time-since.component.ts 79 @@ -2531,7 +2535,7 @@ hours ago - قبل ساعات + منذ ساعات src/app/components/time-since/time-since.component.ts 80 @@ -2539,7 +2543,7 @@ mins ago - قبل دقائق + منذ دقائق src/app/components/time-since/time-since.component.ts 83 @@ -2547,7 +2551,7 @@ minutes ago - قبل دقائق + منذ دقائق src/app/components/time-since/time-since.component.ts 85 @@ -2555,7 +2559,7 @@ secs ago - قبل ثوان + منذ ثوان src/app/components/time-since/time-since.component.ts 88 @@ -2563,7 +2567,7 @@ seconds ago - قبل ثوان + منذ ثوان src/app/components/time-since/time-since.component.ts 90 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index ebcba71a1..199ae986a 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -3,6 +3,7 @@ Transaction: + Transação: src/app/components/transaction/transaction.component.ts 48 @@ -122,6 +123,7 @@ Virtual size + Tamanho virtual src/app/components/transaction/transaction.component.html 181 @@ -331,6 +333,7 @@ block + bloco src/app/components/transaction/transaction.component.html 126 @@ -361,6 +364,7 @@ blocks + blocos src/app/components/transaction/transaction.component.html 289 @@ -587,6 +591,7 @@ Block : + Blocos : src/app/components/block/block.component.ts 98 @@ -594,6 +599,7 @@ Genesis + Gênesis src/app/components/block/block.component.html 4 @@ -602,6 +608,7 @@ Block + Bloco src/app/components/block/block.component.html 4 @@ -684,6 +691,7 @@ Based on average native segwit transaction of 140 vBytes + Com base na transação segwit nativa média de 140 vBytes src/app/components/block/block.component.html 46 @@ -783,6 +791,7 @@ Address: + Endereço: src/app/components/address/address.component.ts 64 @@ -826,6 +835,7 @@ of transaction + de transação src/app/components/address/address.component.html 48 @@ -834,6 +844,7 @@ of transactions + de transações src/app/components/address/address.component.html 49 @@ -851,6 +862,7 @@ TXID, block height, hash or address + ID da transação, altura, hash ou endereço src/app/components/search-form/search-form.component.html 4 @@ -859,6 +871,7 @@ Search + Busca src/app/components/search-form/search-form.component.html 7 @@ -879,6 +892,7 @@ Blocks + Blocos src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -1025,6 +1039,7 @@ API + API src/app/components/master-page/master-page.component.html 56 @@ -1037,6 +1052,7 @@ About + Sobre src/app/components/master-page/master-page.component.html 59 @@ -1067,6 +1083,7 @@ Layer 2 Networks + Rede 2ª Camada src/app/components/master-page/master-page.component.html 19 @@ -1075,6 +1092,7 @@ Stats + Estatísticas src/app/components/master-page/master-page.component.html 35 @@ -1083,6 +1101,7 @@ Dashboard + Painel de controle src/app/components/master-page/master-page.component.html 40 @@ -1091,6 +1110,7 @@ Graphs + Gráficos src/app/components/master-page/master-page.component.html 46 @@ -1103,6 +1123,7 @@ TV view + Visualização da TV src/app/components/master-page/master-page.component.html 49 @@ -1115,6 +1136,7 @@ Assets + Ativos src/app/components/master-page/master-page.component.html 53 @@ -1216,6 +1238,7 @@ Navigate to https://mempool.space/about to sponsor + Acesse https://mempool.space/about para patrocinar src/app/components/about/about.component.html 65 @@ -1305,6 +1328,7 @@ Invert + Inverter src/app/components/statistics/statistics.component.html 43 @@ -1372,6 +1396,7 @@ Next block + Próximo bloco src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1379,6 +1404,7 @@ Stack of mempool blocks + Pilha de blocos do mempool src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1386,6 +1412,7 @@ Mempool block + Bloco no mempool src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1411,6 +1438,7 @@ Asset: + Ativo: src/app/components/asset/asset.component.ts 73 @@ -1512,6 +1540,7 @@ Peg In/Out and Burn Transactions + Transações Indexadas/Atreladas e Queimadas src/app/components/asset/asset.component.html 75 @@ -1520,6 +1549,7 @@ Issuance and Burn Transactions + Transações emitidas e queimadas src/app/components/asset/asset.component.html 75 @@ -1537,6 +1567,7 @@ Registered assets + Ativos registrados src/app/assets/assets.component.html 2 @@ -1545,6 +1576,7 @@ Search asset + Ativo buscado src/app/assets/assets.component.html 9 @@ -1553,6 +1585,7 @@ Clear + Limpar src/app/assets/assets.component.html 11 @@ -1561,6 +1594,7 @@ Name + Nome src/app/assets/assets.component.html 19 @@ -1573,6 +1607,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1585,6 +1620,7 @@ Issuer domain + Domínio do emissor src/app/assets/assets.component.html 21 @@ -1597,6 +1633,7 @@ Asset ID + ID do ativo src/app/assets/assets.component.html 22 @@ -1609,6 +1646,7 @@ Issuance TX + Emissão da transação src/app/assets/assets.component.html 23 @@ -1621,6 +1659,7 @@ Error loading assets data. + Erro ao carregar os dados dos ativos. src/app/assets/assets.component.html 67 @@ -1629,6 +1668,7 @@ Identified by payout address: '' + Identificado pelo endereço de pagamento: '' src/app/components/miner/miner.component.ts 42 @@ -1636,6 +1676,7 @@ Identified by coinbase tag: '' + Identificado pela tag no conteúdo no bloco: '' src/app/components/miner/miner.component.ts 52 @@ -1691,6 +1732,7 @@ API Service + Serviço API src/app/components/api-docs/api-docs.component.html 4 @@ -2256,6 +2298,7 @@ Expand + Expandir src/app/dashboard/dashboard.component.html 131 @@ -2264,6 +2307,7 @@ Collapse + Colapso src/app/dashboard/dashboard.component.html 132 @@ -2292,6 +2336,7 @@ block + bloco src/app/dashboard/dashboard.component.html 164 @@ -2300,6 +2345,7 @@ blocks + blocos src/app/dashboard/dashboard.component.html 164 @@ -2336,6 +2382,7 @@ Copied! + Copiado! src/app/components/clipboard/clipboard.component.ts 15 @@ -2343,6 +2390,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Esta transação economizou % em taxas usando SegWit-Bech32 nativo src/app/components/tx-features/tx-features.component.html 1 @@ -2369,6 +2417,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Esta transação economizou % em taxas usando SegWit e poderia economizar mais % usando SegWit-Bech32 nativo src/app/components/tx-features/tx-features.component.html 3 @@ -2377,6 +2426,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Esta transação pode economizar % em taxas atualizando para SegWit-Bech32 nativo ou % atualizando para SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -2385,6 +2435,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Essa transação suporta Replace-By-Fee permitindo aumento de taxa src/app/components/tx-features/tx-features.component.html 8 @@ -2413,6 +2464,7 @@ Only ~ sat/vB was needed to get into this block + Apenas ~ sat/vB era necessário para entrar no bloco src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2445,6 +2497,7 @@ Just now + Agora src/app/components/time-since/time-since.component.ts 49 @@ -2452,6 +2505,7 @@ year ago + ano atrás src/app/components/time-since/time-since.component.ts 58 @@ -2459,6 +2513,7 @@ month ago + mês atrás src/app/components/time-since/time-since.component.ts 59 @@ -2466,6 +2521,7 @@ week ago + semana atrás src/app/components/time-since/time-since.component.ts 60 @@ -2473,6 +2529,7 @@ day ago + dia atrás src/app/components/time-since/time-since.component.ts 61 @@ -2480,6 +2537,7 @@ hour ago + hora atrás src/app/components/time-since/time-since.component.ts 62 @@ -2487,6 +2545,7 @@ min ago + min atrás src/app/components/time-since/time-since.component.ts 65 @@ -2494,6 +2553,7 @@ minute ago + minuto atrás src/app/components/time-since/time-since.component.ts 67 @@ -2501,6 +2561,7 @@ sec ago + seg atrás src/app/components/time-since/time-since.component.ts 70 @@ -2508,6 +2569,7 @@ second ago + segundo atrás src/app/components/time-since/time-since.component.ts 72 @@ -2515,6 +2577,7 @@ years ago + anos atrás src/app/components/time-since/time-since.component.ts 76 @@ -2522,6 +2585,7 @@ months ago + meses atrás src/app/components/time-since/time-since.component.ts 77 @@ -2529,6 +2593,7 @@ weeks ago + semanas atrás src/app/components/time-since/time-since.component.ts 78 @@ -2536,6 +2601,7 @@ days ago + dias atrás src/app/components/time-since/time-since.component.ts 79 @@ -2543,6 +2609,7 @@ hours ago + horas atrás src/app/components/time-since/time-since.component.ts 80 @@ -2550,6 +2617,7 @@ mins ago + mins atrás src/app/components/time-since/time-since.component.ts 83 @@ -2557,6 +2625,7 @@ minutes ago + minutos atrás src/app/components/time-since/time-since.component.ts 85 @@ -2564,6 +2633,7 @@ secs ago + segs atrás src/app/components/time-since/time-since.component.ts 88 @@ -2571,6 +2641,7 @@ seconds ago + segundos atrás src/app/components/time-since/time-since.component.ts 90 @@ -2578,6 +2649,7 @@ BSQ statistics + Estatísticas BSQ src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2589,6 +2661,7 @@ Existing amount + Quantia existente src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2601,6 +2674,7 @@ Minted amount + Quantia criada src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2613,6 +2687,7 @@ Burnt amount + Quantia queimada src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2625,6 +2700,7 @@ Addresses + Endereços src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2637,6 +2713,7 @@ Unspent TXOs + Saídas de transações não realizadas src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2649,6 +2726,7 @@ Spent TXOs + Saídas de transações realizadas src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2657,6 +2735,7 @@ Price + Preço src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2669,6 +2748,7 @@ Market cap + Capitalização de mercado src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2681,6 +2761,7 @@ Address: + Endereço: src/app/bisq/bisq-address/bisq-address.component.ts 39 @@ -2688,6 +2769,7 @@ Block : + Bloco : src/app/bisq/bisq-block/bisq-block.component.ts 85 @@ -2695,6 +2777,7 @@ Filter + Filtro src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2702,6 +2785,7 @@ Select all + Marcar tudo src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2709,6 +2793,7 @@ Unselect all + Desmarcar tudo src/app/bisq/bisq-transactions/bisq-transactions.component.ts 57 @@ -2716,6 +2801,7 @@ Confirmed + Confirmado src/app/bisq/bisq-transactions/bisq-transactions.component.html 21 diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 78e37d341..140979d89 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -1693,7 +1693,7 @@ Low priority - Nizka prioriteta + Počasi src/app/components/fees-box/fees-box.component.html 4 @@ -1706,7 +1706,7 @@ Medium priority - Srednja prioriteta + Srednje src/app/components/fees-box/fees-box.component.html 10 @@ -1719,7 +1719,7 @@ High priority - Visoka prioriteta + Hitro src/app/components/fees-box/fees-box.component.html 16 diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 3cc05ecca..ff2c4857e 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -2178,7 +2178,7 @@ Returns :length of latest Bisq transactions, starting from :index. - Повертає :length останній транзакцій Bisq починаючи з :index. + Повертає :length останніх транзакцій Bisq починаючи з :index. src/app/components/api-docs/api-docs.component.html 256 @@ -2661,7 +2661,7 @@ Existing amount - Існуюча сума + Всього src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2674,7 +2674,7 @@ Minted amount - Створена сума + Створено src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2687,7 +2687,7 @@ Burnt amount - Спалена сума + Спалено src/app/bisq/bisq-stats/bisq-stats.component.html 20 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 422714036..f9f3f04d5 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -824,7 +824,7 @@ of transaction - 个交易 / 共个交易 + 个交易 / 共个交易 src/app/components/address/address.component.html 48 @@ -833,7 +833,7 @@ of transactions - 个交易 / 共个交易 + 个交易 / 共个交易 src/app/components/address/address.component.html 49 @@ -1651,7 +1651,7 @@ Identified by payout address: '' - 根据付款地址识别:“ + 根据付款地址识别:“ src/app/components/miner/miner.component.ts 42 @@ -1659,7 +1659,7 @@ Identified by coinbase tag: '' - 根据coinbase标签识别:“ + 根据coinbase标签识别:“ src/app/components/miner/miner.component.ts 52 @@ -2384,7 +2384,7 @@ RBF - 按需付费 + RBF src/app/components/tx-features/tx-features.component.html 8 @@ -2709,7 +2709,7 @@ Block : - 区块: + 区块 src/app/bisq/bisq-block/bisq-block.component.ts 85 From e2d19a174e380c0fdd198b7e1f2697b8191bf362 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 6 Dec 2020 23:44:08 +0700 Subject: [PATCH 39/42] i18n: Updated strings for "x confirmations", "x transactions", "x blocks" and "block ETA". Peg-out, and bisq headers. --- .../bisq-blocks/bisq-blocks.component.html | 4 +- .../bisq-transaction.component.html | 7 +- .../bisq-transfers.component.html | 4 +- .../app/components/block/block.component.html | 6 +- .../blockchain-blocks.component.html | 10 +- .../mempool-blocks.component.html | 23 +- .../transaction/transaction.component.html | 23 +- .../transactions-list.component.html | 18 +- .../app/dashboard/dashboard.component.html | 6 +- frontend/src/locale/messages.xlf | 619 +++++++++--------- 10 files changed, 375 insertions(+), 345 deletions(-) diff --git a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html index 629dc78a7..b3e1157d7 100644 --- a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html +++ b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html @@ -10,8 +10,8 @@
NameTickerIssuer domainAsset IDIssuance TXNameTickerIssuer domainAsset IDIssuance TX
Fee{{ tx.fee | number }} sat (){{ tx.fee | number }} sat ()
Fee per vByte
- - + + diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html index dfac3c929..8ebed0f7e 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html @@ -4,8 +4,11 @@ - - +
{{ bisqTx.id | shortenString : 24 }} diff --git a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html index 438980d5c..e20cb3679 100644 --- a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html +++ b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -65,7 +65,9 @@
  diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 7ec2ce0e3..8b0f852c9 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -82,7 +82,11 @@
-

{{ block.tx_count | number }} transactiontransactions

+

+ + {{ i }} transaction + {{ i }} transactions +

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 a6ee77c48..c6de90a50 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -7,13 +7,17 @@
- ~{{ 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 }} transactiontransactions
+
+ + {{ i }} transaction + {{ i }} transactions +
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 0d6882ba5..dcac4da5c 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -11,17 +11,24 @@ {{ 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 }} transactiontransactions
+
+ + {{ i }} transaction + {{ i }} transactions +
- In < {{ 1 * i + 1 }} minute + - In ~{{ 10 * i + 10 }} minutes +
-
({{ projectedBlock.blockVSize / 1000000 | ceil }} blocks)
+
+ + ({{ i }} blocks) +
@@ -30,3 +37,11 @@
+ + + In ~{{ i }} minutes + + + + In ~{{ i }} minute + diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 186f9f4e4..c225c0f7d 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -12,7 +12,11 @@

Transaction

- + @@ -56,7 +60,7 @@
- + @@ -123,10 +127,10 @@ - < {{ 1 * txInBlockIndex + 1 }} minutes ({{ txInBlockIndex + 1 }} block) + () - ~{{ 10 * txInBlockIndex + 10 }} minutes ({{ txInBlockIndex + 1 }} block) + () @@ -286,4 +290,13 @@
-{{ txInBlockIndex + 1 }} blocks + + In ~{{ i }} minutes + + + + In ~{{ i }} minute + + +{{ i }} block +{{ i }} blocks \ No newline at end of file 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 2f4301cf3..194d9356e 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -122,11 +122,13 @@
- Peg-out to - - {{ vout.pegout.scriptpubkey_address | shortenString : 16 }} - {{ vout.pegout.scriptpubkey_address | shortenString : 35 }} - + Peg-out to + + + {{ vout.pegout.scriptpubkey_address | shortenString : 16 }} + {{ vout.pegout.scriptpubkey_address | shortenString : 35 }} + + @@ -198,7 +200,11 @@
- + diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 3f0f0bcd2..53c285d9e 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -161,7 +161,11 @@
- + - + From ae886e14b8d0aae29b6c365ac18066e5fd3d8c43 Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 7 Dec 2020 17:35:05 +0700 Subject: [PATCH 42/42] i18n: Added missing Bisq translations. Minor missing space and character fixes. --- .../bisq-address/bisq-address.component.html | 14 +- .../bisq/bisq-block/bisq-block.component.html | 22 ++- .../bisq-transaction-details.component.html | 10 +- .../bisq-transaction.component.html | 22 +-- .../bisq-transfers.component.html | 2 +- .../transaction/transaction.component.html | 6 +- .../app/dashboard/dashboard.component.html | 4 +- frontend/src/locale/messages.xlf | 169 +++++++++++++++++- 8 files changed, 204 insertions(+), 45 deletions(-) diff --git a/frontend/src/app/bisq/bisq-address/bisq-address.component.html b/frontend/src/app/bisq/bisq-address/bisq-address.component.html index 2413b90a0..632d396bd 100644 --- a/frontend/src/app/bisq/bisq-address/bisq-address.component.html +++ b/frontend/src/app/bisq/bisq-address/bisq-address.component.html @@ -1,5 +1,5 @@
HeightConfirmedTotal sentConfirmedTotal sent Transactions
ConfirmedAfter After
Mempool size

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

diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 5fd44f7a8..328242a21 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -34,36 +34,44 @@ RBF replacement transaction.rbf.replacement - - confirmation + + confirmation src/app/components/transaction/transaction.component.html - 15 + 17 + + + src/app/components/transactions-list/transactions-list.component.html + 205 src/app/bisq/bisq-transfers/bisq-transfers.component.html - 68 + 69 src/app/bisq/bisq-transaction/bisq-transaction.component.html - 7 + 9 Transaction singular confirmation count shared.confirmation-count.singular - - confirmations + + confirmations src/app/components/transaction/transaction.component.html - 15 + 18 + + + src/app/components/transactions-list/transactions-list.component.html + 206 src/app/bisq/bisq-transfers/bisq-transfers.component.html - 68 + 70 src/app/bisq/bisq-transaction/bisq-transaction.component.html - 7 + 10 Transaction plural confirmation count shared.confirmation-count.plural @@ -72,7 +80,7 @@ Unconfirmed src/app/components/transaction/transaction.component.html - 18 + 22 Transaction unconfirmed state transaction.unconfirmed @@ -81,7 +89,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 164 + 168 Transaction inputs and outputs transaction.inputs-and-outputs @@ -90,7 +98,7 @@ Details src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -99,7 +107,7 @@ Details src/app/components/transaction/transaction.component.html - 172 + 176 transaction.details @@ -107,7 +115,7 @@ Size src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -116,7 +124,7 @@ Virtual size src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -125,7 +133,7 @@ Weight src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -134,26 +142,13 @@ Timestamp src/app/components/transaction/transaction.component.html - 42 + 46 Transaction Timestamp transaction.timestamp Fee - - src/app/components/transaction/transaction.component.html - 75 - - - src/app/components/transaction/transaction.component.html - 148 - - Transaction fee - transaction.fee - - - Fee per vByte src/app/components/transaction/transaction.component.html 79 @@ -163,21 +158,47 @@ 152 Transaction fee + transaction.fee + + + sat + + src/app/components/transaction/transaction.component.html + 80 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction Fee sat + transaction.fee.sat + + + Fee per vByte + + src/app/components/transaction/transaction.component.html + 83 + + + src/app/components/transaction/transaction.component.html + 156 + + Transaction fee transaction.fee-per-vbyte sat/vB src/app/components/transaction/transaction.component.html - 81 + 85 src/app/components/transaction/transaction.component.html - 153 + 157 src/app/components/transactions-list/transactions-list.component.html - 196 + 198 src/app/components/block/block.component.html @@ -222,7 +243,7 @@ Included in block src/app/components/transaction/transaction.component.html - 51 + 55 Transaction included in block transaction.included-in-block @@ -231,16 +252,16 @@ Confirmed src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After + + After src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -249,11 +270,11 @@ Features src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 Transaction features transaction.features @@ -262,25 +283,16 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -289,41 +301,16 @@ In several hours (or more) src/app/components/transaction/transaction.component.html - 122 + 126 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 - 129 - - Transaction Minutes - transaction.minutes - - - block - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -331,15 +318,63 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks + + In ~ minutes + src/app/components/transaction/transaction.component.html - 289 + 293,295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41,43 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + + + src/app/components/transaction/transaction.component.html + 297,299 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 45,47 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + + src/app/components/transaction/transaction.component.html + 301 + + + src/app/dashboard/dashboard.component.html + 166 + + shared.block + + + blocks + + src/app/components/transaction/transaction.component.html + 302 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/dashboard/dashboard.component.html + 167 shared.blocks @@ -433,12 +468,12 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to + + Peg-out to src/app/components/transactions-list/transactions-list.component.html 125 @@ -449,7 +484,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -458,7 +493,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -467,7 +502,7 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -479,7 +514,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -487,32 +522,16 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 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 + 209 src/app/components/footer/footer.component.html @@ -524,7 +543,7 @@ Confidential src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -681,39 +700,35 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction + + transaction src/app/components/block/block.component.html - 85 + 87 src/app/components/mempool-blocks/mempool-blocks.component.html - 14 + 16 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 16 + 18 shared.transaction-count.singular - - transactions + + transactions src/app/components/block/block.component.html - 85 + 88 src/app/components/mempool-blocks/mempool-blocks.component.html - 14 + 17 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 16 - - - src/app/components/footer/footer.component.html - 16 + 19 shared.transaction-count.plural @@ -721,7 +736,7 @@ Error loading block data. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -754,6 +769,10 @@ src/app/components/address/address.component.html 24 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 14 + address.total-sent @@ -915,43 +934,6 @@ 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 - API @@ -1121,14 +1103,14 @@ src/app/components/about/about.component.html 206 - - src/app/components/api-docs/api-docs.component.html - 284 - src/app/dashboard/dashboard.component.html 143 + + src/app/components/api-docs/api-docs.component.html + 284 + Terms of Service shared.terms-of-service @@ -1245,6 +1227,14 @@ footer.tx-vbytes-per-second + + transactions + + src/app/components/footer/footer.component.html + 16 + + shared.transactions + Mempool size: @@ -1261,7 +1251,7 @@ src/app/dashboard/dashboard.component.html - 181 + 185 footer.backend-is-synchronizing @@ -1576,6 +1566,137 @@ 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 + 174 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 172 + + Unconfirmed count + dashboard.unconfirmed + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 182 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 189 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 198 + + dashboard.difficulty-adjustment + API Service @@ -2012,153 +2133,6 @@ 272 - - 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 - - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 20 - - 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 - - - Expand - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - - src/app/dashboard/dashboard.component.html - 132 - - dashboard.collapse - - - 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 - - shared.block - - - blocks - - src/app/dashboard/dashboard.component.html - 164 - - shared.blocks - - - 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 - Copied! @@ -2506,6 +2480,18 @@ 39 + + Confirmed + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 13 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + Bisq block confirmed time header + Block : @@ -2534,13 +2520,6 @@ 57 - - Confirmed - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 21 - - From f70f94fedefae2fc56a8b8cf2bfa081d8fcc0ede Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 7 Dec 2020 00:23:13 +0700 Subject: [PATCH 40/42] i18n: Removed CR from "In X minutes" translation --- .../mempool-blocks.component.html | 8 ++----- .../transaction/transaction.component.html | 8 ++----- frontend/src/locale/messages.xlf | 22 +++++++++---------- 3 files changed, 14 insertions(+), 24 deletions(-) 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 dcac4da5c..375ea1919 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -38,10 +38,6 @@
- - In ~{{ i }} minutes - +In ~{{ i }} minutes - - In ~{{ i }} minute - +In ~{{ i }} minute diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index c225c0f7d..9cae4ceef 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -290,13 +290,9 @@
- - In ~{{ i }} minutes - +In ~{{ i }} minutes - - In ~{{ i }} minute - +In ~{{ i }} minute {{ i }} block {{ i }} blocks \ No newline at end of file diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 328242a21..2f5276419 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -322,30 +322,28 @@ transaction.error.waiting-for-it-to-appear - - In ~ minutes - + + In ~ minutes src/app/components/transaction/transaction.component.html - 293,295 + 293 src/app/components/mempool-blocks/mempool-blocks.component.html - 41,43 + 41 Block Frequency (plural) mempool-blocks.eta-of-next-block-plural - - In ~ minute - + + In ~ minute src/app/components/transaction/transaction.component.html - 297,299 + 295 src/app/components/mempool-blocks/mempool-blocks.component.html - 45,47 + 43 Block Frequency mempool-blocks.eta-of-next-block @@ -354,7 +352,7 @@ block src/app/components/transaction/transaction.component.html - 301 + 297 src/app/dashboard/dashboard.component.html @@ -366,7 +364,7 @@ blocks src/app/components/transaction/transaction.component.html - 302 + 298 src/app/components/mempool-blocks/mempool-blocks.component.html From 91cb2adb95a4f30b2d088f89b521e3add8ea7c09 Mon Sep 17 00:00:00 2001 From: TechMiX Date: Mon, 7 Dec 2020 00:07:16 +0100 Subject: [PATCH 41/42] add missing 'sat/vb' string for i18n --- .../app/components/mempool-block/mempool-block.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 9f30409fb..f643992a2 100644 --- a/frontend/src/app/components/mempool-block/mempool-block.component.html +++ b/frontend/src/app/components/mempool-block/mempool-block.component.html @@ -14,11 +14,11 @@
Median fee~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB ()~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB ()
Fee span{{ mempoolBlock.feeRange[0] | number:'1.0-0' }} - {{ mempoolBlock.feeRange[mempoolBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB{{ mempoolBlock.feeRange[0] | number:'1.0-0' }} - {{ mempoolBlock.feeRange[mempoolBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB
Total fees
- + - + - + @@ -43,7 +43,11 @@
-

{{ transactions.length | number }} transactions

+

+ + {{ i }} transaction + {{ i }} transactions +

diff --git a/frontend/src/app/bisq/bisq-block/bisq-block.component.html b/frontend/src/app/bisq/bisq-block/bisq-block.component.html index 4e1c7b95c..0f4c2bffc 100644 --- a/frontend/src/app/bisq/bisq-block/bisq-block.component.html +++ b/frontend/src/app/bisq/bisq-block/bisq-block.component.html @@ -1,7 +1,7 @@
Total receivedTotal received {{ totalReceived / 100 | number: '1.2-2' }} BSQ
Total sentTotal sent {{ totalSent / 100 | number: '1.2-2' }} BSQ
Final balanceBalance {{ (totalReceived - totalSent) / 100 | number: '1.2-2' }} BSQ ()
- + - + @@ -32,7 +32,7 @@
HashHash {{ block.hash | shortenString : 13 }}
TimestampTimestamp {{ block.time | date:'yyyy-MM-dd HH:mm' }}
- ( ago) + ()
- +
Previous hashPrevious hash {{ block.previousBlockHash | shortenString : 13 }}
@@ -44,7 +44,11 @@
-

{{ block.txs.length | number }} transactions

+

+ + {{ i }} transaction + {{ i }} transactions +

@@ -73,11 +77,11 @@ - + - +
HashHash
TimestampTimestamp
@@ -86,7 +90,7 @@ - +
Previous hashPrevious hash
diff --git a/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html b/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html index fd605fb8d..ef700ed28 100644 --- a/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html +++ b/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -4,15 +4,15 @@ - + - + - + @@ -22,11 +22,11 @@
InputsInputs {{ totalInput / 100 | number: '1.2-2' }} BSQ
OutputsOutputs {{ totalOutput / 100 | number: '1.2-2' }} BSQ
IssuanceIssued amount {{ totalIssued / 100 | number: '1.2-2' }} BSQ
- + - + diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html index 8ebed0f7e..4e1df26d8 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html @@ -1,6 +1,6 @@
-

Transaction

+

Transaction

@@ -24,22 +24,22 @@
TypeType {{ tx.txTypeDisplayString }}
VersionVersion {{ tx.txVersion }}
- + - + - +
TimestampTimestamp {{ bisqTx.time | date:'yyyy-MM-dd HH:mm' }}
- ( ago) + ()
Included in blockIncluded in block {{ bisqTx.blockHeight }}
FeaturesFeatures @@ -54,12 +54,12 @@ - + - +
BurntBurnt amount {{ bisqTx.burntFee / 100 | number: '1.2-2' }} BSQ ()
Fee per vByteFee per vByte {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB   @@ -78,14 +78,14 @@
-

Details

+

Details


-

Inputs & Outputs

+

Inputs & Outputs

@@ -124,7 +124,7 @@
-

Details

+

Details

@@ -145,7 +145,7 @@
-

Inputs & Outputs

+

Inputs & Outputs

diff --git a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html index e20cb3679..fcd908a73 100644 --- a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html +++ b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -59,7 +59,7 @@
- Burnt: {{ tx.burntFee / 100 | number: '1.2-2' }} BSQ () + Burnt amount: {{ tx.burntFee / 100 | number: '1.2-2' }} BSQ ()
diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 9cae4ceef..b48423fad 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -127,10 +127,10 @@ - () +  () - () +  () @@ -249,7 +249,7 @@
-

Details

+

Details

diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 53c285d9e..dcc7df9dd 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -161,11 +161,9 @@
Mempool size

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

diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 2f5276419..461bad2a5 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -19,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 3 + src/app/bisq/bisq-transactions/bisq-transactions.component.html 18 @@ -91,6 +95,14 @@ src/app/components/transaction/transaction.component.html 168 + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 88 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 148 + Transaction inputs and outputs transaction.inputs-and-outputs @@ -109,6 +121,18 @@ src/app/components/transaction/transaction.component.html 176 + + src/app/components/transaction/transaction.component.html + 252 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 81 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 127 + transaction.details @@ -144,6 +168,18 @@ src/app/components/transaction/transaction.component.html 46 + + src/app/bisq/bisq-block/bisq-block.component.html + 21 + + + src/app/bisq/bisq-block/bisq-block.component.html + 84 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 27 + Transaction Timestamp transaction.timestamp @@ -183,6 +219,10 @@ src/app/components/transaction/transaction.component.html 156 + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 + Transaction fee transaction.fee-per-vbyte @@ -220,6 +260,14 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html 13 + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/mempool-block/mempool-block.component.html + 21 + src/app/components/fees-box/fees-box.component.html 6 @@ -245,6 +293,10 @@ src/app/components/transaction/transaction.component.html 55 + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 + Transaction included in block transaction.included-in-block @@ -276,6 +328,10 @@ src/app/components/transaction/transaction.component.html 140 + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 + Transaction features transaction.features @@ -356,7 +412,7 @@ src/app/dashboard/dashboard.component.html - 166 + 165 shared.block @@ -372,7 +428,7 @@ src/app/dashboard/dashboard.component.html - 167 + 166 shared.blocks @@ -502,6 +558,10 @@ src/app/components/transactions-list/transactions-list.component.html 166 + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 + src/app/bisq/bisq-transactions/bisq-transactions.component.html 19 @@ -578,6 +638,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -586,6 +650,14 @@ src/app/components/block/block.component.html 18 + + src/app/bisq/bisq-block/bisq-block.component.html + 17 + + + src/app/bisq/bisq-block/bisq-block.component.html + 80 + block.hash @@ -712,6 +784,14 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html 18 + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 + shared.transaction-count.singular @@ -728,6 +808,14 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html 19 + + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 + shared.transaction-count.plural @@ -751,6 +839,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -759,6 +851,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -767,6 +863,10 @@ src/app/components/address/address.component.html 24 + + src/app/bisq/bisq-address/bisq-address.component.html + 24 + src/app/bisq/bisq-blocks/bisq-blocks.component.html 14 @@ -779,6 +879,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -1249,7 +1353,7 @@ src/app/dashboard/dashboard.component.html - 185 + 183 footer.backend-is-synchronizing @@ -1374,6 +1478,10 @@ src/app/components/asset/asset.component.html 51 + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 15 + Liquid Asset issued amount asset.issued-amount @@ -1580,7 +1688,7 @@ src/app/dashboard/dashboard.component.html - 174 + 172 dashboard.latest-blocks.transaction-count @@ -1665,7 +1773,7 @@ Unconfirmed src/app/dashboard/dashboard.component.html - 172 + 170 Unconfirmed count dashboard.unconfirmed @@ -1674,7 +1782,7 @@ Incoming transactions src/app/dashboard/dashboard.component.html - 182 + 180 dashboard.incoming-transactions @@ -1682,7 +1790,7 @@ vB/s src/app/dashboard/dashboard.component.html - 189 + 187 vB/s shared.vbytes-per-second @@ -1691,7 +1799,7 @@ Difficulty adjustment src/app/dashboard/dashboard.component.html - 198 + 196 dashboard.difficulty-adjustment @@ -2413,6 +2521,14 @@ src/app/bisq/bisq-stats/bisq-stats.component.html 62 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 62 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 57 + BSQ burnt amount @@ -2490,6 +2606,30 @@ Bisq block confirmed time header + + Inputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : @@ -2497,6 +2637,19 @@ 85 + + Previous hash + + src/app/bisq/bisq-block/bisq-block.component.html + 35 + + + src/app/bisq/bisq-block/bisq-block.component.html + 93 + + Transaction Previous Hash + block.previous_hash + Filter