diff --git a/backend/src/api/bitcoin/bitcoin.routes.ts b/backend/src/api/bitcoin/bitcoin.routes.ts index ac848d4a4..742ffe242 100644 --- a/backend/src/api/bitcoin/bitcoin.routes.ts +++ b/backend/src/api/bitcoin/bitcoin.routes.ts @@ -42,6 +42,7 @@ class BitcoinRoutes { .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash', this.getBlock) .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash/summary', this.getStrippedBlockTransactions) .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash/audit-summary', this.getBlockAuditSummary) + .get(config.MEMPOOL.API_URL_PREFIX + 'block/:hash/tx/:txid/audit', this.$getBlockTxAuditSummary) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks/tip/height', this.getBlockTipHeight) .post(config.MEMPOOL.API_URL_PREFIX + 'psbt/addparents', this.postPsbtCompletion) .get(config.MEMPOOL.API_URL_PREFIX + 'blocks-bulk/:from', this.getBlocksByBulk.bind(this)) @@ -361,6 +362,20 @@ class BitcoinRoutes { } } + private async $getBlockTxAuditSummary(req: Request, res: Response) { + try { + const auditSummary = await blocks.$getBlockTxAuditSummary(req.params.hash, req.params.txid); + if (auditSummary) { + res.setHeader('Expires', new Date(Date.now() + 1000 * 3600 * 24 * 30).toUTCString()); + res.json(auditSummary); + } else { + return res.status(404).send(`transaction audit not available`); + } + } catch (e) { + res.status(500).send(e instanceof Error ? e.message : e); + } + } + private async getBlocks(req: Request, res: Response) { try { if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK)) { // Bitcoin diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index 97db07027..9cc9233d5 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -2,7 +2,7 @@ import config from '../config'; import bitcoinApi, { bitcoinCoreApi } from './bitcoin/bitcoin-api-factory'; import logger from '../logger'; import memPool from './mempool'; -import { BlockExtended, BlockExtension, BlockSummary, PoolTag, TransactionExtended, TransactionMinerInfo, CpfpSummary, MempoolTransactionExtended, TransactionClassified, BlockAudit } from '../mempool.interfaces'; +import { BlockExtended, BlockExtension, BlockSummary, PoolTag, TransactionExtended, TransactionMinerInfo, CpfpSummary, MempoolTransactionExtended, TransactionClassified, BlockAudit, TransactionAudit } from '../mempool.interfaces'; import { Common } from './common'; import diskCache from './disk-cache'; import transactionUtils from './transaction-utils'; @@ -1359,6 +1359,14 @@ class Blocks { } } + public async $getBlockTxAuditSummary(hash: string, txid: string): Promise { + if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK)) { + return BlocksAuditsRepository.$getBlockTxAudit(hash, txid); + } else { + return null; + } + } + public getLastDifficultyAdjustmentTime(): number { return this.lastDifficultyAdjustmentTime; } diff --git a/backend/src/index.ts b/backend/src/index.ts index 38bb07383..2a1afc712 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -333,7 +333,9 @@ class Server { if (config.MEMPOOL_SERVICES.ACCELERATIONS) { accelerationRoutes.initRoutes(this.app); } - aboutRoutes.initRoutes(this.app); + if (!config.MEMPOOL.OFFICIAL) { + aboutRoutes.initRoutes(this.app); + } } healthCheck(): void { diff --git a/backend/src/mempool.interfaces.ts b/backend/src/mempool.interfaces.ts index 34375604e..5e8026d15 100644 --- a/backend/src/mempool.interfaces.ts +++ b/backend/src/mempool.interfaces.ts @@ -42,6 +42,19 @@ export interface BlockAudit { matchRate: number, expectedFees?: number, expectedWeight?: number, + template?: any[]; +} + +export interface TransactionAudit { + seen?: boolean; + expected?: boolean; + added?: boolean; + prioritized?: boolean; + delayed?: number; + accelerated?: boolean; + conflict?: boolean; + coinbase?: boolean; + firstSeen?: number; } export interface AuditScore { diff --git a/backend/src/repositories/BlocksAuditsRepository.ts b/backend/src/repositories/BlocksAuditsRepository.ts index daf1ba52d..1e0d28689 100644 --- a/backend/src/repositories/BlocksAuditsRepository.ts +++ b/backend/src/repositories/BlocksAuditsRepository.ts @@ -1,7 +1,7 @@ import blocks from '../api/blocks'; import DB from '../database'; import logger from '../logger'; -import { BlockAudit, AuditScore } from '../mempool.interfaces'; +import { BlockAudit, AuditScore, TransactionAudit } from '../mempool.interfaces'; class BlocksAuditRepositories { public async $saveAudit(audit: BlockAudit): Promise { @@ -98,6 +98,41 @@ class BlocksAuditRepositories { } } + public async $getBlockTxAudit(hash: string, txid: string): Promise { + try { + const blockAudit = await this.$getBlockAudit(hash); + + if (blockAudit) { + const isAdded = blockAudit.addedTxs.includes(txid); + const isPrioritized = blockAudit.prioritizedTxs.includes(txid); + const isAccelerated = blockAudit.acceleratedTxs.includes(txid); + const isConflict = blockAudit.fullrbfTxs.includes(txid); + let isExpected = false; + let firstSeen = undefined; + blockAudit.template?.forEach(tx => { + if (tx.txid === txid) { + isExpected = true; + firstSeen = tx.time; + } + }); + + return { + seen: isExpected || isPrioritized || isAccelerated, + expected: isExpected, + added: isAdded, + prioritized: isPrioritized, + conflict: isConflict, + accelerated: isAccelerated, + firstSeen, + } + } + return null; + } catch (e: any) { + logger.err(`Cannot fetch block transaction audit from db. Reason: ` + (e instanceof Error ? e.message : e)); + throw e; + } + } + public async $getBlockAuditScore(hash: string): Promise { try { const [rows]: any[] = await DB.query( diff --git a/contributors/hans-crypto.txt b/contributors/hans-crypto.txt new file mode 100644 index 000000000..d43651294 --- /dev/null +++ b/contributors/hans-crypto.txt @@ -0,0 +1,3 @@ +I hereby accept the terms of the Contributor License Agreement in the CONTRIBUTING.md file of the mempool/mempool git repository as of May 21, 2024. + +Signed: hans-crypto diff --git a/contributors/svrgnty.txt b/contributors/svrgnty.txt new file mode 100644 index 000000000..e25fd5690 --- /dev/null +++ b/contributors/svrgnty.txt @@ -0,0 +1,3 @@ +I hereby accept the terms of the Contributor License Agreement in the CONTRIBUTING.md file of the mempool/mempool git repository as of July 9, 2024. + +Signed: svrgnty \ No newline at end of file diff --git a/docker/frontend/entrypoint.sh b/docker/frontend/entrypoint.sh index 5b072ba8d..dc0fa6f7a 100644 --- a/docker/frontend/entrypoint.sh +++ b/docker/frontend/entrypoint.sh @@ -40,6 +40,7 @@ __MAINNET_BLOCK_AUDIT_START_HEIGHT__=${MAINNET_BLOCK_AUDIT_START_HEIGHT:=0} __TESTNET_BLOCK_AUDIT_START_HEIGHT__=${TESTNET_BLOCK_AUDIT_START_HEIGHT:=0} __SIGNET_BLOCK_AUDIT_START_HEIGHT__=${SIGNET_BLOCK_AUDIT_START_HEIGHT:=0} __ACCELERATOR__=${ACCELERATOR:=false} +__SERVICES_API__=${SERVICES_API:=false} __PUBLIC_ACCELERATIONS__=${PUBLIC_ACCELERATIONS:=false} __HISTORICAL_PRICE__=${HISTORICAL_PRICE:=true} __ADDITIONAL_CURRENCIES__=${ADDITIONAL_CURRENCIES:=false} @@ -69,6 +70,7 @@ export __MAINNET_BLOCK_AUDIT_START_HEIGHT__ export __TESTNET_BLOCK_AUDIT_START_HEIGHT__ export __SIGNET_BLOCK_AUDIT_START_HEIGHT__ export __ACCELERATOR__ +export __SERVICES_API__ export __PUBLIC_ACCELERATIONS__ export __HISTORICAL_PRICE__ export __ADDITIONAL_CURRENCIES__ diff --git a/frontend/mempool-frontend-config.sample.json b/frontend/mempool-frontend-config.sample.json index cafedd63f..38a671edf 100644 --- a/frontend/mempool-frontend-config.sample.json +++ b/frontend/mempool-frontend-config.sample.json @@ -25,5 +25,6 @@ "HISTORICAL_PRICE": true, "ADDITIONAL_CURRENCIES": false, "ACCELERATOR": false, - "PUBLIC_ACCELERATIONS": false + "PUBLIC_ACCELERATIONS": false, + "SERVICES_API": "https://mempool.space/api/v1/services" } diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html index a7f652b7c..aa45d7bd5 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html +++ b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html @@ -2,7 +2,7 @@ @if (accelerateError) {
-

Sorry, something went wrong!

+

Sorry, something went wrong!

@@ -552,22 +552,15 @@ Accelerate to ~{{ x | number : '1.0-0' }} sat/vB - @if (!couldPay && !quoteError && !(estimate?.availablePaymentMethods.bitcoin || estimate?.availablePaymentMethods.balance)) { - - } @else { -
- - @if (quoteError || cantPayReason) { -
- } -
- } + @if (quoteError || cantPayReason) { +
+ } +
diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts index c582725fe..49b12bbee 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts +++ b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts @@ -8,6 +8,7 @@ import { ETA, EtaService } from '../../services/eta.service'; import { Transaction } from '../../interfaces/electrs.interface'; import { MiningStats } from '../../services/mining.service'; import { IAuth, AuthServiceMempool } from '../../services/auth.service'; +import { EnterpriseService } from '../../services/enterprise.service'; export type PaymentMethod = 'balance' | 'bitcoin' | 'cashapp'; @@ -126,7 +127,8 @@ export class AccelerateCheckout implements OnInit, OnDestroy { private etaService: EtaService, private audioService: AudioService, private cd: ChangeDetectorRef, - private authService: AuthServiceMempool + private authService: AuthServiceMempool, + private enterpriseService: EnterpriseService, ) { this.accelerationUUID = window.crypto.randomUUID(); } @@ -198,6 +200,9 @@ export class AccelerateCheckout implements OnInit, OnDestroy { if (!this.estimate && ['quote', 'summary', 'checkout'].includes(this.step)) { this.fetchEstimate(); } + if (this._step === 'checkout') { + this.enterpriseService.goal(8); + } if (this._step === 'checkout' && this.canPayWithBitcoin) { this.btcpayInvoiceFailed = false; this.loadingBtcpayInvoice = true; @@ -292,6 +297,14 @@ export class AccelerateCheckout implements OnInit, OnDestroy { this.validateChoice(); + if (!this.couldPay) { + this.quoteError = `cannot_accelerate_tx`; + if (this.step === 'summary') { + this.unavailable.emit(true); + } + return; + } + if (this.step === 'checkout' && this.canPayWithBitcoin && !this.loadingBtcpayInvoice) { this.loadingBtcpayInvoice = true; this.requestBTCPayInvoice(); @@ -546,7 +559,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy { } get couldPayWithCashapp() { - if (!this.cashappEnabled || this.stateService.referrer !== 'https://cash.app/') { + if (!this.cashappEnabled) { return false; } return !!this.estimate?.availablePaymentMethods?.cashapp; @@ -569,7 +582,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy { } get canPayWithCashapp() { - if (!this.cashappEnabled || !this.conversions || this.stateService.referrer !== 'https://cash.app/') { + if (!this.cashappEnabled || !this.conversions) { return false; } diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.html b/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.html index 4f11ae179..a5e258210 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.html +++ b/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.html @@ -1,4 +1,4 @@ -
+
diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts b/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts index 596c88f2e..393add6ca 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts +++ b/frontend/src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts @@ -1,20 +1,16 @@ -import { Component, OnInit, Input, Output, OnChanges, EventEmitter, HostListener, Inject, LOCALE_ID } from '@angular/core'; -import { StateService } from '../../services/state.service'; -import { Outspend, Transaction, Vin, Vout } from '../../interfaces/electrs.interface'; -import { Router } from '@angular/router'; -import { ReplaySubject, merge, Subscription, of } from 'rxjs'; -import { tap, switchMap } from 'rxjs/operators'; -import { ApiService } from '../../services/api.service'; +import { Component, Input, Output, OnChanges, EventEmitter, HostListener, OnInit, ViewChild, ElementRef, AfterViewInit, OnDestroy, ChangeDetectorRef } from '@angular/core'; +import { Transaction } from '../../interfaces/electrs.interface'; import { AccelerationEstimate, RateOption } from './accelerate-checkout.component'; interface GraphBar { rate: number; - style: any; + style?: Record; class: 'tx' | 'target' | 'max'; label: string; active?: boolean; rateIndex?: number; fee?: number; + height?: number; } @Component({ @@ -22,7 +18,7 @@ interface GraphBar { templateUrl: './accelerate-fee-graph.component.html', styleUrls: ['./accelerate-fee-graph.component.scss'], }) -export class AccelerateFeeGraphComponent implements OnInit, OnChanges { +export class AccelerateFeeGraphComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy { @Input() tx: Transaction; @Input() estimate: AccelerationEstimate; @Input() showEstimate = false; @@ -30,13 +26,37 @@ export class AccelerateFeeGraphComponent implements OnInit, OnChanges { @Input() maxRateIndex: number = 0; @Output() setUserBid = new EventEmitter<{ fee: number, index: number }>(); + @ViewChild('feeGraph') + container: ElementRef; + height: number; + observer: ResizeObserver; + stopResizeLoop = false; + bars: GraphBar[] = []; tooltipPosition = { x: 0, y: 0 }; + constructor( + private cd: ChangeDetectorRef, + ) {} + ngOnInit(): void { this.initGraph(); } + ngAfterViewInit(): void { + if (ResizeObserver) { + this.observer = new ResizeObserver(entries => { + for (const entry of entries) { + this.height = entry.contentRect.height; + this.initGraph(); + } + }); + this.observer.observe(this.container.nativeElement); + } else { + this.startResizeFallbackLoop(); + } + } + ngOnChanges(): void { this.initGraph(); } @@ -45,44 +65,61 @@ export class AccelerateFeeGraphComponent implements OnInit, OnChanges { if (!this.tx || !this.estimate) { return; } + const hasNextBlockRate = (this.estimate.nextBlockFee > this.estimate.txSummary.effectiveFee); + const numBars = hasNextBlockRate ? 4 : 3; const maxRate = Math.max(...this.maxRateOptions.map(option => option.rate)); const baseRate = this.estimate.txSummary.effectiveFee / this.estimate.txSummary.effectiveVsize; - const baseHeight = baseRate / maxRate; - const bars: GraphBar[] = this.maxRateOptions.slice().reverse().map(option => { - return { - rate: option.rate, - style: this.getStyle(option.rate, maxRate, baseHeight), - class: 'max', - label: this.showEstimate ? $localize`maximum` : $localize`:@@25fbf6e80a945703c906a5a7d8c92e8729c7ab21:accelerated`, - active: option.index === this.maxRateIndex, - rateIndex: option.index, - fee: option.fee, - } - }); - if (this.estimate.nextBlockFee > this.estimate.txSummary.effectiveFee) { + let baseHeight = Math.max(this.height - (numBars * 30), this.height * (baseRate / maxRate)); + const bars: GraphBar[] = []; + let lastHeight = 0; + if (hasNextBlockRate) { + lastHeight = Math.max(lastHeight + 30, (this.height * ((this.estimate.targetFeeRate - baseRate) / maxRate))); bars.push({ rate: this.estimate.targetFeeRate, - style: this.getStyle(this.estimate.targetFeeRate, maxRate, baseHeight), + height: lastHeight, class: 'target', label: $localize`:@@bdf0e930eb22431140a2eaeacd809cc5f8ebd38c:Next Block`.toLowerCase(), fee: this.estimate.nextBlockFee - this.estimate.txSummary.effectiveFee }); } + this.maxRateOptions.forEach((option, index) => { + lastHeight = Math.max(lastHeight + 30, (this.height * ((option.rate - baseRate) / maxRate))); + bars.push({ + rate: option.rate, + height: lastHeight, + class: 'max', + label: this.showEstimate ? $localize`maximum` : $localize`accelerated`, + active: option.index === this.maxRateIndex, + rateIndex: option.index, + fee: option.fee, + }) + }) + + bars.reverse(); + + baseHeight = this.height - lastHeight; + + for (const bar of bars) { + bar.style = this.getStyle(bar.height, baseHeight); + } + bars.push({ rate: baseRate, - style: this.getStyle(baseRate, maxRate, 0), + style: this.getStyle(baseHeight, 0), + height: baseHeight, class: 'tx', label: '', fee: this.estimate.txSummary.effectiveFee, }); + this.bars = bars; + this.cd.detectChanges(); } - getStyle(rate, maxRate, base) { - const top = (rate / maxRate); + getStyle(height: number, base: number): Record { return { - height: `${(top - base) * 100}%`, - bottom: base ? `${base * 100}%` : '0', + height: `${height}px`, + bottom: base ? `${base}px` : '0', } } @@ -96,4 +133,20 @@ export class AccelerateFeeGraphComponent implements OnInit, OnChanges { onPointerMove(event) { this.tooltipPosition = { x: event.offsetX, y: event.offsetY }; } + + startResizeFallbackLoop(): void { + if (this.stopResizeLoop) { + return; + } + requestAnimationFrame(() => { + this.height = this.container?.nativeElement?.clientHeight || 0; + this.initGraph(); + this.startResizeFallbackLoop(); + }); + } + + ngOnDestroy(): void { + this.stopResizeLoop = true; + this.observer.disconnect(); + } } diff --git a/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.html b/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.html index 6d3591fb9..f3a9f4b95 100644 --- a/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.html +++ b/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.html @@ -1,3 +1,4 @@ +@if (tx.status.confirmed) {
@@ -11,68 +12,141 @@
- @if (eta) { - ~ - } @else if (tx.status.block_time) { - - } +
- -
-
-
-
- -
-
-
Sent
-
- +
+
+
+
+
+
+
First seen
+
+ +
-
-
-
-
-
-
-
- -
-
-
Accelerated
-
- +
+
-
-
-
-
-
-
- -
-
-
Mined
-
- @if (tx.status.block_time) { +
+
+
+
+
+
+
Accelerated
+
+ +
+
+
+
+
+
+
+
+
+
+
Mined
+
- } @else if (eta) { - - } +
+
+
+
+
+
+} @else if (acceleratedETA) { +} @else if (standardETA) { +
+
+
+
+
+
+
+
+
+ @if (eta) { + ~ + } +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Mined
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+ + - +
+
+
+
+
+
+
+
+
+
+
First seen
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+ Accelerated  +
+
+
+
+
+
+
+
+
+
+
- - -
-
- - -
-
- -
\ No newline at end of file +} \ No newline at end of file diff --git a/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.scss b/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.scss index d0338ec84..dd815ba45 100644 --- a/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.scss +++ b/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.scss @@ -2,6 +2,9 @@ position: relative; width: 100%; padding: 1em 0; + &.lower-padding { + padding: 0.5em 0 1em; + } &::after, &::before { content: ''; @@ -52,7 +55,7 @@ .interval, .interval-spacer { width: 8em; - min-width: 5em; + min-width: 8em; max-width: 8em; height: 32px; display: flex; @@ -69,6 +72,15 @@ font-size: 12px; line-height: 16px; white-space: nowrap; + + .compare { + font-style: italic; + color: var(--mainnet-alt); + font-weight: 600; + @media (max-width: 600px) { + display: none; + } + } } } @@ -84,10 +96,6 @@ background: var(--primary); border-radius: 5px; - &.loading { - animation: standardPulse 1s infinite; - } - &.left { right: 50%; } @@ -107,8 +115,20 @@ background: var(--tertiary); border-radius: 5px; - &.loading { - animation: acceleratePulse 1s infinite; + &.go-faster { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='10'%3E%3Cpath style='fill:%239339f4;' d='M 0,0 5,5 0,10 Z'/%3E%3Cpath style='fill:%23653b9c;' d='M 0,0 10,0 15,5 10,10 0,10 5,5 Z'/%3E%3Cpath style='fill:%239339f4;' d='M 10,0 20,0 20,10 10,10 15,5 Z'/%3E%3C/svg%3E%0A"); background-size: 20px 10px; + border-radius: 0; + + &.right { + left: calc(50% + 5px); + margin-right: calc(-4em + 5px); + animation: goFasterRight 0.8s infinite linear; + } + &.left { + right: calc(50% + 5px); + margin-left: calc(-4em + 5px); + animation: goFasterLeft 0.8s infinite linear; + } } &.left { @@ -118,7 +138,6 @@ left: 50%; } } - } .nodes { @@ -133,39 +152,70 @@ margin-bottom: -8px; transform: translateY(-50%); border-radius: 50%; - padding: 2px; + cursor: pointer; + padding: 4px; background: transparent; - transition: background-color 300ms, padding 300ms; - + .shape { + position: relative; width: 100%; height: 100%; border-radius: 50%; background: white; - transition: background-color 300ms, border 300ms; + z-index: 1; } - &.sent-selected { + &.waiting { .shape { - background: var(--primary); + background: var(--grey); } } - - &.accelerated-selected { - .shape { - background: var(--tertiary); + + .connector { + position: absolute; + z-index: 0; + height: 88px; + width: 10px; + left: -5px; + top: -73px; + transform: translateX(120%); + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='20'%3E%3Cpath style='fill:%239339f4;' d='M 0,20 5,15 10,20 Z'/%3E%3Cpath style='fill:%23653b9c;' d='M 0,20 5,15 10,20 10,10 5,5 0,10 Z'/%3E%3Cpath style='fill:%239339f4;' d='M 0,10 5,5 10,10 10,0 0,0 Z'/%3E%3C/svg%3E%0A"); // linear-gradient(135deg, var(--tertiary) 34%, transparent 34%), + background-size: 10px 20px; + + &.down { + border-top-left-radius: 10px; + } + + &.up { + border-top-right-radius: 10px; + } + + &.loading { + animation: goFasterUp 0.8s infinite linear; } } + } + + &.accelerated { + .shape-border { + animation: acceleratePulse 0.4s infinite; + } + } - &.mined-selected { - .shape { - background: var(--success); - } + &.selected { + .shape-border { + background: var(--mainnet-alt); } } .status { margin-top: -64px; + + .badge.badge-waiting { + opacity: 0.5; + background-color: var(--grey); + color: white; + } .badge.badge-accelerated { background-color: var(--tertiary); @@ -189,9 +239,17 @@ 100% { background-color: var(--tertiary) } } -@keyframes standardPulse { - 0% { background-color: var(--primary) } - 50% { background-color: var(--secondary) } - 100% { background-color: var(--primary) } - -} \ No newline at end of file +@keyframes goFasterUp { + 0% { background-position-y: 0; } + 100% { background-position-y: -40px; } +} + +@keyframes goFasterLeft { + 0% { background-position: left 0px bottom 0px } + 100% { background-position: left 40px bottom 0px; } +} + +@keyframes goFasterRight { + 0% { background-position: right 0 bottom 0px; } + 100% { background-position: right -40px bottom 0px; } +} diff --git a/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.ts b/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.ts index d40215c1d..38d48dd05 100644 --- a/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.ts +++ b/frontend/src/app/components/acceleration-timeline/acceleration-timeline.component.ts @@ -1,4 +1,4 @@ -import { Component, Input, OnInit, OnChanges, Inject, LOCALE_ID } from '@angular/core'; +import { Component, Input, OnInit, OnChanges } from '@angular/core'; import { ETA } from '../../services/eta.service'; import { Transaction } from '../../interfaces/electrs.interface'; @@ -11,23 +11,33 @@ export class AccelerationTimelineComponent implements OnInit, OnChanges { @Input() transactionTime: number; @Input() tx: Transaction; @Input() eta: ETA; + // A mined transaction has standard ETA and accelerated ETA undefined + // A transaction in mempool has either standardETA defined (if accelerated) or acceleratedETA defined (if not accelerated yet) + @Input() standardETA: number; + @Input() acceleratedETA: number; acceleratedAt: number; - dir: 'rtl' | 'ltr' = 'ltr'; + now: number; + accelerateRatio: number; - constructor( - @Inject(LOCALE_ID) private locale: string, - ) { - if (this.locale.startsWith('ar') || this.locale.startsWith('fa') || this.locale.startsWith('he')) { - this.dir = 'rtl'; - } - } + constructor() {} ngOnInit(): void { this.acceleratedAt = this.tx.acceleratedAt ?? new Date().getTime() / 1000; } ngOnChanges(changes): void { + this.now = Math.floor(new Date().getTime() / 1000); + // Hide standard ETA while we don't have a proper standard ETA calculation, see https://github.com/mempool/mempool/issues/65 + + // if (changes?.eta?.currentValue || changes?.standardETA?.currentValue || changes?.acceleratedETA?.currentValue) { + // if (changes?.eta?.currentValue) { + // if (changes?.acceleratedETA?.currentValue) { + // this.accelerateRatio = Math.floor((Math.floor(changes.eta.currentValue.time / 1000) - this.now) / (Math.floor(changes.acceleratedETA.currentValue / 1000) - this.now)); + // } else if (changes?.standardETA?.currentValue) { + // this.accelerateRatio = Math.floor((Math.floor(changes.standardETA.currentValue / 1000) - this.now) / (Math.floor(changes.eta.currentValue.time / 1000) - this.now)); + // } + // } + // } } - } diff --git a/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html b/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html index ef9c8a6b0..9146c8e34 100644 --- a/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html +++ b/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html @@ -45,8 +45,8 @@
-
+
diff --git a/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts b/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts index 40f0e2b90..417a72902 100644 --- a/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts +++ b/frontend/src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts @@ -32,7 +32,7 @@ export class AccelerationFeesGraphComponent implements OnInit, OnChanges, OnDest @Input() height: number = 300; @Input() right: number | string = 45; @Input() left: number | string = 75; - @Input() period: '3d' | '1w' | '1m' = '1w'; + @Input() period: '24h' | '3d' | '1w' | '1m' | 'all' = '1w'; @Input() accelerations$: Observable; miningWindowPreference: string; @@ -48,7 +48,7 @@ export class AccelerationFeesGraphComponent implements OnInit, OnChanges, OnDest isLoading = true; formatNumber = formatNumber; timespan = ''; - periodSubject$: Subject<'3d' | '1w' | '1m'> = new Subject(); + periodSubject$: Subject<'24h' | '3d' | '1w' | '1m' | 'all'> = new Subject(); chartInstance: any = undefined; daysAvailable: number = 0; @@ -78,7 +78,7 @@ export class AccelerationFeesGraphComponent implements OnInit, OnChanges, OnDest this.radioGroupForm.controls.dateSpan.setValue(this.miningWindowPreference); this.route.fragment.subscribe((fragment) => { - if (['24h', '3d', '1w', '1m', '3m'].indexOf(fragment) > -1) { + if (['24h', '3d', '1w', '1m', '3m', 'all'].indexOf(fragment) > -1) { this.radioGroupForm.controls.dateSpan.setValue(fragment, { emitEvent: false }); } }); diff --git a/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html b/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html index 4fba5f288..c3c0e5134 100644 --- a/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html +++ b/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html @@ -4,7 +4,7 @@
Requests
{{ stats.totalRequested }}
-
accelerated
+
accelerated
diff --git a/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts b/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts index 3cf5f9044..392f1392b 100644 --- a/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts +++ b/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts @@ -16,7 +16,7 @@ export type AccelerationStats = { changeDetection: ChangeDetectionStrategy.OnPush, }) export class AccelerationStatsComponent implements OnInit, OnChanges { - @Input() timespan: '3d' | '1w' | '1m' = '1w'; + @Input() timespan: '24h' | '3d' | '1w' | '1m' | 'all' = '1w'; accelerationStats$: Observable; blocksInPeriod: number = 7 * 144; @@ -35,6 +35,9 @@ export class AccelerationStatsComponent implements OnInit, OnChanges { updateStats(): void { this.accelerationStats$ = this.servicesApiService.getAccelerationStats$({ timeframe: this.timespan }); switch (this.timespan) { + case '24h': + this.blocksInPeriod = 144; + break; case '3d': this.blocksInPeriod = 3 * 144; break; @@ -44,6 +47,9 @@ export class AccelerationStatsComponent implements OnInit, OnChanges { case '1m': this.blocksInPeriod = 30 * 144; break; + case 'all': + this.blocksInPeriod = Infinity; + break; } } } diff --git a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html index 94ddf5f98..9095a8129 100644 --- a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html +++ b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html @@ -23,12 +23,18 @@
Acceleration stats  @switch (timespan) { + @case ('24h') { + (1 day) + } @case ('1w') { (1 week) } @case ('1m') { (1 month) } + @case ('all') { + (all time) + } }
@@ -36,11 +42,17 @@
+ 24h + | 1w | 1m + | + all
diff --git a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts index c003fe5ca..d84c6e97c 100644 --- a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts +++ b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts @@ -37,7 +37,7 @@ export class AcceleratorDashboardComponent implements OnInit, OnDestroy { webGlEnabled = true; seen: Set = new Set(); firstLoad = true; - timespan: '3d' | '1w' | '1m' = '1w'; + timespan: '24h' | '3d' | '1w' | '1m' | 'all' = '1w'; accelerationDeltaSubscription: Subscription; @@ -99,7 +99,7 @@ export class AcceleratorDashboardComponent implements OnInit, OnDestroy { this.minedAccelerations$ = this.stateService.chainTip$.pipe( distinctUntilChanged(), switchMap(() => { - return this.serviceApiServices.getAccelerationHistory$({ status: 'completed', pageLength: 6 }).pipe( + return this.serviceApiServices.getAccelerationHistory$({ status: 'completed_provisional,completed', pageLength: 6 }).pipe( catchError(() => { return of([]); }), diff --git a/frontend/src/app/components/block-filters/block-filters.component.scss b/frontend/src/app/components/block-filters/block-filters.component.scss index 79e9e780a..7cbc738b7 100644 --- a/frontend/src/app/components/block-filters/block-filters.component.scss +++ b/frontend/src/app/components/block-filters/block-filters.component.scss @@ -33,6 +33,7 @@ .menu-toggle { width: 3em; + min-width: 3em; height: 1.8em; padding: 0px 1px; opacity: 0; @@ -42,6 +43,7 @@ border: none; border-radius: 0.35em; pointer-events: all; + align-self: normal; } .filter-menu { diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 62324f937..1dd9d8a8d 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -181,8 +181,8 @@ Miner - + + {{ block.extras.pool.name }} @@ -411,7 +411,7 @@ - + {{ blockAudit.feeDelta < 0 ? '+' : '' }}{{ (-blockAudit.feeDelta * 100) | amountShortener: 2 }}% diff --git a/frontend/src/app/components/block/block.component.scss b/frontend/src/app/components/block/block.component.scss index af3d60c56..fe5318375 100644 --- a/frontend/src/app/components/block/block.component.scss +++ b/frontend/src/app/components/block/block.component.scss @@ -272,3 +272,11 @@ h1 { } } } + +.pool-logo { + width: 15px; + height: 15px; + position: relative; + top: -1px; + margin-right: 2px; +} 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 603c7e4c0..a60e1db0a 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -59,10 +59,11 @@
- @@ -85,7 +86,7 @@
+ [ngStyle]="{'left': arrowLeftPx + 8 + 'px' }">
diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss index b11a35513..b8de4f2ca 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss @@ -125,12 +125,12 @@ #arrow-up { position: relative; left: calc(var(--block-size) * 0.6); - top: calc(var(--block-size) * 1.12); + top: calc(var(--block-size) * 1.28); width: 0; height: 0; - border-left: calc(var(--block-size) * 0.3) solid transparent; - border-right: calc(var(--block-size) * 0.3) solid transparent; - border-bottom: calc(var(--block-size) * 0.3) solid var(--fg); + border-left: calc(var(--block-size) * 0.2) solid transparent; + border-right: calc(var(--block-size) * 0.2) solid transparent; + border-bottom: calc(var(--block-size) * 0.2) solid var(--fg); } .flashing { @@ -157,17 +157,20 @@ position: relative; top: 15px; z-index: 101; + color: #FFF; +} + +.pool-logo { + width: 15px; + height: 15px; + position: relative; + top: -1px; + margin-right: 2px; } .animated { transition: all 0.15s ease-in-out; -} -.show { - opacity: 1; -} -.hide { - opacity: 0.4; - pointer-events : none; + white-space: nowrap; } .time-ltr { diff --git a/frontend/src/app/components/blockchain/blockchain.component.scss b/frontend/src/app/components/blockchain/blockchain.component.scss index 1488d262a..32225598a 100644 --- a/frontend/src/app/components/blockchain/blockchain.component.scss +++ b/frontend/src/app/components/blockchain/blockchain.component.scss @@ -14,8 +14,7 @@ } .blockchain-wrapper { - height: 250px; - + height: 260px; -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+/Edge */ @@ -57,7 +56,7 @@ color: var(--fg); font-size: 0.8rem; position: absolute; - bottom: -1.8em; + bottom: -2.2em; left: 1px; transform: translateX(-50%); background: none; diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss index 5f7b15092..2e829b21e 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss @@ -114,7 +114,7 @@ #arrow-up { position: relative; right: calc(var(--block-size) * 0.6); - top: calc(var(--block-size) * 1.12); + top: calc(var(--block-size) * 1.20); width: 0; height: 0; border-left: calc(var(--block-size) * 0.3) solid transparent; diff --git a/frontend/src/app/components/menu/menu.component.html b/frontend/src/app/components/menu/menu.component.html index 29e04f09b..23605ce55 100644 --- a/frontend/src/app/components/menu/menu.component.html +++ b/frontend/src/app/components/menu/menu.component.html @@ -34,7 +34,12 @@
diff --git a/frontend/src/app/components/privacy-policy/privacy-policy.component.html b/frontend/src/app/components/privacy-policy/privacy-policy.component.html index 1250af686..effdf29f2 100644 --- a/frontend/src/app/components/privacy-policy/privacy-policy.component.html +++ b/frontend/src/app/components/privacy-policy/privacy-policy.component.html @@ -5,29 +5,33 @@

Privacy Policy

-
Updated: November 23, 2023
+
Updated: July 10, 2024


-

The mempool.space website, the liquid.network website, their associated API services, and related network and server infrastructure (collectively, the "Website") are operated by Mempool Space K.K. in Japan ("Mempool", "We", or "Us") and self-hosted from AS142052.

+

USE YOUR OWN SELF-HOSTED MEMPOOL EXPLORER

+ +

For maximum privacy, we recommend that you use your own self-hosted instance of The Mempool Open Source Project®; on your own hardware. You can easily install your own self-hosted instance of this website on a Raspberry Pi using a one-click installation method maintained by various Bitcoin fullnode distributions such as Umbrel, RaspiBlitz, MyNode, and RoninDojo. See our project's GitHub page for more details about self-hosting this website. By using your own self-hosted instance you will have maximum security, privacy and freedom.

+ +
+ +

The mempool.space website, the liquid.network website, the bitcoin.gob.sv website, their associated API services, and related network and server infrastructure (collectively, the "Website") are operated by Mempool Space K.K. in Japan ("Mempool", "We", or "Us") and self-hosted from AS142052.

This website and its API service (collectively, the "Website") are operated by a member of the Bitcoin community ("We" or "Us"). Mempool Space K.K. in Japan ("Mempool") has no affiliation with the operator of this Website, and does not sponsor or endorse the information provided herein.

+
+
By accessing this Website, you agree to the following Privacy Policy:

-

TRUSTED THIRD PARTIES ARE SECURITY HOLES

+

General

-

Out of respect for the Bitcoin community, this website does not use any third-party analytics, third-party trackers, or third-party cookies, and we do not share any private user data with third-parties. Additionally, to mitigate the risk of surveillance by malicious third-parties, we self-host this website on our own hardware and network infrastructure, so there are no "hosting companies" or "cloud providers" involved with the operation of this website.

+

Out of respect for the Bitcoin community, this Website does not use any third-party analytics, third-party trackers, or third-party cookies, and we do not share any private user data with third-parties. Additionally, to mitigate the risk of surveillance by malicious third-parties, we self-host this Website on our own hardware and network infrastructure, so there are no "hosting companies" or "cloud providers" involved with the operation of this Website.

-
- -

TRUSTED FIRST PARTIES ARE ALSO SECURITY HOLES

- -

Out of respect for the Bitcoin community, this website does not use any first-party cookies, except to store your preferred language setting (if any). However, we do use minimal first-party analytics and logging as needed for the operation of this website, as follows:

+

Out of respect for the Bitcoin community, this Website does not use any first-party cookies, except to store your preferred language setting (if any). However, we do use minimal first-party analytics and logging as needed for the operation of this Website, as follows:

    @@ -41,35 +45,49 @@
    -

    TRUST YOUR OWN SELF-HOSTED MEMPOOL EXPLORER

    +

    USING MEMPOOL ACCELERATOR™

    -

    For maximum privacy, we recommend that you use your own self-hosted instance of The Mempool Open Source Project® on your own hardware. You can easily install your own self-hosted instance of this website on a Raspberry Pi using a one-click installation method maintained by various Bitcoin fullnode distributions such as Umbrel, RaspiBlitz, MyNode, and RoninDojo. See our project's GitHub page for more details about self-hosting this website.

    +

    If you use Mempool Accelerator™ your acceleration request will be sent to us and relayed to Mempool's mining pool partners. We will store the TXID of the transactions you accelerate with us. We share this information with our mining pool partners, and publicly display accelerated transaction details on our website and APIs. No personal information or account identifiers will be shared with any third party including mining pool partners.

    + +

    If you click the accelerate button on a transaction you will load acceleration pricing information from Mempool. If you make an acceleration request, the TXID and your maximum bid will be sent to Mempool who will store and share this information with their mining pool partners, and publicly display accelerated transaction details on mempool.space and via Mempool's APIs. No personal information or account identifiers will be shared with any third party including mining pool partners.


    + + -

    DONATING TO MEMPOOL.SPACE

    +

    SIGNING UP FOR AN ACCOUNT ON MEMPOOL.SPACE

    -

    If you donate to mempool.space, your payment information and your Twitter identity (if provided) will be collected in a database, which may be used to publicly display the sponsor profiles on mempool.space/about. Thank you for supporting The Mempool Open Source Project.

    +

    If you sign up for an account on mempool.space, we may collect the following:

    -
    +
      -

      SIGNING UP FOR AN ACCOUNT ON MEMPOOL.SPACE

      +
    • Your e-mail address and/or country; we may use this information to manage your user account, for billing purposes, or to update you about our services. We will not share this with any third-party, except as necessary for our fiat payment processor (see "Payments" below).
    • -

      If you sign up for an account on mempool.space, we may collect the following:

      +
    • If you connect your X (fka Twitter) account, we may store your X identity, e-mail address, and profile photo. We may publicly display your profile photo or link to your profile on our website, if you sponsor The Mempool Open Source Project®, claim your Lightning node, or other such use cases.
    • -
        +
      1. If you sign up for a subscription to Mempool Enterprise™ we also collect your company name which is not shared with any third-party.
      2. -
      3. If you provide your name, country, and/or e-mail address, we may use this information to manage your user account, for billing purposes, or to update you about our services. We will not share this with any third-party, except as detailed below if you sponsor The Mempool Open Source Project®, purchase a subscription to Mempool Enterprise®, or accelerate transactions using Mempool Accelerator™.
      4. +
      5. If you sign up for an account on mempool.space and use Mempool Accelerator™ Pro your accelerated transactions will be associated with your account for the purposes of accounting.
      6. -
      7. If you connect your Twitter account, we may store your Twitter identity, e-mail address, and profile photo. We may publicly display your profile photo or link to your profile on our website, if you sponsor The Mempool Open Source Project, claim your Lightning node, or other such use cases.
      8. +
    -
  • If you make a credit card payment, we will process your payment using Square (Block, Inc.), and we will store details about the transaction in our database. Please see "Information we collect about customers" on Square's website at https://squareup.com/us/en/legal/general/privacy
  • +
    -
  • If you make a Bitcoin or Liquid payment, we will process your payment using our self-hosted BTCPay Server instance and not share these details with any third-party.
  • +
    -
  • If you accelerate transactions using Mempool Accelerator™, we will store the TXID of your transactions you accelerate with us. We share this information with our mining pool partners, as well as publicly display accelerated transaction details on our website and APIs.
  • +

    PAYMENTS AND DONATIONS

    - +

    If you make any payment to Mempool or donation to The Mempool Open Source Project®, we may collect the following:

    + +
      + +
    • Your e-mail address and/or country; we may use this information to manage your user account, for billing purposes, or to update you about our services. We will not share this with any third-party, except as necessary for our fiat payment processor.
    • + +
    • If you make a payment using Bitcoin, we will process your payment using our self-hosted BTCPay Server instance. We will not share your payment details with any third-party. For payments made over the Lightning network, we may utilize third party LSPs / lightning liquidity providers.
    • + +
    • If you make a payment using Fiat we will collect your payment details. We will share your payment details with our fiat payment processor Square (Block, Inc.),. - Please see "Information we collect about customers" on Square's website at https://squareup.com/us/en/legal/general/privacy.
    • + +

    diff --git a/frontend/src/app/components/search-form/search-results/search-results.component.html b/frontend/src/app/components/search-form/search-results/search-results.component.html index e5db07670..400b9a1c3 100644 --- a/frontend/src/app/components/search-form/search-results/search-results.component.html +++ b/frontend/src/app/components/search-form/search-results/search-results.component.html @@ -47,6 +47,7 @@
    Mining Pools
    diff --git a/frontend/src/app/components/search-form/search-results/search-results.component.scss b/frontend/src/app/components/search-form/search-results/search-results.component.scss index 55edf5189..569407b00 100644 --- a/frontend/src/app/components/search-form/search-results/search-results.component.scss +++ b/frontend/src/app/components/search-form/search-results/search-results.component.scss @@ -26,3 +26,11 @@ .active { background-color: var(--active-bg); } + +.pool-logo { + width: 15px; + height: 15px; + position: relative; + top: -1px; + margin-right: 10px; +} diff --git a/frontend/src/app/components/terms-of-service/terms-of-service.component.html b/frontend/src/app/components/terms-of-service/terms-of-service.component.html index c9208d6ef..709605a9f 100644 --- a/frontend/src/app/components/terms-of-service/terms-of-service.component.html +++ b/frontend/src/app/components/terms-of-service/terms-of-service.component.html @@ -5,7 +5,7 @@

    Terms of Service

    -
    Updated: August 02, 2021
    +
    Updated: July 10, 2024


    @@ -67,6 +67,38 @@ +

    MEMPOOL ACCELERATOR™

    + +

    Mempool Accelerator™ enables members of the Bitcoin community to submit requests for transaction prioritization.

    +
      + +
    • Mempool will use reasonable commercial efforts to relay user acceleration requests to Mempool's mining pool partners, but it is at the discretion of Mempool and Mempool's mining pool partners to accept acceleration requests.
    • + +
      + +
    • Acceleration requests cannot be canceled by the user once submitted.
    • + +
      + +
    • Mempool reserves the right to cancel acceleration requests for any reason, including but not limited to the ejection of an accelerated transaction from Mempool's mempool. Canceled accelerations will not be refunded.
    • + +
      + +
    • All acceleration payments and Mempool Accelerator™ account credit top-ups are non-refundable.
    • + +
      + +
    • Mempool Accelerator™ account credit top-ups are prepayment for future accelerations and cannot be withdrawn or transferred.
    • + +
      + +
    • Mempool does not provide acceleration services to persons in Cuba, Iran, North Korea, Russia, Syria, Crimea, Donetsk or Luhansk Regions of Ukraine.
    • + + +
    + +
    +

    EOF

diff --git a/frontend/src/app/components/time/time.component.ts b/frontend/src/app/components/time/time.component.ts index 8bd27b7ae..3015007b2 100644 --- a/frontend/src/app/components/time/time.component.ts +++ b/frontend/src/app/components/time/time.component.ts @@ -35,6 +35,7 @@ export class TimeComponent implements OnInit, OnChanges, OnDestroy { @Input() units: string[] = ['year', 'month', 'week', 'day', 'hour', 'minute', 'second']; @Input() minUnit: 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute' | 'second' = 'second'; @Input() fractionDigits: number = 0; + @Input() lowercaseStart = false; constructor( private ref: ChangeDetectorRef, @@ -106,6 +107,9 @@ export class TimeComponent implements OnInit, OnChanges, OnDestroy { return $localize`:@@date-base.immediately:Immediately`; } else if (seconds < 60) { if (this.relative || this.kind === 'since') { + if (this.lowercaseStart) { + return $localize`:@@date-base.just-now:Just now`.charAt(0).toLowerCase() + $localize`:@@date-base.just-now:Just now`.slice(1); + } return $localize`:@@date-base.just-now:Just now`; } else if (this.kind === 'until' || this.kind === 'within') { seconds = 60; diff --git a/frontend/src/app/components/tracker/tracker.component.html b/frontend/src/app/components/tracker/tracker.component.html index 1efce182c..0d9d37f42 100644 --- a/frontend/src/app/components/tracker/tracker.component.html +++ b/frontend/src/app/components/tracker/tracker.component.html @@ -75,9 +75,6 @@ } @else { } - diff --git a/frontend/src/app/components/tracker/tracker.component.ts b/frontend/src/app/components/tracker/tracker.component.ts index 698226d50..1b498cfb4 100644 --- a/frontend/src/app/components/tracker/tracker.component.ts +++ b/frontend/src/app/components/tracker/tracker.component.ts @@ -728,7 +728,6 @@ export class TrackerComponent implements OnInit, OnDestroy { if (!this.txId) { return; } - this.enterpriseService.goal(8); this.accelerationFlowCompleted = false; if (this.showAccelerationSummary) { this.scrollIntoAccelPreview = true; diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 4bbb194fb..22916b242 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -153,15 +153,6 @@
- -
-

Acceleration Timeline

-
-
- -
-
-

RBF Timeline

@@ -171,6 +162,15 @@
+ +
+

Acceleration Timeline

+
+
+ +
+
+

Flow

@@ -449,7 +449,7 @@ Timestamp - ‎{{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm' }} + ‎{{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm:ss' }}
()
@@ -639,7 +639,7 @@ }
- @if (accelerationInfo?.acceleratedFeeRate && (!tx.effectiveFeePerVsize || accelerationInfo.acceleratedFeeRate >= tx.effectiveFeePerVsize)) { + @if (accelerationInfo?.acceleratedFeeRate && (!tx.effectiveFeePerVsize || accelerationInfo.acceleratedFeeRate >= tx.effectiveFeePerVsize || tx.acceleration)) { } @else { @@ -676,9 +676,9 @@ Miner @if (pool) { - - {{ pool.name }} + + + {{ pool.name }} } @else { diff --git a/frontend/src/app/components/transaction/transaction.component.scss b/frontend/src/app/components/transaction/transaction.component.scss index f32d8d9ea..7db417126 100644 --- a/frontend/src/app/components/transaction/transaction.component.scss +++ b/frontend/src/app/components/transaction/transaction.component.scss @@ -324,4 +324,12 @@ .goggles-icon { display: block; width: 2.7em; -} \ No newline at end of file +} + +.pool-logo { + width: 15px; + height: 15px; + position: relative; + top: -1px; + margin-right: 2px; +} diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index d2cc0789d..5e010b8e0 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -42,7 +42,7 @@ interface Pool { slug: string; } -interface AuditStatus { +export interface TxAuditStatus { seen?: boolean; expected?: boolean; added?: boolean; @@ -65,6 +65,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { txId: string; txInBlockIndex: number; mempoolPosition: MempoolPosition; + gotInitialPosition = false; accelerationPositions: AccelerationPosition[]; isLoadingTx = true; error: any = undefined; @@ -99,7 +100,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { sigops: number | null; adjustedVsize: number | null; pool: Pool | null; - auditStatus: AuditStatus | null; + auditStatus: TxAuditStatus | null; isAcceleration: boolean = false; filters: Filter[] = []; showCpfpDetails = false; @@ -112,6 +113,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { txChanged$ = new BehaviorSubject(false); // triggered whenever this.tx changes (long term, we should refactor to make this.tx an observable itself) isAccelerated$ = new BehaviorSubject(false); // refactor this to make isAccelerated an observable itself ETA$: Observable; + standardETA$: Observable; isCached: boolean = false; now = Date.now(); da$: Observable; @@ -130,6 +132,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { tooltipPosition: { x: number, y: number }; isMobile: boolean; firstLoad = true; + waitingForAccelerationInfo: boolean = false; featuresEnabled: boolean; segwitEnabled: boolean; @@ -315,11 +318,19 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { this.setIsAccelerated(); }), switchMap((blockHeight: number) => { - return this.servicesApiService.getAccelerationHistory$({ blockHeight }); + return this.servicesApiService.getAccelerationHistory$({ blockHeight }).pipe( + switchMap((accelerationHistory: Acceleration[]) => { + if (this.tx.acceleration && !accelerationHistory.length) { // If the just mined transaction was accelerated, but services backend did not return any acceleration data, retry + return throwError('retry'); + } + return of(accelerationHistory); + }), + retry({ count: 3, delay: 2000 }), + catchError(() => { + return of([]); + }) + ); }), - catchError(() => { - return of([]); - }) ).subscribe((accelerationHistory) => { for (const acceleration of accelerationHistory) { if (acceleration.txid === this.txId && (acceleration.status === 'completed' || acceleration.status === 'completed_provisional')) { @@ -328,13 +339,14 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { acceleration.boost = boostCost; this.tx.acceleratedAt = acceleration.added; this.accelerationInfo = acceleration; + this.waitingForAccelerationInfo = false; this.setIsAccelerated(); } } }); this.miningSubscription = this.fetchMiningInfo$.pipe( - filter((target) => target.txid === this.txId), + filter((target) => target.txid === this.txId && !this.pool), tap(() => { this.pool = null; }), @@ -362,33 +374,41 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { const auditAvailable = this.isAuditAvailable(height); const isCoinbase = this.tx.vin.some(v => v.is_coinbase); const fetchAudit = auditAvailable && !isCoinbase; - return fetchAudit ? this.apiService.getBlockAudit$(hash).pipe( - map(audit => { - const isAdded = audit.addedTxs.includes(txid); - const isPrioritized = audit.prioritizedTxs.includes(txid); - const isAccelerated = audit.acceleratedTxs.includes(txid); - const isConflict = audit.fullrbfTxs.includes(txid); - const isExpected = audit.template.some(tx => tx.txid === txid); - const firstSeen = audit.template.find(tx => tx.txid === txid)?.time; - return { - seen: isExpected || isPrioritized || isAccelerated, - expected: isExpected, - added: isAdded, - prioritized: isPrioritized, - conflict: isConflict, - accelerated: isAccelerated, - firstSeen, - }; - }), - retry({ count: 3, delay: 2000 }), - catchError(() => { - return of(null); - }) - ) : of(isCoinbase ? { coinbase: true } : null); + if (fetchAudit) { + // If block audit is already cached, use it to get transaction audit + const blockAuditLoaded = this.apiService.getBlockAuditLoaded(hash); + if (blockAuditLoaded) { + return this.apiService.getBlockAudit$(hash).pipe( + map(audit => { + const isAdded = audit.addedTxs.includes(txid); + const isPrioritized = audit.prioritizedTxs.includes(txid); + const isAccelerated = audit.acceleratedTxs.includes(txid); + const isConflict = audit.fullrbfTxs.includes(txid); + const isExpected = audit.template.some(tx => tx.txid === txid); + const firstSeen = audit.template.find(tx => tx.txid === txid)?.time; + return { + seen: isExpected || isPrioritized || isAccelerated, + expected: isExpected, + added: isAdded, + prioritized: isPrioritized, + conflict: isConflict, + accelerated: isAccelerated, + firstSeen, + }; + }) + ) + } else { + return this.apiService.getBlockTxAudit$(hash, txid).pipe( + retry({ count: 3, delay: 2000 }), + catchError(() => { + return of(null); + }) + ) + } + } else { + return of(isCoinbase ? { coinbase: true } : null); + } }), - catchError((e) => { - return of(null); - }) ).subscribe(auditStatus => { this.auditStatus = auditStatus; if (this.auditStatus?.firstSeen) { @@ -431,9 +451,13 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { if (txPosition.position?.block > 0 && this.tx.weight < 4000) { this.cashappEligible = true; } + if (!this.gotInitialPosition && txPosition.position?.block === 0 && txPosition.position?.vsize < 750_000) { + this.accelerationFlowCompleted = true; + } } } } + this.gotInitialPosition = true; } else { this.mempoolPosition = null; this.accelerationPositions = null; @@ -602,12 +626,16 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { this.stateService.txConfirmed$.subscribe(([txConfirmed, block]) => { if (txConfirmed && this.tx && !this.tx.status.confirmed && txConfirmed === this.tx.txid) { + if (this.tx.acceleration) { + this.waitingForAccelerationInfo = true; + } this.tx.status = { confirmed: true, block_height: block.height, block_hash: block.id, block_time: block.timestamp, }; + this.pool = block.extras.pool; this.txChanged$.next(true); this.stateService.markBlock$.next({ blockHeight: block.height }); if (this.tx.acceleration || (this.accelerationInfo && ['accelerating', 'completed_provisional', 'completed'].includes(this.accelerationInfo.status))) { @@ -718,7 +746,6 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { } document.location.hash = '#accelerate'; - this.enterpriseService.goal(8); this.openAccelerator(); this.scrollIntoAccelPreview = true; return false; @@ -797,7 +824,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { } setIsAccelerated(initialState: boolean = false) { - this.isAcceleration = (this.tx.acceleration || (this.accelerationInfo && this.pool && this.accelerationInfo.pools.some(pool => (pool === this.pool.id)))); + this.isAcceleration = ((this.tx.acceleration && (!this.tx.status.confirmed || this.waitingForAccelerationInfo)) || (this.accelerationInfo && this.pool && this.accelerationInfo.pools.some(pool => (pool === this.pool.id)))); if (this.isAcceleration) { if (initialState) { this.accelerationFlowCompleted = true; @@ -809,6 +836,21 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { this.miningStats = stats; this.isAccelerated$.next(this.isAcceleration); // hack to trigger recalculation of ETA without adding another source observable }); + if (!this.tx.status?.confirmed) { + this.standardETA$ = combineLatest([ + this.stateService.mempoolBlocks$.pipe(startWith(null)), + this.stateService.difficultyAdjustment$.pipe(startWith(null)), + ]).pipe( + map(([mempoolBlocks, da]) => { + return this.etaService.calculateUnacceleratedETA( + this.tx, + mempoolBlocks, + da, + this.cpfpInfo, + ); + }) + ) + } } this.isAccelerated$.next(this.isAcceleration); } @@ -864,6 +906,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { resetTransaction() { this.firstLoad = false; + this.gotInitialPosition = false; this.error = undefined; this.tx = null; this.txChanged$.next(true); 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 88a984942..8954e4ecb 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -6,7 +6,7 @@
- ‎{{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm' }} + ‎{{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm:ss' }} diff --git a/frontend/src/app/docs/api-docs/api-docs-data.ts b/frontend/src/app/docs/api-docs/api-docs-data.ts index 0bcc414e9..62f3c54c8 100644 --- a/frontend/src/app/docs/api-docs/api-docs-data.ts +++ b/frontend/src/app/docs/api-docs/api-docs-data.ts @@ -9017,18 +9017,89 @@ export const restApiDocsData = [ "effectiveFee": 154, "ancestorCount": 1 }, - "cost": 3850, - "targetFeeRate": 26, - "nextBlockFee": 4004, - "userBalance": 99900000, - "mempoolBaseFee": 40000, - "vsizeFee": 50000, - "hasAccess": true + "cost": 1386, + "targetFeeRate": 10, + "nextBlockFee": 1540, + "userBalance": 0, + "mempoolBaseFee": 50000, + "vsizeFee": 0, + "pools": [ + 111, + 102, + 112, + 142, + 115 + ], + "options": [ + { + "fee": 1500 + }, + { + "fee": 3000 + }, + { + "fee": 12500 + } + ], + "hasAccess": false, + "availablePaymentMethods": { + "bitcoin": { + "enabled": true, + "min": 1000, + "max": 10000000 + }, + "cashapp": { + "enabled": true, + "min": 10, + "max": 200 + } + }, + "unavailable": false }`, }, } } }, + { + options: { officialOnly: true }, + type: "endpoint", + category: "accelerator-public", + httpRequestMethod: "POST", + fragment: "accelerator-get-invoice", + title: "POST Generate Acceleration Invoice", + description: { + default: "

Request a LN invoice to accelerate a transaction.

" + }, + urlString: "/v1/services/payments/bitcoin", + showConditions: [""], + showJsExamples: showJsExamplesDefaultFalse, + codeExample: { + default: { + codeTemplate: { + curl: `%{1}" "[[hostname]][[baseNetworkUrl]]/api/v1/services/payments/bitcoin`, //custom interpolation technique handled in replaceCurlPlaceholder() + commonJS: ``, + esModule: `` + }, + codeSampleMainnet: { + esModule: [], + commonJS: [], + curl: ["product=ee13ebb99632377c15c94980357f674d285ac413452050031ea6dcd3e9b2dc29&amount=12500"], + headers: "", + response: `[ + { + "btcpayInvoiceId": "4Ww53d7VgSa596jmCFufe7", + "btcDue": "0.000625", + "addresses": { + "BTC": "bc1qcvqx2kr5mktd7gvym0atrrx0sn27mwv5kkghl3m78kegndm5t8ksvcqpja", + "BTC_LNURLPAY": null, + "BTC_LightningLike": "lnbc625u1pngl0wzpp56j7cqghsw2y5q7vdu9shmpxgpzsx4pqra4wcm9vdnvqegutplk2qdxj2pskjepqw3hjqnt9d4cx7mmvypqkxcm9d3jhyct5daezq2z0wfjx2u3qf9zr5grpvd3k2mr9wfshg6t0dckk2ef3xdjkyc3e8ymrxv3nxumkxvf4vvungwfcxqen2dmxxcmngepj8q6kzce5xyengdfjxq6nqvpnx9jkzdnyvdjrxefevgexgcej8yknzdejxqmrjd3jx5mrgdpj9ycqzpuxqrpr5sp58593dzj2uauaj3afa7x47qeam8k9yyqrh9qasj2ssdzstew6qv3q9qxpqysgqj8qshfkxmj0gfkly5xfydysvsx55uhnc6fgpw66uf6hl8leu07454axe2kq0q788yysg8guel2r36d6f75546nkhmdcmec4mmlft8dsq62rnsj" + } + } +]`, + }, + } + } + }, { options: { officialOnly: true }, type: "endpoint", @@ -9119,14 +9190,18 @@ export const restApiDocsData = [ "txid": "d7e1796d8eb4a09d4e6c174e36cfd852f1e6e6c9f7df4496339933cd32cbdd1d", "status": "completed", "added": 1707421053, - "lastUpdated": 1707422952, + "lastUpdated": 1719134667, "effectiveFee": 146, "effectiveVsize": 141, "feeDelta": 14000, "blockHash": "00000000000000000000482f0746d62141694b9210a813b97eb8445780a32003", "blockHeight": 829559, - "bidBoost": 6102, - "pools": [111] + "bidBoost": 3239, + "boostVersion": "v1", + "pools": [ + 111 + ], + "minedByPoolUniqueId": 111 } ]`, }, @@ -9229,7 +9304,7 @@ export const restApiDocsData = [ category: "accelerator-private", httpRequestMethod: "POST", fragment: "accelerator-accelerate", - title: "POST Accelerate A Transaction", + title: "POST Accelerate A Transaction (Pro)", description: { default: "

Sends a request to accelerate a transaction.

" }, diff --git a/frontend/src/app/docs/api-docs/api-docs.component.html b/frontend/src/app/docs/api-docs/api-docs.component.html index ffe6d0f85..38b351e37 100644 --- a/frontend/src/app/docs/api-docs/api-docs.component.html +++ b/frontend/src/app/docs/api-docs/api-docs.component.html @@ -194,7 +194,7 @@ -

To get your transaction confirmed quicker, you will need to increase its effective feerate.

If your transaction was created with RBF enabled, your stuck transaction can simply be replaced with a new one that has a higher fee. Otherwise, if you control any of the stuck transaction's outputs, you can use CPFP to increase your stuck transaction's effective feerate.

If you are not sure how to do RBF or CPFP, work with the tool you used to make the transaction (wallet software, exchange company, etc).

Another option to get your transaction confirmed more quickly is Mempool Accelerator™. This service is still in development, but you can sign up for the waitlist to be notified when it's ready.

+

To get your transaction confirmed quicker, you will need to increase its effective feerate.

If your transaction was created with RBF enabled, your stuck transaction can simply be replaced with a new one that has a higher fee. Otherwise, if you control any of the stuck transaction's outputs, you can use CPFP to increase your stuck transaction's effective feerate.

If you are not sure how to do RBF or CPFP, work with the tool you used to make the transaction (wallet software, exchange company, etc).

Another option to get your transaction confirmed more quickly is Mempool Accelerator™.

diff --git a/frontend/src/app/docs/api-docs/api-docs.component.ts b/frontend/src/app/docs/api-docs/api-docs.component.ts index b655b3969..efdc80d94 100644 --- a/frontend/src/app/docs/api-docs/api-docs.component.ts +++ b/frontend/src/app/docs/api-docs/api-docs.component.ts @@ -33,6 +33,7 @@ export class ApiDocsComponent implements OnInit, AfterViewInit { showMobileEnterpriseUpsell: boolean = true; timeLtrSubscription: Subscription; timeLtr: boolean = this.stateService.timeLtr.value; + isMempoolSpaceBuild = this.stateService.isMempoolSpaceBuild; @ViewChildren(FaqTemplateDirective) faqTemplates: QueryList; dict = {}; diff --git a/frontend/src/app/graphs/graphs.routing.module.ts b/frontend/src/app/graphs/graphs.routing.module.ts index dd3535f65..40bf64144 100644 --- a/frontend/src/app/graphs/graphs.routing.module.ts +++ b/frontend/src/app/graphs/graphs.routing.module.ts @@ -50,7 +50,7 @@ const routes: Routes = [ }, { path: 'acceleration', - data: { networks: ['bitcoin'] }, + data: { networks: ['bitcoin'], networkSpecific: true, onlySubnet: [''] }, component: StartComponent, children: [ { @@ -61,7 +61,7 @@ const routes: Routes = [ }, { path: 'acceleration/list/:page', - data: { networks: ['bitcoin'] }, + data: { networks: ['bitcoin'], networkSpecific: true, onlySubnet: [''] }, component: AccelerationsListComponent, }, { @@ -140,7 +140,7 @@ const routes: Routes = [ }, { path: 'acceleration/fees', - data: { networks: ['bitcoin'] }, + data: { networks: ['bitcoin'], networkSpecific: true, onlySubnet: [''] }, component: AccelerationFeesGraphComponent, }, { diff --git a/frontend/src/app/interfaces/node-api.interface.ts b/frontend/src/app/interfaces/node-api.interface.ts index eb5d3ba94..e8fb842ec 100644 --- a/frontend/src/app/interfaces/node-api.interface.ts +++ b/frontend/src/app/interfaces/node-api.interface.ts @@ -411,7 +411,7 @@ export interface Acceleration { } export interface AccelerationHistoryParams { - status?: string; + status?: string; // Single status or comma separated list of status timeframe?: string; poolUniqueId?: number; blockHash?: string; diff --git a/frontend/src/app/interfaces/services.interface.ts b/frontend/src/app/interfaces/services.interface.ts index d79e47812..f0ec6de7b 100644 --- a/frontend/src/app/interfaces/services.interface.ts +++ b/frontend/src/app/interfaces/services.interface.ts @@ -5,6 +5,7 @@ export type MenuItem = { i18n: string; faIcon: IconName; link: string; + isExternal?: boolean; }; export type MenuGroup = { title: string; diff --git a/frontend/src/app/services/api.service.ts b/frontend/src/app/services/api.service.ts index 6b0d60ccf..d7efa4d02 100644 --- a/frontend/src/app/services/api.service.ts +++ b/frontend/src/app/services/api.service.ts @@ -8,6 +8,7 @@ import { Transaction } from '../interfaces/electrs.interface'; import { Conversion } from './price.service'; import { StorageService } from './storage.service'; import { WebsocketResponse } from '../interfaces/websocket.interface'; +import { TxAuditStatus } from '../components/transaction/transaction.component'; @Injectable({ providedIn: 'root' @@ -17,6 +18,7 @@ export class ApiService { private apiBasePath: string; // network path is /testnet, etc. or '' for mainnet private requestCache = new Map, expiry: number }>; + public blockAuditLoaded: { [hash: string]: boolean } = {}; constructor( private httpClient: HttpClient, @@ -369,11 +371,18 @@ export class ApiService { } getBlockAudit$(hash: string) : Observable { + this.setBlockAuditLoaded(hash); return this.httpClient.get( this.apiBaseUrl + this.apiBasePath + `/api/v1/block/${hash}/audit-summary` ); } + getBlockTxAudit$(hash: string, txid: string) : Observable { + return this.httpClient.get( + this.apiBaseUrl + this.apiBasePath + `/api/v1/block/${hash}/tx/${txid}/audit` + ); + } + getBlockAuditScores$(from: number): Observable { return this.httpClient.get( this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/blocks/audit/scores` + @@ -526,4 +535,13 @@ export class ApiService { this.apiBaseUrl + this.apiBasePath + '/api/v1/accelerations/total' + (queryString?.length ? '?' + queryString : '') ); } + + // Cache methods + async setBlockAuditLoaded(hash: string) { + this.blockAuditLoaded[hash] = true; + } + + getBlockAuditLoaded(hash) { + return this.blockAuditLoaded[hash]; + } } diff --git a/frontend/src/app/services/cache.service.ts b/frontend/src/app/services/cache.service.ts index 993fcdfc6..f15154b46 100644 --- a/frontend/src/app/services/cache.service.ts +++ b/frontend/src/app/services/cache.service.ts @@ -124,6 +124,7 @@ export class CacheService { resetBlockCache() { this.blockHashCache = {}; this.blockCache = {}; + this.apiService.blockAuditLoaded = {}; this.blockLoading = {}; this.copiesInBlockQueue = {}; this.blockPriorities = []; diff --git a/frontend/src/app/services/eta.service.ts b/frontend/src/app/services/eta.service.ts index cc1436e4c..f632c9adb 100644 --- a/frontend/src/app/services/eta.service.ts +++ b/frontend/src/app/services/eta.service.ts @@ -225,4 +225,58 @@ export class EtaService { blocks: Math.ceil(eta / da.adjustedTimeAvg), }; } + + calculateUnacceleratedETA( + tx: Transaction, + mempoolBlocks: MempoolBlock[], + da: DifficultyAdjustment, + cpfpInfo: CpfpInfo | null, + ): ETA | null { + if (!tx || !mempoolBlocks) { + return null; + } + const now = Date.now(); + + // use known projected position, or fall back to feerate-based estimate + const mempoolPosition = this.mempoolPositionFromFees(this.getFeeRateFromCpfpInfo(tx, cpfpInfo), mempoolBlocks); + if (!mempoolPosition) { + return null; + } + + // difficulty adjustment estimate is required to know avg block time on non-Liquid networks + if (!da) { + return null; + } + + const blocks = mempoolPosition.block + 1; + const wait = da.adjustedTimeAvg * (mempoolPosition.block + 1); + return { + now, + time: wait + now + da.timeOffset, + wait, + blocks, + }; + } + + + getFeeRateFromCpfpInfo(tx: Transaction, cpfpInfo: CpfpInfo | null): number { + if (!cpfpInfo) { + return tx.fee / (tx.weight / 4); + } + + const relatives = [...(cpfpInfo.ancestors || []), ...(cpfpInfo.descendants || [])]; + if (cpfpInfo.bestDescendant && !cpfpInfo.descendants?.length) { + relatives.push(cpfpInfo.bestDescendant); + } + + if (!!relatives.length) { + const totalWeight = tx.weight + relatives.reduce((prev, val) => prev + val.weight, 0); + const totalFees = tx.fee + relatives.reduce((prev, val) => prev + val.fee, 0); + + return totalFees / (totalWeight / 4); + } + + return tx.fee / (tx.weight / 4); + + } } diff --git a/frontend/src/app/services/navigation.service.ts b/frontend/src/app/services/navigation.service.ts index aed114c75..57f7f84dd 100644 --- a/frontend/src/app/services/navigation.service.ts +++ b/frontend/src/app/services/navigation.service.ts @@ -3,6 +3,7 @@ import { Router, NavigationEnd, ActivatedRouteSnapshot } from '@angular/router'; import { BehaviorSubject } from 'rxjs'; import { filter, map } from 'rxjs/operators'; import { StateService } from './state.service'; +import { RelativeUrlPipe } from '../shared/pipes/relative-url/relative-url.pipe'; @Injectable({ providedIn: 'root' @@ -30,15 +31,30 @@ export class NavigationService { constructor( private stateService: StateService, private router: Router, + private relativeUrlPipe: RelativeUrlPipe, ) { this.router.events.pipe( filter(event => event instanceof NavigationEnd), map(() => this.router.routerState.snapshot.root), ).subscribe((state) => { - this.updateSubnetPaths(state); + if (this.enforceSubnetRestrictions(state)) { + this.updateSubnetPaths(state); + } }); } + enforceSubnetRestrictions(root: ActivatedRouteSnapshot): boolean { + let route = root; + while (route) { + if (route.data.onlySubnet && !route.data.onlySubnet.includes(this.stateService.network)) { + this.router.navigate([this.relativeUrlPipe.transform('')]); + return false; + } + route = route.firstChild; + } + return true; + } + // For each network (bitcoin/liquid), find and save the longest url path compatible with the current route updateSubnetPaths(root: ActivatedRouteSnapshot): void { let path = ''; diff --git a/frontend/src/app/services/services-api.service.ts b/frontend/src/app/services/services-api.service.ts index 07e72e0b6..ca5f0eefd 100644 --- a/frontend/src/app/services/services-api.service.ts +++ b/frontend/src/app/services/services-api.service.ts @@ -25,9 +25,6 @@ export interface IUser { ogRank: number | null; } -// Todo - move to config.json -const SERVICES_API_PREFIX = `/api/v1/services`; - @Injectable({ providedIn: 'root' }) @@ -98,7 +95,7 @@ export class ServicesApiServices { return of(null); } - return this.httpClient.get(`${SERVICES_API_PREFIX}/account`); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/account`); } getUserMenuGroups$(): Observable { @@ -107,7 +104,7 @@ export class ServicesApiServices { return of(null); } - return this.httpClient.get(`${SERVICES_API_PREFIX}/account/menu`); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/account/menu`); } logout$(): Observable { @@ -117,59 +114,59 @@ export class ServicesApiServices { } localStorage.removeItem('auth'); - return this.httpClient.post(`${SERVICES_API_PREFIX}/auth/logout`, {}); + return this.httpClient.post(`${this.stateService.env.SERVICES_API}/auth/logout`, {}); } getJWT$() { - return this.httpClient.get(`${SERVICES_API_PREFIX}/auth/getJWT`); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/auth/getJWT`); } getServicesBackendInfo$(): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/version`); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/version`); } estimate$(txInput: string) { - return this.httpClient.post(`${SERVICES_API_PREFIX}/accelerator/estimate`, { txInput: txInput }, { observe: 'response' }); + return this.httpClient.post(`${this.stateService.env.SERVICES_API}/accelerator/estimate`, { txInput: txInput }, { observe: 'response' }); } accelerate$(txInput: string, userBid: number, accelerationUUID: string) { - return this.httpClient.post(`${SERVICES_API_PREFIX}/accelerator/accelerate`, { txInput: txInput, userBid: userBid, accelerationUUID: accelerationUUID }); + return this.httpClient.post(`${this.stateService.env.SERVICES_API}/accelerator/accelerate`, { txInput: txInput, userBid: userBid, accelerationUUID: accelerationUUID }); } accelerateWithCashApp$(txInput: string, token: string, cashtag: string, referenceId: string, accelerationUUID: string) { - return this.httpClient.post(`${SERVICES_API_PREFIX}/accelerator/accelerate/cashapp`, { txInput: txInput, token: token, cashtag: cashtag, referenceId: referenceId, accelerationUUID: accelerationUUID }); + return this.httpClient.post(`${this.stateService.env.SERVICES_API}/accelerator/accelerate/cashapp`, { txInput: txInput, token: token, cashtag: cashtag, referenceId: referenceId, accelerationUUID: accelerationUUID }); } getAccelerations$(): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/accelerator/accelerations`); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/accelerator/accelerations`); } getAggregatedAccelerationHistory$(params: AccelerationHistoryParams): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/accelerator/accelerations/history/aggregated`, { params: { ...params }, observe: 'response' }); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/accelerator/accelerations/history/aggregated`, { params: { ...params }, observe: 'response' }); } getAccelerationHistory$(params: AccelerationHistoryParams): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/accelerator/accelerations/history`, { params: { ...params } }); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/accelerator/accelerations/history`, { params: { ...params } }); } getAccelerationHistoryObserveResponse$(params: AccelerationHistoryParams): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/accelerator/accelerations/history`, { params: { ...params }, observe: 'response'}); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/accelerator/accelerations/history`, { params: { ...params }, observe: 'response'}); } getAccelerationStats$(params: AccelerationHistoryParams): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/accelerator/accelerations/stats`, { params: { ...params } }); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/accelerator/accelerations/stats`, { params: { ...params } }); } setupSquare$(): Observable<{squareAppId: string, squareLocationId: string}> { - return this.httpClient.get<{squareAppId: string, squareLocationId: string}>(`${SERVICES_API_PREFIX}/square/setup`); + return this.httpClient.get<{squareAppId: string, squareLocationId: string}>(`${this.stateService.env.SERVICES_API}/square/setup`); } getFaucetStatus$() { - return this.httpClient.get<{ address?: string, min: number, max: number, code: 'ok' | 'faucet_not_available' | 'faucet_maximum_reached' | 'faucet_too_soon'}>(`${SERVICES_API_PREFIX}/testnet4/faucet/status`, { responseType: 'json' }); + return this.httpClient.get<{ address?: string, min: number, max: number, code: 'ok' | 'faucet_not_available' | 'faucet_maximum_reached' | 'faucet_too_soon'}>(`${this.stateService.env.SERVICES_API}/testnet4/faucet/status`, { responseType: 'json' }); } requestTestnet4Coins$(address: string, sats: number) { - return this.httpClient.get<{txid: string}>(`${SERVICES_API_PREFIX}/testnet4/faucet/request?address=${address}&sats=${sats}`, { responseType: 'json' }); + return this.httpClient.get<{txid: string}>(`${this.stateService.env.SERVICES_API}/testnet4/faucet/request?address=${address}&sats=${sats}`, { responseType: 'json' }); } generateBTCPayAcceleratorInvoice$(txid: string, sats: number): Observable { @@ -177,14 +174,14 @@ export class ServicesApiServices { product: txid, amount: sats, }; - return this.httpClient.post(`${SERVICES_API_PREFIX}/payments/bitcoin`, params); + return this.httpClient.post(`${this.stateService.env.SERVICES_API}/payments/bitcoin`, params); } retreiveInvoice$(invoiceId: string): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/payments/bitcoin/invoice?id=${invoiceId}`); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/payments/bitcoin/invoice?id=${invoiceId}`); } getPaymentStatus$(orderId: string): Observable { - return this.httpClient.get(`${SERVICES_API_PREFIX}/payments/bitcoin/check?order_id=${orderId}`); + return this.httpClient.get(`${this.stateService.env.SERVICES_API}/payments/bitcoin/check?order_id=${orderId}`); } } diff --git a/frontend/src/app/services/state.service.ts b/frontend/src/app/services/state.service.ts index 860ff15df..ef13ea07d 100644 --- a/frontend/src/app/services/state.service.ts +++ b/frontend/src/app/services/state.service.ts @@ -75,6 +75,7 @@ export interface Env { ADDITIONAL_CURRENCIES: boolean; GIT_COMMIT_HASH_MEMPOOL_SPACE?: string; PACKAGE_JSON_VERSION_MEMPOOL_SPACE?: string; + SERVICES_API?: string; customize?: Customization; } @@ -109,6 +110,7 @@ const defaultEnv: Env = { 'ACCELERATOR': false, 'PUBLIC_ACCELERATIONS': false, 'ADDITIONAL_CURRENCIES': false, + 'SERVICES_API': 'https://mempool.space/api/v1/services', }; @Injectable({ diff --git a/frontend/src/app/shared/components/mempool-error/mempool-error.component.html b/frontend/src/app/shared/components/mempool-error/mempool-error.component.html index a6c2d00f2..6cbd00819 100644 --- a/frontend/src/app/shared/components/mempool-error/mempool-error.component.html +++ b/frontend/src/app/shared/components/mempool-error/mempool-error.component.html @@ -6,4 +6,4 @@ } -Your balance is too low.
Please top up your account.
+Your balance is too low.
Please top up your account.
diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 66172161e..f4b3dbc7b 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -410,6 +410,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -851,7 +859,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -996,7 +1004,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1013,7 +1021,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1055,30 +1063,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block الكتلة القادمة src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1097,6 +1087,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + اول رؤية + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + تم تعدينه + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1178,6 +1321,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1190,7 +1341,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1267,7 +1418,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1468,7 +1619,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1480,11 +1631,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1492,16 +1651,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » عرض المزيد 》 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1525,7 +1692,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2710,64 +2877,6 @@ shared.transaction - - First seen - اول رؤية - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed تم تأكيد @@ -2971,26 +3080,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards مكافأة الكتلة @@ -3444,11 +3533,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4000,6 +4089,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4082,43 +4175,6 @@ dashboard.new-transaction-fee - - Mined - تم تعدينه - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6159,7 +6215,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6192,7 +6248,7 @@ نود شبكة البرق src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6201,7 +6257,7 @@ قنوات شبكة البرق src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6209,7 +6265,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6217,7 +6273,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6226,7 +6282,7 @@ انتقل إلى "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6374,7 +6430,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6382,28 +6438,20 @@ الآن src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago منذ - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6416,22 +6464,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6444,26 +6492,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ في ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6476,22 +6524,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6504,25 +6552,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6535,22 +6583,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6563,26 +6611,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After بعد - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6595,22 +6643,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6623,25 +6671,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6654,22 +6702,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6682,6 +6730,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6744,7 +6808,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6752,7 +6816,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6760,7 +6824,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6768,7 +6832,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6776,7 +6840,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6784,7 +6848,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6792,7 +6856,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6800,7 +6864,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6808,7 +6872,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6816,7 +6880,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6833,7 +6897,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6848,7 +6912,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6904,24 +6968,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow التدفق @@ -7494,14 +7558,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9681,8 +9737,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.ca.xlf b/frontend/src/locale/messages.ca.xlf index b0f7c41ee..217ba8e31 100644 --- a/frontend/src/locale/messages.ca.xlf +++ b/frontend/src/locale/messages.ca.xlf @@ -400,6 +400,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -840,7 +848,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -985,7 +993,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1002,7 +1010,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1044,29 +1052,11 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1085,6 +1075,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Vist per primera vegada + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Minat + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1166,6 +1309,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1178,7 +1329,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1255,7 +1406,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1455,7 +1606,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1467,11 +1618,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1479,15 +1638,23 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1511,7 +1678,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2672,64 +2839,6 @@ shared.transaction - - First seen - Vist per primera vegada - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Confirmat @@ -2930,26 +3039,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards @@ -3396,11 +3485,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3935,6 +4024,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4016,43 +4109,6 @@ dashboard.new-transaction-fee - - Mined - Minat - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6010,7 +6066,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6042,7 +6098,7 @@ Lightning Nodes src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6050,7 +6106,7 @@ Lightning Channels src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6058,7 +6114,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6066,7 +6122,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6074,7 +6130,7 @@ Go to "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6219,7 +6275,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6227,27 +6283,19 @@ Ara mateix src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6260,22 +6308,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6288,25 +6336,25 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6319,22 +6367,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6347,25 +6395,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6378,22 +6426,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6406,25 +6454,25 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6437,22 +6485,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6465,25 +6513,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6496,22 +6544,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6524,6 +6572,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6585,7 +6649,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6593,7 +6657,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6601,7 +6665,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6609,7 +6673,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6617,7 +6681,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6625,7 +6689,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6633,7 +6697,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6641,7 +6705,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6649,7 +6713,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6657,7 +6721,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6673,7 +6737,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6688,7 +6752,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6742,24 +6806,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow @@ -7302,14 +7366,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9370,8 +9426,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index edd61a9aa..1729c4fe4 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -869,7 +877,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1015,7 +1023,7 @@ Urychlit src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1032,7 +1040,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1074,32 +1082,12 @@ sat shared.sat - - maximum - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - akcelerováno - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Nadcházející blok src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1118,6 +1106,161 @@ 8 + + maximum + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Poprvé viděna + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Akcelerováno + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Vytěžen + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Poplatky Akcelerace @@ -1204,6 +1347,15 @@ accelerator.requests + + accelerated + akcelerováno + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Celkové zvýšení nabídky @@ -1217,7 +1369,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1298,7 +1450,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1509,7 +1661,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1522,12 +1674,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 týden) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1536,16 +1696,24 @@ (1 měsíc) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Zobrazit více » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1570,7 +1738,7 @@ Nedávné Akcelerace src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2783,64 +2951,6 @@ shared.transaction - - First seen - Poprvé viděna - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Potvrzeno @@ -3052,27 +3162,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Akcelerováno - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Odměny za blok @@ -3532,11 +3621,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4093,6 +4182,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4179,43 +4272,6 @@ dashboard.new-transaction-fee - - Mined - Vytěžen - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Plné RBF @@ -6329,7 +6385,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6364,7 +6420,7 @@ Lightningové uzly src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6373,7 +6429,7 @@ Lightningové kanály src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6382,7 +6438,7 @@ Jiná síťová adresa src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6391,7 +6447,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6400,7 +6456,7 @@ Přejít na "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6553,7 +6609,7 @@ Okamžitě src/app/components/time/time.component.ts - 106 + 107 @@ -6561,28 +6617,20 @@ Právě teď src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago Před - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6595,22 +6643,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6623,26 +6671,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6655,22 +6703,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6683,26 +6731,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ během ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6715,22 +6763,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6743,26 +6791,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Po - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6775,22 +6823,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6803,26 +6851,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before Před - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6835,22 +6883,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6863,6 +6911,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6926,7 +6990,7 @@ Potvrzeno v src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6935,7 +6999,7 @@ Výška bloku src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6944,7 +7008,7 @@ Vaše transakce byla urychlena src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6953,7 +7017,7 @@ Čekání na zobrazení transakce v mempoolu src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6962,7 +7026,7 @@ Vaše transakce je v mempoolu, ale ještě nějakou dobu nebude potvrzena. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6971,7 +7035,7 @@ Vaše transakce je blízko vrcholu mempoolu a očekává se, že bude brzy potvrzena. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6980,7 +7044,7 @@ Očekává se, že vaše transakce bude potvrzena v následujícím bloku. src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6989,7 +7053,7 @@ Vaše transakce je potvrzena! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6997,7 +7061,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7005,7 +7069,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7022,7 +7086,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7038,7 +7102,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7094,24 +7158,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Tok @@ -7702,14 +7766,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Liquid Federation Holdings @@ -9945,8 +10001,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.da.xlf b/frontend/src/locale/messages.da.xlf index 4c465b821..974be4a26 100644 --- a/frontend/src/locale/messages.da.xlf +++ b/frontend/src/locale/messages.da.xlf @@ -407,6 +407,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -848,7 +856,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -993,7 +1001,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1010,7 +1018,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1052,30 +1060,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Næste blok src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1094,6 +1084,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Først set + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Minet + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1175,6 +1318,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1187,7 +1338,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1264,7 +1415,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1465,7 +1616,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1477,11 +1628,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1489,16 +1648,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Se mere » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1522,7 +1689,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2707,64 +2874,6 @@ shared.transaction - - First seen - Først set - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Bekræftet @@ -2968,26 +3077,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Blokbelønninger @@ -3441,11 +3530,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3997,6 +4086,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4079,43 +4172,6 @@ dashboard.new-transaction-fee - - Mined - Minet - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6156,7 +6212,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6189,7 +6245,7 @@ Lightning noder src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6198,7 +6254,7 @@ Lightning kanaler src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6206,7 +6262,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6214,7 +6270,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6223,7 +6279,7 @@ Gå til "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6371,7 +6427,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6379,28 +6435,20 @@ Lige nu src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago siden - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6413,22 +6461,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6441,26 +6489,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Om ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6473,22 +6521,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6501,25 +6549,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6532,22 +6580,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6560,26 +6608,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Efter - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6592,22 +6640,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6620,25 +6668,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6651,22 +6699,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6679,6 +6727,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6741,7 +6805,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6749,7 +6813,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6757,7 +6821,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6765,7 +6829,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6773,7 +6837,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6781,7 +6845,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6789,7 +6853,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6797,7 +6861,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6805,7 +6869,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6813,7 +6877,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6830,7 +6894,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6845,7 +6909,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6901,24 +6965,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flow @@ -7491,14 +7555,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9678,8 +9734,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index c224edb2f..c0d06ec18 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -885,7 +893,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1045,7 +1053,7 @@ Beschleunigen src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1063,7 +1071,7 @@ Die Transaktion wird von bis zu  % der Miner priorisiert. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1105,32 +1113,12 @@ sat shared.sat - - maximum - maximal - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - beschleunigt - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Nächster Block src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1149,6 +1137,161 @@ 8 + + maximum + maximal + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Zuerst gesehen + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Beschleunigt + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Gefunden + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Beschleunigungsgebühren @@ -1235,6 +1378,15 @@ accelerator.requests + + accelerated + beschleunigt + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Gesamtgebotserhöhung @@ -1248,7 +1400,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1329,7 +1481,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1540,7 +1692,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1553,12 +1705,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 Woche) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1567,16 +1727,24 @@ (1 Monat) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Mehr anzeigen » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1601,7 +1769,7 @@ Aktuelle Beschleunigungen src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2829,64 +2997,6 @@ shared.transaction - - First seen - Zuerst gesehen - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Bestätigt @@ -3098,27 +3208,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Beschleunigt - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Blockbelohnungen @@ -3580,11 +3669,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4141,6 +4230,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4227,43 +4320,6 @@ dashboard.new-transaction-fee - - Mined - Gefunden - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Full RBF @@ -6382,7 +6438,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6418,7 +6474,7 @@ Lightning Nodes src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6427,7 +6483,7 @@ Lightning Kanäle src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6436,7 +6492,7 @@ Andere Netzwerkadresse src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6445,7 +6501,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6454,7 +6510,7 @@ Gehe zu "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6613,7 +6669,7 @@ Sofort src/app/components/time/time.component.ts - 106 + 107 @@ -6621,28 +6677,20 @@ Gerade eben src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago Vor - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6655,22 +6703,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6683,26 +6731,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6715,22 +6763,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6743,26 +6791,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ innerhalb von ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6775,22 +6823,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6803,26 +6851,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Nach - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6835,22 +6883,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6863,26 +6911,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before vorher - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6895,22 +6943,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6923,6 +6971,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6989,7 +7053,7 @@ Bestätigt am src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6998,7 +7062,7 @@ Blockhöhe src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -7007,7 +7071,7 @@ Deine Transaktion wurde beschleunigt src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -7016,7 +7080,7 @@ Warten, bis Ihre Transaktion im Mempool erscheint src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -7025,7 +7089,7 @@ Deine Transaktion befindet sich im Mempool, wird aber für einige Zeit nicht bestätigt werden. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -7034,7 +7098,7 @@ Ihre Transaktion befindet sich fast oben im Mempool und wird voraussichtlich bald bestätigt werden. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -7043,7 +7107,7 @@ Deine Transaktion wird voraussichtlich im nächsten Block bestätigt src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -7052,7 +7116,7 @@ Deine Transaktion ist bestätigt! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -7061,7 +7125,7 @@ Ihre Transaktion wurde durch eine neuere Version ersetzt! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7070,7 +7134,7 @@ Mehr Details anzeigen src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7087,7 +7151,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7103,7 +7167,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7160,24 +7224,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Fluss @@ -7768,14 +7832,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Liquid Föderation Bestand @@ -10019,8 +10075,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 446fb7fc6..3e726791d 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -859,7 +867,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1005,7 +1013,7 @@ Acelerar src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1022,7 +1030,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1064,32 +1072,12 @@ sat shared.sat - - maximum - máximo - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - acelerados - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Siguiente bloque src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1108,6 +1096,161 @@ 8 + + maximum + máximo + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Visto por primera vez + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Acelerado + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Minado + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Comisiones de aceleración @@ -1192,6 +1335,15 @@ accelerator.requests + + accelerated + acelerados + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1204,7 +1356,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1283,7 +1435,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1487,7 +1639,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1499,11 +1651,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1511,16 +1671,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Ver más » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1544,7 +1712,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2741,64 +2909,6 @@ shared.transaction - - First seen - Visto por primera vez - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Confirmado @@ -3008,27 +3118,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Acelerado - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Recompensa por bloque @@ -3482,11 +3571,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4040,6 +4129,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4126,43 +4219,6 @@ dashboard.new-transaction-fee - - Mined - Minado - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF RBF total @@ -6246,7 +6302,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6279,7 +6335,7 @@ Nodos de lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6288,7 +6344,7 @@ Canales de lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6297,7 +6353,7 @@ Dirección de otra red src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6306,7 +6362,7 @@ Activo Liquid src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6315,7 +6371,7 @@ Ir a "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6465,7 +6521,7 @@ Inmmediatamente src/app/components/time/time.component.ts - 106 + 107 @@ -6473,28 +6529,20 @@ Justo ahora src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago atrás - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6507,22 +6555,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6535,26 +6583,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ En ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6567,22 +6615,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6595,25 +6643,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6626,22 +6674,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6654,26 +6702,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Después - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6686,22 +6734,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6714,26 +6762,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before antes - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6746,22 +6794,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6774,6 +6822,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6836,7 +6900,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6844,7 +6908,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6852,7 +6916,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6860,7 +6924,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6868,7 +6932,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6876,7 +6940,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6884,7 +6948,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6892,7 +6956,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6900,7 +6964,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6908,7 +6972,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6925,7 +6989,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6940,7 +7004,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6996,24 +7060,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flujo @@ -7597,14 +7661,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9812,8 +9868,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index ffa67d827..4e73c9d4e 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -873,7 +881,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1019,7 +1027,7 @@ شتاب‌دهی src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1036,7 +1044,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1078,32 +1086,12 @@ sat shared.sat - - maximum - بیشینه - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - شتاب‌دهی شده - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block بلاک بعدی src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1122,6 +1110,161 @@ 8 + + maximum + بیشینه + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + اولین زمان دیده‌شدن + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + شتاب‌دهی‌شده + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + استخراج‌شده + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees کارمزد شتاب‌دهی @@ -1208,6 +1351,15 @@ accelerator.requests + + accelerated + شتاب‌دهی شده + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost مجموع افزایش از پیشنهاد @@ -1221,7 +1373,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1301,7 +1453,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1512,7 +1664,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1525,12 +1677,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 هفته) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1539,16 +1699,24 @@ (1 ماه) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » بیشتر » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1573,7 +1741,7 @@ شتاب‌دهی‌های اخیر src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2779,64 +2947,6 @@ shared.transaction - - First seen - اولین زمان دیده‌شدن - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed تأیید شده @@ -3048,27 +3158,6 @@ Conflict tx-features.tag.conflict - - Accelerated - شتاب‌دهی‌شده - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards پاداش بلاک @@ -3524,11 +3613,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4082,6 +4171,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4168,43 +4261,6 @@ dashboard.new-transaction-fee - - Mined - استخراج‌شده - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6276,7 +6332,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6312,7 +6368,7 @@ گره لایتنینگ src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6321,7 +6377,7 @@ کانال لایتنینگ src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6330,7 +6386,7 @@ آدرس شبکهٔ دیگر src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6339,7 +6395,7 @@ دارایی لیکوئید src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6348,7 +6404,7 @@ برو به "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6500,7 +6556,7 @@ بی‌درنگ src/app/components/time/time.component.ts - 106 + 107 @@ -6508,28 +6564,20 @@ همین الان src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago پیش - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6542,22 +6590,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6570,26 +6618,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ در حدود - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6602,22 +6650,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6630,26 +6678,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ در حدود - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6662,22 +6710,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6690,26 +6738,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After بعد از - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6722,22 +6770,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6750,26 +6798,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before قبل - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6782,22 +6830,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6810,6 +6858,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6875,7 +6939,7 @@ تأیید شده در src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6884,7 +6948,7 @@ طول بلاک src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6893,7 +6957,7 @@ تراکنش شما شتاب‌دهی شده است src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6902,7 +6966,7 @@ منتظر دیده‌شدن تراکنش شما در mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6911,7 +6975,7 @@ تراکنش شما در mempool است اما فعلا تأیید نخواهد شد. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6920,7 +6984,7 @@ تراکنش شما جلوی صف mempool قرار دارد و به زودی تأیید خواهد شد. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6929,7 +6993,7 @@ تراکنش شما به زودی در بلاک بعدی تأیید خواهد شد. src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6938,7 +7002,7 @@ تراکنش شما تأیید شد! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6947,7 +7011,7 @@ تراکنش شما با نسخه جدیدی جایگزین شده! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6956,7 +7020,7 @@ دیدن اطلاعات بیشتر src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6973,7 +7037,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6989,7 +7053,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7046,26 +7110,26 @@ accelerator.hide - - Acceleration Timeline - خط‌زمان شتاب‌دهی - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline خط‌زمان RBF src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + خط‌زمان شتاب‌دهی + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow جریان @@ -7647,14 +7711,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9868,8 +9924,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index c1d9f9a36..2f32f942b 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -869,7 +877,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1015,7 +1023,7 @@ Kiihdytä src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1032,7 +1040,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1074,32 +1082,12 @@ sat shared.sat - - maximum - maksimi - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - nopeutettu - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Seuraava lohko src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1118,6 +1106,161 @@ 8 + + maximum + maksimi + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Ensimmäiseksi nähty + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Kiihdytetty + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Louhittu + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Nopeutusmaksut @@ -1204,6 +1347,15 @@ accelerator.requests + + accelerated + nopeutettu + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Bid Boost yhteensä @@ -1217,7 +1369,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1298,7 +1450,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1507,7 +1659,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1520,12 +1672,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 viikko) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1534,16 +1694,24 @@ (1 kuukausi) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Näytä lisää » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1568,7 +1736,7 @@ Viimeaikaiset nopeutukset src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2760,64 +2928,6 @@ shared.transaction - - First seen - Ensimmäiseksi nähty - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Vahvistettu @@ -3026,27 +3136,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Kiihdytetty - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Lohkopalkkiot @@ -3506,11 +3595,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4066,6 +4155,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4152,43 +4245,6 @@ dashboard.new-transaction-fee - - Mined - Louhittu - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Täysi RBF @@ -6250,7 +6306,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6283,7 +6339,7 @@ Lightning osoitteet src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6292,7 +6348,7 @@ Lightning kanavat src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6300,7 +6356,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6308,7 +6364,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6317,7 +6373,7 @@ Siirry "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6469,7 +6525,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6477,28 +6533,20 @@ Juuri nyt src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago sitten - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6511,22 +6559,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6539,26 +6587,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6571,22 +6619,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6599,25 +6647,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6630,22 +6678,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6658,26 +6706,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After jälkeen - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6690,22 +6738,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6718,25 +6766,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6749,22 +6797,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6777,6 +6825,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6839,7 +6903,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6847,7 +6911,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6855,7 +6919,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6863,7 +6927,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6871,7 +6935,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6879,7 +6943,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6887,7 +6951,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6895,7 +6959,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6903,7 +6967,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6911,7 +6975,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6928,7 +6992,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6943,7 +7007,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6999,24 +7063,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Virtaus @@ -7589,14 +7653,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9827,8 +9883,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index bc63b0a74..a614195cf 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -883,7 +891,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1042,7 +1050,7 @@ Accélérer src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1060,7 +1068,7 @@ Votre transaction sera priorisée par % des mineurs au plus. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1102,32 +1110,12 @@ sat shared.sat - - maximum - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - accélérée - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Bloc suivant src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1146,6 +1134,161 @@ 8 + + maximum + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Vu pour la première fois + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Accéléré + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Miné + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Frais d'accélération @@ -1232,6 +1375,15 @@ accelerator.requests + + accelerated + accélérée + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Augmentation totale des frais @@ -1245,7 +1397,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1326,7 +1478,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1537,7 +1689,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1550,12 +1702,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 semaine) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1564,16 +1724,24 @@ (1 mois) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Voir plus » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1598,7 +1766,7 @@ Accélérations récentes src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2826,64 +2994,6 @@ shared.transaction - - First seen - Vu pour la première fois - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Confirmé @@ -3095,27 +3205,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Accéléré - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Récompenses de bloc @@ -3577,11 +3666,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4138,6 +4227,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4224,43 +4317,6 @@ dashboard.new-transaction-fee - - Mined - Miné - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF RBF complet @@ -6374,7 +6430,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6410,7 +6466,7 @@ Noeuds Lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6419,7 +6475,7 @@ Canaux Lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6428,7 +6484,7 @@ Adresse d'un autre réseau src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6437,7 +6493,7 @@ Actif Liquid src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6446,7 +6502,7 @@ Aller à "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6605,7 +6661,7 @@ Immédiatement src/app/components/time/time.component.ts - 106 + 107 @@ -6613,28 +6669,20 @@ Juste maintenant src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago Il y a - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6647,22 +6695,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6675,26 +6723,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Dans ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6707,22 +6755,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6735,26 +6783,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ dans ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6767,22 +6815,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6795,26 +6843,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Après - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6827,22 +6875,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6855,26 +6903,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before avant - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6887,22 +6935,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6915,6 +6963,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6978,7 +7042,7 @@ Confirmé à src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6987,7 +7051,7 @@ Hauteur du bloc src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6996,7 +7060,7 @@ Votre transaction a été accélérée src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -7005,7 +7069,7 @@ En attente que votre transaction apparaisse dans la mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -7014,7 +7078,7 @@ Votre transaction est dans la mempool, mais elle ne sera pas confirmée avant un certain temps. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -7023,7 +7087,7 @@ Votre transaction se trouve en haut de la mempool et devrait être confirmée bientôt. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -7032,7 +7096,7 @@ Votre transaction devrait être confirmée dans le prochain bloc src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -7041,7 +7105,7 @@ Votre transaction est confirmée ! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -7050,7 +7114,7 @@ Votre transaction a été remplacée par une version plus récente ! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7059,7 +7123,7 @@ Voir plus de détails src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7076,7 +7140,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7092,7 +7156,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7149,24 +7213,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flux @@ -7757,14 +7821,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Avoirs de la Fédération Liquid @@ -10007,8 +10063,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf index 59034b363..9fe4420af 100644 --- a/frontend/src/locale/messages.he.xlf +++ b/frontend/src/locale/messages.he.xlf @@ -408,6 +408,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -849,7 +857,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -994,7 +1002,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1011,7 +1019,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1053,31 +1061,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - הואץ - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block הבלוק הבא src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1096,6 +1085,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + נראה לראשונה + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + נכרה + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees עמלות האצה @@ -1179,6 +1321,15 @@ accelerator.requests + + accelerated + הואץ + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1191,7 +1342,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1269,7 +1420,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1470,7 +1621,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1482,11 +1633,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1494,16 +1653,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » צפה בעוד » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1527,7 +1694,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2712,64 +2879,6 @@ shared.transaction - - First seen - נראה לראשונה - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed אושר @@ -2973,26 +3082,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards פרסי הבלוק @@ -3446,11 +3535,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4002,6 +4091,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4084,43 +4177,6 @@ dashboard.new-transaction-fee - - Mined - נכרה - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6161,7 +6217,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6194,7 +6250,7 @@ צמתי ברק src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6203,7 +6259,7 @@ ערוצי ברק src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6211,7 +6267,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6219,7 +6275,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6228,7 +6284,7 @@ עבור ל src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6376,7 +6432,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6384,28 +6440,20 @@ זה עתה src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago לפני - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6418,22 +6466,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6446,26 +6494,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ תוך ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6478,22 +6526,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6506,25 +6554,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6537,22 +6585,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6565,26 +6613,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After לאחר - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6597,22 +6645,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6625,25 +6673,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6656,22 +6704,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6684,6 +6732,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6746,7 +6810,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6754,7 +6818,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6762,7 +6826,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6770,7 +6834,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6778,7 +6842,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6786,7 +6850,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6794,7 +6858,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6802,7 +6866,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6810,7 +6874,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6818,7 +6882,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6835,7 +6899,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6850,7 +6914,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6906,24 +6970,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow זרימה @@ -7496,14 +7560,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9683,8 +9739,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf index 85d43247e..f9d07db11 100644 --- a/frontend/src/locale/messages.hi.xlf +++ b/frontend/src/locale/messages.hi.xlf @@ -405,6 +405,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -845,7 +853,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -990,7 +998,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1007,7 +1015,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1049,30 +1057,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block अगला ब्लॉक src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1091,6 +1081,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + प्रथम देखा + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + माइंड + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1172,6 +1315,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1184,7 +1335,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1261,7 +1412,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1461,7 +1612,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1473,11 +1624,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1485,16 +1644,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » और देखें » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1518,7 +1685,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2693,64 +2860,6 @@ shared.transaction - - First seen - प्रथम देखा - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed पुष्ट @@ -2951,26 +3060,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards @@ -3419,11 +3508,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3963,6 +4052,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4045,43 +4138,6 @@ dashboard.new-transaction-fee - - Mined - माइंड - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6050,7 +6106,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6082,7 +6138,7 @@ Lightning Nodes src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6090,7 +6146,7 @@ Lightning Channels src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6098,7 +6154,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6106,7 +6162,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6114,7 +6170,7 @@ Go to "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6262,7 +6318,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6270,28 +6326,20 @@ अभी src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago पहले - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6304,22 +6352,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6332,25 +6380,25 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6363,22 +6411,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6391,25 +6439,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6422,22 +6470,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6450,26 +6498,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After . के बाद - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6482,22 +6530,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6510,25 +6558,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6541,22 +6589,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6569,6 +6617,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6631,7 +6695,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6639,7 +6703,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6647,7 +6711,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6655,7 +6719,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6663,7 +6727,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6671,7 +6735,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6679,7 +6743,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6687,7 +6751,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6695,7 +6759,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6703,7 +6767,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6720,7 +6784,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6735,7 +6799,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6791,24 +6855,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow @@ -7364,14 +7428,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9435,8 +9491,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index 7221af428..54cac9754 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -368,6 +368,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -808,7 +816,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -953,7 +961,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -970,7 +978,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1011,29 +1019,11 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1052,6 +1042,158 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Prvo viđeno + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1133,6 +1275,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1145,7 +1295,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1222,7 +1372,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1420,7 +1570,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1432,11 +1582,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1444,15 +1602,23 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1476,7 +1642,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2616,64 +2782,6 @@ shared.transaction - - First seen - Prvo viđeno - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Potvrđena @@ -2873,26 +2981,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards @@ -3331,11 +3419,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3860,6 +3948,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -3940,42 +4032,6 @@ dashboard.new-transaction-fee - - Mined - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -5921,7 +5977,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -5953,7 +6009,7 @@ Lightning Nodes src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -5961,7 +6017,7 @@ Lightning Channels src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -5969,7 +6025,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -5977,7 +6033,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -5985,7 +6041,7 @@ Go to "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6128,34 +6184,26 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 Just now src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6168,22 +6216,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6196,25 +6244,25 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6227,22 +6275,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6255,25 +6303,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6286,22 +6334,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6314,25 +6362,25 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6345,22 +6393,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6373,25 +6421,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6404,22 +6452,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6432,6 +6480,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6493,7 +6557,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6501,7 +6565,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6509,7 +6573,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6517,7 +6581,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6525,7 +6589,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6533,7 +6597,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6541,7 +6605,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6549,7 +6613,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6557,7 +6621,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6565,7 +6629,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6581,7 +6645,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6596,7 +6660,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6649,24 +6713,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow @@ -7199,14 +7263,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9262,8 +9318,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index 037d79847..78e70d0ef 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -414,6 +414,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -857,7 +865,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1003,7 +1011,7 @@ Gyorsítás src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1020,7 +1028,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1062,31 +1070,12 @@ sat shared.sat - - maximum - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Következő blokk src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1105,6 +1094,160 @@ 8 + + maximum + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Először látva + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Bányászott + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Gyorsítási Díjak @@ -1187,6 +1330,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1199,7 +1350,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1277,7 +1428,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1478,7 +1629,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1490,11 +1641,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1502,16 +1661,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Továbbiak » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1535,7 +1702,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2723,64 +2890,6 @@ shared.transaction - - First seen - Először látva - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Megerősítve @@ -2985,26 +3094,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Blokk Jutalmak @@ -3458,11 +3547,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4015,6 +4104,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4100,43 +4193,6 @@ dashboard.new-transaction-fee - - Mined - Bányászott - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Teljes RBF @@ -6190,7 +6246,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6223,7 +6279,7 @@ Villám Nodeok src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6232,7 +6288,7 @@ Villám Csatornák src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6240,7 +6296,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6248,7 +6304,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6257,7 +6313,7 @@ Ugrás ide: "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6406,7 +6462,7 @@ Azonnal src/app/components/time/time.component.ts - 106 + 107 @@ -6414,28 +6470,20 @@ Épp most src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6448,22 +6496,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6476,26 +6524,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ ~ belül - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6508,22 +6556,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6536,25 +6584,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6567,22 +6615,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6595,26 +6643,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After után - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6627,22 +6675,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6655,25 +6703,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6686,22 +6734,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6714,6 +6762,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6776,7 +6840,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6784,7 +6848,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6792,7 +6856,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6800,7 +6864,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6808,7 +6872,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6816,7 +6880,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6824,7 +6888,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6833,7 +6897,7 @@ Az ön tranzakciója megerősítve! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6841,7 +6905,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6849,7 +6913,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6866,7 +6930,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6881,7 +6945,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6937,24 +7001,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Áramlás @@ -7534,14 +7598,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9735,8 +9791,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index 71fceea40..dcee24588 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -869,7 +877,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1015,7 +1023,7 @@ Accelerare src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1032,7 +1040,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1074,32 +1082,12 @@ sat shared.sat - - maximum - massimo - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - accelerata - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Blocco Successivo src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1118,6 +1106,161 @@ 8 + + maximum + massimo + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Vista per la prima volta + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Accelerata + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Minato + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Commisioni di Accelerazione @@ -1204,6 +1347,15 @@ accelerator.requests + + accelerated + accelerata + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Bid Boost Totale @@ -1217,7 +1369,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1298,7 +1450,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1509,7 +1661,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1522,12 +1674,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 settimana) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1536,16 +1696,24 @@ (1 mese) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Scopri di più » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1570,7 +1738,7 @@ Accelerazioni Recenti src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2783,64 +2951,6 @@ shared.transaction - - First seen - Vista per la prima volta - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Confermata @@ -3052,27 +3162,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Accelerata - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Ricompense del blocco @@ -3532,11 +3621,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4093,6 +4182,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4179,43 +4272,6 @@ dashboard.new-transaction-fee - - Mined - Minato - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Full RBF @@ -6329,7 +6385,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6364,7 +6420,7 @@ Nodi Lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6373,7 +6429,7 @@ Canali Lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6382,7 +6438,7 @@ Altro Indirizzo di Rete src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6391,7 +6447,7 @@ Asset Liquid src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6400,7 +6456,7 @@ Vai a &quot;&quot; src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6553,7 +6609,7 @@ Subito src/app/components/time/time.component.ts - 106 + 107 @@ -6561,28 +6617,20 @@ Adesso src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago fa - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6595,22 +6643,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6623,26 +6671,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6655,22 +6703,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6683,26 +6731,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ entro ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6715,22 +6763,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6743,26 +6791,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Dopo - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6775,22 +6823,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6803,26 +6851,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before prima - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6835,22 +6883,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6863,6 +6911,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6926,7 +6990,7 @@ Confermato a src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6935,7 +6999,7 @@ Altezza del blocco src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6944,7 +7008,7 @@ La tua transazione è stata accelerata src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6953,7 +7017,7 @@ In attesa che la transazione venga visualizzata nella mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6962,7 +7026,7 @@ La tua transazione è nella mempool, ma non sarà confermata in breve tempo. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6971,7 +7035,7 @@ La tua transazione è quasi nella parte alta della mempool e dovrebbe essere confermata presto. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6980,7 +7044,7 @@ La transazione dovrebbe essere confermata nel prossimo blocco src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6989,7 +7053,7 @@ La tua transazione è confermata! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6997,7 +7061,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7005,7 +7069,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7022,7 +7086,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7038,7 +7102,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7094,24 +7158,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flusso @@ -7702,14 +7766,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Capitale della Federazione Liquid @@ -9945,8 +10001,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 6be82c2ce..a3bb4962d 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -884,7 +892,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1043,7 +1051,7 @@ 高速化 src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1061,7 +1069,7 @@ あなたの取引は、最大 % のマイナーによって優先されます。 src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1103,32 +1111,12 @@ sat shared.sat - - maximum - 最大 - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - 高速化済み - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block 次のブロック src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1147,6 +1135,161 @@ 8 + + maximum + 最大 + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + 最初に見た + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + 高速化済み + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + 採掘された + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees 高速化手数料 @@ -1233,6 +1376,15 @@ accelerator.requests + + accelerated + 高速化済み + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost 合計入札ブースト @@ -1246,7 +1398,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1327,7 +1479,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1538,7 +1690,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1551,12 +1703,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1週間) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1565,16 +1725,24 @@ (1ヶ月) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » 詳細を表示 » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1599,7 +1767,7 @@ 最近の高速化取引 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2827,64 +2995,6 @@ shared.transaction - - First seen - 最初に見た - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed 承認済み @@ -3096,27 +3206,6 @@ Conflict tx-features.tag.conflict - - Accelerated - 高速化済み - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards ブロック報酬 @@ -3578,11 +3667,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4139,6 +4228,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4225,43 +4318,6 @@ dashboard.new-transaction-fee - - Mined - 採掘された - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF フルRBF @@ -6380,7 +6436,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6416,7 +6472,7 @@ ライトニングノード src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6425,7 +6481,7 @@ ライトニングチャンネル src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6434,7 +6490,7 @@ 他のネットワークのアドレス src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6443,7 +6499,7 @@ リキッドアセット src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6452,7 +6508,7 @@ ""へ src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6611,7 +6667,7 @@ すぐに src/app/components/time/time.component.ts - 106 + 107 @@ -6619,28 +6675,20 @@ ちょうど今 src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6653,22 +6701,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6681,26 +6729,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ あと〜 - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6713,22 +6761,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6741,26 +6789,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ ~ 以内 - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6773,22 +6821,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6801,26 +6849,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After の後 - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6833,22 +6881,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6861,26 +6909,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6893,22 +6941,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6921,6 +6969,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6987,7 +7051,7 @@ 承認時刻 src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6996,7 +7060,7 @@ ブロック高 src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -7005,7 +7069,7 @@ 取引が高速化されました src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -7014,7 +7078,7 @@ mempoolに取引が表示されるのを待っています... src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -7023,7 +7087,7 @@ 取引はmempoolにありますが、しばらくは承認されません。 src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -7032,7 +7096,7 @@ あなたの取引はmempoolの上位近くにあり、すぐに承認される予定です。 src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -7041,7 +7105,7 @@ あなたの取引は次のブロックで承認される予定です src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -7050,7 +7114,7 @@ 取引が承認されました! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -7059,7 +7123,7 @@ 取引は新しいバージョンに置き換えられました。 src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7068,7 +7132,7 @@ 詳細を見る src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7085,7 +7149,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7101,7 +7165,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7158,24 +7222,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow 流れ @@ -7766,14 +7830,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings リキッド・フェデレーションの保有量 @@ -10017,8 +10073,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index 8c0c666e2..3f71e4f2e 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -407,6 +407,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -848,7 +856,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -993,7 +1001,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1010,7 +1018,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1052,30 +1060,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block შემდეგი ბლოკი src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1094,6 +1084,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + პირველი + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + მოპოვებული + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1175,6 +1318,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1187,7 +1338,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1264,7 +1415,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1465,7 +1616,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1477,11 +1628,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1489,16 +1648,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » მეტის ნახვა » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1522,7 +1689,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2707,64 +2874,6 @@ shared.transaction - - First seen - პირველი - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed დადასტურებული @@ -2968,26 +3077,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards ბლოკის ანაზღაურება @@ -3441,11 +3530,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3997,6 +4086,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4079,43 +4172,6 @@ dashboard.new-transaction-fee - - Mined - მოპოვებული - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6144,7 +6200,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6177,7 +6233,7 @@ Lightning ნოდა src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6186,7 +6242,7 @@ Lightning ჩანელი src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6194,7 +6250,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6202,7 +6258,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6211,7 +6267,7 @@ ნახვა "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6359,7 +6415,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6367,28 +6423,20 @@ ახლა src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago წინ - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6401,22 +6449,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6429,25 +6477,25 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6460,22 +6508,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6488,25 +6536,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6519,22 +6567,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6547,26 +6595,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After შემდეგ - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6579,22 +6627,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6607,25 +6655,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6638,22 +6686,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6666,6 +6714,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6728,7 +6792,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6736,7 +6800,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6744,7 +6808,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6752,7 +6816,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6760,7 +6824,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6768,7 +6832,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6776,7 +6840,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6784,7 +6848,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6792,7 +6856,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6800,7 +6864,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6817,7 +6881,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6832,7 +6896,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6888,24 +6952,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flow @@ -7478,14 +7542,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9664,8 +9720,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index ea89b5909..abf5a3be7 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -856,7 +864,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1001,7 +1009,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1018,7 +1026,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1060,31 +1068,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - 가속됨 - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block 다음 블록 src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1103,6 +1092,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + 처음으로 감지됨 + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + 채굴됨 + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees 가속 수수료 @@ -1186,6 +1328,15 @@ accelerator.requests + + accelerated + 가속됨 + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost 총 입찰 부스트 @@ -1199,7 +1350,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1277,7 +1428,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1478,7 +1629,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1490,11 +1641,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1502,16 +1661,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » 더 보기 » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1535,7 +1702,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2720,64 +2887,6 @@ shared.transaction - - First seen - 처음으로 감지됨 - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed 컨펌됨 @@ -2981,26 +3090,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards 블록 보상 @@ -3455,11 +3544,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4011,6 +4100,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4093,43 +4186,6 @@ dashboard.new-transaction-fee - - Mined - 채굴됨 - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6170,7 +6226,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6203,7 +6259,7 @@ 라이트닝 노드들 src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6212,7 +6268,7 @@ 라이트닝 채널들 src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6220,7 +6276,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6228,7 +6284,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6237,7 +6293,7 @@ "" 로 이동 src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6385,7 +6441,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6393,28 +6449,20 @@ 방금 전 src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6427,22 +6475,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6455,26 +6503,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6487,22 +6535,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6515,25 +6563,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6546,22 +6594,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6574,26 +6622,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After 이후 - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6606,22 +6654,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6634,25 +6682,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6665,22 +6713,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6693,6 +6741,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6755,7 +6819,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6763,7 +6827,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6771,7 +6835,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6779,7 +6843,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6787,7 +6851,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6795,7 +6859,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6803,7 +6867,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6811,7 +6875,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6819,7 +6883,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6827,7 +6891,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6844,7 +6908,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6859,7 +6923,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6915,24 +6979,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow 흐름 @@ -7505,14 +7569,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9692,8 +9748,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.lt.xlf b/frontend/src/locale/messages.lt.xlf index 948bf205e..00f82bc94 100644 --- a/frontend/src/locale/messages.lt.xlf +++ b/frontend/src/locale/messages.lt.xlf @@ -407,6 +407,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -848,7 +856,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -993,7 +1001,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1010,7 +1018,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1052,30 +1060,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Kitas Blokas src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1094,6 +1084,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Pirma pamatytas + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Iškasta + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1175,6 +1318,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1187,7 +1338,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1264,7 +1415,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1465,7 +1616,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1477,11 +1628,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1489,16 +1648,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Rodyti daugiau » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1522,7 +1689,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2707,64 +2874,6 @@ shared.transaction - - First seen - Pirma pamatytas - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Patvirtinta @@ -2968,26 +3077,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Bloko Atlygis @@ -3441,11 +3530,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3997,6 +4086,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4079,43 +4172,6 @@ dashboard.new-transaction-fee - - Mined - Iškasta - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6156,7 +6212,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6189,7 +6245,7 @@ "Lightning" Mazgai src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6198,7 +6254,7 @@ "Lightning" Kanalai src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6206,7 +6262,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6214,7 +6270,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6223,7 +6279,7 @@ Eikite į "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6371,7 +6427,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6379,28 +6435,20 @@ Dabar src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago Prieš - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6413,22 +6461,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6441,26 +6489,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Už ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6473,22 +6521,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6501,25 +6549,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6532,22 +6580,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6560,26 +6608,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Po - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6592,22 +6640,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6620,25 +6668,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6651,22 +6699,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6679,6 +6727,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6741,7 +6805,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6749,7 +6813,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6757,7 +6821,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6765,7 +6829,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6773,7 +6837,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6781,7 +6845,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6789,7 +6853,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6797,7 +6861,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6805,7 +6869,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6813,7 +6877,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6830,7 +6894,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6845,7 +6909,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6901,24 +6965,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Srautas @@ -7491,14 +7555,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9678,8 +9734,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.mk.xlf b/frontend/src/locale/messages.mk.xlf index 317601c96..c9c13f7fc 100644 --- a/frontend/src/locale/messages.mk.xlf +++ b/frontend/src/locale/messages.mk.xlf @@ -407,6 +407,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -848,7 +856,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -993,7 +1001,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1010,7 +1018,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1052,30 +1060,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Нареден Блок src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1094,6 +1084,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Пратена + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Пронајден + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1175,6 +1318,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1187,7 +1338,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1264,7 +1415,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1465,7 +1616,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1477,11 +1628,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1489,16 +1648,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Види повеќе » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1522,7 +1689,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2707,64 +2874,6 @@ shared.transaction - - First seen - Пратена - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Потврдено @@ -2968,26 +3077,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Награди по Блок @@ -3441,11 +3530,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3997,6 +4086,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4079,43 +4172,6 @@ dashboard.new-transaction-fee - - Mined - Пронајден - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6156,7 +6212,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6189,7 +6245,7 @@ Lightning Нодови src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6198,7 +6254,7 @@ Lightning Канали src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6206,7 +6262,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6214,7 +6270,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6223,7 +6279,7 @@ Оди на "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6371,7 +6427,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6379,28 +6435,20 @@ Штотуку src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago Пред - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6413,22 +6461,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6441,26 +6489,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ За ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6473,22 +6521,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6501,25 +6549,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6532,22 +6580,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6560,26 +6608,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After После - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6592,22 +6640,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6620,25 +6668,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6651,22 +6699,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6679,6 +6727,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6741,7 +6805,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6749,7 +6813,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6757,7 +6821,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6765,7 +6829,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6773,7 +6837,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6781,7 +6845,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6789,7 +6853,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6797,7 +6861,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6805,7 +6869,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6813,7 +6877,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6830,7 +6894,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6845,7 +6909,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6901,24 +6965,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Тек @@ -7491,14 +7555,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9678,8 +9734,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index bd561c256..33985b4d0 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -856,7 +864,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1002,7 +1010,7 @@ Akselerer src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1019,7 +1027,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1061,30 +1069,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Neste blokk src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1103,6 +1093,160 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Først sett + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Akselerert + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Utvunnet + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1184,6 +1328,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1196,7 +1348,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1273,7 +1425,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1475,7 +1627,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1487,11 +1639,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1499,16 +1659,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Se mer » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1532,7 +1700,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2722,64 +2890,6 @@ shared.transaction - - First seen - Først sett - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Bekreftet @@ -2988,27 +3098,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Akselerert - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Blokkbelønning @@ -3468,11 +3557,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4028,6 +4117,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4114,43 +4207,6 @@ dashboard.new-transaction-fee - - Mined - Utvunnet - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Full RBF @@ -6212,7 +6268,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6245,7 +6301,7 @@ Ligthning-noder src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6254,7 +6310,7 @@ Lightning-kanaler src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6262,7 +6318,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6270,7 +6326,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6279,7 +6335,7 @@ Gå til "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6431,7 +6487,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6439,28 +6495,20 @@ Akkurat nå src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago siden - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6473,22 +6521,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6501,26 +6549,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Om ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6533,22 +6581,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6561,25 +6609,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6592,22 +6640,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6620,26 +6668,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Etter - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6652,22 +6700,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6680,25 +6728,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6711,22 +6759,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6739,6 +6787,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6801,7 +6865,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6809,7 +6873,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6817,7 +6881,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6825,7 +6889,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6833,7 +6897,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6841,7 +6905,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6849,7 +6913,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6857,7 +6921,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6865,7 +6929,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6873,7 +6937,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6890,7 +6954,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6905,7 +6969,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6961,24 +7025,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Strøm @@ -7551,14 +7615,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9789,8 +9845,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.ne.xlf b/frontend/src/locale/messages.ne.xlf index ee73c1b22..7c6c6de28 100644 --- a/frontend/src/locale/messages.ne.xlf +++ b/frontend/src/locale/messages.ne.xlf @@ -407,6 +407,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -848,7 +856,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -993,7 +1001,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1010,7 +1018,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1052,30 +1060,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block अर्को ब्लक src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1094,6 +1084,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + पहिलो पटक देखियो + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + खानी गरिएको + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1175,6 +1318,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1187,7 +1338,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1264,7 +1415,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1465,7 +1616,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1477,11 +1628,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1489,16 +1648,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » अरु पनि हेर्नुहोस् src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1522,7 +1689,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2707,64 +2874,6 @@ shared.transaction - - First seen - पहिलो पटक देखियो - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed पक्का / पुष्टि @@ -2968,26 +3077,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards ब्लक इनाम @@ -3441,11 +3530,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3997,6 +4086,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4079,43 +4172,6 @@ dashboard.new-transaction-fee - - Mined - खानी गरिएको - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6154,7 +6210,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6187,7 +6243,7 @@ लाइटनिङग नोडहरू src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6196,7 +6252,7 @@ लाइटनिङग च्यानलहरू src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6204,7 +6260,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6212,7 +6268,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6220,7 +6276,7 @@ Go to "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6368,7 +6424,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6376,28 +6432,20 @@ भर्खरै src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago पहिले - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6410,22 +6458,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6438,26 +6486,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ लगभग - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6470,22 +6518,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6498,25 +6546,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6529,22 +6577,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6557,26 +6605,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After पछि - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6589,22 +6637,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6617,25 +6665,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6648,22 +6696,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6676,6 +6724,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6738,7 +6802,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6746,7 +6810,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6754,7 +6818,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6762,7 +6826,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6770,7 +6834,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6778,7 +6842,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6786,7 +6850,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6794,7 +6858,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6802,7 +6866,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6810,7 +6874,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6827,7 +6891,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6842,7 +6906,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6898,24 +6962,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow प्रवाह @@ -7488,14 +7552,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9655,8 +9711,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 9f886d748..93f81081c 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -869,7 +877,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1015,7 +1023,7 @@ Versnellen src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1032,7 +1040,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1074,32 +1082,12 @@ sat shared.sat - - maximum - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - versneld - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Volgend Blok src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1118,6 +1106,161 @@ 8 + + maximum + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Eerst gezien + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Versneld + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Gedolven + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Versnellingstarief @@ -1204,6 +1347,15 @@ accelerator.requests + + accelerated + versneld + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Totaalbod versnelling @@ -1217,7 +1369,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1296,7 +1448,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1507,7 +1659,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1520,11 +1672,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1532,16 +1692,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Laat meer zien » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1566,7 +1734,7 @@ Recente versnellingen src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2776,64 +2944,6 @@ shared.transaction - - First seen - Eerst gezien - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Bevestigd @@ -3045,27 +3155,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Versneld - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Blokbeloningen @@ -3525,11 +3614,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4086,6 +4175,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4172,43 +4265,6 @@ dashboard.new-transaction-fee - - Mined - Gedolven - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Volledige RBF @@ -6319,7 +6375,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6354,7 +6410,7 @@ Lightningnodes src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6363,7 +6419,7 @@ Lightningkanalen src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6372,7 +6428,7 @@ Ander netwerkadres src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6381,7 +6437,7 @@ Liquid-activa src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6390,7 +6446,7 @@ Ga naar "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6543,7 +6599,7 @@ Onmiddellijk src/app/components/time/time.component.ts - 106 + 107 @@ -6551,28 +6607,20 @@ Zojuist src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago geleden - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6585,22 +6633,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6613,26 +6661,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Over ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6645,22 +6693,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6673,25 +6721,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6704,22 +6752,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6732,26 +6780,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Na - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6764,22 +6812,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6792,26 +6840,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before eerder - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6824,22 +6872,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6852,6 +6900,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6914,7 +6978,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6922,7 +6986,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6930,7 +6994,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6938,7 +7002,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6946,7 +7010,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6954,7 +7018,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6962,7 +7026,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6970,7 +7034,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6978,7 +7042,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6986,7 +7050,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7003,7 +7067,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7019,7 +7083,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7075,24 +7139,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Stroom @@ -7683,14 +7747,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Liquide Federatie Holdings @@ -9926,8 +9982,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 28db838c8..4c92786b5 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -869,7 +877,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1015,7 +1023,7 @@ Przyspiesz src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1032,7 +1040,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1074,32 +1082,12 @@ sat shared.sat - - maximum - maksimum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - przyspieszona - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Następny blok src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1118,6 +1106,161 @@ 8 + + maximum + maksimum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Pierwszy raz widziana + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Przyspieszona + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Wydobyty + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Opłaty akceleracji @@ -1204,6 +1347,15 @@ accelerator.requests + + accelerated + przyspieszona + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Całkowite zwiększenie oferty @@ -1217,7 +1369,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1298,7 +1450,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1509,7 +1661,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1522,12 +1674,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 tydzień) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1536,16 +1696,24 @@ (1 miesiąc) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Pokaż więcej » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1570,7 +1738,7 @@ Ostatnie akceleracje src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2783,64 +2951,6 @@ shared.transaction - - First seen - Pierwszy raz widziana - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Potwierdzona @@ -3052,27 +3162,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Przyspieszona - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Nagrody bloku @@ -3532,11 +3621,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4093,6 +4182,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4179,43 +4272,6 @@ dashboard.new-transaction-fee - - Mined - Wydobyty - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Pełny RBF @@ -6329,7 +6385,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6364,7 +6420,7 @@ Węzły Lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6373,7 +6429,7 @@ Kanały Lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6382,7 +6438,7 @@ Inny adres sieciowy src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6391,7 +6447,7 @@ Aktywo Liquid src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6400,7 +6456,7 @@ Idź do "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6553,7 +6609,7 @@ Natychmiast src/app/components/time/time.component.ts - 106 + 107 @@ -6561,28 +6617,20 @@ Przed chwilą src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago temu - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6595,22 +6643,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6623,26 +6671,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Za ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6655,22 +6703,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6683,26 +6731,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ w ciągu ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6715,22 +6763,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6743,26 +6791,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Po - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6775,22 +6823,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6803,26 +6851,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before wcześniej - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6835,22 +6883,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6863,6 +6911,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6926,7 +6990,7 @@ Data potwierdzenia src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6935,7 +6999,7 @@ Wysokość bloku src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6944,7 +7008,7 @@ Twoja transakcja została przyspieszona src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6953,7 +7017,7 @@ Oczekiwanie na pojawienie się twojej transakcji w mempoolu src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6962,7 +7026,7 @@ Twoja transakcja znajduje się w mempool, ale jej potwierdzenie zajmie trochę czasu src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6971,7 +7035,7 @@ Twoja transakcja znajduje się blisko szczytu mempool i powinna zostać wkrótce potwierdzona src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6980,7 +7044,7 @@ Twoja transakcja powinna zostać potwierdzona w następnym bloku src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6989,7 +7053,7 @@ Twoja transakcja jest potwierdzona! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6997,7 +7061,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7005,7 +7069,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7022,7 +7086,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7038,7 +7102,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7094,24 +7158,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Przepływ @@ -7702,14 +7766,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Zasoby Federacji Liquid @@ -9945,8 +10001,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index fa35e0ec8..6dd370b24 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -414,8 +414,17 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. + Não conseguimos acelerar esta transação. Por favor, tente novamente mais tarde. src/app/components/accelerate-checkout/accelerate-checkout.component.html 11 @@ -424,6 +433,7 @@ Close + Fechar src/app/components/accelerate-checkout/accelerate-checkout.component.html 18 @@ -487,6 +497,7 @@ In-band fees + Taxas dentro da banda src/app/components/accelerate-checkout/accelerate-checkout.component.html 55 @@ -794,6 +805,7 @@ Wait + Espera src/app/components/accelerate-checkout/accelerate-checkout.component.html 285 @@ -824,6 +836,7 @@ For an additional + Por um adicional de src/app/components/accelerate-checkout/accelerate-checkout.component.html 345 @@ -841,6 +854,7 @@ Payment to mempool.space for acceleration of txid .. + Pagamento a mempool.space pela aceleração com id .. src/app/components/accelerate-checkout/accelerate-checkout.component.html 362,363 @@ -853,6 +867,7 @@ Your account will be debited no more than + Sua conta será debitada no máximo src/app/components/accelerate-checkout/accelerate-checkout.component.html 367 @@ -876,13 +891,14 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay Failed to load invoice + Falha ao carregar fatura src/app/components/accelerate-checkout/accelerate-checkout.component.html 381 @@ -986,6 +1002,7 @@ Your transaction is being accelerated! + Sua transação está sendo acelerada! src/app/components/accelerate-checkout/accelerate-checkout.component.html 518 @@ -1031,7 +1048,7 @@ Acelerar src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1049,7 +1066,7 @@ Sua transação será priorizada por até % dos mineradores. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1091,31 +1108,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - acelerados - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Próximo Bloco src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1134,6 +1132,161 @@ 8 + + maximum + máximo + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Vista pela primeira vez + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Acelerada + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Minerado + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1219,9 +1372,18 @@ accelerator.requests + + accelerated + acelerado + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost - Bid Boost total + Total de Bid Boost src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -1232,7 +1394,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1311,7 +1473,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1464,6 +1626,7 @@ Pending + Pendente src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -1517,7 +1680,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1530,12 +1693,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 semana) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1544,16 +1715,24 @@ (1 mês) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Ver mais » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1578,12 +1757,13 @@ Acelerações recentes src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations Accelerator Dashboard + Painel do Acelerador src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 57 @@ -1624,6 +1804,7 @@ not accelerating + sem aceleração src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts 83 @@ -1631,6 +1812,7 @@ pending + pendente src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -1652,6 +1834,7 @@ of block + do bloco src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -2653,6 +2836,7 @@ Age + Idade src/app/components/block-filters/block-filters.component.html 36 @@ -2780,64 +2964,6 @@ shared.transaction - - First seen - Vista pela primeira vez - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Confirmado @@ -3043,27 +3169,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Acelerada - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Recompensas do Bloco @@ -3519,11 +3624,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4078,6 +4183,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4164,43 +4273,6 @@ dashboard.new-transaction-fee - - Mined - Minerado - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -5418,6 +5490,7 @@ usage + uso src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -5442,6 +5515,7 @@ As of block + A partir do bloco src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -6265,7 +6339,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6298,7 +6372,7 @@ Nó de Lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6307,7 +6381,7 @@ Canais Lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6315,7 +6389,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6323,7 +6397,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6332,7 +6406,7 @@ Ir para "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6456,6 +6530,7 @@ Maximum fee rate (sat/vB) + Taxa máxima de tarifa (sat/vB) src/app/components/test-transactions/test-transactions.component.html 9 @@ -6482,7 +6557,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6490,28 +6565,20 @@ Agora mesmo src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago atrás - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6524,22 +6591,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6552,26 +6619,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Em ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6584,22 +6651,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6612,26 +6679,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ dentro de ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6644,22 +6711,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6672,26 +6739,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Depois - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6704,22 +6771,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6732,25 +6799,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6763,22 +6830,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6791,6 +6858,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6854,7 +6937,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6862,7 +6945,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6871,7 +6954,7 @@ Sua transação foi acelerada src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6879,7 +6962,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6887,7 +6970,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6895,7 +6978,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6904,7 +6987,7 @@ Espera-se que sua transação seja confirmada no próximo bloco src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6912,7 +6995,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6920,7 +7003,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6928,7 +7011,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6945,7 +7028,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6960,7 +7043,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7017,24 +7100,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Fluxo @@ -7614,14 +7697,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9832,8 +9907,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.ro.xlf b/frontend/src/locale/messages.ro.xlf index d0e7fd344..09bca8d7d 100644 --- a/frontend/src/locale/messages.ro.xlf +++ b/frontend/src/locale/messages.ro.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -867,7 +875,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1013,7 +1021,7 @@ Accelerează src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1030,7 +1038,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1072,32 +1080,12 @@ sat shared.sat - - maximum - maxim - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - accelerat(e) - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Blocul următor src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1116,6 +1104,161 @@ 8 + + maximum + maxim + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Prima dată văzut + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Accelerat + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Minat + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Comisoane de accelerare @@ -1202,6 +1345,15 @@ accelerator.requests + + accelerated + accelerat(e) + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Total stimul licitație @@ -1215,7 +1367,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1294,7 +1446,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1504,7 +1656,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1517,11 +1669,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1529,16 +1689,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Vezi mai multe » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1563,7 +1731,7 @@ Accelerări recente src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2773,64 +2941,6 @@ shared.transaction - - First seen - Prima dată văzut - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Confirmate @@ -3042,27 +3152,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Accelerat - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Recompense de bloc @@ -3522,11 +3611,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4083,6 +4172,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4169,43 +4262,6 @@ dashboard.new-transaction-fee - - Mined - Minat - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Full RBF @@ -6316,7 +6372,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6351,7 +6407,7 @@ Noduri Lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6360,7 +6416,7 @@ Canale Lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6369,7 +6425,7 @@ Altă adresă de rețea src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6378,7 +6434,7 @@ Activ Liquid src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6387,7 +6443,7 @@ Mergi la "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6540,7 +6596,7 @@ Imediat src/app/components/time/time.component.ts - 106 + 107 @@ -6548,28 +6604,20 @@ Chiar acum src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago Acum - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6582,22 +6630,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6610,26 +6658,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ În ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6642,22 +6690,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6670,25 +6718,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6701,22 +6749,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6729,26 +6777,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After După - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6761,22 +6809,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6789,26 +6837,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before înainte - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6821,22 +6869,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6849,6 +6897,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6911,7 +6975,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6919,7 +6983,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6927,7 +6991,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6935,7 +6999,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6943,7 +7007,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6951,7 +7015,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6959,7 +7023,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6967,7 +7031,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6975,7 +7039,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6983,7 +7047,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7000,7 +7064,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7016,7 +7080,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7072,24 +7136,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flux @@ -7680,14 +7744,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Active Liquid Federation @@ -9923,8 +9979,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index 87eed564a..4f79ac9db 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -869,7 +877,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1015,7 +1023,7 @@ Протолкнуть src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1032,7 +1040,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1074,32 +1082,12 @@ sat shared.sat - - maximum - максимум - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - ускорено - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Следующий блок src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1118,6 +1106,161 @@ 8 + + maximum + максимум + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Впервые замечен + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Ускоренная + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Намайнено + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Комиссия за ускорение @@ -1204,6 +1347,15 @@ accelerator.requests + + accelerated + ускорено + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Общее повышение ставок @@ -1217,7 +1369,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1296,7 +1448,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1507,7 +1659,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1520,11 +1672,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1532,16 +1692,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Подробнее » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1566,7 +1734,7 @@ Недавние ускорения src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2776,64 +2944,6 @@ shared.transaction - - First seen - Впервые замечен - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Подтверждено @@ -3045,27 +3155,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Ускоренная - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Вознаграждения за блок @@ -3525,11 +3614,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4086,6 +4175,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4172,43 +4265,6 @@ dashboard.new-transaction-fee - - Mined - Намайнено - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Полный RBF @@ -6319,7 +6375,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6354,7 +6410,7 @@ Lightning-узлы src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6363,7 +6419,7 @@ Lightning-каналы src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6372,7 +6428,7 @@ Другой адрес сети src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6381,7 +6437,7 @@ Актив Liquid src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6390,7 +6446,7 @@ Перейти к "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6543,7 +6599,7 @@ Немедленно src/app/components/time/time.component.ts - 106 + 107 @@ -6551,28 +6607,20 @@ Только что src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago назад - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6585,22 +6633,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6613,26 +6661,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Через ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6645,22 +6693,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6673,25 +6721,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6704,22 +6752,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6732,26 +6780,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After После - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6764,22 +6812,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6792,26 +6840,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before перед - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6824,22 +6872,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6852,6 +6900,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6914,7 +6978,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6922,7 +6986,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6930,7 +6994,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6938,7 +7002,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6946,7 +7010,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6954,7 +7018,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6962,7 +7026,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6970,7 +7034,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6978,7 +7042,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6986,7 +7050,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7003,7 +7067,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7019,7 +7083,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7075,24 +7139,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Поток @@ -7683,14 +7747,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Активы Liquid Federation @@ -9926,8 +9982,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index c86be4521..4c7c85d1d 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -406,6 +406,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -846,7 +854,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -991,7 +999,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1008,7 +1016,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1050,30 +1058,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Naslednji blok src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1092,6 +1082,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Prejeto + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Narudarjeno + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1173,6 +1316,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1185,7 +1336,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1262,7 +1413,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1462,7 +1613,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1474,11 +1625,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1486,16 +1645,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Prikaži več » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1519,7 +1686,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2699,64 +2866,6 @@ shared.transaction - - First seen - Prejeto - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Potrjeno @@ -2957,26 +3066,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Nagrada na blok @@ -3428,11 +3517,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3976,6 +4065,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4058,43 +4151,6 @@ dashboard.new-transaction-fee - - Mined - Narudarjeno - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6106,7 +6162,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6138,7 +6194,7 @@ Lightning Nodes src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6146,7 +6202,7 @@ Lightning Channels src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6154,7 +6210,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6162,7 +6218,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6170,7 +6226,7 @@ Go to "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6318,7 +6374,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6326,28 +6382,20 @@ Pravkar src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago nazaj - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6360,22 +6408,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6388,25 +6436,25 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6419,22 +6467,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6447,25 +6495,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6478,22 +6526,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6506,26 +6554,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Po - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6538,22 +6586,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6566,25 +6614,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6597,22 +6645,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6625,6 +6673,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6687,7 +6751,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6695,7 +6759,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6703,7 +6767,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6711,7 +6775,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6719,7 +6783,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6727,7 +6791,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6735,7 +6799,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6743,7 +6807,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6751,7 +6815,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6759,7 +6823,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6776,7 +6840,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6791,7 +6855,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6847,24 +6911,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow @@ -7421,14 +7485,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9493,8 +9549,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index d1f9a0ba1..9c283c953 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -415,6 +415,15 @@ 50 + + Sorry, something went wrong! + Ursäkta, något gick fel! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. Vi kunde inte accelerera denna transaktion. Vänligen försök igen senare. @@ -887,7 +896,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1050,7 +1059,7 @@ Accelerera src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1068,7 +1077,7 @@ Din transaktion kommer att prioriteras av upp till % av miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1110,32 +1119,12 @@ sat shared.sat - - maximum - maximal - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - accelererad - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Nästa block src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1154,6 +1143,162 @@ 8 + + maximum + maximal + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + accelererad + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Först sedd + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Accelererad + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Minead + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Accelerationsavgifter @@ -1240,6 +1385,15 @@ accelerator.requests + + accelerated + accelererad + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Total budökning @@ -1253,7 +1407,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1334,7 +1488,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1545,7 +1699,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1558,12 +1712,21 @@ accelerator.acceleration-stats + + (1 day) + (1 dag) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1 vecka) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1572,16 +1735,25 @@ (1 månad) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + (all tid) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Visa mer » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1606,7 +1778,7 @@ Senaste accelerationer src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2835,64 +3007,6 @@ shared.transaction - - First seen - Först sedd - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Bekräftad @@ -3104,27 +3218,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Accelererad - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Blockbelöningar @@ -3586,11 +3679,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4148,6 +4241,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4234,43 +4331,6 @@ dashboard.new-transaction-fee - - Mined - Minead - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Full RBF @@ -6390,7 +6450,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6426,7 +6486,7 @@ Lightingnoder src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6435,7 +6495,7 @@ Lightningkanaler src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6444,7 +6504,7 @@ Annan nätverksadress src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6453,7 +6513,7 @@ Liquidasset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6462,7 +6522,7 @@ Gå till "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6621,7 +6681,7 @@ Omedelbart src/app/components/time/time.component.ts - 106 + 107 @@ -6629,28 +6689,20 @@ Just nu src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago sedan - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6663,22 +6715,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6691,26 +6743,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Om ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6723,22 +6775,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6751,26 +6803,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ inom ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6783,22 +6835,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6811,26 +6863,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Efter - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6843,22 +6895,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6871,26 +6923,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before innan - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6903,22 +6955,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6931,6 +6983,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6997,7 +7065,7 @@ Bekräftat vid src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -7006,7 +7074,7 @@ Blockhöjd src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -7015,7 +7083,7 @@ Din transaktion har blivit accelererad src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -7024,7 +7092,7 @@ Väntar på att din transaktion ska dyka upp i mempoolen src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -7033,7 +7101,7 @@ Din transaktion finns i mempoolen, men den kommer inte att bekräftas på ett tag. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -7042,7 +7110,7 @@ Din transaktion är nära toppen av mempoolen och förväntas bekräftas snart. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -7051,7 +7119,7 @@ Din transaktion förväntas bekräftas i nästa block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -7060,7 +7128,7 @@ Din transaktion är bekräftad! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -7069,7 +7137,7 @@ Din transaktion har ersatts av en nyare version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7078,7 +7146,7 @@ Se mer information src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7095,7 +7163,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7111,7 +7179,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7168,26 +7236,26 @@ accelerator.hide - - Acceleration Timeline - Tidslinje för acceleration - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline RBF tidslinje src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + Tidslinje för acceleration + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flöde @@ -7778,15 +7846,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - Fel: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Liquidfederationsinnehav @@ -10030,9 +10089,9 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. - Ditt saldo är för lågt. Vänligen fyll på ditt konto. + + Your balance is too low.Please top up your account. + Ditt saldo är för lågt.Vänligen fyll på ditt konto . src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf index 40c06b098..b1531a3fe 100644 --- a/frontend/src/locale/messages.th.xlf +++ b/frontend/src/locale/messages.th.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -865,7 +873,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1011,7 +1019,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1028,7 +1036,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1070,32 +1078,12 @@ sat shared.sat - - maximum - มากสุด - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - ถูกเร่ง - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block บล็อกถัดไป src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1114,6 +1102,161 @@ 8 + + maximum + มากสุด + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + พบเห็นครั้งแรก + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + ถูกเร่ง + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + ถูกขุดเมื่อ + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees ค่าธรรมเนียม acceleration @@ -1199,6 +1342,15 @@ accelerator.requests + + accelerated + ถูกเร่ง + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1211,7 +1363,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1289,7 +1441,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1494,7 +1646,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1507,11 +1659,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1519,16 +1679,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » เรียกดูเพิ่มเติม » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1552,7 +1720,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2749,64 +2917,6 @@ shared.transaction - - First seen - พบเห็นครั้งแรก - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed ได้รับการยืนยัน @@ -3014,27 +3124,6 @@ Conflict tx-features.tag.conflict - - Accelerated - ถูกเร่ง - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards ค่าตอบแทนของบล็อก @@ -3489,11 +3578,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4047,6 +4136,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4130,43 +4223,6 @@ dashboard.new-transaction-fee - - Mined - ถูกขุดเมื่อ - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF RBF แบบเต็ม @@ -6249,7 +6305,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6284,7 +6340,7 @@ โหนด lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6293,7 +6349,7 @@ แชนแนล lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6301,7 +6357,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6309,7 +6365,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6318,7 +6374,7 @@ ไปยัง "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6467,7 +6523,7 @@ ในทันที src/app/components/time/time.component.ts - 106 + 107 @@ -6475,28 +6531,20 @@ ตอนนี้ src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago ที่ผ่านมา - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6509,22 +6557,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6537,26 +6585,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ ใน ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6569,22 +6617,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6597,25 +6645,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6628,22 +6676,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6656,26 +6704,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After หลังจาก - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6688,22 +6736,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6716,26 +6764,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before ก่อน - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6748,22 +6796,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6776,6 +6824,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6838,7 +6902,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6846,7 +6910,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6854,7 +6918,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6862,7 +6926,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6870,7 +6934,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6878,7 +6942,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6886,7 +6950,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6894,7 +6958,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6902,7 +6966,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6910,7 +6974,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6927,7 +6991,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6942,7 +7006,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6998,24 +7062,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Flow @@ -7591,14 +7655,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9802,8 +9858,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 16daf2739..bfd095f52 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -414,6 +414,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -863,7 +871,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1009,7 +1017,7 @@ Hızlandır src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1026,7 +1034,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1068,32 +1076,12 @@ sat shared.sat - - maximum - maksimum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - hızlandırıldı - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Sonraki Blok src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1112,6 +1100,161 @@ 8 + + maximum + maksimum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + İlk görüldüğü an + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Hızlandırıldı + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Çıkarıldı + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Hızlandırma ücretleri @@ -1198,6 +1341,15 @@ accelerator.requests + + accelerated + hızlandırıldı + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Toplam Yüksetilen Teklif Miktarı @@ -1211,7 +1363,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1290,7 +1442,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1501,7 +1653,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1514,11 +1666,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1526,16 +1686,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Daha fazlasını gör » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1560,7 +1728,7 @@ Yakın zamanlı hızlandırmalar src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2761,64 +2929,6 @@ shared.transaction - - First seen - İlk görüldüğü an - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Onaylı @@ -3030,27 +3140,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Hızlandırıldı - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Blok Ödülleri @@ -3505,11 +3594,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4063,6 +4152,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4149,43 +4242,6 @@ dashboard.new-transaction-fee - - Mined - Çıkarıldı - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Tam RBF @@ -6275,7 +6331,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6310,7 +6366,7 @@ Lightning düğümleri src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6319,7 +6375,7 @@ Lightning kanalları src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6328,7 +6384,7 @@ Diğer Ağ Adresleri src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6337,7 +6393,7 @@ Liquid Varlıklar src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6346,7 +6402,7 @@ "" 'e git src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6496,7 +6552,7 @@ Hemen src/app/components/time/time.component.ts - 106 + 107 @@ -6504,28 +6560,20 @@ Az önce src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago önce - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6538,22 +6586,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6566,26 +6614,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Yaklaşık - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6598,22 +6646,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6626,25 +6674,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6657,22 +6705,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6685,26 +6733,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After sonrası - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6717,22 +6765,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6745,26 +6793,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before önce - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6777,22 +6825,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6805,6 +6853,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6867,7 +6931,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6875,7 +6939,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6883,7 +6947,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6891,7 +6955,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6899,7 +6963,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6907,7 +6971,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6915,7 +6979,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6923,7 +6987,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6931,7 +6995,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6939,7 +7003,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6956,7 +7020,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6971,7 +7035,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7027,24 +7091,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Akış @@ -7632,14 +7696,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Liquid Federasyon Varlıkları @@ -9852,8 +9908,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 087b1ce07..7fe480272 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -867,7 +875,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1013,7 +1021,7 @@ Пришвидшити src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1030,7 +1038,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1072,32 +1080,12 @@ sat shared.sat - - maximum - максимум - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - пришвидшено - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Наступний блок src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1116,6 +1104,161 @@ 8 + + maximum + максимум + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Вперше помічена + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + Пришвидшено + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + Добутий + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees Комісії за пришвидшення @@ -1202,6 +1345,15 @@ accelerator.requests + + accelerated + пришвидшено + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost Загальне підвищення ставки @@ -1215,7 +1367,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1294,7 +1446,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1504,7 +1656,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1517,11 +1669,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1529,16 +1689,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Дивитись більше » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1563,7 +1731,7 @@ Останні пришвидшення src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2771,64 +2939,6 @@ shared.transaction - - First seen - Вперше помічена - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Підтверджена @@ -3040,27 +3150,6 @@ Conflict tx-features.tag.conflict - - Accelerated - Пришвидшено - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Нагороди блоку @@ -3520,11 +3609,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4081,6 +4170,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4167,43 +4260,6 @@ dashboard.new-transaction-fee - - Mined - Добутий - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF Повний RBF @@ -6314,7 +6370,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6349,7 +6405,7 @@ Lightning вузли src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6358,7 +6414,7 @@ Lightning канали src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6367,7 +6423,7 @@ Адреса з іншої мережі src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6376,7 +6432,7 @@ Актив Liquid src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6385,7 +6441,7 @@ Перейти до "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6538,7 +6594,7 @@ Негайно src/app/components/time/time.component.ts - 106 + 107 @@ -6546,28 +6602,20 @@ Щойно src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago тому - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6580,22 +6628,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6608,26 +6656,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Через ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6640,22 +6688,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6668,25 +6716,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6699,22 +6747,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6727,26 +6775,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Після - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6759,22 +6807,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6787,26 +6835,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before до - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6819,22 +6867,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6847,6 +6895,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6909,7 +6973,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6917,7 +6981,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6925,7 +6989,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6933,7 +6997,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6941,7 +7005,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6949,7 +7013,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6957,7 +7021,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6965,7 +7029,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6973,7 +7037,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6981,7 +7045,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6998,7 +7062,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7014,7 +7078,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7070,24 +7134,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow Потік @@ -7678,14 +7742,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings На утриманні у федерації Liquid @@ -9921,8 +9977,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 5ee70658f..738ecdcc5 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -407,6 +407,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -848,7 +856,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -993,7 +1001,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1010,7 +1018,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1052,30 +1060,12 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block Khối tiếp theo src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1094,6 +1084,159 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + Lần đầu thấy + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + đã đào + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1175,6 +1318,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1187,7 +1338,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1264,7 +1415,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1465,7 +1616,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1477,11 +1628,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1489,16 +1648,24 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » Xem thêm » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1522,7 +1689,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2707,64 +2874,6 @@ shared.transaction - - First seen - Lần đầu thấy - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed Đã xác nhận @@ -2968,26 +3077,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards Phần thưởng khối @@ -3441,11 +3530,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3997,6 +4086,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4079,43 +4172,6 @@ dashboard.new-transaction-fee - - Mined - đã đào - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -6146,7 +6202,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6179,7 +6235,7 @@ Nút Lightning src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6188,7 +6244,7 @@ Kênh Lightning src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6196,7 +6252,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6204,7 +6260,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6213,7 +6269,7 @@ Tới "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6361,7 +6417,7 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 @@ -6369,28 +6425,20 @@ Vừa mới đây src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago trước - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6403,22 +6451,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6431,26 +6479,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ Trong ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6463,22 +6511,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6491,25 +6539,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6522,22 +6570,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6550,26 +6598,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After Sau - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6582,22 +6630,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6610,25 +6658,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6641,22 +6689,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6669,6 +6717,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6731,7 +6795,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6739,7 +6803,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6747,7 +6811,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6755,7 +6819,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6763,7 +6827,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6771,7 +6835,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6779,7 +6843,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6787,7 +6851,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6795,7 +6859,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6803,7 +6867,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6820,7 +6884,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6835,7 +6899,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6891,24 +6955,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow lưu lượng @@ -7481,14 +7545,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings @@ -9668,8 +9724,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index d1b5bd537..60113a7ed 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -369,6 +369,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. @@ -808,7 +816,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -953,7 +961,7 @@ Accelerate src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -970,7 +978,7 @@ Your transaction will be prioritized by up to % of miners. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1011,29 +1019,11 @@ sat shared.sat - - maximum - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1052,6 +1042,157 @@ 8 + + maximum + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees @@ -1133,6 +1274,14 @@ accelerator.requests + + accelerated + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost @@ -1145,7 +1294,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1222,7 +1371,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1420,7 +1569,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1432,11 +1581,19 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1444,15 +1601,23 @@ (1 month) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1476,7 +1641,7 @@ Recent Accelerations src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2615,63 +2780,6 @@ shared.transaction - - First seen - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed @@ -2869,26 +2977,6 @@ Conflict tx-features.tag.conflict - - Accelerated - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards @@ -3330,11 +3418,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -3942,42 +4030,6 @@ dashboard.new-transaction-fee - - Mined - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF @@ -5925,7 +5977,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -5957,7 +6009,7 @@ Lightning Nodes src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -5965,7 +6017,7 @@ Lightning Channels src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -5973,7 +6025,7 @@ Other Network Address src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -5981,7 +6033,7 @@ Liquid Asset src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -5989,7 +6041,7 @@ Go to "" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6132,34 +6184,26 @@ Immediately src/app/components/time/time.component.ts - 106 + 107 Just now src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6172,22 +6216,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6200,25 +6244,25 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6231,22 +6275,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6259,25 +6303,25 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6290,22 +6334,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6318,25 +6362,25 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6349,22 +6393,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6377,25 +6421,25 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6408,22 +6452,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6436,6 +6480,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6496,7 +6556,7 @@ Confirmed at src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6504,7 +6564,7 @@ Block height src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6512,7 +6572,7 @@ Your transaction has been accelerated src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6520,7 +6580,7 @@ Waiting for your transaction to appear in the mempool src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -6528,7 +6588,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -6536,7 +6596,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -6544,7 +6604,7 @@ Your transaction is expected to confirm in the next block src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -6552,7 +6612,7 @@ Your transaction is confirmed! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -6560,7 +6620,7 @@ Your transaction has been replaced by a newer version! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -6568,7 +6628,7 @@ See more details src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -6584,7 +6644,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -6599,7 +6659,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -6652,24 +6712,24 @@ accelerator.hide - - Acceleration Timeline - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow @@ -9256,7 +9316,7 @@ shared.trademark-policy - Your balance is too low.Please top up your account. + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 210180f32..026f7afae 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -415,6 +415,14 @@ 50 + + Sorry, something went wrong! + + src/app/components/accelerate-checkout/accelerate-checkout.component.html + 5 + + accelerator.sorry-error-title + We were not able to accelerate this transaction. Please try again later. 我们无法加速此交易。请稍后重试。 @@ -887,7 +895,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 577 + 570 Pay button label transaction.pay @@ -1050,7 +1058,7 @@ 加速 src/app/components/accelerate-checkout/accelerate-checkout.component.html - 564 + 558 src/app/components/transaction/transaction.component.html @@ -1068,7 +1076,7 @@ 您的交易将获得最多%名矿工的优先处理。 src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 580 accelerator.hashrate-percentage-description @@ -1110,32 +1118,12 @@ sat shared.sat - - maximum - 最大限度 - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - - accelerated - 已加速 - - src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 56 - - - src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html - 7 - - Next Block 下一个区块 src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 67 + 81 src/app/components/block/block.component.html @@ -1154,6 +1142,161 @@ 8 + + maximum + 最大限度 + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + accelerated + + src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts + 91 + + + + First seen + 初次发现时间 + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 26 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 120 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 20 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 24 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 28 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 17 + + + src/app/components/tracker/tracker.component.html + 59 + + + src/app/components/transaction/transaction.component.html + 481 + + + src/app/components/transaction/transaction.component.html + 486 + + + src/app/lightning/node/node.component.html + 74 + + + src/app/lightning/nodes-per-country/nodes-per-country.component.html + 61 + + + src/app/lightning/nodes-per-isp/nodes-per-isp.component.html + 58 + + + src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html + 11 + + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 15 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 15 + + Transaction first seen + transaction.first-seen + + + Accelerated + 已加速 + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 40 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 136 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 80 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 88 + + + src/app/components/transaction/transaction.component.html + 592 + + + src/app/shared/filters.utils.ts + 99 + + transaction.audit.accelerated + + + Mined + 已出块 + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 53 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 93 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 121 + + + src/app/components/custom-dashboard/custom-dashboard.component.html + 154 + + + src/app/components/pool/pool.component.html + 183 + + + src/app/components/pool/pool.component.html + 245 + + + src/app/components/rbf-list/rbf-list.component.html + 23 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 38 + + + src/app/dashboard/dashboard.component.html + 86 + + + src/app/dashboard/dashboard.component.html + 106 + + transaction.rbf.mined + Acceleration Fees 加速费 @@ -1240,6 +1383,15 @@ accelerator.requests + + accelerated + 已加速 + + src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html + 7 + + accelerator.total-accelerated-plural + Total Bid Boost 总竞价提升 @@ -1253,7 +1405,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 70 + 82 accelerator.total-boost @@ -1334,7 +1486,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 55 + 67 src/app/components/graphs/graphs.component.html @@ -1545,7 +1697,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 89 + 101 accelerator.pending-accelerations @@ -1558,12 +1710,20 @@ accelerator.acceleration-stats + + (1 day) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 27 + + mining.1-day + (1 week) (1周) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 27 + 30 mining.1-week @@ -1572,16 +1732,24 @@ (1个月) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 + 33 mining.1-month + + (all time) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 36 + + mining.all-time + View more » 更多 » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 79 + 91 src/app/components/mining-dashboard/mining-dashboard.component.html @@ -1606,7 +1774,7 @@ 最近的加速交易 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 113 dashboard.recent-accelerations @@ -2826,64 +2994,6 @@ shared.transaction - - First seen - 初次发现时间 - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 20 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 24 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 28 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 17 - - - src/app/components/tracker/tracker.component.html - 59 - - - src/app/components/transaction/transaction.component.html - 481 - - - src/app/components/transaction/transaction.component.html - 486 - - - src/app/lightning/node/node.component.html - 74 - - - src/app/lightning/nodes-per-country/nodes-per-country.component.html - 61 - - - src/app/lightning/nodes-per-isp/nodes-per-isp.component.html - 58 - - - src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html - 11 - - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15 - - Transaction first seen - transaction.first-seen - Confirmed 已确认 @@ -3095,27 +3205,6 @@ Conflict tx-features.tag.conflict - - Accelerated - 已加速 - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 80 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 88 - - - src/app/components/transaction/transaction.component.html - 592 - - - src/app/shared/filters.utils.ts - 99 - - transaction.audit.accelerated - Block Rewards 区块奖励 @@ -3576,11 +3665,11 @@ src/app/services/api.service.ts - 259 + 261 src/app/services/api.service.ts - 272 + 274 unknown @@ -4138,6 +4227,10 @@ src/app/components/custom-dashboard/custom-dashboard.component.html 8 + + src/app/dashboard/dashboard.component.html + 6 + fees-box.transaction-fees @@ -4224,43 +4317,6 @@ dashboard.new-transaction-fee - - Mined - 已出块 - - src/app/components/custom-dashboard/custom-dashboard.component.html - 121 - - - src/app/components/custom-dashboard/custom-dashboard.component.html - 154 - - - src/app/components/pool/pool.component.html - 183 - - - src/app/components/pool/pool.component.html - 245 - - - src/app/components/rbf-list/rbf-list.component.html - 23 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 38 - - - src/app/dashboard/dashboard.component.html - 86 - - - src/app/dashboard/dashboard.component.html - 106 - - transaction.rbf.mined - Full RBF 完整RBF @@ -6361,7 +6417,7 @@ src/app/components/search-form/search-results/search-results.component.html - 79 + 80 search.bitcoin-address @@ -6397,7 +6453,7 @@ 闪电网络节点 src/app/components/search-form/search-results/search-results.component.html - 55 + 56 search.lightning-nodes @@ -6406,7 +6462,7 @@ 闪电网络通道 src/app/components/search-form/search-results/search-results.component.html - 63 + 64 search.lightning-channels @@ -6415,7 +6471,7 @@ 其他网络地址 src/app/components/search-form/search-results/search-results.component.html - 71 + 72 search.other-networks @@ -6424,7 +6480,7 @@ Liquid 资产 src/app/components/search-form/search-results/search-results.component.html - 85 + 86 search.liquid-asset @@ -6433,7 +6489,7 @@ 打开"" src/app/components/search-form/search-results/search-results.component.html - 92 + 93 search.go-to @@ -6593,7 +6649,7 @@ src/app/components/time/time.component.ts - 106 + 107 @@ -6601,28 +6657,20 @@ 现在 src/app/components/time/time.component.ts - 109 + 111 + + + src/app/components/time/time.component.ts + 111 + + + src/app/components/time/time.component.ts + 113 ago 之前 - - src/app/components/time/time.component.ts - 161 - - - src/app/components/time/time.component.ts - 162 - - - src/app/components/time/time.component.ts - 163 - - - src/app/components/time/time.component.ts - 164 - src/app/components/time/time.component.ts 165 @@ -6635,22 +6683,22 @@ src/app/components/time/time.component.ts 167 + + src/app/components/time/time.component.ts + 168 + + + src/app/components/time/time.component.ts + 169 + + + src/app/components/time/time.component.ts + 170 + src/app/components/time/time.component.ts 171 - - src/app/components/time/time.component.ts - 172 - - - src/app/components/time/time.component.ts - 173 - - - src/app/components/time/time.component.ts - 174 - src/app/components/time/time.component.ts 175 @@ -6663,26 +6711,26 @@ src/app/components/time/time.component.ts 177 + + src/app/components/time/time.component.ts + 178 + + + src/app/components/time/time.component.ts + 179 + + + src/app/components/time/time.component.ts + 180 + + + src/app/components/time/time.component.ts + 181 + In ~ 之内 - - src/app/components/time/time.component.ts - 184 - - - src/app/components/time/time.component.ts - 185 - - - src/app/components/time/time.component.ts - 186 - - - src/app/components/time/time.component.ts - 187 - src/app/components/time/time.component.ts 188 @@ -6695,22 +6743,22 @@ src/app/components/time/time.component.ts 190 + + src/app/components/time/time.component.ts + 191 + + + src/app/components/time/time.component.ts + 192 + + + src/app/components/time/time.component.ts + 193 + src/app/components/time/time.component.ts 194 - - src/app/components/time/time.component.ts - 195 - - - src/app/components/time/time.component.ts - 196 - - - src/app/components/time/time.component.ts - 197 - src/app/components/time/time.component.ts 198 @@ -6723,26 +6771,26 @@ src/app/components/time/time.component.ts 200 + + src/app/components/time/time.component.ts + 201 + + + src/app/components/time/time.component.ts + 202 + + + src/app/components/time/time.component.ts + 203 + + + src/app/components/time/time.component.ts + 204 + within ~ 在~ - - src/app/components/time/time.component.ts - 207 - - - src/app/components/time/time.component.ts - 208 - - - src/app/components/time/time.component.ts - 209 - - - src/app/components/time/time.component.ts - 210 - src/app/components/time/time.component.ts 211 @@ -6755,22 +6803,22 @@ src/app/components/time/time.component.ts 213 + + src/app/components/time/time.component.ts + 214 + + + src/app/components/time/time.component.ts + 215 + + + src/app/components/time/time.component.ts + 216 + src/app/components/time/time.component.ts 217 - - src/app/components/time/time.component.ts - 218 - - - src/app/components/time/time.component.ts - 219 - - - src/app/components/time/time.component.ts - 220 - src/app/components/time/time.component.ts 221 @@ -6783,26 +6831,26 @@ src/app/components/time/time.component.ts 223 + + src/app/components/time/time.component.ts + 224 + + + src/app/components/time/time.component.ts + 225 + + + src/app/components/time/time.component.ts + 226 + + + src/app/components/time/time.component.ts + 227 + After 之后 - - src/app/components/time/time.component.ts - 230 - - - src/app/components/time/time.component.ts - 231 - - - src/app/components/time/time.component.ts - 232 - - - src/app/components/time/time.component.ts - 233 - src/app/components/time/time.component.ts 234 @@ -6815,22 +6863,22 @@ src/app/components/time/time.component.ts 236 + + src/app/components/time/time.component.ts + 237 + + + src/app/components/time/time.component.ts + 238 + + + src/app/components/time/time.component.ts + 239 + src/app/components/time/time.component.ts 240 - - src/app/components/time/time.component.ts - 241 - - - src/app/components/time/time.component.ts - 242 - - - src/app/components/time/time.component.ts - 243 - src/app/components/time/time.component.ts 244 @@ -6843,26 +6891,26 @@ src/app/components/time/time.component.ts 246 + + src/app/components/time/time.component.ts + 247 + + + src/app/components/time/time.component.ts + 248 + + + src/app/components/time/time.component.ts + 249 + + + src/app/components/time/time.component.ts + 250 + before 之前 - - src/app/components/time/time.component.ts - 253 - - - src/app/components/time/time.component.ts - 254 - - - src/app/components/time/time.component.ts - 255 - - - src/app/components/time/time.component.ts - 256 - src/app/components/time/time.component.ts 257 @@ -6875,22 +6923,22 @@ src/app/components/time/time.component.ts 259 + + src/app/components/time/time.component.ts + 260 + + + src/app/components/time/time.component.ts + 261 + + + src/app/components/time/time.component.ts + 262 + src/app/components/time/time.component.ts 263 - - src/app/components/time/time.component.ts - 264 - - - src/app/components/time/time.component.ts - 265 - - - src/app/components/time/time.component.ts - 266 - src/app/components/time/time.component.ts 267 @@ -6903,6 +6951,22 @@ src/app/components/time/time.component.ts 269 + + src/app/components/time/time.component.ts + 270 + + + src/app/components/time/time.component.ts + 271 + + + src/app/components/time/time.component.ts + 272 + + + src/app/components/time/time.component.ts + 273 + Sent @@ -6969,7 +7033,7 @@ 确认于 src/app/components/tracker/tracker.component.html - 90 + 87 transaction.confirmed-at @@ -6978,7 +7042,7 @@ 区块高度 src/app/components/tracker/tracker.component.html - 99 + 96 transaction.block-height @@ -6987,7 +7051,7 @@ 您的交易已加速 src/app/components/tracker/tracker.component.html - 144 + 141 tracker.explain.accelerated @@ -6996,7 +7060,7 @@ 等待你的交易出现在内存池中 src/app/components/tracker/tracker.component.html - 151 + 148 tracker.explain.waiting @@ -7005,7 +7069,7 @@ 您的交易已在内存池中,但一段时间内还无法确认。 src/app/components/tracker/tracker.component.html - 157 + 154 tracker.explain.pending @@ -7014,7 +7078,7 @@ 您的交易已接近内存池顶部,预计很快就会确认。 src/app/components/tracker/tracker.component.html - 163 + 160 tracker.explain.soon @@ -7023,7 +7087,7 @@ 您的交易预计将在下一个区块中确认 src/app/components/tracker/tracker.component.html - 169 + 166 tracker.explain.next-block @@ -7032,7 +7096,7 @@ 您的交易已确认! src/app/components/tracker/tracker.component.html - 175 + 172 tracker.explain.confirmed @@ -7041,7 +7105,7 @@ 您的交易已被新版本取代! src/app/components/tracker/tracker.component.html - 181 + 178 tracker.explain.replaced @@ -7050,7 +7114,7 @@ 查看更多详细信息 src/app/components/tracker/tracker.component.html - 189 + 186 accelerator.show-more-details @@ -7067,7 +7131,7 @@ src/app/components/transaction/transaction.component.ts - 473 + 497 @@ -7083,7 +7147,7 @@ src/app/components/transaction/transaction.component.ts - 477 + 501 @@ -7140,26 +7204,26 @@ accelerator.hide - - Acceleration Timeline - 加速时间线 - - src/app/components/transaction/transaction.component.html - 158 - - Acceleration Timeline - transaction.acceleration-timeline - RBF Timeline RBF时间线 src/app/components/transaction/transaction.component.html - 167 + 158 RBF Timeline transaction.rbf-history + + Acceleration Timeline + 加速时间线 + + src/app/components/transaction/transaction.component.html + 167 + + Acceleration Timeline + transaction.acceleration-timeline + Flow 流向 @@ -7750,14 +7814,6 @@ TX Fee Rating is Warning tx-fee-rating.overpaid.warning - - Error: - - src/app/dashboard/dashboard.component.html - 6,7 - - fees-box.transaction-fees - Liquid Federation Holdings Liquid 联邦控股 @@ -10000,9 +10056,8 @@ Third-party Licenses shared.trademark-policy - - Your balance is too low. Please top up your account. - 您的余额太少。请请为您的账户充值 + + Your balance is too low.Please top up your account. src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/production/README.md b/production/README.md index 8e325bb1b..3f1b24d22 100644 --- a/production/README.md +++ b/production/README.md @@ -8,7 +8,7 @@ You can also have the mempool.space team run a highly-performant and highly-avai ### Server Hardware -Mempool v2 is powered by [blockstream/electrs](https://github.com/Blockstream/electrs), which is a beast. +Mempool v3 is powered by [mempool/electrs](https://github.com/mempool/electrs), which is a beast. I recommend a beefy server: diff --git a/unfurler/src/index.ts b/unfurler/src/index.ts index 947ec7a8d..755232b50 100644 --- a/unfurler/src/index.ts +++ b/unfurler/src/index.ts @@ -47,9 +47,6 @@ class Server { case "liquid": canonical = "https://liquid.network" break; - case "bisq": - canonical = "https://bisq.markets" - break; case "onbtc": canonical = "https://bitcoin.gob.sv" break;