diff --git a/frontend/README.md b/frontend/README.md index 1b91d4b98..29e62ecfc 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -1,27 +1,29 @@ -# Mempool Space +# mempool-frontend -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.1.2. +## Transifex Project -## Development server +The mempool frontend strings are localized into 20+ locales: +https://www.transifex.com/mempool/mempool/dashboard/ -Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. +## Translators -## Code scaffolding - -Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. - -## Build - -Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. - -## Running unit tests - -Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). - -## Running end-to-end tests - -Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). - -## Further help - -To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). +* Arabic @baro0k +* Czech @pixelmade2 +* German @Emzy +* English (default) +* Spanish @maxhodler @bisqes +* Persian @techmix +* French @Bayernatoor +* Korean @kcalvinalvinn +* Georgian @wyd_idk +* Dutch @m__btc +* Japanese @wiz @japananon +* Norwegian @T82771355 +* Portugese @jgcastro1985 +* Slovenian @thepkbadger +* Finnish @bio_bitcoin +* Swedish @softsimon_ +* Turkish @stackmore +* Ukrainian @volbil +* Vietnamese @bitcoin_vietnam +* Chinese @wdljt diff --git a/frontend/angular.json b/frontend/angular.json index 678b22ab8..f26199440 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -51,6 +51,10 @@ "translation": "src/locale/messages.ka.xlf", "baseHref": "/ka/" }, + "ko": { + "translation": "src/locale/messages.ko.xlf", + "baseHref": "/ko/" + }, "nl": { "translation": "src/locale/messages.nl.xlf", "baseHref": "/nl/" @@ -79,6 +83,10 @@ "translation": "src/locale/messages.uk.xlf", "baseHref": "/uk/" }, + "fi": { + "translation": "src/locale/messages.fi.xlf", + "baseHref": "/fi/" + }, "vi": { "translation": "src/locale/messages.vi.xlf", "baseHref": "/vi/" diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index b7264416c..6371422c5 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -56,13 +56,12 @@ 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: 'ko', name: '한국어' }, // Korean // { code: 'hr', name: 'Hrvatski' }, // Croatian // { code: 'id', name: 'Bahasa Indonesia' },// Indonesian // { code: 'it', name: 'Italiano' }, // Italian // { code: 'he', name: 'עברית' }, // Hebrew -// { code: 'ka', name: 'ქართული' }, // Georgian + { code: 'ka', name: 'ქართული' }, // Georgian // { code: 'lv', name: 'Latviešu' }, // Latvian // { code: 'lt', name: 'Lietuvių' }, // Lithuanian // { code: 'hu', name: 'Magyar' }, // Hungarian @@ -81,11 +80,11 @@ export const languages: Language[] = [ { code: 'sl', name: 'Slovenščina' }, // Slovenian // { code: 'sr', name: 'Српски / srpski' }, // Serbian // { code: 'sh', name: 'Srpskohrvatski / српскохрватски' },// Serbo-Croatian -// { code: 'fi', name: 'Suomi' }, // Finnish + { code: 'fi', name: 'Suomi' }, // Finnish { code: 'sv', name: 'Svenska' }, // Swedish // { code: 'th', name: 'ไทย' }, // Thai { code: 'tr', name: 'Türkçe' }, // Turkish { code: 'uk', name: 'Українська' }, // Ukrainian -// { code: 'vi', name: 'Tiếng Việt' }, // Vietnamese + { code: 'vi', name: 'Tiếng Việt' }, // Vietnamese { code: 'zh', name: '中文' }, // Chinese ]; diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html index 35a02bf38..41728c083 100644 --- a/frontend/src/app/components/address/address.component.html +++ b/frontend/src/app/components/address/address.component.html @@ -1,5 +1,5 @@
-

Address

+

Address

{{ addressString | shortenString : 24 }} {{ addressString }} diff --git a/frontend/src/app/components/amount/amount.component.html b/frontend/src/app/components/amount/amount.component.html index f3e1e1631..713e7a940 100644 --- a/frontend/src/app/components/amount/amount.component.html +++ b/frontend/src/app/components/amount/amount.component.html @@ -6,7 +6,7 @@ Confidential - {{ satoshis / 100000000 | number : digitsInfo }} + ‎{{ satoshis / 100000000 | number : digitsInfo }} L- tBTC diff --git a/frontend/src/app/components/app/app.component.ts b/frontend/src/app/components/app/app.component.ts index 2f7b63924..09efe580e 100644 --- a/frontend/src/app/components/app/app.component.ts +++ b/frontend/src/app/components/app/app.component.ts @@ -21,10 +21,13 @@ export class AppComponent implements OnInit { ) { if (this.locale.startsWith('ar') || this.locale.startsWith('fa')) { this.dir = 'rtl'; + this.class = 'rtl-layout'; } } @HostBinding('attr.dir') dir = 'ltr'; + @HostBinding('class') class; + @HostListener('document:keydown', ['$event']) handleKeyboardEvents(event: KeyboardEvent) { if (event.target instanceof HTMLInputElement) { 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 c6de90a50..ee46d0832 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -12,7 +12,7 @@
{{ block.feeRange[1] | number:'1.0-0' }} - {{ block.feeRange[block.feeRange.length - 1] | number:'1.0-0' }} sat/vB
-
{{ block.size | bytes: 2 }}
+
‎{{ block.size | bytes: 2 }}
{{ i }} transaction diff --git a/frontend/src/app/components/footer/footer.component.html b/frontend/src/app/components/footer/footer.component.html index 47ec84d89..5190ec711 100644 --- a/frontend/src/app/components/footer/footer.component.html +++ b/frontend/src/app/components/footer/footer.component.html @@ -8,17 +8,19 @@
-
{{ mempoolInfoData.vBytesPerSecond | ceil | number }} vBytes/s
+
{{ mempoolInfoData.vBytesPerSecond | ceil | number }} vB/s
- Unconfirmed transactions: + Unconfirmed:
{{ mempoolInfoData.memPoolInfo.size | number }}
- Mempool size: -
{{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blocks)
+ Mempool size: +
{{ mempoolBlocksData.size | bytes }} ()
+ {{ i }} block + {{ i }} blocks
diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.html b/frontend/src/app/components/latest-blocks/latest-blocks.component.html index 46e043107..5c8853158 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/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html index 375ea1919..cd482a14f 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -10,7 +10,7 @@
{{ projectedBlock.feeRange[0] | number:'1.0-0' }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB
-
{{ projectedBlock.blockSize | bytes: 2 }}
+
‎{{ projectedBlock.blockSize | bytes: 2 }}
{{ i }} transaction @@ -26,8 +26,8 @@
- - ({{ i }} blocks) + () + {{ i }} blocks
diff --git a/frontend/src/app/components/start/start.component.html b/frontend/src/app/components/start/start.component.html index 04c1175d0..4ee2258f4 100644 --- a/frontend/src/app/components/start/start.component.html +++ b/frontend/src/app/components/start/start.component.html @@ -1,4 +1,4 @@ -
+
diff --git a/frontend/src/app/components/status-view/status-view.component.ts b/frontend/src/app/components/status-view/status-view.component.ts index c7c821184..556e993c8 100644 --- a/frontend/src/app/components/status-view/status-view.component.ts +++ b/frontend/src/app/components/status-view/status-view.component.ts @@ -1,9 +1,17 @@ -import { Component } from '@angular/core'; +import { Component, OnInit } from '@angular/core'; +import { WebsocketService } from 'src/app/services/websocket.service'; @Component({ selector: 'app-status-view', templateUrl: './status-view.component.html' }) -export class StatusViewComponent { - constructor() { } +export class StatusViewComponent implements OnInit { + constructor( + private websocketService: WebsocketService, + ) { } + + ngOnInit() { + this.websocketService.want(['mempool-blocks', 'stats']); + this.websocketService.want(['blocks', 'stats']); + } } diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index b48423fad..19645b6b3 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -173,7 +173,7 @@ -

Details

+

Details

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 194d9356e..44a7133bf 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -1,6 +1,6 @@ - + - + - + - + - + - + - +
ScriptSig (ASM)
ScriptSig (HEX){{ vin.scriptsig }}{{ vin.scriptsig }}
Witness{{ vin.witness.join(' ') }}{{ vin.witness.join(' ') }}
P2SH redeem script
P2WSH witness script
nSequence{{ formatHex(vin.sequence) }}{{ formatHex(vin.sequence) }}
Previous output script{{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}"{{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}"
@@ -164,19 +164,19 @@ Type - {{ vout.scriptpubkey_type.toUpperCase() }} + {{ vout.scriptpubkey_type.toUpperCase() }} ScriptPubKey (ASM) - + ScriptPubKey (HEX) - {{ vout.scriptpubkey }} + {{ vout.scriptpubkey }} OP_RETURN data - {{ vout.scriptpubkey_asm | hex2ascii }} + {{ vout.scriptpubkey_asm | hex2ascii }} @@ -206,7 +206,7 @@ {{ i }} confirmations - +   diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 1fb9c66aa..257c687a9 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -3,7 +3,7 @@ Transaction: - صفقه + حوالة src/app/components/transaction/transaction.component.ts 48 @@ -15,11 +15,15 @@ Transaction - صفقه + حوالة 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 @@ -28,7 +32,7 @@ This transaction has been replaced by: - هذه الصفقه تم استبدالها بـ: + هذه الحوالة تم استبدالها بـ: src/app/components/transaction/transaction.component.html 5 @@ -36,38 +40,46 @@ 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 @@ -77,17 +89,29 @@ غير مؤكده src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed Inputs & Outputs - المساهمات و الانتاجيه + المدخلات والمخرجات src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ التفاصيل src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ التفاصيل src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ حجم src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ الحجم الافتراضي src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ وزن src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,28 +182,26 @@ الوقت و التاريخ src/app/components/transaction/transaction.component.html - 42 + 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 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 @@ -177,6 +211,38 @@ 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 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 + + Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ سات\فـ ب 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ مدرجة في الكتلة src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,31 +326,35 @@ تم تأكيد 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 Features - ميزات + الخصائص src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ الوقت المقدر للوصول 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 @@ -312,44 +384,17 @@ في الساعات القادمه (أو أكثر) 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 @@ -358,16 +403,73 @@ في انتظار ظهورها على الميم بوول 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + في ~ دقيقه + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + الكتلة + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + كتل + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -470,12 +572,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 @@ -486,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -495,7 +597,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -505,7 +607,11 @@ نوع src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -518,7 +624,7 @@ البيانات src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -527,48 +633,17 @@ سات 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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential خصوصي src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -608,6 +683,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -617,6 +696,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 @@ -686,6 +773,7 @@ Based on average native segwit transaction of 140 vBytes + بناءً على متوسط معاملة segwit الأصلية التي يبلغ 140 ف بايت src/app/components/block/block.component.html 46 @@ -724,7 +812,7 @@ Subsidy + fees: - الدعم + الرسوم: + مكافأة الكتلة + رسوم الحوالات: src/app/components/block/block.component.html 57 @@ -736,41 +824,53 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -779,7 +879,7 @@ خطأ في تحميل بيانات الكتله src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -798,6 +898,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -807,6 +911,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -816,6 +924,14 @@ 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 + address.total-sent @@ -825,6 +941,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -856,6 +976,7 @@ TXID, block height, hash or address + هاش التحويلة, ارتفاع الكتلة , الهاش او العنوان src/app/components/search-form/search-form.component.html 4 @@ -944,7 +1065,7 @@ Transactions - معاملات + التحويلات src/app/components/latest-blocks/latest-blocks.component.html 12 @@ -989,47 +1110,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 API @@ -1076,6 +1156,7 @@ Layer 2 Networks + شبكات الطبقة ٢ src/app/components/master-page/master-page.component.html 19 @@ -1217,14 +1298,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 @@ -1248,7 +1329,7 @@ Minimum amount is 0.001 BTC - الحد الأدنى للمبلغ هو 0.001 بتكوين + الحد الأدنى هو 0.001 بتكوين src/app/components/about/about.component.html 83 @@ -1266,7 +1347,7 @@ Waiting for transaction... - في انتظار المعاملة ... + في إنتظار التحويلات src/app/components/about/about.component.html 170 @@ -1328,6 +1409,7 @@ Transaction vBytes per second (vB/s) + التحويلات ف بايت في الثانية (ف بايت / سات) src/app/components/statistics/statistics.component.html 57 @@ -1352,34 +1434,59 @@ footer.tx-vbytes-per-second - - Mempool size: - حجم الميم بول: + + Unconfirmed + غير مؤكده + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + حجم الميم بول src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing + يتم مزامنة الباك اند src/app/components/footer/footer.component.html 7 src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s + + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1391,6 +1498,7 @@ Stack of mempool blocks + كومه من كتل ميم بول src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1398,6 +1506,7 @@ Mempool block + كتلة ميم بول src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1506,6 +1615,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 @@ -1525,6 +1638,7 @@ Peg In/Out and Burn Transactions + ربط التحويلات وإخراجها و المعاملات المحروقه src/app/components/asset/asset.component.html 75 @@ -1590,6 +1704,7 @@ Ticker + شريط src/app/assets/assets.component.html 20 @@ -1602,6 +1717,7 @@ Issuer domain + نطاق المصدر src/app/assets/assets.component.html 21 @@ -1614,6 +1730,7 @@ Asset ID + معرف الأصول src/app/assets/assets.component.html 22 @@ -1638,6 +1755,7 @@ Error loading assets data. + خطأ في تحميل بيانات الأصول. src/app/assets/assets.component.html 67 @@ -1646,6 +1764,7 @@ Identified by payout address: '' + تم تحديده بواسطة االعنوان: '' src/app/components/miner/miner.component.ts 42 @@ -1653,6 +1772,7 @@ Identified by coinbase tag: '' + تم تحديده بواسطة علامة كوين بيس : '' src/app/components/miner/miner.component.ts 52 @@ -1706,8 +1826,122 @@ 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 + 172 + + 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 + + + Incoming transactions + الحوالات الواردة + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + تعديل الصعوبة + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service + خدمات ال API src/app/components/api-docs/api-docs.component.html 4 @@ -1763,7 +1997,7 @@ Description - الشرح + الوصف src/app/components/api-docs/api-docs.component.html 15 @@ -1828,6 +2062,7 @@ Returns current mempool as projected blocks. + لإرجاع الميم بول الحالية على شكل كتل متوقعة src/app/components/api-docs/api-docs.component.html 41 @@ -1923,7 +2158,7 @@ Returns the height of the last block. - إرجاع الاعلى في الكتلة الأخيرة. + معرفة ارتفاع آخر كتلة src/app/components/api-docs/api-docs.component.html 117 @@ -2051,6 +2286,7 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + احصل على محفوظات التحويله غير المؤكدة للعنوان المحدد / تجزئة البرنامج النصي. أسترجاع ما يصل إلى 50 معاملة (بدون ترحيل). src/app/components/api-docs/api-docs.component.html 201 @@ -2153,165 +2389,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! منسوخ! @@ -2322,6 +2399,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + هذه التحويلة وفرة ٪ من الرسوم لاستخدام النيتف سيقويت Bech32 src/app/components/tx-features/tx-features.component.html 1 @@ -2348,6 +2426,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + هذه التحويله وفرة ٪ من رسوم التحويل عن طريق استخدام السيقويت و ممكن ان توفر ٪ اكثر عن طريق التطور الى النيتف سيقويت Bech32 src/app/components/tx-features/tx-features.component.html 3 @@ -2356,6 +2435,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 @@ -2364,6 +2444,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + تدعم هذه التحويله الاستبدال بالرسوم (RBF) مما يسمح بإرتفاع الرسوم src/app/components/tx-features/tx-features.component.html 8 @@ -2391,6 +2472,7 @@ Only ~ sat/vB was needed to get into this block + المتبقي فقط ~ سات/ في بي للدخول في هذه الكتله src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2551,7 +2633,7 @@ minutes ago - منذ دقائق + منذ دقيقه src/app/components/time-since/time-since.component.ts 85 @@ -2599,7 +2681,6 @@ Minted amount - الكمية المسكوكة src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2612,7 +2693,6 @@ Burnt amount - الكمية المحروقه src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2621,6 +2701,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 @@ -2690,6 +2778,45 @@ 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 + + + 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 : الكتله : @@ -2698,9 +2825,21 @@ 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 - منقي src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2722,14 +2861,6 @@ 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 37b593161..81de9ac2c 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - potvrzení + + confirmation + potvrzení 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 - potvrzení + + confirmations + potvrzení 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 @@ -77,7 +89,11 @@ Nepotvrzeno src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Vstupy a Výstupy src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Detaily src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Detaily src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Velikost src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Virtuální velikost src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Váha src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Časové razítko src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Poplatek src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Poplatek za vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Zahrnuto v bloku src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Potvrzeno src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Po + + After + Po src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -268,11 +346,15 @@ Funkce src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Poprvé viděna src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -312,44 +384,17 @@ Za několik hodin (nebo více) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minut - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - Transaction Minutes - transaction.minutes - - - block - blok - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. Transakce nebyla nalezena. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -358,16 +403,73 @@ Čekání na to, až se objeví v mempoolu... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks - bloků + + In ~ minutes + Za ~ minut src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Za ~ minuta + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + blok + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + bloků + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-out do + + Peg-out to + Peg-out do src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Typ src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - potvrzení - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - potvrzení - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Nepotvrzeno - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Důvěrné src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - transakce + + transaction + transakce 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - transakcí + + transactions + transakcí 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Chyba při načítání dat bloku. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,6 @@ address-labels.upper-layer-peg-out - - In - Za - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - minuta - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - minut - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - bloků(y) - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API API @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Velikost Mempoolu: + + Unconfirmed + Nepotvrzeno + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Velikost Mempoolu src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytů/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + Příchozí transakce + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Úprava obtížnosti + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service API Služba @@ -2216,170 +2438,6 @@ 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! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 39 + + Confirmed + Potvrzeno + + 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 + + + Inputs + Vstupy + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Výstupy + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Verze + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : Blok : @@ -2775,6 +2881,20 @@ 85 + + Previous hash + Předchozí 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 FIltr @@ -2799,14 +2919,6 @@ 57 - - Confirmed - Potvrzeno - - 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 f1e110ab1..e283ef699 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - Bestätigung + + confirmation + eine Bestätigung 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 - Bestätigungen + + confirmations + Bestätigungen 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 @@ -77,7 +89,11 @@ Unbestätigt src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Inputs und Outputs src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Details src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Details src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Größe src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Virtuelle Größe src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Gewicht src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Zeitstempel src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Gebühr src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Gebühr pro vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Im Block aufgenommen src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Bestätigt src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Danach + + After + Nach src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -268,11 +346,15 @@ Features src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ ca. Zeit bis geschürft ist src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Zuerst gesehen src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -312,44 +384,17 @@ In mehreren Stunden (oder mehr) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - Minuten - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - Transaction Minutes - transaction.minutes - - - block - Block - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. Transaktion nicht gefunden. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -358,16 +403,73 @@ Warten bis sie im Mempool erscheint... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks - Blöcke + + In ~ minutes + In ~ Minuten src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + In ~ einer Minute + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + ein Block + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + Blöcke + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-out zu + + Peg-out to + Peg-out zu src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Typ src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ Daten src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - Bestätigung - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - Bestätigungen - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Unbestätigt - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Vertraulich src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - Transaktion + + transaction + eine Transaktion 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - Transaktionen + + transactions + Transaktionen 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Fehler beim Laden der Blockdaten. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,6 @@ address-labels.upper-layer-peg-out - - In - In - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - Minute - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - Minuten - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - Blöcke - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API API @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Mempool Größe: + + Unconfirmed + Unbestätigt + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Mempool Größe src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + Eingehende Transaktionen + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Schwierigkeitsanpassung + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service API-Service @@ -2216,170 +2438,6 @@ 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! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 39 + + Confirmed + Bestätigt + + 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 + + + Inputs + Inputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Outputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Version + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : Block : @@ -2775,6 +2881,20 @@ 85 + + Previous hash + Vorheriger 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 Auswahl @@ -2799,14 +2919,6 @@ 57 - - Confirmed - Bestätigt - - 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 1cbce9ef3..42684d2bf 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -18,6 +18,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 @@ -33,36 +37,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 @@ -71,7 +83,11 @@ Unconfirmed src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -80,7 +96,15 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 164 + 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 @@ -89,7 +113,7 @@ Details src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -98,7 +122,19 @@ Details src/app/components/transaction/transaction.component.html - 172 + 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 @@ -106,7 +142,7 @@ Size src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -115,7 +151,7 @@ Virtual size src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -124,7 +160,7 @@ Weight src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -133,26 +169,25 @@ Timestamp src/app/components/transaction/transaction.component.html - 42 + 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 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 @@ -162,21 +197,51 @@ 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 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 + + 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 @@ -198,6 +263,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 @@ -221,7 +294,11 @@ Included in block src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -230,16 +307,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 @@ -248,11 +325,15 @@ Features src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -261,25 +342,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 @@ -288,41 +360,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 @@ -330,15 +377,69 @@ 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -432,12 +533,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 @@ -448,7 +549,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -457,7 +558,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -466,7 +567,11 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -478,7 +583,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -486,44 +591,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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -560,6 +637,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -568,6 +649,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 @@ -680,39 +769,51 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -720,7 +821,7 @@ Error loading block data. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -737,6 +838,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -745,6 +850,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -753,6 +862,14 @@ 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 + address.total-sent @@ -761,6 +878,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -914,43 +1035,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 @@ -1120,14 +1204,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 @@ -1244,13 +1328,31 @@ footer.tx-vbytes-per-second - - Mempool size: + + Unconfirmed + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1260,17 +1362,22 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s + + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1385,6 +1492,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 @@ -1575,6 +1686,110 @@ 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 + 172 + + 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 + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service @@ -2011,153 +2226,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! @@ -2440,6 +2508,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 @@ -2505,6 +2581,42 @@ 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 + + + 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 : @@ -2512,6 +2624,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 @@ -2533,13 +2658,6 @@ 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 74020c2c3..377a1569c 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - confirmación + + confirmation + confirmación 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 - confirmaciones + + confirmations + confirmaciones 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 @@ -77,7 +89,11 @@ Sin confirmar src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Entradas y salidas src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Detalles src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Detalles src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Tamaño src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Tamaño virtual src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Peso src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Sello de tiempo src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Tasa src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Tasa por vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Incluido en el bloque src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Confirmado src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Después + + After + Después src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -268,11 +346,15 @@ Características src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ Tiempo esparado de llegada src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Visto por primera vez src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -312,44 +384,17 @@ En unas cuantas horas (o más) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minutos - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - Transaction Minutes - transaction.minutes - - - block - bloque - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. Transacción no encontrada src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -358,16 +403,73 @@ Esperando a que aparezca en la mempool... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks - bloques + + In ~ minutes + En ~ minutos src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + En ~ minutos + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + bloque + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + bloques + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-out a + + Peg-out to + Peg-out a src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Tipo src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ dato src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - confirmación - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - confirmaciones - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Sin confirmar - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Confidencial src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - transacción + + transaction + transacción 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - transacciones + + transactions + transacciones 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Error cargando datos de bloque src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,6 @@ address-labels.upper-layer-peg-out - - In - En - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - minuto - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - minutos - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - bloques - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API API @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Tamaño del Mempool: + + Unconfirmed + Sin confirmar + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Tamaño de la mempool src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + Expandir + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Colapsar + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Incoming transactions + Transacciones entrantes + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Ajuste de dificultad + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service Servicio de la API @@ -2216,170 +2438,6 @@ 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 - Expandir - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - Colapsar - - 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 - bloque - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - bloques - - 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! Copiado! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 39 + + Confirmed + Confirmación + + 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 + + + Inputs + Entradas + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Salidas + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Versión + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : Bloque : @@ -2775,6 +2881,20 @@ 85 + + Previous hash + Hash previo + + 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 Filtrar @@ -2799,14 +2919,6 @@ 57 - - Confirmed - Confirmadas - - 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 747963f16..9424c13d6 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ 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 @@ -77,7 +89,11 @@ تأیید نشده src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ ورودی‌ها و خروجی‌ها src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ جزئیات src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ جزئیات src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ اندازه src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ اندازه مجازی src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ وزن src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ برچسب‌زمانی src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ کارمزد src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 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 کارمزد بر vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ ‏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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ قرارگرفته در بلاک src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ تأیید شده 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 @@ -268,11 +346,15 @@ ویژگی‌ها src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ تخمین 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 @@ -312,44 +384,17 @@ در چند (یا چندین) ساعت آینده 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 @@ -358,16 +403,73 @@ منتظر دیده‌شدن در 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + در ~ دقیقه + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + بلاک + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + بلاک + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-out به + + Peg-out to + ‏Peg-out به src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ نوع src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -520,10 +626,10 @@ data - داده + data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ ساتوشی 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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential محرمانه src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -716,7 +803,7 @@ Total fees - محموع کارمزدها + مجموع کارمزدها src/app/components/block/block.component.html 50 @@ -742,41 +829,53 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ خطا در بازکردن داده‌های بلاک. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,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 رابط برنامه‌نویسی نرم‌افزار (API) @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - اندازه ممپول: + + Unconfirmed + تأیید نشده + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + اندازه ممپول src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + تراکنش‌های منتشرشده + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + تنظیم سختی بلاک‌ها + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service خدمات API @@ -1906,7 +2128,7 @@ Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). - وضعیت تایید یک بلاک را برمی‌گرداند. فیلدهای در دسترس: in_best_chain(از نوع boolean و مقدارش برای بلاک‌های یتیم false است)، next_best(چکیده بلاک بعدی، فقط برای بلاک‌های بهترین زنجیره در دسترس است). + وضعیت تایید یک بلاک را برمی‌گرداند. فیلدهای در دسترس: in_best_chain (از نوع boolean و مقدارش برای بلاک‌های یتیم false است)، next_best (چکیده بلاک بعدی، فقط برای بلاک‌های بهترین زنجیره در دسترس است). src/app/components/api-docs/api-docs.component.html 89 @@ -1930,7 +2152,7 @@ Returns the transaction at index :index within the specified block. - تراکنش موجود در اندیس :indexبلاک مشخص شده را برمی‌گرداند. + تراکنش موجود در اندیس :index بلاک مشخص شده را برمی‌گرداند. src/app/components/api-docs/api-docs.component.html 101 @@ -1946,7 +2168,7 @@ Returns the hash of the block currently at :height. - چکیده بلاک موجود در طول :heightرا برمی‌گرداند. + چکیده بلاک موجود در طول :height را برمی‌گرداند. src/app/components/api-docs/api-docs.component.html 109 @@ -1954,7 +2176,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. - لیست 10 بلاک آخر را از آخرین بلاک و یا در صورت تنظیم کردن فیلد مربوطه از :start_heightبرمی‌گرداند. + لیست 10 بلاک آخر را از آخرین بلاک و یا در صورت تنظیم کردن فیلد مربوطه از :start_height برمی‌گرداند. src/app/components/api-docs/api-docs.component.html 113 @@ -2028,7 +2250,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. - یک «اثبات وجود در مرکل» برای تراکنش برمی‌گرداند که در قالب Electrum's blockchain.transaction.get_merkleاست. + یک «اثبات وجود در مرکل» برای تراکنش برمی‌گرداند که در قالب Electrum's blockchain.transaction.get_merkle است. src/app/components/api-docs/api-docs.component.html 159 @@ -2052,7 +2274,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. - یک تراکنش خام را در شبکه منتشر می‌کند. تراکنش باید به صورت hex در بدنه درخواست وارد شود. مقدار txidدر صورت موفقیت برگردانده می‌شود. + یک تراکنش خام را در شبکه منتشر می‌کند. تراکنش باید به صورت hex در بدنه درخواست وارد شود. در صورت موفقیت، مقدار txid برگردانده می‌شود. src/app/components/api-docs/api-docs.component.html 171 @@ -2060,7 +2282,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. - یک «اثبات وجود در مرکل» برای تراکنش برمی‌گرداند که در قالب bitcoind's merkleblockاست. + یک «اثبات وجود در مرکل» برای تراکنش برمی‌گرداند که در قالب bitcoind's merkleblock است. src/app/components/api-docs/api-docs.component.html 155 @@ -2086,7 +2308,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انجام دهید (پایین را ببینید). + تاریخچه تراکنش‌های یک آدرس/چکیده‌اسکریپت برمی‌گرداند که از جدید به قدیم مرتب شده‌اند. تا 50 تراکنش از ممپول به اضافه 25 تراکنش تایید شده. می‌توانید درخواست تراکنش تایید شده بیشتر را با استفاده از :last_seen_txid انجام دهید (پایین را ببینید). src/app/components/api-docs/api-docs.component.html 193,194 @@ -2220,170 +2442,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 - 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! کپی شد! @@ -2439,7 +2497,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping - این تراکنش از امکان جایگزینی با کارمزد (RBF) پشتیبانی می‌کند و اجازه افزایش کارمزد را می‌دهد. + این تراکنش از امکان (جایگزینی با کارمزد بیشتر) پشتیبانی می‌کند. src/app/components/tx-features/tx-features.component.html 8 @@ -2700,6 +2758,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 @@ -2771,6 +2837,46 @@ 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 + + + 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 : بلاک : @@ -2779,6 +2885,20 @@ 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 پالایش @@ -2803,14 +2923,6 @@ 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.xlf b/frontend/src/locale/messages.fi.xlf new file mode 100644 index 000000000..73071b52d --- /dev/null +++ b/frontend/src/locale/messages.fi.xlf @@ -0,0 +1,2924 @@ + + + + + Transaction: + Siirtotapahtuma: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + + Transaction + Siirtotapahtuma + + 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 + + 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 + 17 + + + src/app/components/transactions-list/transactions-list.component.html + 205 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 69 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 9 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + vahvistukset + + src/app/components/transaction/transaction.component.html + 18 + + + src/app/components/transactions-list/transactions-list.component.html + 206 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 70 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 10 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Vahvistamatta + + src/app/components/transaction/transaction.component.html + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Syötteet & Ulostulot + + 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 + + + Details + Yksityiskohdat + + src/app/components/transaction/transaction.component.html + 170 + + Transaction Details + transaction.details + + + Details + Yksityiskohdat + + 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 + + + Size + Koko + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Size + transaction.size + + + Virtual size + Virtuaalikoko + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Virtual Size + transaction.vsize + + + Weight + Paino + + src/app/components/transaction/transaction.component.html + 189 + + Transaction Weight + transaction.weight + + + Timestamp + Aikaleima + + 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 + + + Fee + Siirtokulu + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + Transaction fee + transaction.fee + + + sat + 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 + Siirtokulu per vBitti + + src/app/components/transaction/transaction.component.html + 83 + + + src/app/components/transaction/transaction.component.html + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 85 + + + src/app/components/transaction/transaction.component.html + 157 + + + src/app/components/transactions-list/transactions-list.component.html + 198 + + + 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/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 + + + 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 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Vahvistettu + + src/app/components/transaction/transaction.component.html + 62 + + Transaction Confirmed state + transaction.confirmed + + + After + Jälkeen + + src/app/components/transaction/transaction.component.html + 63 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Ominaisuudet + + src/app/components/transaction/transaction.component.html + 67 + + + src/app/components/transaction/transaction.component.html + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 119 + + Transaction ETA + transaction.eta + + + First seen + Ensimmäiseksi nähty + + src/app/components/transaction/transaction.component.html + 113 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Muutamassa tunnissa (tai enemmän) + + src/app/components/transaction/transaction.component.html + 126 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + Transaction not found. + Siirtotapahtumaa ei löydy. + + src/app/components/transaction/transaction.component.html + 277 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Odotetaan sen ilmestymistä mempooliin... + + src/app/components/transaction/transaction.component.html + 278 + + transaction.error.waiting-for-it-to-appear + + + In ~ minutes + ~ minuutissa + + src/app/components/transaction/transaction.component.html + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + ~ minuutin kuluttua + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + lohko + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + lohkoa + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 + + shared.blocks + + + Coinbase + Kolikkopohja + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Äskettäin 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 + 188 + + transactions-list.load-all + + + Peg-out to + Irrotetaan + + 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 + 170 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 174 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Tyyppi + + 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 + + transactions-list.vout.scriptpubkey-type + + + data + data + + src/app/components/transactions-list/transactions-list.component.html + 178 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 198 + + sat + shared.sat + + + Confidential + Luottamuksellinen + + src/app/components/transactions-list/transactions-list.component.html + 214 + + + 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 : + Lohko : + + src/app/components/block/block.component.ts + 98 + + + + Genesis + Alku + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Lohko + + src/app/components/block/block.component.html + 4 + + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + + block.block + + + Hash + Tiiviste + + 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 + + + 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/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 + 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 + Keskimääräinen siirtokulu + + 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 + Perustuu keskimääräiseen natiiviin 140 vBittiseen segwit-siirtotapahtumaan + + 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ä + + 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: + Palkkio + 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 + siirtotapahtuma + + src/app/components/block/block.component.html + 87 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 16 + + + 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 + + + transactions + siirtotapahtumaa + + src/app/components/block/block.component.html + 88 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + 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 + + + Error loading block data. + Virhe lohkotietoja ladattaessa. + + src/app/components/block/block.component.html + 169 + + block.error.loading-block-data + + + Address: + Osoite: + + src/app/components/address/address.component.ts + 64 + + + + Address + Osoite + + src/app/components/address/address.component.html + 2 + + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + + shared.address + + + Total received + Vastaanotettu yhteensä + + src/app/components/address/address.component.html + 20 + + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + + address.total-received + + + Total sent + Lähetetty yhteensä + + 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 + + address.total-sent + + + Balance + Saldo + + src/app/components/address/address.component.html + 28 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + + + of transaction + / siirtotapahtuma + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + / siirtotapahtumat + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Virhe osoitetietojen lataamisessa. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + + + TXID, block height, hash or address + Siirtotunniste, tiiviste, osoite tai järjestysnumero + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + Hae + + 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 + Lohkot + + 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 + + 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 + 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/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 + multisig / + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Kerros Irroitus + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + 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 + Tietoja + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + + + Offline + Offline-tilassa + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Yhdistetään uudelleen... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + 2 Kerroksen Verkot + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + Stats + Tilastot + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Kojelauta + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Kaaviot + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV näkymä + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Omaisuuserät + + 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 + + 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 projektissa tarkoituksena 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 https://mempool.space/about to sponsor + Sponsoroidaksesi navigoi osoitteeseen https://mempool.space/about + + src/app/components/about/about.component.html + 65 + + about.navigate-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 vBitteinä (sat/vBitti) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Invert + Käänteinen + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + + + Transaction vBytes per second (vB/s) + Siirtotapahtuma vBittiä 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: + Tx vBittiä per sekuntti: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Unconfirmed + Vahvistamatta + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Mempoolin koko + + src/app/components/footer/footer.component.html + 20 + + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Backend is synchronizing + Taustaosaa synkronoidaan... + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 183 + + footer.backend-is-synchronizing + + + vB/s + vB/s + + src/app/components/footer/footer.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second + + + Next block + Seuraava lohko + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Pino mempool lohkoja + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempool lohko + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + + + Fee span + Siirtokulu vä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 + + + Asset: + Omaisuuerä: + + src/app/components/asset/asset.component.ts + 73 + + + + 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 + Poltettu 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 TX + + 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 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 15 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Liikkuva 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 + + + Peg In/Out and Burn Transactions + Kiinnitä/Irrota ja Polta Siirtotapahtumat + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Liikkeeseenlasku- ja Poltto Siirtotapahtumat + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + + + Error loading asset data. + Omaisuuserätietoja ladattaessa tapahtui virhe. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Registered assets + Rekisteröidyt omaisuuserät + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Etsi omaisuuserä + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Tyhjennä + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Nimi + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Tunnus + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Liikkeeseenlaskijan verkkotunnus + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + Omaisuuserä tunnus + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Liikkeeseenlasku TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Omaisuuserientietoja ladattaessa tapahtui virhe. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Tunnistettu maksuosoitteella: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Tunnistettu kolikkopohja tunnisteella: '' + + src/app/components/miner/miner.component.ts + 52 + + + + Unknown + Tuntematon + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Ei kiireellinen + + 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 + Keskimääräinen + + 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 + Kiireellinen + + 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 + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 172 + + 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 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + 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 + + + Expand + Laajenna + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Paina kokoon + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Incoming transactions + Saapuvat siirtotapahtumat + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Vaikeudensäätö + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + + + API Service + API Palvelu + + 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 + 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: action: 'want', data: ['blocks', ...] ilmaisemaan mitä haluat työnnettävän. Saatavana: blocks, mempool-blocks, live-2h-chart ja stats. 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. address-transactions uusille mempool-siirtotapahtumille ja block-transactions 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 yleisesti ehdotetut siirtokulut uusille siirtotapahtumille. + + 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 takalokin 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äydellinen 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ä: txid, fee, vsize ja 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). + Palauttaa lohkon vahvistustilan. Käytettävissä olevat kentät: in_best_chain (totuusarvo, virheellinen 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 status 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. + + 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ääritetyssä lohkossa. + + 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 tällä hetkellä: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 :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: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight, proof, ja previousblockhash. + + 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: txid, version, locktime, size, weight, fee, vin, vout ja 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). + Palauttaa siirtotapahtuman vahvistustilan. Käytettävissä olevat kentät: confirmed (totuusarvo), block_height (valinnainen) ja block_hash (valinnainen). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Palauttaa siirtotapahtuman, joka on esitetty heksoina. + + 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-osallisuustodisteen siirtotapahtumalle käyttämällä 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: spent (boolean), txid (valinnainen), vin (valinnainen) ja status (valinnainen, kulutetun tx:n tila). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Palauttaa kaikkien siirtotapahtuma ulostulojen 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 heksadesimaaleina pyynnön rungossa. Siirtotunniste 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-osallisuustodisteen siirtotapahtumalle käyttäenbitcoind's merkleblock format. + + 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. Käytettävissä olevat kentät: address, chain_stats ja mempool_stats. chain,mempool_stats sisältää kukin objektin, jolla on tx_count, funded_txo_count, funded_txo_sum, spent_txo_count ja 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). + Hanki määritetyn osoitteen/skriptitiivisteen siirtotapahtumahistoria, järjestetty uusin ensimmäisenä. Palauttaa jopa 50 mempool-siirtotapahtumaa plus 25 ensimmäistä vahvistettua siirtotapahtumaa. Voit pyytää lisää vahvistettuja siirtotapahtumia käyttämällä :last_seen_txid (katso alla). + + 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. + Hanki vahvistettu siirtotapahtumahistoria määritetylle osoitteelle/skriptitiivisteelle lajiteltuna ensin uusimmalla. Palauttaa 25 siirtotapahtumaa sivua kohden. Lisää voidaan pyytää määrittämällä viimeinen siirtotunniste, jonka edellinen kysely näki. + + 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). + Hanki vahvistamaton siirtotapahtumahistoria määritetylle osoitteelle/skriptitiivisteelle. Palauttaa jopa 50 siirtotapahtumaa (ei hakua). + + 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. + Hae luettelo osoitteeseen/skriptitiivisteeseen liittyviin käyttämättömiin siirtotapahtuma ulostuloihin. Käytettävissä olevat kentät: txid, vout, value ja status (rahoitetun tx-tilan kanssa). Siellä on myös valuecommitment kenttä, joka saattaa näkyä value sijasta, sekä seuraavat lisäkentät: asset/ assetcommitment, nonce/noncecommitment, surjection_proof ja range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Omaisuuserät + + 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. + Palauttaa Liquid omaisuuserän tiedot. + + 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. + Palauttaa määritettyyn Liquid omaisuuserään liittyvät siirtotapahtumat. Palauttaa verkon alkuperäisen omaisuuserän, luettelon kiinnittämisen, irrottamisen ja polttamisen siirtotapahtumista. Palauttaa käyttäjän liikkeeseen laskemien omaisuuserien luettelon liikkeeseenlaskuista, uudelleen liikkeeseen laskemisesta ja poltettavista siirtotapahtumista. Ei sisällä tavallisia siirtotapahtumia, joilla tämä omaisuuserä siirretään. + + 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. + Hanki määritetyn omaisuuserän nykyinen kokonaismäärä. Natiiville omaisuuserälle (L-BTC) tämä lasketaan muodossa [chain,mempool] _stats.peg_in_amount - [chain,mempool] _stats.peg_out_amount - [chain, mempool] _stats.burned_amount. Liikkeeseen laskettujen omaisuuserien kohdalla tämä lasketaan muodossa [chain,mempool] _stats.issued_amount - [chain,mempool] _stats.burned_amount. Ei saatavilla omaisuuserille, joiden liikkeeseenlaskut ovat piilotettu. Jos /decimal on määritetty, palauttaa tarjonnan desimaalina omaisuuserän jaettavuuden mukaan. Muuten palautetaan perusyksikköinä. + + 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. + Palauttaa kaikkien Bisq-siirtotapahtumien tilastot. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Palauttaa Bisq-siirtotapahtuman tiedot. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Palauttaa viimeisimpien Bisq-siirtotapahtumien :length alkaen :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Palauttaa kaikki Bisq-siirtotapahtumat, jotka ovat olemassa Bitcoin-lohkossa. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Palauttaa :length Bisq-siirtotapahtumia sisältävät Bitcoin-lohkot alkaen :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Palauttaa viimeisimmän Bisq:in käsittelemän Bitcoin-lohkon järjestysnumeron. + + 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. + Palauttaa kaikki Bisq-siirtotapahtumat, jotka kuuluvat Bitcoin-osoitteeseen, ja 'B'-etuliite osoitteen edessä. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Copied! + Kopioitu! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Tämä siirtotapahtuma säästää % siirtokuluista käyttämällä natiivia SegWit-Bech32:ta + + 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 + Tämä siirtotapahtuma säästää % siirtokuluista SegWitin avulla ja voi säästää % enemmän päivittämällä täysin natiiviin SegWit-Bech32:een + + 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 + Tämä siirtotapahtuma voisi säästää % siirtokuluista päivittämällä natiiviin SegWit-Bech32:een tai % päivittämällä versioon 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 + Tämä siirtotapahtuma tukee Replace-By-Fee (RBF), joka sallii siirtokulujen nostamisen + + 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 + Optimaalinen + + 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 + Vain ~ sat/vB tarvittiin päästäkseen tähän lohkoon + + 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 + Maksettu liikaa 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 + Maksettu liikaax + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + Just now + Juuri nyt + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + vuotta sitten + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + kuukautta sitten + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + viikkoa sitten + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + päivää sitten + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + tuntia sitten + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + m sitten + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + minuuttia sitten + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + s sitten + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + sekunttia sitten + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + vuotta sitten + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + kuukautta sitten + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + viikkoa sitten + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + päivää sitten + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + tuntia sitten + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + m sitten + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + minuuttia sitten + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + s sitten + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + sekunttia sitten + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ tilastot + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Nykyinen määrä + + 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 + Luotu määrä + + 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 + Poltettu määrä + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + 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 + + + Addresses + Osoitteet + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Käyttämättömät TXO:t + + 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 + Käytetyt TXO:t + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Hinta + + 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 + Markkina-arvo + + 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: + Osoite: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Confirmed + Vahvistettu + + 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 + + + Inputs + Syötteet + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Ulostulot + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Versio + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + + + Block : + Lohko : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Previous hash + Edellinen tiiviste + + 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 + Suodata + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Valitse kaikki + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Poista kaikkien valinta + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 810ace42c..ba5dbc98f 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -3,6 +3,7 @@ Transaction: + Transaction : src/app/components/transaction/transaction.component.ts 48 @@ -19,6 +20,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 @@ -35,48 +40,59 @@ RBF replacement transaction.rbf.replacement - - confirmation - 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 + + 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 Unconfirmed - non confirmées + non confirmée src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -86,7 +102,15 @@ Entrées & Sorties src/app/components/transaction/transaction.component.html - 164 + 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 @@ -96,7 +120,7 @@ Détails src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -106,7 +130,19 @@ Détails src/app/components/transaction/transaction.component.html - 172 + 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 @@ -115,16 +151,17 @@ Taille src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size Virtual size + Taille virtuelle src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -134,7 +171,7 @@ Poids src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -144,7 +181,19 @@ Horodatage src/app/components/transaction/transaction.component.html - 42 + 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 @@ -154,25 +203,43 @@ Frais src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Frais par vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -182,15 +249,15 @@ 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 @@ -212,6 +279,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 @@ -236,7 +311,11 @@ Inclus dans le bloc src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -246,17 +325,17 @@ Confirmé src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Après + + After + Après src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -266,11 +345,15 @@ Fonctionnalités src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -280,27 +363,17 @@ HAP src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Vu pour la première fois src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -310,43 +383,17 @@ Dans plusieurs heures (ou plus) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minutes - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 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. Transaction introuvable. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -355,15 +402,73 @@ Veuillez patienter pendant que nous attendons qu'elle apparaisse dans le mempool src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks + + In ~ minutes + Dans ~ minutes src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Dans ~ minute + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + bloc + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + blocs + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -468,13 +573,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-out à + + Peg-out to + Peg-out vers src/app/components/transactions-list/transactions-list.component.html 125 @@ -486,7 +591,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -496,7 +601,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -506,7 +611,11 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -519,7 +628,7 @@ Donnée src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -528,48 +637,17 @@ Sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - confirmation - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - confirmations - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Non-confirmé - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Confidentiel src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -587,6 +665,7 @@ Block : + Bloc : src/app/components/block/block.component.ts 98 @@ -608,6 +687,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -617,6 +700,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 @@ -686,6 +777,7 @@ Based on average native segwit transaction of 140 vBytes + Basé sur une transaction segwit standard de 140 vBytes src/app/components/block/block.component.html 46 @@ -736,55 +828,68 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - Transaction + + 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - Transactions + + 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural Error loading block data. - Erreur dans le chargement des données du bloc + Erreur lors du chargement des données du bloc src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data Address: + Adresse : src/app/components/address/address.component.ts 64 @@ -797,6 +902,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -806,6 +915,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -815,19 +928,32 @@ 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 + address.total-sent Balance - Balance + Solde src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance of transaction + Transaction sur src/app/components/address/address.component.html 48 @@ -836,6 +962,7 @@ of transactions + Transactions sur src/app/components/address/address.component.html 49 @@ -844,7 +971,7 @@ Error loading address data. - Erreur dans le chargement des données de l'adresse + Erreur lors du chargement des données de l'adresse src/app/components/address/address.component.html 105 @@ -853,7 +980,7 @@ TXID, block height, hash or address - TXID, hauteur de bloc, hash ou addresse + Identifiant de transaction, hauteur de bloc, hash ou addresse src/app/components/search-form/search-form.component.html 4 @@ -862,6 +989,7 @@ Search + Rechercher src/app/components/search-form/search-form.component.html 7 @@ -870,6 +998,7 @@ Blocks + Blocs src/app/components/latest-blocks/latest-blocks.component.ts 37 @@ -881,6 +1010,7 @@ Blocks + Blocs src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -968,7 +1098,7 @@ multisig of - multisig de + multisig pour src/app/components/address-labels/address-labels.component.html 1 @@ -984,49 +1114,9 @@ address-labels.upper-layer-peg-out - - In - Dans - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - Minute - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - Minutes - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - Blocs - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API + API src/app/components/master-page/master-page.component.html 56 @@ -1039,6 +1129,7 @@ About + A propos src/app/components/master-page/master-page.component.html 59 @@ -1078,6 +1169,7 @@ Stats + Statistiques src/app/components/master-page/master-page.component.html 35 @@ -1086,6 +1178,7 @@ Dashboard + Tableau de bord src/app/components/master-page/master-page.component.html 40 @@ -1094,6 +1187,7 @@ Graphs + Graphiques src/app/components/master-page/master-page.component.html 46 @@ -1106,6 +1200,7 @@ TV view + Vue TV src/app/components/master-page/master-page.component.html 49 @@ -1118,6 +1213,7 @@ Assets + Actifs src/app/components/master-page/master-page.component.html 53 @@ -1206,19 +1302,20 @@ 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 Navigate to https://mempool.space/about to sponsor + Aller à https://mempool.space/aboutpour sponsoriser src/app/components/about/about.component.html 65 @@ -1308,6 +1405,7 @@ Invert + Inverser src/app/components/statistics/statistics.component.html 43 @@ -1342,14 +1440,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Taille du mempool: + + Unconfirmed + Non confirmées + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Taille du mempool src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1360,21 +1477,27 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block + Prochain bloc src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1382,6 +1505,7 @@ Stack of mempool blocks + Pile de blocs dans le mempool src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1389,6 +1513,7 @@ Mempool block + Bloc du mempool src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1414,6 +1539,7 @@ Asset: + Actif : src/app/components/asset/asset.component.ts 73 @@ -1481,7 +1607,7 @@ Pegged out - Pegged in + Pegged out src/app/components/asset/asset.component.html 47 @@ -1496,6 +1622,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 @@ -1515,6 +1645,7 @@ Peg In/Out and Burn Transactions + Peg In/out et transactions de brûlage src/app/components/asset/asset.component.html 75 @@ -1523,6 +1654,7 @@ Issuance and Burn Transactions + Transactions d'émission et de brulâge src/app/components/asset/asset.component.html 75 @@ -1540,6 +1672,7 @@ Registered assets + Actifs enregistrés src/app/assets/assets.component.html 2 @@ -1548,6 +1681,7 @@ Search asset + Rechercher un actif src/app/assets/assets.component.html 9 @@ -1556,6 +1690,7 @@ Clear + Supprimer src/app/assets/assets.component.html 11 @@ -1564,6 +1699,7 @@ Name + Nom src/app/assets/assets.component.html 19 @@ -1576,6 +1712,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1588,6 +1725,7 @@ Issuer domain + Domaine de l'émetteur src/app/assets/assets.component.html 21 @@ -1600,6 +1738,7 @@ Asset ID + Identifiant de l'actif src/app/assets/assets.component.html 22 @@ -1612,6 +1751,7 @@ Issuance TX + Transaction d'émission src/app/assets/assets.component.html 23 @@ -1624,6 +1764,7 @@ Error loading assets data. + Erreur lors du chargement des données des actifs. src/app/assets/assets.component.html 67 @@ -1632,6 +1773,7 @@ Identified by payout address: '' + Identifué par l'adresse : '' src/app/components/miner/miner.component.ts 42 @@ -1639,6 +1781,7 @@ Identified by coinbase tag: '' + Identifié par le tag de transaction coinbase : '' src/app/components/miner/miner.component.ts 52 @@ -1692,8 +1835,125 @@ 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 + 172 + + 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 + Etendre + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Ecraser + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Incoming transactions + Transactions entrantes + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Ajustement de la difficulté + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service + Service API src/app/components/api-docs/api-docs.component.html 4 @@ -1712,6 +1972,7 @@ Endpoint + Endpoint src/app/components/api-docs/api-docs.component.html 14 @@ -1805,6 +2066,7 @@ Returns our currently suggested fees for new transactions. + Retourne notre suggestion de frais actuelle pour de nouvelles transactions. src/app/components/api-docs/api-docs.component.html 37 @@ -1814,6 +2076,7 @@ Returns current mempool as projected blocks. + Retourne le mempool actuel en nombre de blocs projetés src/app/components/api-docs/api-docs.component.html 41 @@ -1833,6 +2096,7 @@ Returns current mempool backlog statistics. + Retourne les statistiques actuelles du mempool. src/app/components/api-docs/api-docs.component.html 59 @@ -1842,6 +2106,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. + Donne la liste complète des transactions présentes dans le mempool sous forme d'un tableau. L'ordre des transactions est arbitraire et ne correspond pas à celui de bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1851,6 +2116,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. + Donne une liste des 10 dernières transactions ayant fait leur entrée dans le mempool. Chaque objet "transaction" contient une vue d'ensemble simplifiée des données, avec les champs suivants : txid , frais, vsize, et montant. src/app/components/api-docs/api-docs.component.html 67 @@ -1860,6 +2126,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). + Retourne le statut de de confirmation d'un bloc. Les champs disponibles sont : in_best_chain (booléen, faux pour les blocs orphelins), next_best (le hash du prochain bloc, disponible seulement pour les blocs de la chaîne canonique). src/app/components/api-docs/api-docs.component.html 89 @@ -2134,166 +2401,6 @@ 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! @@ -2578,6 +2685,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 @@ -2643,6 +2758,42 @@ 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 + + + 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 : @@ -2650,6 +2801,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 @@ -2671,13 +2835,6 @@ 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 1328d5730..c34e22e21 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.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 @@ -35,38 +39,44 @@ RBF replacement transaction.rbf.replacement - - confirmation - potvrda + + 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 - potvrde + + 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 @@ -76,7 +86,11 @@ Nepotvrđeno src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -86,7 +100,15 @@ Ulazi & Izlazi src/app/components/transaction/transaction.component.html - 164 + 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 @@ -96,7 +118,7 @@ Detalji src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -106,7 +128,19 @@ Detalji src/app/components/transaction/transaction.component.html - 172 + 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 @@ -115,7 +149,7 @@ Veličina src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -125,7 +159,7 @@ Virtualna veličina src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -135,7 +169,7 @@ Težina src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -145,7 +179,19 @@ Vremenski otisak src/app/components/transaction/transaction.component.html - 42 + 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 @@ -155,25 +201,43 @@ Naknada src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Naknada po vByte-u src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -183,15 +247,15 @@ 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 @@ -213,6 +277,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 @@ -237,7 +309,11 @@ Uključen u bloku src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -247,17 +323,16 @@ Potvrđena src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Poslje + + After src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -266,11 +341,15 @@ Features src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -279,27 +358,17 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 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 + 113 Transaction first seen transaction.first-seen @@ -308,41 +377,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 @@ -350,15 +394,69 @@ 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -452,12 +550,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 @@ -468,7 +566,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -477,7 +575,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -486,7 +584,11 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -498,7 +600,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -506,44 +608,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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -580,6 +654,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -588,6 +666,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 @@ -700,39 +786,51 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -740,7 +838,7 @@ Error loading block data. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -757,6 +855,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -765,6 +867,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -773,6 +879,14 @@ 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 + address.total-sent @@ -781,6 +895,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -934,43 +1052,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 @@ -1140,14 +1221,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 @@ -1264,13 +1345,31 @@ footer.tx-vbytes-per-second - - Mempool size: + + Unconfirmed + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1280,17 +1379,22 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s + + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1405,6 +1509,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 @@ -1595,6 +1703,110 @@ 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 + 172 + + 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 + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service @@ -2031,153 +2243,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! @@ -2460,6 +2525,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 @@ -2525,6 +2598,42 @@ 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 + + + 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 : @@ -2532,6 +2641,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 @@ -2553,13 +2675,6 @@ 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 fb3581000..5660814dd 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ 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 @@ -77,7 +89,11 @@ 未確認 src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ インプットとアウトプット src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ 詳細 src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ 詳細 src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ サイズ src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ 仮想サイズ src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ 重み src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ タイムスタンプ src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ 手数料 src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 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 vByteあたりの手数料 src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ サトシ/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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ ブロックに含まれています src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ 確認済み 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 @@ -268,11 +346,15 @@ 特徴 src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ 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 @@ -312,44 +384,17 @@ 数時間(またはそれ以上) 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 @@ -358,16 +403,73 @@ 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + 分で + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + ブロック + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + ブロック + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ 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 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ タイプ src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ データ src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ サトシ 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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential 機密 src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ ブロックデータを読み込み中にエラーが発生しました。 src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,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 API @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Mempoolサイズ: + + Unconfirmed + 未確認 + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Mempoolサイズ src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + 着信トランザクション + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + 難易度調整 + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service APIサービス @@ -2216,170 +2438,6 @@ 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! コピー されました! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 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 + + + 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 : ブロック @@ -2775,6 +2881,20 @@ 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 フィルタ @@ -2799,14 +2919,6 @@ 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.ka.xlf b/frontend/src/locale/messages.ka.xlf index 78691d126..9951af482 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ 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 @@ -77,7 +89,11 @@ დაუდასტურებული src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ შემავალი & გამომავალი src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ დეტალები src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ დეტალები src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ ზომა src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ ვირტუალური ზომა src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ წონა src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ დროის ნიშნული src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ საკომისიო src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 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 საკომისიო ყოველ vByte-ზე src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ სატ/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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ შედის ამ ბლოკში src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,16 @@ დადასტურებული 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 @@ -268,11 +345,15 @@ მეთოდი src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +363,17 @@ სავარაუდო ლოდინის დრო 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 @@ -312,44 +383,17 @@ რამდენიმე საათში (ან მეტი) 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 @@ -358,16 +402,73 @@ დაელოდეთ 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + ~ წუთში + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + ბლოკი + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + ბლოკი + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -465,12 +566,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 @@ -481,7 +582,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -490,7 +591,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -500,7 +601,11 @@ ტიპი src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -513,7 +618,7 @@ მონაცემები src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -522,48 +627,17 @@ სატ 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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential კონფიდენციალური src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -603,6 +677,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -612,6 +690,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 @@ -706,7 +792,7 @@ Total fees - შეკრებილი საკომისიო + ჯამში საკომისიო src/app/components/block/block.component.html 50 @@ -732,41 +818,53 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -775,7 +873,7 @@ შეცდომა მონაცემების მოძებვნაზე src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -794,6 +892,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -803,6 +905,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -812,6 +918,14 @@ 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 + address.total-sent @@ -821,11 +935,15 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance of transaction - ის ტრანსაქცია + ის ტრანსაქცია src/app/components/address/address.component.html 48 @@ -834,7 +952,7 @@ of transactions - ის ტრანსაქციები + ის ტრანსაქცია src/app/components/address/address.component.html 49 @@ -870,7 +988,7 @@ Blocks - ბლოკები + ბლოკი src/app/components/latest-blocks/latest-blocks.component.ts 37 @@ -882,7 +1000,7 @@ Blocks - ბლოკები + ბლოკი src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -941,7 +1059,7 @@ Transactions - ტრანსაქციები + ტრანზაქცია src/app/components/latest-blocks/latest-blocks.component.html 12 @@ -985,47 +1103,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 API @@ -1164,7 +1241,7 @@ Development - დეველოპმენტი + დეველოპერი src/app/components/about/about.component.html 32 @@ -1173,7 +1250,7 @@ Operations - Ოპერაციები + ოპერაცია src/app/components/about/about.component.html 40 @@ -1214,14 +1291,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 @@ -1308,7 +1385,7 @@ Mempool by vBytes (sat/vByte) - Mempool by vBytes (sat / vByte) + მემპული vBytes (სატ/vByte) მიხედვით src/app/components/statistics/statistics.component.html 16 @@ -1335,7 +1412,7 @@ Waiting for blocks... - ბლოკების მოლოდინში... + ბლოკის მოლოდინში... src/app/components/blockchain/blockchain.component.html 11 @@ -1352,14 +1429,33 @@ footer.tx-vbytes-per-second - - Mempool size: - მემპულის ზომა: + + Unconfirmed + დაუდასტურებული + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + მემპულის ზომა src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1370,18 +1466,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/წამში + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1418,7 +1519,7 @@ Total fees - შეკრებილი საკომისიო + ჯამში საკომისიო src/app/components/mempool-block/mempool-block.component.html 24 @@ -1510,6 +1611,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 @@ -1681,7 +1786,7 @@ Low priority - დაბალი პრიორიტეტი + ნელი src/app/components/fees-box/fees-box.component.html 4 @@ -1694,7 +1799,7 @@ Medium priority - საშუალო პრიორიტეტი + საშუალო src/app/components/fees-box/fees-box.component.html 10 @@ -1707,7 +1812,7 @@ High priority - Მაღალი პრიორიტეტი + სწრაფი src/app/components/fees-box/fees-box.component.html 16 @@ -1718,6 +1823,122 @@ 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 + 172 + + 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 + + + Incoming transactions + მიმდინარე ტრანზაქციები + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + სირთულე + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service API სერვისი @@ -1962,7 +2183,7 @@ Transactions - ტრანზაქციები + ტრანზაქცია src/app/components/api-docs/api-docs.component.html 129 @@ -2167,170 +2388,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 - ტრანსაქციის 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! დაკოპირდა @@ -2456,7 +2513,7 @@ year ago - წლის წინ + წლის წინ src/app/components/time-since/time-since.component.ts 58 @@ -2464,7 +2521,7 @@ month ago - თვის წინ + თვის წინ src/app/components/time-since/time-since.component.ts 59 @@ -2472,7 +2529,7 @@ week ago - კვირის წინ + კვირის წინ src/app/components/time-since/time-since.component.ts 60 @@ -2480,7 +2537,7 @@ day ago - დღის წინ + დღის წინ src/app/components/time-since/time-since.component.ts 61 @@ -2488,7 +2545,7 @@ hour ago - საათის წინ + საათის წინ src/app/components/time-since/time-since.component.ts 62 @@ -2496,7 +2553,7 @@ min ago - წუთის წინ + წუთის წინ src/app/components/time-since/time-since.component.ts 65 @@ -2504,7 +2561,7 @@ minute ago - წუთის წინ + წუთის წინ src/app/components/time-since/time-since.component.ts 67 @@ -2512,7 +2569,7 @@ sec ago - წამის წინ + წამის წინ src/app/components/time-since/time-since.component.ts 70 @@ -2520,7 +2577,7 @@ second ago - წამის წინ + წამის წინ src/app/components/time-since/time-since.component.ts 72 @@ -2528,7 +2585,7 @@ years ago - წლის წინ + წლის წინ src/app/components/time-since/time-since.component.ts 76 @@ -2536,7 +2593,7 @@ months ago - თვის წინ + თვის წინ src/app/components/time-since/time-since.component.ts 77 @@ -2544,7 +2601,7 @@ weeks ago - კვირის წინ + კვირის წინ src/app/components/time-since/time-since.component.ts 78 @@ -2552,7 +2609,7 @@ days ago - დღის წინ + დღის წინ src/app/components/time-since/time-since.component.ts 79 @@ -2560,7 +2617,7 @@ hours ago - საათის წინ + საათის წინ src/app/components/time-since/time-since.component.ts 80 @@ -2612,7 +2669,7 @@ Existing amount - არსებული რაოდენობა + არსებული თანხა src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2625,7 +2682,7 @@ Minted amount - მოპოვებული რაოდენობა + მოპოვებული თანხა src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2638,7 +2695,7 @@ Burnt amount - დამწვარი რაოდენობა + დამწვარი თანხა src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2647,6 +2704,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 @@ -2718,6 +2783,45 @@ 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 + + + 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 : ბლოკი : @@ -2726,6 +2830,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 გაფილტვრა @@ -2750,14 +2867,6 @@ 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.ko.xlf b/frontend/src/locale/messages.ko.xlf index f8a3ebfba..f60d1b5e4 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -1,16 +1,38 @@ + + 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-transaction/bisq-transaction.component.html + 3 + + + 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 @@ -18,125 +40,225 @@ 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 + 69 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 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 + 70 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 10 Transaction plural confirmation count shared.confirmation-count.plural Unconfirmed + 컨펌되지 않음 src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed Inputs & Outputs + 인풋과 아웃풋 src/app/components/transaction/transaction.component.html - 165 + 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 Details + 자세히 src/app/components/transaction/transaction.component.html - 167 + 170 Transaction Details transaction.details Details + 자세히 src/app/components/transaction/transaction.component.html - 173 + 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 Size + 크기 src/app/components/transaction/transaction.component.html - 178 + 181 Transaction Size transaction.size - - Weight + + Virtual size + 가상 크기 src/app/components/transaction/transaction.component.html - 182 + 185 + + Transaction Virtual Size + transaction.vsize + + + Weight + 무게 + + src/app/components/transaction/transaction.component.html + 189 Transaction Weight transaction.weight Timestamp + 타임스탬프 src/app/components/transaction/transaction.component.html - 42 + 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 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 + 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 + vByte당 수수료 + + src/app/components/transaction/transaction.component.html + 83 + + + src/app/components/transaction/transaction.component.html + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 + Transaction fee transaction.fee-per-vbyte sat/vB + sat/vB src/app/components/transaction/transaction.component.html - 81 + 85 src/app/components/transaction/transaction.component.html - 154 + 157 src/app/components/transactions-list/transactions-list.component.html - 196 + 198 src/app/components/block/block.component.html @@ -158,6 +280,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 @@ -179,144 +309,173 @@ Included in block + 포함된 블록 src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block 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 Features + 기능 src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 137 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features ETA + 컨펌까지 남은 예상시간 src/app/components/transaction/transaction.component.html - 115 + 119 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 + 113 Transaction first seen transaction.first-seen 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 - 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 + 277 transaction.error.transaction-not-found Waiting for it to appear in the mempool... + 멤풀에 포함될때까지 대기하는 중... src/app/components/transaction/transaction.component.html - 267 + 278 transaction.error.waiting-for-it-to-appear - - Confidential + + In ~ minutes + ~분 뒤 - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 293 - src/app/components/transactions-list/transactions-list.component.html - 208 + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + ~분 뒤 + + src/app/components/transaction/transaction.component.html + 295 - src/app/components/asset/asset.component.html - 143 + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + 블록 + + src/app/components/transaction/transaction.component.html + 297 - src/app/components/address/address.component.html - 112 + src/app/components/footer/footer.component.html + 22 - shared.confidential + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + 블록 + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 + + shared.blocks Coinbase + 코인베이스 src/app/components/transactions-list/transactions-list.component.html 39 @@ -325,6 +484,7 @@ (Newly Generated Coins) + (새로 채굴된 코인들) src/app/components/transactions-list/transactions-list.component.html 39 @@ -333,6 +493,7 @@ Peg-in + 페그 인 src/app/components/transactions-list/transactions-list.component.html 41 @@ -341,6 +502,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -349,6 +511,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -358,6 +521,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -367,6 +531,7 @@ Witness + 증인 (디지털 서명) src/app/components/transactions-list/transactions-list.component.html 80 @@ -375,6 +540,7 @@ P2SH redeem script + P2SH 사용 스크립트 src/app/components/transactions-list/transactions-list.component.html 84 @@ -383,6 +549,7 @@ P2WSH witness script + P2WSH 증인 스크립트 src/app/components/transactions-list/transactions-list.component.html 88 @@ -391,6 +558,7 @@ Previous output script + 이전 아웃풋 스크립트 src/app/components/transactions-list/transactions-list.component.html 96 @@ -399,18 +567,20 @@ Load all + 모두 불러오기 src/app/components/transactions-list/transactions-list.component.html 106 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 @@ -419,77 +589,92 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex Type + 종류 src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 + + + 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 + 178 transactions-list.vout.scriptpubkey-type.data sat + 사토시 src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation + + Confidential + 기밀 src/app/components/transactions-list/transactions-list.component.html - 201 + 214 - shared.confirmation-count.singular + + 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 - - confirmations + + Block : + 블록 : - src/app/components/transactions-list/transactions-list.component.html - 201 + src/app/components/block/block.component.ts + 98 - 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 @@ -498,22 +683,37 @@ Block + 블록 src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block Hash + 해시 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 Timestamp + 타임스탬프 src/app/components/block/block.component.html 22 @@ -526,10 +726,19 @@ 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 @@ -538,6 +747,7 @@ Weight + 무게 src/app/components/block/block.component.html 35 @@ -546,6 +756,7 @@ Miner + 채굴자 src/app/components/block/block.component.html 74 @@ -554,6 +765,7 @@ Median fee + 평균 수수료 src/app/components/block/block.component.html 45 @@ -564,8 +776,33 @@ 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 + 총 수수료 src/app/components/block/block.component.html 50 @@ -579,6 +816,7 @@ Subsidy + fees: + 채굴된 양 + 수수료: src/app/components/block/block.component.html 57 @@ -590,64 +828,212 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 - src/app/components/address/address.component.html - 46 + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural Error loading block data. + 블록 데이터 불러오기 실패 src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data + + Address: + 주소: + + src/app/components/address/address.component.ts + 64 + + + + Address + 주소 + + src/app/components/address/address.component.html + 2 + + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + + shared.address + + + Total received + 총 받은 양 + + src/app/components/address/address.component.html + 20 + + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + + address.total-received + + + Total sent + 총 보낸 양 + + 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 + + address.total-sent + + + Balance + 잔액 + + src/app/components/address/address.component.html + 28 + + + src/app/bisq/bisq-address/bisq-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 + 트랜잭션 ID, 블록 높이, 해시, 또는 주소 입력 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 @@ -656,10 +1042,19 @@ 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 @@ -672,28 +1067,33 @@ 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 - - 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 @@ -704,51 +1104,42 @@ Layer Peg-out + 레이어 페그 아웃 src/app/components/address-labels/address-labels.component.html 2 address-labels.upper-layer-peg-out - - In + + API + API - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 + src/app/components/master-page/master-page.component.html + 56 - 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 + src/app/components/api-docs/api-docs.component.ts 24 - shared.blocks + 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 @@ -757,6 +1148,7 @@ Reconnecting... + 다시 연결중... src/app/components/master-page/master-page.component.html 8 @@ -765,14 +1157,73 @@ 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 + TV 뷰 + + 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 @@ -781,6 +1232,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은 오픈소스 프로젝트이며 비트코인 생태계에 고품질 탐색기와 시각화 웹사이트의 제공을 목표로 두고 있습니다. 알트코인, 광고 또는 웹트래킹 같이 불필요한 요소는 일절 포함하지 않습니다. src/app/components/about/about.component.html 16 @@ -788,6 +1240,7 @@ Maintainers + 메인테이너들 src/app/components/about/about.component.html 22 @@ -796,6 +1249,7 @@ Development + 개발 src/app/components/about/about.component.html 32 @@ -804,6 +1258,7 @@ Operations + 운영 src/app/components/about/about.component.html 40 @@ -812,6 +1267,7 @@ Sponsors ❤️ + 후원 ❤️ src/app/components/about/about.component.html 47 @@ -820,6 +1276,7 @@ Become a sponsor ❤️ + 후원하기 ❤️ src/app/components/about/about.component.html 63 @@ -828,6 +1285,7 @@ Request invoice + 인보이스 요청하기 src/app/components/about/about.component.html 85 @@ -836,7 +1294,7 @@ Terms of Service - Terms of Service + 이용약관 src/app/components/about/about.component.html 206 @@ -852,24 +1310,18 @@ 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 + 필요한 금액 src/app/components/about/about.component.html 82 @@ -878,6 +1330,7 @@ Minimum amount is 0.001 BTC + 최소 금액은 0.001 BTC입니다 src/app/components/about/about.component.html 83 @@ -886,6 +1339,7 @@ If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + 0.01BTC 이상을 기부하시면 위의 후원 목록에 프로필 사진이 추가됩니다. :) src/app/components/about/about.component.html 92 @@ -894,6 +1348,7 @@ Waiting for transaction... + 트랜잭션을 기다리는 중... src/app/components/about/about.component.html 170 @@ -902,6 +1357,7 @@ Donation confirmed! + 후원이 완료되었습니다! src/app/components/about/about.component.html 175 @@ -910,6 +1366,7 @@ Thank you! + 감사합니다! src/app/components/about/about.component.html 175 @@ -918,6 +1375,7 @@ 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 @@ -926,6 +1384,7 @@ Loading graphs... + 그래프 로딩중... src/app/components/statistics/statistics.component.html 6 @@ -940,6 +1399,15 @@ statistics.memory-by-vBytes + + Invert + 뒤집기 + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -950,6 +1418,7 @@ Waiting for blocks... + 블록을 기다리는 중... src/app/components/blockchain/blockchain.component.html 11 @@ -959,42 +1428,95 @@ Tx vBytes per second: + 초당 트랜잭션 vBytes src/app/components/footer/footer.component.html 5 footer.tx-vbytes-per-second - - Mempool size: + + Unconfirmed + 컨펌되지 않음 + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + 멤풀 사이즈 src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing + 백엔드 동기화 중입니다 src/app/components/footer/footer.component.html 7 src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + 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 + 수수료 범위 src/app/components/mempool-block/mempool-block.component.html 20 @@ -1003,14 +1525,24 @@ 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 @@ -1020,6 +1552,7 @@ Precision + 정도 src/app/components/asset/asset.component.html 24 @@ -1029,6 +1562,7 @@ Burned amount + 소각량 src/app/components/asset/asset.component.html 55 @@ -1038,6 +1572,7 @@ Issuer + 발급자 src/app/components/asset/asset.component.html 28 @@ -1047,6 +1582,7 @@ Issuance TX + 발급 트랜잭션 src/app/components/asset/asset.component.html 32 @@ -1056,6 +1592,7 @@ Pegged in + 페그인 됨 src/app/components/asset/asset.component.html 43 @@ -1065,6 +1602,7 @@ Pegged out + 페그아웃 됨 src/app/components/asset/asset.component.html 47 @@ -1074,15 +1612,21 @@ Issued amount + 발급된 양 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 Circulating amount + 유통량 src/app/components/asset/asset.component.html 59 @@ -1094,16 +1638,152 @@ 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 + 지급 트랜잭션 + + 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: '' + 코인베이스 태그로 식별됨: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown + 알 수 없음 src/app/components/miner/miner.component.html 10 @@ -1112,6 +1792,7 @@ Low priority + 낮은 우선 순위 src/app/components/fees-box/fees-box.component.html 4 @@ -1124,6 +1805,7 @@ Medium priority + 중간 우선 순위 src/app/components/fees-box/fees-box.component.html 10 @@ -1136,6 +1818,7 @@ High priority + 높은 우선 순위 src/app/components/fees-box/fees-box.component.html 16 @@ -1148,6 +1831,7 @@ Latest blocks + 최신 블록 src/app/dashboard/dashboard.component.html 75 @@ -1156,18 +1840,20 @@ TXs + 트랜잭션 src/app/dashboard/dashboard.component.html 80 src/app/dashboard/dashboard.component.html - 170 + 172 dashboard.latest-blocks.transaction-count View all » + 모두 보기 » src/app/dashboard/dashboard.component.html 97 @@ -1176,6 +1862,7 @@ Latest transactions + 최신 트랜잭션 src/app/dashboard/dashboard.component.html 104 @@ -1184,6 +1871,7 @@ TXID + 트랜잭션 ID src/app/dashboard/dashboard.component.html 107 @@ -1192,14 +1880,20 @@ 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 @@ -1208,66 +1902,61 @@ USD + 달러 src/app/dashboard/dashboard.component.html 109 dashboard.latest-transactions.USD - - Mempool size + + Expand + 자세히 src/app/dashboard/dashboard.component.html - 162 + 131 - Mempool size - dashboard.mempool-size + dashboard.expand - - Unconfirmed + + Collapse + 간단히 src/app/dashboard/dashboard.component.html - 168 + 132 - Unconfirmed count - dashboard.unconfirmed - - - block - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block + dashboard.collapse Incoming transactions + 들어오는 트랜잭션 src/app/dashboard/dashboard.component.html - 178 + 180 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 + 196 dashboard.difficulty-adjustment + + 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 @@ -1277,7 +1966,7 @@ Endpoint - Endpoint + 엔드포인트 src/app/components/api-docs/api-docs.component.html 14 @@ -1315,7 +2004,7 @@ Description - Description + 설명 src/app/components/api-docs/api-docs.component.html 15 @@ -1353,7 +2042,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 @@ -1362,7 +2050,7 @@ Fees - Fees + 수수료 src/app/components/api-docs/api-docs.component.html 27 @@ -1372,7 +2060,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 @@ -1382,7 +2069,6 @@ Returns current mempool as projected blocks. - Returns current mempool as projected blocks. src/app/components/api-docs/api-docs.component.html 41 @@ -1392,7 +2078,7 @@ Mempool - Mempool + 멤풀 src/app/components/api-docs/api-docs.component.html 49 @@ -1402,7 +2088,7 @@ Returns current mempool backlog statistics. - Returns current mempool backlog statistics. + 현재 멤풀 백로그 통계를 반환 src/app/components/api-docs/api-docs.component.html 59 @@ -1412,7 +2098,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 @@ -1422,7 +2107,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 @@ -1430,19 +2114,8 @@ 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 @@ -1450,7 +2123,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 @@ -1458,7 +2130,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 @@ -1466,7 +2137,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 @@ -1474,7 +2144,7 @@ Returns the raw block representation in binary. - Returns the raw block representation in binary. + Raw 블록을 2진수로 반환 src/app/components/api-docs/api-docs.component.html 105 @@ -1482,7 +2152,7 @@ Returns the hash of the block currently at :height. - Returns the hash of the block currently at :height. + 현재 height 에있는 블록의 해시를 반환 src/app/components/api-docs/api-docs.component.html 109 @@ -1490,7 +2160,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 @@ -1498,7 +2167,7 @@ Returns the height of the last block. - Returns the height of the last block. + 마지막 블록의 높이를 반환 src/app/components/api-docs/api-docs.component.html 117 @@ -1506,7 +2175,7 @@ Returns the hash of the last block. - Returns the hash of the last block. + 마지막 블록의 해시를 반환 src/app/components/api-docs/api-docs.component.html 121 @@ -1514,7 +2183,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 @@ -1522,7 +2190,7 @@ Transactions - Transactions + 트랜잭션 src/app/components/api-docs/api-docs.component.html 129 @@ -1532,7 +2200,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 @@ -1540,7 +2207,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 @@ -1548,7 +2214,7 @@ Returns a transaction serialized as hex. - Returns a transaction serialized as hex. + 16진수로 직렬화된 트랜잭션을 반환 src/app/components/api-docs/api-docs.component.html 147 @@ -1556,7 +2222,7 @@ Returns a transaction as binary data. - Returns a transaction as binary data. + 트랜잭션을 이진수로 반환 src/app/components/api-docs/api-docs.component.html 151 @@ -1564,7 +2230,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 @@ -1572,7 +2237,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 @@ -1580,7 +2244,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 @@ -1588,7 +2251,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 @@ -1596,7 +2258,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 @@ -1604,7 +2265,7 @@ Addresses - Addresses + 주소들 src/app/components/api-docs/api-docs.component.html 179 @@ -1614,7 +2275,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 @@ -1622,7 +2282,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 @@ -1630,7 +2289,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 @@ -1638,7 +2296,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 @@ -1646,7 +2303,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 @@ -1654,7 +2310,7 @@ Assets - Assets + 자산 src/app/components/api-docs/api-docs.component.html 213 @@ -1664,7 +2320,7 @@ Returns information about a Liquid asset. - Returns information about a Liquid asset. + Liquid 자산에 대한 정보를 반환 src/app/components/api-docs/api-docs.component.html 223 @@ -1672,7 +2328,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 @@ -1680,7 +2335,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 @@ -1698,7 +2352,7 @@ Returns statistics about all Bisq transactions. - Returns statistics about all Bisq transactions. + 모든 Bisq 트랜잭션에 대한 통계를 반환 src/app/components/api-docs/api-docs.component.html 248 @@ -1706,7 +2360,7 @@ Returns details about a Bisq transaction. - Returns details about a Bisq transaction. + Bisq 트랜잭션에 대한 세부 정보를 반환 src/app/components/api-docs/api-docs.component.html 252 @@ -1714,7 +2368,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 @@ -1722,7 +2375,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 @@ -1730,7 +2382,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 @@ -1738,7 +2389,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 @@ -1746,271 +2396,30 @@ 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 + + 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 + 세그윗 src/app/components/tx-features/tx-features.component.html 1 @@ -2026,8 +2435,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 + + 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 src/app/components/tx-features/tx-features.component.html 8 @@ -2037,6 +2471,7 @@ Optimal + 최적 src/app/components/tx-fee-rating/tx-fee-rating.component.html 1 @@ -2044,8 +2479,22 @@ 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 @@ -2055,6 +2504,7 @@ Overpaid x + 초과 지불 x src/app/components/tx-fee-rating/tx-fee-rating.component.html 3 @@ -2062,6 +2512,371 @@ 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 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 62 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 57 + + 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 + + + + 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 + + + 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 : + 블록 : + + src/app/bisq/bisq-block/bisq-block.component.ts + 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 + + 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 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index cdf10b23d..f6cd259f0 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - Bekreftelse + + confirmation + bekreftelse 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 - Bekreftelser + + confirmations + bekreftelser 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 @@ -77,7 +89,11 @@ Ubekreftet src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Inndata og Utdata src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Detaljer src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Størrelse src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Virtuell størrelse src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Vekt src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Tidspunkt src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Avgift src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Avgift per vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Inkludert i blokk src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Bekreftet src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Etter + + After + Etter src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -268,11 +346,15 @@ Funksjoner src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Først sett src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -312,44 +384,17 @@ Om flere timer(eller mer) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minutter - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - Transaction Minutes - transaction.minutes - - - block - blokk - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. Transaksjon ikke funnet src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -358,16 +403,73 @@ Venter på at den kommer inn i mempool... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks - blokker + + In ~ minutes + Om ~ minutter src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Om ~ minutt + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + blokk + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + blokker + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-ut til + + Peg-out to + Peg-ut til src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - bekreftelse - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - bekreftelser - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Ubekreftet - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential - Konfidensiell + Konfidensielt src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - transaksjon + + transaction + transaksjon 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - transaksjoner + + transactions + transaksjoner 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Lasting av blokkdata feilet. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,6 @@ address-labels.upper-layer-peg-out - - In - Om - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - minutt - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - minutter - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - blokker - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API API @@ -1158,7 +1236,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. - Å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. + Mempool er et åpen-kildekode prosjekt som 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 @@ -1175,7 +1253,7 @@ Development - Utviklere + Utvikling src/app/components/about/about.component.html 32 @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: + + Unconfirmed + Ubekreftet + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size Mempool størrelse src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + Innkommende transaksjoner + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Vanskelighetsgradjustering + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service API Service @@ -1886,7 +2108,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. - Gir deg en full liste over txider i det nåværende mempoolet. 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 sin. src/app/components/api-docs/api-docs.component.html 63 @@ -1896,7 +2118,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. - 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 . + 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 , og value . src/app/components/api-docs/api-docs.component.html 67 @@ -2144,7 +2366,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. - 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. + Gir deg den nåværende totale forsyningen for den spesifiserte ressursen. For den native ressursen (L-BTC), er dette 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 @@ -2216,170 +2438,6 @@ 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! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 39 + + Confirmed + Bekreftet + + 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 + + + Inputs + Inndata + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Utdata + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Versjon + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : Blokk : @@ -2775,6 +2881,20 @@ 85 + + Previous hash + Forrige 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 Filter @@ -2799,14 +2919,6 @@ 57 - - Confirmed - Bekreftet - - 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 030c0b3b2..d3422f890 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -3,6 +3,7 @@ Transaction: + Transactie: src/app/components/transaction/transaction.component.ts 48 @@ -19,6 +20,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 @@ -35,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - bevestiging + + confirmation + bevestiging 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 - bevestigingen + + confirmations + bevestigingen 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 @@ -76,7 +89,11 @@ Onbevestigd src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -86,7 +103,15 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 164 + 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 @@ -96,7 +121,7 @@ Details src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -106,7 +131,19 @@ Details src/app/components/transaction/transaction.component.html - 172 + 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 @@ -115,16 +152,17 @@ Grootte src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size Virtual size + Virtuele grootte src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -134,7 +172,7 @@ Gewicht src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -144,7 +182,19 @@ Tijdstempel src/app/components/transaction/transaction.component.html - 42 + 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 @@ -154,25 +204,43 @@ Vergoeding src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Vergoeding per vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -182,15 +250,15 @@ 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 @@ -212,6 +280,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 @@ -236,7 +312,11 @@ Zit in blok src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -246,17 +326,17 @@ Bevestigd src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Na + + After + Na src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -266,11 +346,15 @@ Kenmerken src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -280,27 +364,17 @@ Verwacht src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Eerst gezien src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -310,43 +384,17 @@ Binnen een aantal uren (of meer) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minuten - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 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. Transactie niet gevonden. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -355,15 +403,73 @@ Wachten tot het in de mempool verschijnt... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks + + In ~ minutes + Binnen ~ minuten src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Binnen ~ minuut + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + blok + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + blokken + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -387,6 +493,7 @@ Peg-in + Peg-in src/app/components/transactions-list/transactions-list.component.html 41 @@ -467,12 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to + + Peg-out to + Peg-out naar src/app/components/transactions-list/transactions-list.component.html 125 @@ -481,18 +589,20 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -502,7 +612,11 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -515,7 +629,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -524,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - bevestiging - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - bevestigingen - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Onbevestigd - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Vertrouwelijk src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -583,6 +666,7 @@ Block : + Blok : src/app/components/block/block.component.ts 98 @@ -604,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -613,6 +701,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 @@ -660,7 +756,7 @@ Miner - Mijner + Gedolven door src/app/components/block/block.component.html 74 @@ -682,6 +778,7 @@ Based on average native segwit transaction of 140 vBytes + Gebaseerd op een gemiddelde native segwit-transactie van 140 vBytes src/app/components/block/block.component.html 46 @@ -732,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - transactie + + transaction + transactie 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - transacties + + transactions + transacties 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -775,12 +884,13 @@ Fout bij het laden van de blokdata. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data Address: + Adres: src/app/components/address/address.component.ts 64 @@ -793,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -802,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -811,6 +929,14 @@ 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 + address.total-sent @@ -820,10 +946,15 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance of transaction + van transactie src/app/components/address/address.component.html 48 @@ -832,6 +963,7 @@ of transactions + van transacties src/app/components/address/address.component.html 49 @@ -858,6 +990,7 @@ Search + Zoek src/app/components/search-form/search-form.component.html 7 @@ -878,6 +1011,7 @@ Blocks + Blokken src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -981,49 +1115,9 @@ address-labels.upper-layer-peg-out - - In - Binnen - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - minuut - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - minuten - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - blokken - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API + API src/app/components/master-page/master-page.component.html 56 @@ -1036,6 +1130,7 @@ About + Over src/app/components/master-page/master-page.component.html 59 @@ -1075,6 +1170,7 @@ Stats + Statistieken src/app/components/master-page/master-page.component.html 35 @@ -1083,6 +1179,7 @@ Dashboard + Dashboard src/app/components/master-page/master-page.component.html 40 @@ -1091,6 +1188,7 @@ Graphs + Grafieken src/app/components/master-page/master-page.component.html 46 @@ -1103,6 +1201,7 @@ TV view + TV-weergave src/app/components/master-page/master-page.component.html 49 @@ -1115,6 +1214,7 @@ Assets + Activa src/app/components/master-page/master-page.component.html 53 @@ -1162,7 +1262,7 @@ Operations - Operaties + Operationeel src/app/components/about/about.component.html 40 @@ -1203,19 +1303,20 @@ 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 Navigate to https://mempool.space/about to sponsor + Navigeer naar https://mempool.space/about om te sponsoren src/app/components/about/about.component.html 65 @@ -1305,6 +1406,7 @@ Invert + Omkeren src/app/components/statistics/statistics.component.html 43 @@ -1339,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Mempoolgrootte: + + Unconfirmed + Onbevestigd + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Mempoolgrootte src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1357,21 +1478,27 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block + Volgende blok src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1379,6 +1506,7 @@ Stack of mempool blocks + Stapel van mempoolblokken src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1386,6 +1514,7 @@ Mempool block + Mempoolblok src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1393,6 +1522,7 @@ Fee span + Vergoedingbereik src/app/components/mempool-block/mempool-block.component.html 20 @@ -1410,6 +1540,7 @@ Asset: + Activa: src/app/components/asset/asset.component.ts 73 @@ -1457,6 +1588,7 @@ Issuance TX + Uitgifte-TX src/app/components/asset/asset.component.html 32 @@ -1466,6 +1598,7 @@ Pegged in + Erin gezet src/app/components/asset/asset.component.html 43 @@ -1475,6 +1608,7 @@ Pegged out + Eruit gehaald src/app/components/asset/asset.component.html 47 @@ -1489,6 +1623,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 @@ -1508,6 +1646,7 @@ Peg In/Out and Burn Transactions + In-, Uithaal-, en vernietig-transacties src/app/components/asset/asset.component.html 75 @@ -1516,6 +1655,7 @@ Issuance and Burn Transactions + Uitgifte- en vernietigtransacties src/app/components/asset/asset.component.html 75 @@ -1533,6 +1673,7 @@ Registered assets + Geregistreerde activa src/app/assets/assets.component.html 2 @@ -1541,6 +1682,7 @@ Search asset + Zoek activa src/app/assets/assets.component.html 9 @@ -1549,6 +1691,7 @@ Clear + Wissen src/app/assets/assets.component.html 11 @@ -1557,6 +1700,7 @@ Name + Naam src/app/assets/assets.component.html 19 @@ -1569,6 +1713,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1581,6 +1726,7 @@ Issuer domain + Uitgeverdomein src/app/assets/assets.component.html 21 @@ -1593,6 +1739,7 @@ Asset ID + Activa-ID src/app/assets/assets.component.html 22 @@ -1605,6 +1752,7 @@ Issuance TX + Uitgifte-TX src/app/assets/assets.component.html 23 @@ -1617,6 +1765,7 @@ Error loading assets data. + Fout bij het laden van activagegevens. src/app/assets/assets.component.html 67 @@ -1625,6 +1774,7 @@ Identified by payout address: '' + Herkend door uitbetaaladres: '' src/app/components/miner/miner.component.ts 42 @@ -1632,6 +1782,7 @@ Identified by coinbase tag: '' + Herkend door coinbase-label '' src/app/components/miner/miner.component.ts 52 @@ -1685,8 +1836,125 @@ 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 + 172 + + 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 + Uitvouwen + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Invouwen + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Incoming transactions + Inkomende transacties + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Moeilijkheidsaanpassing + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service + API-dienst src/app/components/api-docs/api-docs.component.html 4 @@ -1781,6 +2049,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. + Standaard push: : action: 'want', data: ['blocks',...] laat zien wat je wil pushen. Beschikbaar: blocks, mempool-block, live-2h-chart, en stats. Push-transacties behorend bij adres: 'track-address': '3PbJ...bF9B' ontvangt nieuwe transacties die dat adres als input hebben. Geeft een lijst transacties. address-transactions voor nieuwe mempool-transacties, en block-transactions voor nieuw bevestigde transacties in het blok. src/app/components/api-docs/api-docs.component.html 19 @@ -1849,7 +2118,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 + Lijst van laatste 10 transacties die in de mempool komen. Elk transactieobject bevat gesimplificeerde data, met de velden: txid, fee, vsize, en value src/app/components/api-docs/api-docs.component.html 67 @@ -1859,7 +2128,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) + Geeft de bevestigingsstatus 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 @@ -1891,7 +2160,7 @@ Returns the raw block representation in binary. - Geeft rauwe block, in binaire vorm. + Geeft het rauwe blok weer, in binaire vorm. src/app/components/api-docs/api-docs.component.html 105 @@ -1949,6 +2218,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Geeft de details van een transactie. Beschikbare velden: txid, version, locktime. size, weight, fee, vin, vout en status. src/app/components/api-docs/api-docs.component.html 139 @@ -1956,6 +2226,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Geeft de bevestigingsstatus van een transactie. Beschikbare velden: confirmed (boolean), block_height (optioneel), en block_hash (optioneel), src/app/components/api-docs/api-docs.component.html 143 @@ -1963,6 +2234,7 @@ Returns a transaction serialized as hex. + Geeft een transactie terug in hex-formaat. src/app/components/api-docs/api-docs.component.html 147 @@ -1970,6 +2242,7 @@ Returns a transaction as binary data. + Geeft een transactie terug in binair formaat. src/app/components/api-docs/api-docs.component.html 151 @@ -1977,6 +2250,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Geeft het merkle-bewijs voor de transactie, gebruikmakend van het blockchain.transaction.get_merkle-formaat van Electrum. src/app/components/api-docs/api-docs.component.html 159 @@ -1984,6 +2258,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). + Geeft de uitgeef-status van de transactie-output. Beschikbare velden: spent (boolean), txid (optioneel), vin (optioneel), en status (optioneel, de status van de uitgevende transactie). src/app/components/api-docs/api-docs.component.html 163 @@ -1991,6 +2266,7 @@ Returns the spending status of all transaction outputs. + Geeft de uitgeef-status van alle transactie-outputs. src/app/components/api-docs/api-docs.component.html 167 @@ -1998,6 +2274,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. + Publiceer een rauwe transactie op het netwerk. Moet als hex-data gegeven worden. Als het lukt, wordt de txid teruggegeven. src/app/components/api-docs/api-docs.component.html 171 @@ -2005,6 +2282,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Geeft het merkle-bewijs voor de transactie, gebruikmakend van bitcoind's merkleblock-formaat. src/app/components/api-docs/api-docs.component.html 155 @@ -2022,6 +2300,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. + Geeft de details van een blok. Beschikbare velden: address, chain_stats, enmempool_stats. chain,mempool_stats hebben alleen een object met tx_count, funded_txo_count, funded_txo_sum, spent_txo_count en spent_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -2029,6 +2308,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). + Geeft de transactiehistorie voor het gevraagde adres/scripthash, nieuwste eerst. Geeft tot 50 transacties uit de mempool, en de eerste 25 niet-bevestigde transacties. Je kan meer transacties opvragen door :last_seen_txid op te geven (zie hieronder). src/app/components/api-docs/api-docs.component.html 193,194 @@ -2036,6 +2316,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. + Geeft de niet-bevestigde transactiehistorie voor de het gevraagde adres/scripthash. Geeft 25 transacties per pagina. Door de laatste txid op te geven kunnen meer worden opgevraagd. src/app/components/api-docs/api-docs.component.html 197 @@ -2043,6 +2324,7 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Geeft de niet-bevestigde transactiehistorie voor de het gevraagde adres/scripthash. Geeft tot 50 transacties (niet-gepagineerd). src/app/components/api-docs/api-docs.component.html 201 @@ -2050,6 +2332,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. + Geeft de lijst van transactie outputs bij een adres/scriphtash. Beschikbare velden: txid, vout, value. status (status van de funding-transactie). Er is ook een valuecommitment veld dat op de plek van value kan komen, met extra velden: asset/assetcommitment, nonce/noncecommitment, surjection_proof, en range_proof. src/app/components/api-docs/api-docs.component.html 205 @@ -2057,6 +2340,7 @@ Assets + Activa src/app/components/api-docs/api-docs.component.html 213 @@ -2066,6 +2350,7 @@ Returns information about a Liquid asset. + Geeft informatie van Liquid activa. src/app/components/api-docs/api-docs.component.html 223 @@ -2073,6 +2358,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. + Geeft de transacties die horen bij de Liquid-activa. Voor de originele activa, geeft de peg-in, peg-out en vernietig-transactie. Voor activa die voor gebruikers worden uitgegeven, wordt een lijst van uit-, heruitgave en vernietigtransacties gegeven. Hier zitten geen reguliere transacties bij. src/app/components/api-docs/api-docs.component.html 227 @@ -2080,6 +2366,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. + Geeft de huidige totale voorraad van de gespecificeerde activa. Voor de originele activa (L-BTC) wordt dit berekend als [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Voor uitgegeven activa wordt dit berekend als [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Niet beschikbaar voor activa met geblinddoekte uitgaven. Als /decimal wordt opgegeven, wordt de totale voorraad als decimaal teruggeveen, afhankelijk van de deelbaarheid van de activa. Anders komt het terug in basis-units. src/app/components/api-docs/api-docs.component.html 231 @@ -2097,6 +2384,7 @@ Returns statistics about all Bisq transactions. + Geeft statistieken van alle Bisq-transacties. src/app/components/api-docs/api-docs.component.html 248 @@ -2104,6 +2392,7 @@ Returns details about a Bisq transaction. + Geeft details over een Bisq-transactie. src/app/components/api-docs/api-docs.component.html 252 @@ -2111,6 +2400,7 @@ Returns :length of latest Bisq transactions, starting from :index. + Geeft :length Bisq-transacties, vanaf :index. src/app/components/api-docs/api-docs.component.html 256 @@ -2118,6 +2408,7 @@ Returns all Bisq transactions that exist in a Bitcoin block. + Geeft alle Bisq-transacties uit een Bitcoinblok. src/app/components/api-docs/api-docs.component.html 260 @@ -2125,6 +2416,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Geeft :length Bitcoinblokken die Bisq-transacties bevatten, vanaf :index. src/app/components/api-docs/api-docs.component.html 264 @@ -2132,6 +2424,7 @@ Returns the most recently processed Bitcoin block height processed by Bisq. + Geeft de meest recente Bitcoinblokken die door Bisq zijn behandeld. src/app/components/api-docs/api-docs.component.html 268 @@ -2139,173 +2432,15 @@ Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Geeft de Bisq-transacties die bij een Bitcoinadres horen, met een 'B' ervoor. src/app/components/api-docs/api-docs.component.html 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! + Gekopiëerd! src/app/components/clipboard/clipboard.component.ts 15 @@ -2313,6 +2448,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Deze transactie heeft % fees besparen door SegWit-Bech32 te gebruiken src/app/components/tx-features/tx-features.component.html 1 @@ -2339,6 +2475,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Deze transactie bespaarde % aan fees door SegWit te gebruiken en kan nog % besparen door native SegWit-Bech32 te gebruiken src/app/components/tx-features/tx-features.component.html 3 @@ -2347,6 +2484,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Deze transactie kon % op fees besparen door SegWit-Bech32 te gebruiken, of % door SegWit-P2SH te gebruiken src/app/components/tx-features/tx-features.component.html 5 @@ -2355,6 +2493,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Deze transactie ondersteunt Vervang-met-Fee (RBF) fee-verhoging src/app/components/tx-features/tx-features.component.html 8 @@ -2383,6 +2522,7 @@ Only ~ sat/vB was needed to get into this block + Er was maar ~ sat/vB nodig om in dit blok te komen src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2415,6 +2555,7 @@ Just now + Zojuist src/app/components/time-since/time-since.component.ts 49 @@ -2422,6 +2563,7 @@ year ago + jaar geleden src/app/components/time-since/time-since.component.ts 58 @@ -2429,6 +2571,7 @@ month ago + maand geleden src/app/components/time-since/time-since.component.ts 59 @@ -2436,6 +2579,7 @@ week ago + week geleden src/app/components/time-since/time-since.component.ts 60 @@ -2443,6 +2587,7 @@ day ago + dag geleden src/app/components/time-since/time-since.component.ts 61 @@ -2450,6 +2595,7 @@ hour ago + uur geleden src/app/components/time-since/time-since.component.ts 62 @@ -2457,6 +2603,7 @@ min ago + min geleden src/app/components/time-since/time-since.component.ts 65 @@ -2464,6 +2611,7 @@ minute ago + minuut geleden src/app/components/time-since/time-since.component.ts 67 @@ -2471,6 +2619,7 @@ sec ago + sec geleden src/app/components/time-since/time-since.component.ts 70 @@ -2478,6 +2627,7 @@ second ago + seconde geleden src/app/components/time-since/time-since.component.ts 72 @@ -2485,6 +2635,7 @@ years ago + jaar geleden src/app/components/time-since/time-since.component.ts 76 @@ -2492,6 +2643,7 @@ months ago + maanden geleden src/app/components/time-since/time-since.component.ts 77 @@ -2499,6 +2651,7 @@ weeks ago + weken geleden src/app/components/time-since/time-since.component.ts 78 @@ -2506,6 +2659,7 @@ days ago + dagen geleden src/app/components/time-since/time-since.component.ts 79 @@ -2513,6 +2667,7 @@ hours ago + uur geleden src/app/components/time-since/time-since.component.ts 80 @@ -2520,6 +2675,7 @@ mins ago + min geleden src/app/components/time-since/time-since.component.ts 83 @@ -2527,6 +2683,7 @@ minutes ago + minuten geleden src/app/components/time-since/time-since.component.ts 85 @@ -2534,6 +2691,7 @@ secs ago + sec geleden src/app/components/time-since/time-since.component.ts 88 @@ -2541,6 +2699,7 @@ seconds ago + seconden geleden src/app/components/time-since/time-since.component.ts 90 @@ -2548,6 +2707,7 @@ BSQ statistics + BSQ-statistieken src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2559,6 +2719,7 @@ Existing amount + Bestaande hoeveelheid src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2571,6 +2732,7 @@ Minted amount + Gecreëerde hoeveelheid src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2583,6 +2745,7 @@ Burnt amount + Vernietigde hoeveelheid src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2591,10 +2754,19 @@ 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 Addresses + Adressen src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2607,6 +2779,7 @@ Unspent TXOs + Niet-uitgegeven TXO's src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2619,6 +2792,7 @@ Spent TXOs + Uitgegeven TXO's src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2627,6 +2801,7 @@ Price + Prijs src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2639,6 +2814,7 @@ Market cap + Beurswaarde src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2651,20 +2827,77 @@ Address: + Adres: src/app/bisq/bisq-address/bisq-address.component.ts 39 + + Confirmed + Bevestigd + + 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 + + + Inputs + Inputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Outputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Versie + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : + Blok : src/app/bisq/bisq-block/bisq-block.component.ts 85 + + Previous hash + Vorige 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 + Filter src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2672,6 +2905,7 @@ Select all + Selecteer alles src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2679,18 +2913,12 @@ Unselect all + Deselecteer alles 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 b7dc9c557..a5e192d7f 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.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 @@ -35,38 +39,44 @@ RBF replacement transaction.rbf.replacement - - confirmation - potwierdzenie + + 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 - potwierdzenia + + 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 @@ -76,7 +86,11 @@ Niepotwierdzona src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -86,7 +100,15 @@ Wejścia i Wyjścia src/app/components/transaction/transaction.component.html - 164 + 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 @@ -96,7 +118,7 @@ Szczegóły src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -106,7 +128,19 @@ Szczegóły src/app/components/transaction/transaction.component.html - 172 + 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 @@ -115,7 +149,7 @@ Rozmiar src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -124,7 +158,7 @@ Virtual size src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -134,7 +168,7 @@ Waga src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -144,7 +178,19 @@ Datownik src/app/components/transaction/transaction.component.html - 42 + 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 @@ -154,25 +200,43 @@ Opłata src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Opłata za vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -182,15 +246,15 @@ 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 @@ -212,6 +276,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 @@ -236,7 +308,11 @@ Włączona w blok src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -246,17 +322,16 @@ Potwierdzona src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Po + + After src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -266,11 +341,15 @@ Cechy src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -280,27 +359,17 @@ Szacowany czas src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Najpierw widoczna src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -310,43 +379,17 @@ W ciągu kilku godzin (lub dłużej) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minut - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 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. Transakcja nie odnaleziona src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -355,15 +398,69 @@ Oczekiwanie aż pojawi się w 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -461,12 +558,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 @@ -477,7 +574,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -486,7 +583,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -495,7 +592,11 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -507,7 +608,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -515,44 +616,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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -589,6 +662,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -597,6 +674,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 @@ -709,39 +794,51 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -749,7 +846,7 @@ Error loading block data. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -766,6 +863,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -774,6 +875,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -782,6 +887,14 @@ 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 + address.total-sent @@ -790,6 +903,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -943,43 +1060,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 @@ -1149,14 +1229,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 @@ -1273,13 +1353,31 @@ footer.tx-vbytes-per-second - - Mempool size: + + Unconfirmed + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1289,17 +1387,22 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s + + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1414,6 +1517,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 @@ -1604,6 +1711,110 @@ 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 + 172 + + 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 + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service @@ -2040,153 +2251,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! @@ -2469,6 +2533,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 @@ -2534,6 +2606,42 @@ 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 + + + 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 : @@ -2541,6 +2649,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 @@ -2562,13 +2683,6 @@ 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 199ae986a..847251b59 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - confirmação + + confirmation + confirmação 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 - confirmações + + confirmations + confirmações 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 @@ -77,7 +89,11 @@ Não confirmado src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Entradas & Saídas src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Detalhes src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Detalhes src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Tamanho src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Tamanho virtual src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Peso src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Data e horário src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Taxa src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Taxa por vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Incluído no bloco src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Confirmado src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Depois + + After + Depois src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -268,11 +346,15 @@ Características src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Visto pela primeira vez src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -312,44 +384,17 @@ Em várias horas (ou mais) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minutos - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - Transaction Minutes - transaction.minutes - - - block - bloco - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. Transação não encontrada. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -358,16 +403,73 @@ Aguardando que apareça no mempool... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks - blocos + + In ~ minutes + Em ~ minutos src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Em ~ minuto + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + bloco + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + blocos + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Atrelado para + + Peg-out to + Atrelado para src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Tipo src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ dados src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - confirmação - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - confirmações - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Não confirmado - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Confidencial src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - transação + + transaction + transação 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - transações + + transactions + transações 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Erro ao carregar os dados do bloco. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,6 @@ address-labels.upper-layer-peg-out - - In - Em - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - minuto - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - minutos - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - blocos - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API API @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Tamanho do mempool: + + Unconfirmed + Não confirmado + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Tamanho do mempool src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + Expandir + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Colapso + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Incoming transactions + Transações de entrada + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Próximo ajuste de dificuldade + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service Serviço API @@ -1827,7 +2049,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. - Empurrão padrão: action: 'want', data: ['blocks', ...] para expressar o que você deseja empurrar. Disponível: blocks , mempool-block, live-2h-chart e stats. Empurrar transações relacionadas ao endereço: 'track-address': '3PbJ ... bF9B' para receber todas as novas transações contendo aquele endereço como entrada ou saída. Retorna um array de transações. endereço de transações para novas transações no mempool e transações no bloco para novas transações de bloco confirmadas. + Empurrão padrão: action: 'want', data: ['blocks', ...] para expressar o que você deseja empurrar. Disponível: blocks, mempool-block, live-2h-chart e stats. Empurrar transações relacionadas ao endereço: 'track-address': '3PbJ ... bF9B' para receber todas as novas transações contendo aquele endereço como entrada ou saída. Retorna um array de transações. address-transactionspara novas transações no mempool e block-transactionspara novas transações de bloco confirmadas. src/app/components/api-docs/api-docs.component.html 19 @@ -1896,7 +2118,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. - Obtenha uma lista das últimas 10 transações para entrar no mempool. Cada objeto de transação contém dados de visão geral simplificados, com os seguintes campos: ID da transação, taxa, tamanho virtual e valor. + Obtenha uma lista das últimas 10 transações para entrar no mempool. Cada objeto de transação contém dados de visão geral simplificados, com os seguintes campos: txid, fee, vsize e value. src/app/components/api-docs/api-docs.component.html 67 @@ -1906,7 +2128,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). - 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). + Retorna o status de confirmação de um bloco. Campos disponíveis: in_best_chain (booleano, falso para blocos órfãos), next_best (o hash do próximo bloco, disponível apenas para blocos na melhor cadeia). src/app/components/api-docs/api-docs.component.html 89 @@ -1914,7 +2136,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. - Retorna uma lista de transações no bloco (até 25 transações começando em índice_inicial). As transações retornadas aqui não possuem o campo de status, pois todas as transações compartilham o mesmo bloco e status de confirmação. + Retorna uma lista de transações no bloco (até 25 transações começando em start_index). As transações retornadas aqui não possuem o campo de status, pois todas as transações compartilham o mesmo bloco e status de confirmação. src/app/components/api-docs/api-docs.component.html 93 @@ -1930,7 +2152,7 @@ Returns the transaction at index :index within the specified block. - Retorna a transação no índice :índice dentro do bloco especificado. + Retorna a transação no índice :index dentro do bloco especificado. src/app/components/api-docs/api-docs.component.html 101 @@ -1946,7 +2168,7 @@ Returns the hash of the block currently at :height. - Retorna o hash do bloco atualmente na :altura. + Retorna o hash do bloco atualmente na :height. src/app/components/api-docs/api-docs.component.html 109 @@ -1954,7 +2176,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. - Retorna os 10 blocos mais novos começando na ponta ou em :inicio_altura se especificado. + Retorna os 10 blocos mais novos começando na ponta ou em :start_height se especificado. src/app/components/api-docs/api-docs.component.html 113 @@ -1978,7 +2200,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. - Retorna detalhes sobre um bloco. Campos disponíveis: id, altura, versão, data e horário, bits, nonce, merkle_root, tx_count, tamanho, peso, prova e bloco anterior. + Retorna detalhes sobre um bloco. Campos disponíveis: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight, proof e previousblockhash. src/app/components/api-docs/api-docs.component.html 85 @@ -1996,7 +2218,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. - Retorna detalhes sobre uma transação. Campos disponíveis: ID da transação, versão, tempo de bloqueio, tamanho, peso, taxa, vin, vout e status. + Retorna detalhes sobre uma transação. Campos disponíveis: txid, version, locktime, size, weight, fee, vin, vout e status. src/app/components/api-docs/api-docs.component.html 139 @@ -2004,7 +2226,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). - Retorna o status de confirmação de uma transação. Campos disponíveis: confirmado (booleano), altura_bloco (opcional) e hash_bloco (opcional). + Retorna o status de confirmação de uma transação. Campos disponíveis: confirmed (booleano), block_height (opcional) e block_hash (opcional). src/app/components/api-docs/api-docs.component.html 143 @@ -2036,7 +2258,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). - Retorna o status de gastos de uma saída de transação. Campos disponíveis: gasto (booleano), ID da transação (opcional), vin (opcional) e status (opcional, o status da transação de gasto). + Retorna o status de gastos de uma saída de transação. Campos disponíveis: spent (booleano), txid (opcional), vin (opcional) e status (opcional, o status da transação de gasto). src/app/components/api-docs/api-docs.component.html 163 @@ -2052,7 +2274,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. - Transmita uma transação bruta para a rede. A transação deve ser fornecida como hexadecimal no corpo da solicitação. O ID da transação será retornado em caso de sucesso. + Transmita uma transação bruta para a rede. A transação deve ser fornecida como hexadecimal no corpo da solicitação. O txid será retornado em caso de sucesso. src/app/components/api-docs/api-docs.component.html 171 @@ -2078,7 +2300,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. - Retorna detalhes sobre um endereço. Campos disponíveis: endereço, chain_stats e mempool_stats. cadeia, mempool_stats cada um contém um objeto com tx_count, funded_txo_count, funded_txo_sum, gastou_txo_count e gastou_txo_sum. + Retorna detalhes sobre um endereço. Campos disponíveis: address, chain_stats e mempool_stats. chain, mempool_stats cada um contém um objeto com tx_count, funded_txo_count, funded_txo_sum, spent_txo_count e spent_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -2110,7 +2332,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. - Obtenha a lista de saídas de transações não gastas associadas ao endereço/scripthash. Campos disponíveis: ID de transação, vout, value e status (com o status da transação de financiamento). Também há um campo de compromisso de valor que pode aparecer no lugar do valor, além dos seguintes campos adicionais: ativo / compromisso de ativo, nonce / compromisso de nonce, surjection_proof e range_proof. + Obtenha a lista de saídas de transações não gastas associadas ao endereço/scripthash. Campos disponíveis: txid, vout, value e status (com o status da transação de financiamento). Também há um campo de compromisso de valor que pode aparecer no lugar do valor, além dos seguintes campos adicionais: ativo / compromisso de ativo, nonce / compromisso de nonce, surjection_proof e range_proof. src/app/components/api-docs/api-docs.component.html 205 @@ -2216,170 +2438,6 @@ 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 - Expandir - - src/app/dashboard/dashboard.component.html - 131 - - dashboard.expand - - - Collapse - Colapso - - 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 - bloco - - src/app/dashboard/dashboard.component.html - 164 - - shared.block - - - blocks - blocos - - 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! Copiado! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 39 + + Confirmed + Confirmado + + 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 + + + Inputs + Entradas + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Saídas + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Versão + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : Bloco : @@ -2775,6 +2881,20 @@ 85 + + Previous hash + Hash anterior + + 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 Filtro @@ -2799,14 +2919,6 @@ 57 - - Confirmed - Confirmado - - 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 140979d89..131c66a38 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - potrditev + + confirmation + potrditev 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 - potrditev + + confirmations + potrditev 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 @@ -77,7 +89,11 @@ Nepotrjeno src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Vhodi & Izhodi src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Podrobnosti src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Podrobnosti src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Velikost src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Navidezna velikost src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Utež src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Datum in čas src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Omrežnina src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Omrežnina na vBajt src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Vključeno v blok src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Potrjeno src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Po + + After + Po src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -268,11 +346,15 @@ Lastnosti src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Prejeto src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -312,44 +384,17 @@ V nekaj urah (ali več) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minut - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - Transaction Minutes - transaction.minutes - - - block - blok - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. Transakcije ni mogoče najti. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -358,16 +403,73 @@ Čakanje, da se prikaže v mempool-u... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks - blokov + + In ~ minutes + Čez ~ minut src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Čez ~ minuto + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + blok + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + blokov + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-out v + + Peg-out to + Peg-out v src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Tip src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ podatki src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - potrditev - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - potrditev - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Nepotrjeno - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Zaupno src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - transakcija + + transaction + transakcija 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - transakcij + + transactions + transakcij 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Napaka pri nalaganju podatkov bloka. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,6 @@ address-labels.upper-layer-peg-out - - In - Čez - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - minuta - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - minut - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - blokov - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API API @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Mempool velikost: + + Unconfirmed + Nepotrjeno + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Mempool velikost src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBajtov/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + Pretočnost + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Prilagoditev težavnosti + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service API Vmesnik @@ -2216,170 +2438,6 @@ 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! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 39 + + Confirmed + Potrjeno + + 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 + + + Inputs + Vhodi + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Izhodi + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Verzija + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : Blok : @@ -2775,6 +2881,20 @@ 85 + + Previous hash + Prejšnji blok + + 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 Filter @@ -2799,14 +2919,6 @@ 57 - - Confirmed - Potrjeno - - 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 4dc81667f..51e2be3cb 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - bekräftelse + + confirmation + bekräftelse 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 - bekräftelser + + confirmations + bekräftelser 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 @@ -77,7 +89,11 @@ Obekräftad src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Detaljer src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Storlek src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Virtuell storlek src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Viktenheter src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Tidsstämpel src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Avgift src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Avgift per vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Ingår i blocket src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Bekräftad src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Efter + + After + Efter src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -268,11 +346,15 @@ Funktioner src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen Först sedd src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -312,44 +384,17 @@ Om flera timmar (eller mer) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - minuter - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - Transaction Minutes - transaction.minutes - - - block - block - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 129 - - shared.block - Transaction not found. Transaktionen hittades inte src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -358,16 +403,73 @@ Väntar på den att dyka upp i mempoolen... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks - block + + In ~ minutes + Om ~ minuter src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Om ~ minut + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + block + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + block + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to - Peg-out till + + Peg-out to + Peg-out till src/app/components/transactions-list/transactions-list.component.html 125 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Typ src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - bekräftelse - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - bekräftelser - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Obekräftad - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Konfidentiell src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -660,7 +747,7 @@ Weight - Weight + Viktenheter src/app/components/block/block.component.html 35 @@ -742,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - transaktion + + transaction + transaktion 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - transaktioner + + transactions + transaktioner 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Kunde inte ladda blockdata. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,6 @@ address-labels.upper-layer-peg-out - - In - Om - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - minut - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - minuter - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - block - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API API @@ -1158,7 +1236,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. - Det öppna källkodprojektet Mempool syftar till att implementera en högkvalitativ utforskare och visualiserare för hela Bitcoin-ekosystemet, utan distraktioner som altcoins, reklam eller tredjepartsspårare. + Öppen källkodsprojektet Mempool har som mål att implementera en högkvalitativ utforskare och visualiserare för hela Bitcoins ekosystem, utan distraktioner som altcoins, reklam eller tredjepartsspårare. src/app/components/about/about.component.html 16 @@ -1166,7 +1244,7 @@ Maintainers - Vidmakthållare + Ansvariga src/app/components/about/about.component.html 22 @@ -1184,7 +1262,7 @@ Operations - Operation + Drift src/app/components/about/about.component.html 40 @@ -1225,14 +1303,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 @@ -1337,7 +1415,7 @@ Transaction vBytes per second (vB/s) - Transaktion vBytes per sekund (vB/s) + Transaktioner i vBytes per sekund (vB/s) src/app/components/statistics/statistics.component.html 57 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Mempoolstorlek: + + Unconfirmed + Obekräftade + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Mempoolstorlek src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + Inkommande transaktioner + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Svårighetsjustering + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service API Service @@ -2216,170 +2438,6 @@ 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! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 39 + + Confirmed + Bekräftad + + 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 + + + Inputs + Inputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Outputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Version + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : Block : @@ -2775,6 +2881,20 @@ 85 + + Previous hash + Föregående 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 Filter @@ -2799,14 +2919,6 @@ 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 0b2cebb0e..e426c5c9a 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -3,6 +3,7 @@ Transaction: + İşlem: src/app/components/transaction/transaction.component.ts 48 @@ -19,6 +20,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 @@ -35,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - onay + + confirmation + onay 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 - onaylar + + confirmations + onaylar 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 @@ -76,7 +89,11 @@ Onaylanmamış src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -86,7 +103,15 @@ Giriş ve Çıkışlar src/app/components/transaction/transaction.component.html - 164 + 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 @@ -96,7 +121,7 @@ Detaylar src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -106,7 +131,19 @@ Detaylar src/app/components/transaction/transaction.component.html - 172 + 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 @@ -115,16 +152,17 @@ Boyut src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size Virtual size + Sanal Boyut src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -134,7 +172,7 @@ Ağırlık src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -144,7 +182,19 @@ Zaman damgası src/app/components/transaction/transaction.component.html - 42 + 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 @@ -154,25 +204,43 @@ Ücret src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 vByte başı ücret src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -182,15 +250,15 @@ 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 @@ -212,6 +280,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 @@ -236,7 +312,11 @@ İçinde bulunduğu blok src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -246,17 +326,17 @@ Onaylı src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Sonra + + After + 'dan sonra src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -266,11 +346,15 @@ Özellikler src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -280,27 +364,17 @@ Tahmini Varış Süresi src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - sat - - src/app/components/transaction/transaction.component.html - 149 - - Transaction Fee sat - transaction.fee.sat - First seen İlk görüldüğü an src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -310,65 +384,98 @@ Bir kaç saat içinde (veya daha sonra) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - dakikalar - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 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. İşlem bulunamadı. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found Waiting for it to appear in the mempool... - Mempool'da (bekleyen işlem havuzu) bekliyor. + Mempool'a dahil olmayı bekliyor. src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks + + In ~ minutes + ~ dakika içinde src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + ~ dakika içinde + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + block + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + blokl + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks Coinbase + Coinbase src/app/components/transactions-list/transactions-list.component.html 39 @@ -386,6 +493,7 @@ Peg-in + İçeri geçir src/app/components/transactions-list/transactions-list.component.html 41 @@ -394,6 +502,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -402,6 +511,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -411,6 +521,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -463,12 +574,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to + + Peg-out to + 'a çıkış src/app/components/transactions-list/transactions-list.component.html 125 @@ -477,18 +589,20 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -498,7 +612,11 @@ Tip src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -511,7 +629,7 @@ Data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -520,48 +638,17 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - onay - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - onay - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - - - Unconfirmed - Onaylanmamış - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Gizli src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -579,6 +666,7 @@ Block : + Blok : src/app/components/block/block.component.ts 98 @@ -586,6 +674,7 @@ Genesis + Genesis src/app/components/block/block.component.html 4 @@ -594,10 +683,15 @@ Block + Blok src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -607,6 +701,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 @@ -676,6 +778,7 @@ Based on average native segwit transaction of 140 vBytes + 140 vbytelık ortalama native segwit ücreti baz alınmıştır src/app/components/block/block.component.html 46 @@ -726,41 +829,53 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction - işlem + + transaction + işlem 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions - işlemler + + transactions + işlem 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -769,12 +884,13 @@ Blok datası yüklenirken hata oldu. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data Address: + Adres: Address: src/app/components/address/address.component.ts 64 @@ -787,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -796,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -805,6 +929,14 @@ 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 + address.total-sent @@ -814,10 +946,15 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance of transaction + bölü işlem src/app/components/address/address.component.html 48 @@ -826,6 +963,7 @@ of transactions + of transaction src/app/components/address/address.component.html 49 @@ -843,6 +981,7 @@ TXID, block height, hash or address + TXID, block yüksekliği, hash veya adres src/app/components/search-form/search-form.component.html 4 @@ -851,6 +990,7 @@ Search + Ara src/app/components/search-form/search-form.component.html 7 @@ -871,6 +1011,7 @@ Blocks + Bloklar src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -974,49 +1115,9 @@ address-labels.upper-layer-peg-out - - In - Içeri - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - dakika - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - dakikalar - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - bloklar - - src/app/components/mempool-blocks/mempool-blocks.component.html - 24 - - shared.blocks - API + API src/app/components/master-page/master-page.component.html 56 @@ -1029,6 +1130,7 @@ About + Hakkında src/app/components/master-page/master-page.component.html 59 @@ -1059,6 +1161,7 @@ Layer 2 Networks + 2. Katman Ağlar src/app/components/master-page/master-page.component.html 19 @@ -1067,6 +1170,7 @@ Stats + Stat src/app/components/master-page/master-page.component.html 35 @@ -1075,6 +1179,7 @@ Dashboard + Panel src/app/components/master-page/master-page.component.html 40 @@ -1083,6 +1188,7 @@ Graphs + Grafikler src/app/components/master-page/master-page.component.html 46 @@ -1095,6 +1201,7 @@ TV view + TV görünümü src/app/components/master-page/master-page.component.html 49 @@ -1107,6 +1214,7 @@ Assets + Varlıklar src/app/components/master-page/master-page.component.html 53 @@ -1136,7 +1244,7 @@ Maintainers - Bakıcılar + Kahramanlar src/app/components/about/about.component.html 22 @@ -1195,19 +1303,20 @@ 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 Navigate to https://mempool.space/about to sponsor + Sponsorluk hakkındaya https://mempool.space/about yönlendir. src/app/components/about/about.component.html 65 @@ -1234,7 +1343,7 @@ If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) - 0.01 BTC veya üstünde bağış yaparsanız, profil resminiz yukarıdaki listeye eklenecektir. + 0.01 BTC veya üstünde bağış yaparsanız, profil resminiz yukarıdaki listeye eklenecektir :) src/app/components/about/about.component.html 92 @@ -1288,7 +1397,7 @@ Mempool by vBytes (sat/vByte) - Mempool (bekleyen işlem havuzunun) vByte (sat/vByte) görünümü + Mempool vByte (sat/vByte) görünümü src/app/components/statistics/statistics.component.html 16 @@ -1297,6 +1406,7 @@ Invert + Ters çevir src/app/components/statistics/statistics.component.html 43 @@ -1331,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Mempool (bekleyen işlem havuzu) boyutu + + Unconfirmed + Onaylanmadı + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Mempool boyutu src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1349,21 +1478,27 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vb/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block + Sonraki blok src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1371,6 +1506,7 @@ Stack of mempool blocks + mempool bloklarının toplamı src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1378,6 +1514,7 @@ Mempool block + Mempool Blok src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1403,6 +1540,7 @@ Asset: + Varlık src/app/components/asset/asset.component.ts 73 @@ -1485,6 +1623,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 @@ -1504,6 +1646,7 @@ Peg In/Out and Burn Transactions + İçeri geçir/dışarı aktar ve Yanan işlemler src/app/components/asset/asset.component.html 75 @@ -1512,6 +1655,7 @@ Issuance and Burn Transactions + Yaratma ve yakma işlemleri src/app/components/asset/asset.component.html 75 @@ -1529,6 +1673,7 @@ Registered assets + Kayıtlı varlıklar src/app/assets/assets.component.html 2 @@ -1537,6 +1682,7 @@ Search asset + Varlık ara src/app/assets/assets.component.html 9 @@ -1545,6 +1691,7 @@ Clear + Temizle src/app/assets/assets.component.html 11 @@ -1553,6 +1700,7 @@ Name + İsim src/app/assets/assets.component.html 19 @@ -1565,6 +1713,7 @@ Ticker + Ticker src/app/assets/assets.component.html 20 @@ -1577,6 +1726,7 @@ Issuer domain + Ihraç edenin domaini src/app/assets/assets.component.html 21 @@ -1589,6 +1739,7 @@ Asset ID + Aset ID src/app/assets/assets.component.html 22 @@ -1601,6 +1752,7 @@ Issuance TX + Ihraç TX src/app/assets/assets.component.html 23 @@ -1613,6 +1765,7 @@ Error loading assets data. + Varlık datasını yüklerken hata oldu src/app/assets/assets.component.html 67 @@ -1621,6 +1774,7 @@ Identified by payout address: '' + Takip eden ödeme adresi tarafı tanıdı: '' src/app/components/miner/miner.component.ts 42 @@ -1628,6 +1782,7 @@ Identified by coinbase tag: '' + Coinbase tag'i tanıdı '' src/app/components/miner/miner.component.ts 52 @@ -1681,8 +1836,125 @@ 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 + 172 + + 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 + Genişlet + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Daralt + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Incoming transactions + Gelen işlemler + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Zorluk ayarı + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service + API Servisi src/app/components/api-docs/api-docs.component.html 4 @@ -1777,6 +2049,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. + action: 'want', data: ['blocks', ...] neyi pushlamak istediğini belirt. Kullanılabilir: blocks, mempool-block, live-2h-chart, ve stats.Belirtilen adrese gönderilen işlemler: 'track-address': '3PbJ...bF9B' bu adresi giriş ve çıkış olarak kullanan bütün işlemleri array olarak döndürür. address-transactions yeni mempool işlemleri ve block-transactions yeni blok işlemleri için. src/app/components/api-docs/api-docs.component.html 19 @@ -1805,7 +2078,7 @@ Returns current mempool as projected blocks. - Şu anki mempool (bekleyen işlem havuzunun) tahmini blok sayısı + Şu anki mempool'un tahmini blok sayısı src/app/components/api-docs/api-docs.component.html 41 @@ -1815,7 +2088,7 @@ Mempool - Mempool (bekleyen işlem havuzu) + Mempool src/app/components/api-docs/api-docs.component.html 49 @@ -1835,6 +2108,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. + Mempool'da bekleyen bütün txidleri array olarak al, işlem sırası rastgeledir ve bitcoind ile eşleşmez. src/app/components/api-docs/api-docs.component.html 63 @@ -1844,6 +2118,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. + Mempool'a giren son 10 işlemi listele. Her işlem takip eden basitleştirilmiş genel bakış datası içerir txid, fee, vsize, ve value. src/app/components/api-docs/api-docs.component.html 67 @@ -1853,6 +2128,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). + Bir bloğun onay sayısını gösterir. Kullanılabilir alanlar: 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 @@ -1860,6 +2136,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. + Takip eden bloktan başlayarak (25 işlem alacak şekilde işlemleri listeler start_index). Listedeki işlemlerin status field, yoktur çünkü hepsi aynı blok ve onay durumu bilgisini paylaşır. src/app/components/api-docs/api-docs.component.html 93 @@ -1875,6 +2152,7 @@ Returns the transaction at index :index within the specified block. + Takip eden endeksteki işlemi döndürür :index spesifik bloğun içinde belirtilen. src/app/components/api-docs/api-docs.component.html 101 @@ -1890,6 +2168,7 @@ Returns the hash of the block currently at :height. + Takip eden blok yüksekliğindeki hash'i gösterir :height. src/app/components/api-docs/api-docs.component.html 109 @@ -1897,6 +2176,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Eğer belirtilmişse takip eden bloktan başlayarak en son 10 bloğu gösterir :start_height src/app/components/api-docs/api-docs.component.html 113 @@ -1920,6 +2200,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Blok hakkında detayları gösterir. Mümkün olan detaylar: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, ve previousblockhash. src/app/components/api-docs/api-docs.component.html 85 @@ -1937,6 +2218,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Bir işlem hakkında işlem bilgisi verir. Mümkün olan bilgiler:  txid, version, locktime, size, weight, fee, vin, vout, ve status. src/app/components/api-docs/api-docs.component.html 139 @@ -1944,6 +2226,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Bir işlemin onay durumunu gösterir. Gösterilebilir alanlar: confirmed (boolean), block_height (opsiyonel), ve block_hash (opsiyonel). src/app/components/api-docs/api-docs.component.html 143 @@ -1951,6 +2234,7 @@ Returns a transaction serialized as hex. + Bir işlemi seri hex halinde al. src/app/components/api-docs/api-docs.component.html 147 @@ -1966,6 +2250,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + İşlem için Electrum's blockchain.transaction.get_merkle format. 'ını kullanarak merkle dahiliyeti kanıdı gösterir. src/app/components/api-docs/api-docs.component.html 159 @@ -1973,6 +2258,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). + Çıkış işleminin harcanma durumunu gösterir. Gösterilebilir alanlar: spent (boolean), txid (opsiyonel), vin (opsiyonel), ve status (opsiyonel, harcama işleminin durumu). src/app/components/api-docs/api-docs.component.html 163 @@ -1988,6 +2274,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. + Network'e ham işlem yayınla. İşlem istek kısmına hex olarak girilmeli. Başarılı olması halindetxid olarak gösterilir. src/app/components/api-docs/api-docs.component.html 171 @@ -1995,6 +2282,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + bitcoind's merkleblock formatını kullanarak merkle dahiliyet kanıdı döndürür. src/app/components/api-docs/api-docs.component.html 155 @@ -2012,6 +2300,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. + Adres hakkında detay gösterir. Gösterilebilir alanlar: address, chain_stats, ve mempool_stats. chain,mempool_stats each contain an object with tx_count, fonlanmış_txo_sayısı, funded_txo_count, spent_txo_count, ve spent_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -2019,6 +2308,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). + Belirtilen adres/scripthash için işlem geçmişi al, en yeni en sonda olacak şekilde sırala. 50 mempool işlemini ayrıyetten de ilk 25 onaylanmış işlemi gösterir. Daha fazla onaylanmış işlem için :last_seen_txid kullanabilirsiniz. (aşağıya bakınız). src/app/components/api-docs/api-docs.component.html 193,194 @@ -2026,6 +2316,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. + Belirtilen adres/scripthash için işlem geçmişi al, en yeni en sonda olacak şekilde sırala. Sayfa başına 25 işlem gösterir. Daha fazlası önceki istek formunda son txid belirtilerek istenebilir. src/app/components/api-docs/api-docs.component.html 197 @@ -2033,6 +2324,7 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Belirtilen adres/scripthash için için onaylanmamış işlem geçmişini iste. Sayfa başına 50 işlem gösterir. (tek sayfadır) src/app/components/api-docs/api-docs.component.html 201 @@ -2040,6 +2332,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. + Belirtilen adres/scripthashler için harcanmamış işlem çıkışlarını göster. Gösterilebilir alanlar: txid, vout, value, ve status (fonlayan tx'in durumu).Ayrıyetten valuecommitment alanı value yerine, ek olarak da : asset/assetcommitment, nonce/noncecommitment, surjection_proof, ve range_proof. gösterilebilir. src/app/components/api-docs/api-docs.component.html 205 @@ -2065,6 +2358,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. + Belirtilen Liquid varlık için işlemleri gösterir. Network'e ait yerli varlıklar için, peg in, peg out listeleri, yakılma işlemlerini de gösterir. Kullanıcı tarafından yaratılan varlıklar için, yaratma listesi, tekrar yaratma ve yakma işlemlerini gösterir. Bu varlığın transferini sağlayan sıradan işlemleri dahil etmez. src/app/components/api-docs/api-docs.component.html 227 @@ -2072,6 +2366,8 @@ 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. + Belirtilen varlığın toplam arzını al. Seçilen native varlık (L-BTC) için hesaplama devamındaki gibi yapılır: +[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. Gizli olarak yaratılan varlıklar için geçerli değildir. Eğer /bölünen belirtilmişse arzı varlığın bölünebilirliğine göre ondalık olarak verir. src/app/components/api-docs/api-docs.component.html 231 @@ -2105,6 +2401,7 @@ Returns :length of latest Bisq transactions, starting from :index. + Index'ten başlayara son Bisq işlemlerinin miktarını verir. src/app/components/api-docs/api-docs.component.html 256 @@ -2112,6 +2409,7 @@ Returns all Bisq transactions that exist in a Bitcoin block. + Bir Bitcoin bloğuna dahil bütün Bisq işlemlerini gösterir. src/app/components/api-docs/api-docs.component.html 260 @@ -2119,6 +2417,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + :,ndex'ten başlayarak Bisq işlemlerinin bulunduğu bütün Bitcoin block :length verir. src/app/components/api-docs/api-docs.component.html 264 @@ -2126,6 +2425,7 @@ Returns the most recently processed Bitcoin block height processed by Bisq. + Bisq tarafından işlenmiş en son Blok sayısını verir src/app/components/api-docs/api-docs.component.html 268 @@ -2133,173 +2433,15 @@ Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Bir Bitcoin adresine ait bütün Bisq işlemlerini verir. Adresler önüne 'B' yazılarak belirtilir. src/app/components/api-docs/api-docs.component.html 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! + Kopyalandı! src/app/components/clipboard/clipboard.component.ts 15 @@ -2307,6 +2449,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Bu işlem native SegWit-Bech 32 kullanarak % % tasarruf sağladı src/app/components/tx-features/tx-features.component.html 1 @@ -2333,6 +2476,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Bu işlem Segwit kullanarak ücretlerden % tasarruf etmenizi sağladı, işleminizi native SegWit-Bech32 ile yaparak % daha fazla tasarruf edebilirdiniz. src/app/components/tx-features/tx-features.component.html 3 @@ -2341,6 +2485,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Bu işlemi SegWit-Bech32 olarak gerçekleştirerek ücretlerden % tasarruf, SegWit-P2SH kullanarak ise % tasarruf edebilirdiniz. src/app/components/tx-features/tx-features.component.html 5 @@ -2349,6 +2494,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Bu işlem ücret arttırma opsiyonuna (RBF) izin veriyor. src/app/components/tx-features/tx-features.component.html 8 @@ -2377,6 +2523,7 @@ Only ~ sat/vB was needed to get into this block + Bu bloğa yetişebilmek için yaklaşık olarak   sat/vB gerekli src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2409,6 +2556,7 @@ Just now + Şimdi src/app/components/time-since/time-since.component.ts 49 @@ -2416,6 +2564,7 @@ year ago + yıl önce src/app/components/time-since/time-since.component.ts 58 @@ -2423,6 +2572,7 @@ month ago + ay önce src/app/components/time-since/time-since.component.ts 59 @@ -2430,6 +2580,7 @@ week ago + hafta önce src/app/components/time-since/time-since.component.ts 60 @@ -2437,6 +2588,7 @@ day ago + gün önce src/app/components/time-since/time-since.component.ts 61 @@ -2444,6 +2596,7 @@ hour ago + saat önce src/app/components/time-since/time-since.component.ts 62 @@ -2451,6 +2604,7 @@ min ago + dak. önce src/app/components/time-since/time-since.component.ts 65 @@ -2458,6 +2612,7 @@ minute ago + dakika önce src/app/components/time-since/time-since.component.ts 67 @@ -2465,6 +2620,7 @@ sec ago + san. önce src/app/components/time-since/time-since.component.ts 70 @@ -2472,6 +2628,7 @@ second ago + san. önce src/app/components/time-since/time-since.component.ts 72 @@ -2479,6 +2636,7 @@ years ago + yıl önce src/app/components/time-since/time-since.component.ts 76 @@ -2486,6 +2644,7 @@ months ago + ay önce src/app/components/time-since/time-since.component.ts 77 @@ -2493,6 +2652,7 @@ weeks ago + hafta önce src/app/components/time-since/time-since.component.ts 78 @@ -2500,6 +2660,7 @@ days ago + gün önce src/app/components/time-since/time-since.component.ts 79 @@ -2507,6 +2668,7 @@ hours ago + saat önce src/app/components/time-since/time-since.component.ts 80 @@ -2514,6 +2676,7 @@ mins ago + dak. önce src/app/components/time-since/time-since.component.ts 83 @@ -2521,6 +2684,7 @@ minutes ago + dakika önce src/app/components/time-since/time-since.component.ts 85 @@ -2528,6 +2692,7 @@ secs ago + san. önce src/app/components/time-since/time-since.component.ts 88 @@ -2535,6 +2700,7 @@ seconds ago + saniye önce src/app/components/time-since/time-since.component.ts 90 @@ -2542,6 +2708,7 @@ BSQ statistics + BSQ istatistikleri src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2553,6 +2720,7 @@ Existing amount + Çıkan miktar src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2565,6 +2733,7 @@ Minted amount + Basılan miktar src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2577,6 +2746,7 @@ Burnt amount + Yakılan miktar src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2585,10 +2755,19 @@ 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 Addresses + Adresler src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2601,6 +2780,7 @@ Unspent TXOs + Harcanmamış TXO'lar src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2613,6 +2793,7 @@ Spent TXOs + Harcanmış TXO'lar src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2621,6 +2802,7 @@ Price + Fiyat src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2633,6 +2815,7 @@ Market cap + Market Değeri src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2645,20 +2828,77 @@ Address: + Adres:   src/app/bisq/bisq-address/bisq-address.component.ts 39 + + Confirmed + Onaylandı + + 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 + + + Inputs + Girişler + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Çıkışlar + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Versiyon + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : + Blok : src/app/bisq/bisq-block/bisq-block.component.ts 85 + + Previous hash + Önceki 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 + Filtre src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2666,6 +2906,7 @@ Select all + Hepsini seç src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2673,18 +2914,12 @@ Unselect all + Seçimleri kaldır 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 ff2c4857e..e808a54ec 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ 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 @@ -77,7 +89,11 @@ Непідтверджена src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ Входи і Виходи src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ Деталі src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ Деталі src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ Розмір src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ Віртуальний розмір src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ Вага src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ Час src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ Комісія src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 152 Transaction fee transaction.fee + + sat + 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 Комісія за vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ Додана в блок src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ Підтверджена 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 @@ -268,11 +346,15 @@ Властивості src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ Орієнтовний час src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - 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 @@ -312,44 +384,17 @@ За кілька годин (або довше) 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 @@ -358,16 +403,73 @@ Чекаємо її появи в мемпулі... 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Через ~ хвилину + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + блок + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + блоків + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -472,13 +574,13 @@ 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 @@ -490,7 +592,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -500,7 +602,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -510,7 +612,11 @@ Тип src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -523,7 +629,7 @@ дані src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -532,48 +638,17 @@ 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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Конфіденційна src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -613,6 +688,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -622,6 +701,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 @@ -742,41 +829,53 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -785,7 +884,7 @@ Не вдалося завантажити дані про блок. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -804,6 +903,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -813,6 +916,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -822,6 +929,14 @@ 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 + address.total-sent @@ -831,6 +946,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -996,47 +1115,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 API @@ -1225,14 +1303,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 @@ -1363,14 +1441,33 @@ footer.tx-vbytes-per-second - - Mempool size: - Розмір мемпулу: + + Unconfirmed + Непідтверджені + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Розмір мемпулу src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1381,18 +1478,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1521,6 +1623,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 @@ -1730,6 +1836,122 @@ 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 + 172 + + 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 + + + Incoming transactions + Вхідні транзакції + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Регулювання складності + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service Сервіс API @@ -2216,170 +2438,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 - 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! Скопійовано! @@ -2696,6 +2754,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 @@ -2767,6 +2833,46 @@ 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 + + + 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 : Блок : @@ -2775,6 +2881,20 @@ 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 Фільтрувати @@ -2799,14 +2919,6 @@ 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 1be90c88f..e966ab709 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -3,6 +3,7 @@ Transaction: + Giao dịch: src/app/components/transaction/transaction.component.ts 48 @@ -19,6 +20,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 @@ -35,38 +40,46 @@ RBF replacement transaction.rbf.replacement - - confirmation - xác nhận + + confirmation + xác nhận 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 - xác nhận + + confirmations + xác nhận 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 @@ -76,7 +89,11 @@ Chưa xác nhận src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -86,7 +103,15 @@ Đầu vào & Đầu ra src/app/components/transaction/transaction.component.html - 164 + 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 @@ -96,7 +121,7 @@ Chi tiết src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -106,7 +131,19 @@ Chi tiết src/app/components/transaction/transaction.component.html - 172 + 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 @@ -115,26 +152,27 @@ Kích thước src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size Virtual size + Kích thước ảo src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize Weight - Cân nặng + Khối lượng src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -144,28 +182,26 @@ Dấu thời gian src/app/components/transaction/transaction.component.html - 42 + 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 Fee - Chi phí - - src/app/components/transaction/transaction.component.html - 75 - - - src/app/components/transaction/transaction.component.html - 148 - - Transaction fee - transaction.fee - - - Fee per vByte - Phí mỗi vByte + Phí src/app/components/transaction/transaction.component.html 79 @@ -175,21 +211,54 @@ 152 Transaction fee - transaction.fee-per-vbyte + transaction.fee - - sat/vB + + sat + sat src/app/components/transaction/transaction.component.html - 81 + 80 src/app/components/transaction/transaction.component.html 153 + Transaction Fee sat + transaction.fee.sat + + + Fee per vByte + Phí mỗi vByte + + src/app/components/transaction/transaction.component.html + 83 + + + src/app/components/transaction/transaction.component.html + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 85 + + + src/app/components/transaction/transaction.component.html + 157 + src/app/components/transactions-list/transactions-list.component.html - 196 + 198 src/app/components/block/block.component.html @@ -211,6 +280,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 @@ -235,7 +312,11 @@ Bao gồm trong khối src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -245,59 +326,55 @@ Đã xác nhận src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After - Sau + + After + Sau src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after Features - Điểm đặc trưng + Tính năng src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features ETA + Thời gian dự kiến 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 - Lần đầu tiên nhìn thấy + Lần đầu thấy src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -307,43 +384,17 @@ Trong vài giờ (hoặc hơn) src/app/components/transaction/transaction.component.html - 122 + 126 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 - 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. Không tìm thấy giao dịch. src/app/components/transaction/transaction.component.html - 273 + 277 transaction.error.transaction-not-found @@ -352,20 +403,79 @@ Đang đợi nó xuất hiện trong mempool ... src/app/components/transaction/transaction.component.html - 274 + 278 transaction.error.waiting-for-it-to-appear - - blocks + + In ~ minutes + Trong ~ phút src/app/components/transaction/transaction.component.html - 289 + 293 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + Trong ~ phút + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + khối + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + khối + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks Coinbase + Coinbase src/app/components/transactions-list/transactions-list.component.html 39 @@ -391,6 +501,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -399,6 +510,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -408,6 +520,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -417,6 +530,7 @@ Witness + Chứng kiến src/app/components/transactions-list/transactions-list.component.html 80 @@ -425,6 +539,7 @@ P2SH redeem script + Mã thu hồi P2SH src/app/components/transactions-list/transactions-list.component.html 84 @@ -433,6 +548,7 @@ P2WSH witness script + Mã chứng kiến P2WSH src/app/components/transactions-list/transactions-list.component.html 88 @@ -441,7 +557,7 @@ Previous output script - Tập lệnh đầu ra trước đó + Mã đầu ra trước đó src/app/components/transactions-list/transactions-list.component.html 96 @@ -457,12 +573,13 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to + + Peg-out to + Peg-out src/app/components/transactions-list/transactions-list.component.html 125 @@ -471,18 +588,20 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -492,7 +611,11 @@ Kiểu src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -505,55 +628,26 @@ dữ liệu src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data sat + sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 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 - - src/app/components/transactions-list/transactions-list.component.html - 203 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential Bảo mật src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -571,6 +665,7 @@ Block : + Khối : src/app/components/block/block.component.ts 98 @@ -578,6 +673,7 @@ Genesis + Khởi thuỷ src/app/components/block/block.component.html 4 @@ -586,22 +682,37 @@ Block + Khối src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block Hash + Băm 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 Timestamp + Dấu thời gian src/app/components/block/block.component.html 22 @@ -614,6 +725,7 @@ Size + Kích thước src/app/components/block/block.component.html 31 @@ -634,6 +746,7 @@ Weight + Khối lượng src/app/components/block/block.component.html 35 @@ -642,6 +755,7 @@ Miner + Thợ đào src/app/components/block/block.component.html 74 @@ -650,6 +764,7 @@ Median fee + Phí trung bình src/app/components/block/block.component.html 45 @@ -662,6 +777,7 @@ Based on average native segwit transaction of 140 vBytes + Dựa trên giao dịch segwit gốc trung bình là 140 vBytes src/app/components/block/block.component.html 46 @@ -686,6 +802,7 @@ Total fees + Tổng các khoản phí src/app/components/block/block.component.html 50 @@ -699,6 +816,7 @@ Subsidy + fees: + Trợ cấp + phí: src/app/components/block/block.component.html 57 @@ -710,52 +828,68 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction + + transaction + giao dịch 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions + + transactions + giao dịch 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural Error loading block data. + Lỗi khi tải dữ liệu khối. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data Address: + Địa chỉ: src/app/components/address/address.component.ts 64 @@ -763,38 +897,63 @@ Address + Địa chỉ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address Total received + Tổng nhận src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received Total sent + Tổng gửi 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 + address.total-sent Balance + Số dư src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance of transaction + trong giao dịch src/app/components/address/address.component.html 48 @@ -803,6 +962,7 @@ of transactions + trong giao dịch src/app/components/address/address.component.html 49 @@ -811,6 +971,7 @@ Error loading address data. + Lỗi khi tải dữ liệu địa chỉ. src/app/components/address/address.component.html 105 @@ -819,6 +980,7 @@ TXID, block height, hash or address + TXID, chiều cao khối, băm hoặc địa chỉ src/app/components/search-form/search-form.component.html 4 @@ -827,6 +989,7 @@ Search + Tìm kiếm src/app/components/search-form/search-form.component.html 7 @@ -835,6 +998,7 @@ Blocks + Khối src/app/components/latest-blocks/latest-blocks.component.ts 37 @@ -846,6 +1010,7 @@ Blocks + Khối src/app/components/latest-blocks/latest-blocks.component.html 2 @@ -870,6 +1035,7 @@ Height + Chiều cao src/app/components/latest-blocks/latest-blocks.component.html 9 @@ -890,6 +1056,7 @@ Mined + đã đào src/app/components/latest-blocks/latest-blocks.component.html 11 @@ -902,6 +1069,7 @@ Transactions + Giao dịch src/app/components/latest-blocks/latest-blocks.component.html 12 @@ -930,6 +1098,7 @@ multisig of + đa chữ kí trong src/app/components/address-labels/address-labels.component.html 1 @@ -938,51 +1107,16 @@ Layer Peg-out + Lớp 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 @@ -995,6 +1129,7 @@ About + Về chúng tôi src/app/components/master-page/master-page.component.html 59 @@ -1007,6 +1142,7 @@ Offline + Ngoại tuyến src/app/components/master-page/master-page.component.html 7 @@ -1015,6 +1151,7 @@ Reconnecting... + Đang kết nối lại ... src/app/components/master-page/master-page.component.html 8 @@ -1023,6 +1160,7 @@ Layer 2 Networks + Mạng lớp 2 src/app/components/master-page/master-page.component.html 19 @@ -1031,6 +1169,7 @@ Stats + Số liệu src/app/components/master-page/master-page.component.html 35 @@ -1039,6 +1178,7 @@ Dashboard + bảng điều khiển src/app/components/master-page/master-page.component.html 40 @@ -1047,6 +1187,7 @@ Graphs + Đồ thị src/app/components/master-page/master-page.component.html 46 @@ -1059,6 +1200,7 @@ TV view + Giao diện TV src/app/components/master-page/master-page.component.html 49 @@ -1071,6 +1213,7 @@ Assets + Tài sản src/app/components/master-page/master-page.component.html 53 @@ -1083,6 +1226,7 @@ About the project + Về dự án src/app/components/about/about.component.html 13 @@ -1091,6 +1235,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. + Dự án mã nguồn mở mempool hướng đến triển khai một trang web trực quan và chất lượng cao cho toàn bộ hệ sinh thái Bitcoin, không có sự phiền nhiễu khác như altcoin, quảng cáo hoặc trình theo dõi của bên thứ ba. src/app/components/about/about.component.html 16 @@ -1098,6 +1243,7 @@ Maintainers + Bảo trì src/app/components/about/about.component.html 22 @@ -1106,6 +1252,7 @@ Development + Phát triển src/app/components/about/about.component.html 32 @@ -1114,6 +1261,7 @@ Operations + Vận hành src/app/components/about/about.component.html 40 @@ -1122,6 +1270,7 @@ Sponsors ❤️ + Nhà tài trợ ❤️ src/app/components/about/about.component.html 47 @@ -1130,6 +1279,7 @@ Become a sponsor ❤️ + Trở thành nhà tài trợ ❤️ src/app/components/about/about.component.html 63 @@ -1138,6 +1288,7 @@ Request invoice + Yêu cầu hoá đơn src/app/components/about/about.component.html 85 @@ -1146,23 +1297,25 @@ Terms of Service + Điều khoản Dịch vụ 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 Navigate to https://mempool.space/about to sponsor + Điều hướng đến https://mempool.space/about để tài trợ src/app/components/about/about.component.html 65 @@ -1171,6 +1324,7 @@ Amount required + Số lượng yêu cầu src/app/components/about/about.component.html 82 @@ -1179,6 +1333,7 @@ Minimum amount is 0.001 BTC + Số lượng tối thiểu là 0,001 BTC src/app/components/about/about.component.html 83 @@ -1187,6 +1342,7 @@ If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Nếu bạn quyên góp từ 0,01 BTC trở lên, ảnh hồ sơ của bạn sẽ được thêm vào danh sách các nhà tài trợ ở trên :) src/app/components/about/about.component.html 92 @@ -1195,6 +1351,7 @@ Waiting for transaction... + Đang chờ giao dịch ... src/app/components/about/about.component.html 170 @@ -1203,6 +1360,7 @@ Donation confirmed! + Đã xác nhận tài trợ! src/app/components/about/about.component.html 175 @@ -1211,6 +1369,7 @@ Thank you! + Cảm ơn bạn! src/app/components/about/about.component.html 175 @@ -1219,6 +1378,7 @@ If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. + Nếu bạn đã chỉ định đường dẫn Twitter, ảnh hồ sơ bây giờ sẽ hiển thị trên trang này khi bạn tải lại. src/app/components/about/about.component.html 176 @@ -1227,6 +1387,7 @@ Loading graphs... + Đang tải đồ thị ... src/app/components/statistics/statistics.component.html 6 @@ -1235,6 +1396,7 @@ Mempool by vBytes (sat/vByte) + Mempool theo vBytes (sat / vByte) src/app/components/statistics/statistics.component.html 16 @@ -1243,6 +1405,7 @@ Invert + Đảo ngược src/app/components/statistics/statistics.component.html 43 @@ -1251,6 +1414,7 @@ Transaction vBytes per second (vB/s) + Giao dịch vBytes mỗi giây (vB / s) src/app/components/statistics/statistics.component.html 57 @@ -1259,6 +1423,7 @@ Waiting for blocks... + Đang chờ các khối ... src/app/components/blockchain/blockchain.component.html 11 @@ -1268,42 +1433,71 @@ Tx vBytes per second: + Tx vBytes mỗi giây: src/app/components/footer/footer.component.html 5 footer.tx-vbytes-per-second - - Mempool size: + + Unconfirmed + Chưa xác nhận + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + Kích thước mempool src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing + Backend đang đồng bộ src/app/components/footer/footer.component.html 7 src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s + + vB/s + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block + Khối tiếp theo src/app/components/mempool-block/mempool-block.component.ts 72 @@ -1311,6 +1505,7 @@ Stack of mempool blocks + Ngăn xếp của khối mempool src/app/components/mempool-block/mempool-block.component.ts 74 @@ -1318,6 +1513,7 @@ Mempool block + Khối mempool src/app/components/mempool-block/mempool-block.component.ts 76 @@ -1325,6 +1521,7 @@ Fee span + Khoảng phí src/app/components/mempool-block/mempool-block.component.html 20 @@ -1333,6 +1530,7 @@ Total fees + Tổng các khoản phí src/app/components/mempool-block/mempool-block.component.html 24 @@ -1341,6 +1539,7 @@ Asset: + Nội dung: src/app/components/asset/asset.component.ts 73 @@ -1348,6 +1547,7 @@ Name + Tên src/app/components/asset/asset.component.html 20 @@ -1357,6 +1557,7 @@ Precision + Độ chính xác src/app/components/asset/asset.component.html 24 @@ -1366,6 +1567,7 @@ Burned amount + Lượng đã đốt src/app/components/asset/asset.component.html 55 @@ -1375,6 +1577,7 @@ Issuer + Người phát hành src/app/components/asset/asset.component.html 28 @@ -1384,6 +1587,7 @@ Issuance TX + Phát hành TX src/app/components/asset/asset.component.html 32 @@ -1411,15 +1615,21 @@ Issued amount + Số lượng phát hành 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 Circulating amount + Số lượng luân chuyển src/app/components/asset/asset.component.html 59 @@ -1433,6 +1643,7 @@ Peg In/Out and Burn Transactions + Các giao dịch đốt và Peg In/Out src/app/components/asset/asset.component.html 75 @@ -1441,6 +1652,7 @@ Issuance and Burn Transactions + Các giao dịch đốt và phát hành src/app/components/asset/asset.component.html 75 @@ -1449,6 +1661,7 @@ Error loading asset data. + Lỗi khi tải dữ liệu tài sản. src/app/components/asset/asset.component.html 132 @@ -1457,6 +1670,7 @@ Registered assets + Tài sản đã đăng ký src/app/assets/assets.component.html 2 @@ -1465,6 +1679,7 @@ Search asset + Tìm kiếm tài sản src/app/assets/assets.component.html 9 @@ -1473,6 +1688,7 @@ Clear + Xoá src/app/assets/assets.component.html 11 @@ -1481,6 +1697,7 @@ Name + Tên src/app/assets/assets.component.html 19 @@ -1493,6 +1710,7 @@ Ticker + src/app/assets/assets.component.html 20 @@ -1505,6 +1723,7 @@ Issuer domain + Tên miền nhà phát hành src/app/assets/assets.component.html 21 @@ -1517,6 +1736,7 @@ Asset ID + ID tài sản src/app/assets/assets.component.html 22 @@ -1529,6 +1749,7 @@ Issuance TX + Giao dịch phát hành src/app/assets/assets.component.html 23 @@ -1541,6 +1762,7 @@ Error loading assets data. + Lỗi khi tải dữ liệu tài sản. src/app/assets/assets.component.html 67 @@ -1549,6 +1771,7 @@ Identified by payout address: '' + Được xác định theo địa chỉ thanh toán: '' src/app/components/miner/miner.component.ts 42 @@ -1556,6 +1779,7 @@ Identified by coinbase tag: '' + Được xác định bằng thẻ coinbase: '' src/app/components/miner/miner.component.ts 52 @@ -1563,6 +1787,7 @@ Unknown + Không xác định src/app/components/miner/miner.component.html 10 @@ -1571,6 +1796,7 @@ Low priority + Ưu tiên thấp src/app/components/fees-box/fees-box.component.html 4 @@ -1583,6 +1809,7 @@ Medium priority + Ưu tiên trung bình src/app/components/fees-box/fees-box.component.html 10 @@ -1595,6 +1822,7 @@ High priority + Ưu tiên cao src/app/components/fees-box/fees-box.component.html 16 @@ -1605,8 +1833,125 @@ fees-box.high-priority + + Latest blocks + Khối mới nhất + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + Các giao dịch + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 172 + + dashboard.latest-blocks.transaction-count + + + View all » + Xem tất cả » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Giao dịch mới nhất + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Số lượng + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Phí + + 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 + Mở rộng + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Thu gọn + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Incoming transactions + Giao dịch đến + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + Điều chỉnh độ khó + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service + Dịch vụ API src/app/components/api-docs/api-docs.component.html 4 @@ -1615,6 +1960,7 @@ Websocket + Websocket src/app/components/api-docs/api-docs.component.html 9 @@ -1624,6 +1970,7 @@ Endpoint + Endpoint src/app/components/api-docs/api-docs.component.html 14 @@ -1661,6 +2008,7 @@ Description + Mô tả src/app/components/api-docs/api-docs.component.html 15 @@ -1706,6 +2054,7 @@ Fees + Phí src/app/components/api-docs/api-docs.component.html 27 @@ -1715,6 +2064,7 @@ Returns our currently suggested fees for new transactions. + Trả lại phí đề xuất hiện tại của chúng tôi cho các giao dịch mới. src/app/components/api-docs/api-docs.component.html 37 @@ -1724,6 +2074,7 @@ Returns current mempool as projected blocks. + Trả về mempool hiện tại dưới dạng các khối dự kiến. src/app/components/api-docs/api-docs.component.html 41 @@ -1733,6 +2084,7 @@ Mempool + Mempool src/app/components/api-docs/api-docs.component.html 49 @@ -1742,6 +2094,7 @@ Returns current mempool backlog statistics. + Trả về thống kê tồn đọng mempool hiện tại. src/app/components/api-docs/api-docs.component.html 59 @@ -1751,6 +2104,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. + Nhận danh sách đầy đủ các txid trong mempool dưới dạng một mảng. Thứ tự của các txid là bất kì và không khớp với bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1769,6 +2123,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). + Trả về trạng thái xác nhận của một khối. Các trường có sẵn: in_best_chain (boolean, false cho các khối đơn lẻ), next_best (băm của khối tiếp theo, chỉ khả dụng cho các khối trong chuỗi tốt nhất). src/app/components/api-docs/api-docs.component.html 89 @@ -1776,6 +2131,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. + Trả về danh sách các giao dịch trong khối (tối đa 25 giao dịch bắt đầu tại start_index ). Các giao dịch được trả lại ở đây không có trường trạng thái , vì tất cả các giao dịch đều có chung một khối và trạng thái xác nhận. src/app/components/api-docs/api-docs.component.html 93 @@ -1783,6 +2139,7 @@ Returns a list of all txids in the block. + Trả về danh sách tất cả các txid trong khối. src/app/components/api-docs/api-docs.component.html 97 @@ -1790,6 +2147,7 @@ Returns the transaction at index :index within the specified block. + Trả về giao dịch tại chỉ mục : chỉ mục trong khối được chỉ định. src/app/components/api-docs/api-docs.component.html 101 @@ -1797,6 +2155,7 @@ Returns the raw block representation in binary. + Trả về biểu diễn khối thô trong hệ nhị phân. src/app/components/api-docs/api-docs.component.html 105 @@ -1804,6 +2163,7 @@ Returns the hash of the block currently at :height. + Trả về hàm băm của khối hiện tại : height . src/app/components/api-docs/api-docs.component.html 109 @@ -1811,6 +2171,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Trả về 10 khối mới nhất bắt đầu từ đầu hoặc tại : start_height nếu được chỉ định. src/app/components/api-docs/api-docs.component.html 113 @@ -1818,6 +2179,7 @@ Returns the height of the last block. + Trả về chiều cao của khối cuối cùng. src/app/components/api-docs/api-docs.component.html 117 @@ -1825,6 +2187,7 @@ Returns the hash of the last block. + Trả về hàm băm của khối cuối cùng. src/app/components/api-docs/api-docs.component.html 121 @@ -1832,6 +2195,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Trả về thông tin chi tiết của một khối. Trường có sẵn: id , height , phiên bản , timestamp , bit , nonce , merkle_root , tx_count , kích thước , cân, bằng chứng, trước đóblockhash . src/app/components/api-docs/api-docs.component.html 85 @@ -1839,6 +2203,7 @@ Transactions + Giao dịch src/app/components/api-docs/api-docs.component.html 129 @@ -1855,6 +2220,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Trả về trạng thái xác nhận của một giao dịch. Các trường có sẵn: confirmed (boolean), block_height (tùy chọn) và block_hash (tùy chọn). src/app/components/api-docs/api-docs.component.html 143 @@ -1862,6 +2228,7 @@ Returns a transaction serialized as hex. + Trả về một giao dịch được tuần tự hóa dưới dạng hex. src/app/components/api-docs/api-docs.component.html 147 @@ -1869,6 +2236,7 @@ Returns a transaction as binary data. + Trả về một giao dịch dưới dạng dữ liệu nhị phân. src/app/components/api-docs/api-docs.component.html 151 @@ -1876,6 +2244,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Trả lại bằng chứng bao gồm merkle cho giao dịch bằng cách sử dụng định dạng blockchain.transaction.get_merkle của Electrum. src/app/components/api-docs/api-docs.component.html 159 @@ -1890,6 +2259,7 @@ Returns the spending status of all transaction outputs. + Trả về trạng thái chi tiêu của tất cả các kết quả giao dịch. src/app/components/api-docs/api-docs.component.html 167 @@ -1897,6 +2267,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. + Truyền một giao dịch thô lên mạng. Giao dịch phải được cung cấp dưới dạng hex trong phần request body. txid sẽ được trả về khi thành công. src/app/components/api-docs/api-docs.component.html 171 @@ -1911,6 +2282,7 @@ Addresses + Địa chỉ src/app/components/api-docs/api-docs.component.html 179 @@ -1927,6 +2299,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). + Nhận lịch sử giao dịch cho địa chỉ/scripthash được chỉ định, được sắp xếp với địa chỉ mới nhất trước. Trả về tối đa 50 giao dịch mempool cộng với 25 giao dịch được xác nhận đầu tiên. Bạn có thể yêu cầu thêm các giao dịch được xác nhận bằng cách sử dụng : last_seen_txid (xem bên dưới). src/app/components/api-docs/api-docs.component.html 193,194 @@ -1934,6 +2307,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. + Nhận lịch sử giao dịch đã xác nhận cho địa chỉ/scripthash được chỉ định, được sắp xếp theo mới nhất trước. Trả về 25 giao dịch mỗi trang. Có thể yêu cầu nhiều hơn bằng cách chỉ định txid cuối cùng mà truy vấn trước đó nhận. src/app/components/api-docs/api-docs.component.html 197 @@ -1941,6 +2315,7 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Nhận lịch sử giao dịch chưa được xác nhận cho địa chỉ/scripthash được chỉ định. Trả về tối đa 50 giao dịch (không phân trang). src/app/components/api-docs/api-docs.component.html 201 @@ -1955,6 +2330,7 @@ Assets + Tài sản src/app/components/api-docs/api-docs.component.html 213 @@ -1964,6 +2340,7 @@ Returns information about a Liquid asset. + Trả về thông tin tài sản Liquid. src/app/components/api-docs/api-docs.component.html 223 @@ -1971,6 +2348,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. + Trả về các giao dịch được liên kết với tài sản Liquid được chỉ định. Đối với tài sản gốc của mạng, trả về danh sách các giao dịch peg in, peg out và đốt. Đối với các tài sản do người dùng phát hành, trả về danh sách các giao dịch phát hành, cấp lại và đốt. Không bao gồm các giao dịch thông thường di chuyển tài sản này. src/app/components/api-docs/api-docs.component.html 227 @@ -1985,6 +2363,7 @@ BSQ + BSQ src/app/components/api-docs/api-docs.component.html 238 @@ -1994,6 +2373,7 @@ Returns statistics about all Bisq transactions. + Trả về thống kê về tất cả các giao dịch Bisq. src/app/components/api-docs/api-docs.component.html 248 @@ -2001,6 +2381,7 @@ Returns details about a Bisq transaction. + Trả về thông tin chi tiết một giao dịch Bisq. src/app/components/api-docs/api-docs.component.html 252 @@ -2008,6 +2389,7 @@ Returns :length of latest Bisq transactions, starting from :index. + Trả về :length của các giao dịch Bisq mới nhất, bắt đầu từ :index. src/app/components/api-docs/api-docs.component.html 256 @@ -2015,6 +2397,7 @@ Returns all Bisq transactions that exist in a Bitcoin block. + Trả về tất cả các giao dịch Bisq tồn tại trong một khối Bitcoin. src/app/components/api-docs/api-docs.component.html 260 @@ -2022,6 +2405,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Trả về :length khối Bitcoin chứa các giao dịch Bisq, bắt đầu từ :index. src/app/components/api-docs/api-docs.component.html 264 @@ -2029,6 +2413,7 @@ Returns the most recently processed Bitcoin block height processed by Bisq. + Trả về chiều cao khối Bitcoin được xử lý gần nhất do Bisq xử lý. src/app/components/api-docs/api-docs.component.html 268 @@ -2036,160 +2421,15 @@ Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Trả về tất cả các giao dịch Bisq thuộc về một địa chỉ Bitcoin, với tiền tố 'B' ở phía trước địa chỉ. 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! + Đã sao chép! src/app/components/clipboard/clipboard.component.ts 15 @@ -2197,6 +2437,7 @@ This transaction saved % on fees by using native SegWit-Bech32 + Giao dịch này đã tiết kiệm % phí bằng cách sử dụng SegWit-Bech32 gốc src/app/components/tx-features/tx-features.component.html 1 @@ -2205,6 +2446,7 @@ SegWit + SegWit src/app/components/tx-features/tx-features.component.html 1 @@ -2222,6 +2464,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Giao dịch này đã tiết kiệm % phí bằng cách sử dụng SegWit và có thể tiết kiệm thêm % bằng cách nâng cấp hoàn toàn lên SegWit-Bech32 gốc src/app/components/tx-features/tx-features.component.html 3 @@ -2230,6 +2473,7 @@ This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Giao dịch này có thể tiết kiệm % phí bằng cách nâng cấp lên SegWit-Bech32 gốc hoặc % bằng cách nâng cấp lên SegWit-P2SH src/app/components/tx-features/tx-features.component.html 5 @@ -2238,6 +2482,7 @@ This transaction support Replace-By-Fee (RBF) allowing fee bumping + Giao dịch này hỗ trợ Thay thế theo Phí (RBF) cho phép tăng phí src/app/components/tx-features/tx-features.component.html 8 @@ -2246,6 +2491,7 @@ RBF + RBF src/app/components/tx-features/tx-features.component.html 8 @@ -2255,6 +2501,7 @@ Optimal + Tối ưu src/app/components/tx-fee-rating/tx-fee-rating.component.html 1 @@ -2264,6 +2511,7 @@ Only ~ sat/vB was needed to get into this block + Chỉ ~ sat/vB là cần thiết để vào khối này src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2276,6 +2524,7 @@ Overpaid x + Trả dư x src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2285,6 +2534,7 @@ Overpaid x + Trả dư x src/app/components/tx-fee-rating/tx-fee-rating.component.html 3 @@ -2294,6 +2544,7 @@ Just now + Vừa mới đây src/app/components/time-since/time-since.component.ts 49 @@ -2301,6 +2552,7 @@ year ago + năm trước src/app/components/time-since/time-since.component.ts 58 @@ -2308,6 +2560,7 @@ month ago + tháng trước src/app/components/time-since/time-since.component.ts 59 @@ -2315,6 +2568,7 @@ week ago + tuần trước src/app/components/time-since/time-since.component.ts 60 @@ -2322,6 +2576,7 @@ day ago + ngày trước src/app/components/time-since/time-since.component.ts 61 @@ -2329,6 +2584,7 @@ hour ago + giờ trước src/app/components/time-since/time-since.component.ts 62 @@ -2336,6 +2592,7 @@ min ago + phút trước src/app/components/time-since/time-since.component.ts 65 @@ -2343,6 +2600,7 @@ minute ago + phút trước src/app/components/time-since/time-since.component.ts 67 @@ -2350,6 +2608,7 @@ sec ago + giây trước src/app/components/time-since/time-since.component.ts 70 @@ -2357,6 +2616,7 @@ second ago + giây trước src/app/components/time-since/time-since.component.ts 72 @@ -2364,6 +2624,7 @@ years ago + năm trước src/app/components/time-since/time-since.component.ts 76 @@ -2371,6 +2632,7 @@ months ago + tháng trước src/app/components/time-since/time-since.component.ts 77 @@ -2378,6 +2640,7 @@ weeks ago + tuần trước src/app/components/time-since/time-since.component.ts 78 @@ -2385,6 +2648,7 @@ days ago + ngày trước src/app/components/time-since/time-since.component.ts 79 @@ -2392,6 +2656,7 @@ hours ago + giờ trước src/app/components/time-since/time-since.component.ts 80 @@ -2399,6 +2664,7 @@ mins ago + phút trước src/app/components/time-since/time-since.component.ts 83 @@ -2406,6 +2672,7 @@ minutes ago + phút trước src/app/components/time-since/time-since.component.ts 85 @@ -2413,6 +2680,7 @@ secs ago + giây trước src/app/components/time-since/time-since.component.ts 88 @@ -2420,6 +2688,7 @@ seconds ago + giây trước src/app/components/time-since/time-since.component.ts 90 @@ -2427,6 +2696,7 @@ BSQ statistics + thống kê BSQ src/app/bisq/bisq-stats/bisq-stats.component.ts 24 @@ -2438,6 +2708,7 @@ Existing amount + Số lượng hiện có src/app/bisq/bisq-stats/bisq-stats.component.html 12 @@ -2450,6 +2721,7 @@ Minted amount + Số lượng đã đúc src/app/bisq/bisq-stats/bisq-stats.component.html 16 @@ -2462,6 +2734,7 @@ Burnt amount + Số lượng đã đốt src/app/bisq/bisq-stats/bisq-stats.component.html 20 @@ -2470,10 +2743,19 @@ 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 Addresses + Địa chỉ src/app/bisq/bisq-stats/bisq-stats.component.html 24 @@ -2486,6 +2768,7 @@ Unspent TXOs + TXO chưa dùng src/app/bisq/bisq-stats/bisq-stats.component.html 28 @@ -2498,6 +2781,7 @@ Spent TXOs + TXO đã dùng src/app/bisq/bisq-stats/bisq-stats.component.html 32 @@ -2506,6 +2790,7 @@ Price + Giá src/app/bisq/bisq-stats/bisq-stats.component.html 36 @@ -2518,6 +2803,7 @@ Market cap + Vốn hóa thị trường src/app/bisq/bisq-stats/bisq-stats.component.html 40 @@ -2530,20 +2816,77 @@ Address: + Địa chỉ: src/app/bisq/bisq-address/bisq-address.component.ts 39 + + Confirmed + Đã xác nhận + + 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 + + + Inputs + Đầu vào + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + Đầu ra + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + Phiên bản + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + Block : + Khối : src/app/bisq/bisq-block/bisq-block.component.ts 85 + + Previous hash + Hash trước + + 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 + Bộ lọc src/app/bisq/bisq-transactions/bisq-transactions.component.ts 55 @@ -2551,6 +2894,7 @@ Select all + Chọn tất cả src/app/bisq/bisq-transactions/bisq-transactions.component.ts 56 @@ -2558,18 +2902,12 @@ Unselect all + Bỏ chọn tất cả 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.xlf b/frontend/src/locale/messages.xlf index 461bad2a5..2e2c67cc3 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -86,6 +86,10 @@ src/app/components/transaction/transaction.component.html 22 + + src/app/components/transactions-list/transactions-list.component.html + 209 + Transaction unconfirmed state transaction.unconfirmed @@ -410,6 +414,10 @@ src/app/components/transaction/transaction.component.html 297 + + src/app/components/footer/footer.component.html + 22 + src/app/dashboard/dashboard.component.html 165 @@ -426,6 +434,10 @@ src/app/components/mempool-blocks/mempool-blocks.component.html 30 + + src/app/components/footer/footer.component.html + 23 + src/app/dashboard/dashboard.component.html 166 @@ -585,18 +597,6 @@ sat shared.sat - - Unconfirmed - - src/app/components/transactions-list/transactions-list.component.html - 209 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential @@ -1329,21 +1329,31 @@ footer.tx-vbytes-per-second - - transactions + + Unconfirmed src/app/components/footer/footer.component.html 16 - shared.transactions + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed - - Mempool size: + + Mempool size src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1357,13 +1367,18 @@ footer.backend-is-synchronizing - - vBytes/s + + vB/s src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1760,24 +1775,6 @@ dashboard.collapse - - Mempool size - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - - src/app/dashboard/dashboard.component.html - 170 - - Unconfirmed count - dashboard.unconfirmed - Incoming transactions @@ -1786,15 +1783,6 @@ dashboard.incoming-transactions - - vB/s - - src/app/dashboard/dashboard.component.html - 187 - - vB/s - shared.vbytes-per-second - Difficulty adjustment diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index f9f3f04d5..ff0f89e61 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -20,6 +20,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 @@ -36,38 +40,46 @@ 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 @@ -77,7 +89,11 @@ 未确认 src/app/components/transaction/transaction.component.html - 18 + 22 + + + src/app/components/transactions-list/transactions-list.component.html + 209 Transaction unconfirmed state transaction.unconfirmed @@ -87,7 +103,15 @@ 输入与输出 src/app/components/transaction/transaction.component.html - 164 + 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 @@ -97,7 +121,7 @@ 明细 src/app/components/transaction/transaction.component.html - 166 + 170 Transaction Details transaction.details @@ -107,7 +131,19 @@ 明细 src/app/components/transaction/transaction.component.html - 172 + 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 @@ -116,7 +152,7 @@ 大小 src/app/components/transaction/transaction.component.html - 177 + 181 Transaction Size transaction.size @@ -126,7 +162,7 @@ 虚拟大小 src/app/components/transaction/transaction.component.html - 181 + 185 Transaction Virtual Size transaction.vsize @@ -136,7 +172,7 @@ 权重 src/app/components/transaction/transaction.component.html - 185 + 189 Transaction Weight transaction.weight @@ -146,7 +182,19 @@ 时间戳 src/app/components/transaction/transaction.component.html - 42 + 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 @@ -156,25 +204,43 @@ 手续费 src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 148 + 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 - 79 + 83 src/app/components/transaction/transaction.component.html - 152 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -184,15 +250,15 @@ 聪/字节 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 @@ -214,6 +280,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 @@ -238,7 +312,11 @@ 被包含在区块中 src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -248,17 +326,17 @@ 已确认 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 @@ -268,11 +346,15 @@ 特征 src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 136 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -282,27 +364,17 @@ 预估时间 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 @@ -312,44 +384,17 @@ 在几个小时内(或更多) 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 @@ -358,16 +403,73 @@ 等待交易出现在内存池 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 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + 大约分钟之后 + + src/app/components/transaction/transaction.component.html + 295 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + 个区块 + + src/app/components/transaction/transaction.component.html + 297 + + + src/app/components/footer/footer.component.html + 22 + + + src/app/dashboard/dashboard.component.html + 165 + + shared.block + + + blocks + 个区块 + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/components/footer/footer.component.html + 23 + + + src/app/dashboard/dashboard.component.html + 166 shared.blocks @@ -399,6 +501,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -407,6 +510,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -416,6 +520,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -425,6 +530,7 @@ Witness + Witness src/app/components/transactions-list/transactions-list.component.html 80 @@ -433,6 +539,7 @@ P2SH redeem script + P2SH redeem script src/app/components/transactions-list/transactions-list.component.html 84 @@ -441,6 +548,7 @@ P2WSH witness script + P2WSH witness script src/app/components/transactions-list/transactions-list.component.html 88 @@ -464,12 +572,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 @@ -478,18 +586,20 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -499,7 +609,11 @@ 类型 src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -512,7 +626,7 @@ 数据 src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -521,48 +635,17 @@ 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 - - - src/app/components/footer/footer.component.html - 16 - - transactions-list.unconfirmed - Confidential 机密 src/app/components/transactions-list/transactions-list.component.html - 208 + 214 src/app/components/amount/amount.component.html @@ -602,6 +685,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -611,6 +698,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 @@ -731,41 +826,53 @@ 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 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 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 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 + + + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -774,7 +881,7 @@ 在加载区块数据时出错 src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data @@ -793,6 +900,10 @@ src/app/components/address/address.component.html 2 + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + shared.address @@ -802,6 +913,10 @@ src/app/components/address/address.component.html 20 + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + address.total-received @@ -811,6 +926,14 @@ 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 + address.total-sent @@ -820,6 +943,10 @@ src/app/components/address/address.component.html 28 + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + address.balance @@ -985,47 +1112,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 应用程序接口 @@ -1214,14 +1300,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 @@ -1351,14 +1437,33 @@ footer.tx-vbytes-per-second - - Mempool size: - 内存池大小: + + Unconfirmed + 未确认 + + src/app/components/footer/footer.component.html + 16 + + + src/app/dashboard/dashboard.component.html + 170 + + Unconfirmed count + dashboard.unconfirmed + + + Mempool size + 内存池大小 src/app/components/footer/footer.component.html 20 - footer.mempool-size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size Backend is synchronizing @@ -1369,18 +1474,23 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing - - vBytes/s + + vB/s 字节/秒 src/app/components/footer/footer.component.html 11 - shared.vbytes-per-second + + src/app/dashboard/dashboard.component.html + 187 + + vB/s + shared.vbytes-per-second Next block @@ -1507,6 +1617,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 @@ -1713,6 +1827,122 @@ 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 + 172 + + 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 + + + Incoming transactions + 收款交易 + + src/app/dashboard/dashboard.component.html + 180 + + dashboard.incoming-transactions + + + Difficulty adjustment + 难度调整 + + src/app/dashboard/dashboard.component.html + 196 + + dashboard.difficulty-adjustment + API Service API服务 @@ -2160,170 +2390,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 - 交易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 - 字节/秒 - - 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! 已复制! @@ -2342,6 +2408,7 @@ SegWit + SegWit src/app/components/tx-features/tx-features.component.html 1 @@ -2636,6 +2703,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 @@ -2707,6 +2782,43 @@ 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 + + + 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 : 区块 @@ -2715,6 +2827,20 @@ 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 筛选 @@ -2739,14 +2865,6 @@ 57 - - Confirmed - 已确认 - - src/app/bisq/bisq-transactions/bisq-transactions.component.html - 21 - - \ No newline at end of file diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index f1a0ab361..b8fca1621 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -450,3 +450,52 @@ th { .crypto { color: #fa3d3d } .locktime { color: #ff8c00 } .reserved { color: #ff8c00 } + +.rtl-layout { + .arrow { + @extend .arrow; + -webkit-transform: scaleX(-1); + transform: scaleX(-1); + } + + .table td { + text-align: right; + } + + .table th { + text-align: right; + } + + .title-block { + text-align: right; + } + + .mr-3 { + @extend .ml-3; + margin-right: 0 !important; + } + + .mr-1 { + @extend .ml-1; + } + + .float-left { + float: right !important; + } + + .float-right { + float: left !important; + } + + .text-left { + text-align: right !important; + } + + .text-right { + text-align: left !important; + } + + .bitcoin-block { + direction: rtl; + } +}