We use basic webserver logging (nginx) for sysadmin purposes, which collects your IP address along with the requests you make. These logs are deleted after 10 days, and we do not share this data with any third-party. To conceal your IP address from our webserver logs, we recommend that you use Tor Browser with our Tor v3 hidden service onion hostname.
+
We use basic webserver logging (nginx) for sysadmin purposes, which collects your IP address along with the requests you make. These logs are deleted after 10 days, and we do not share this data with any third-party.
diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts
index cbd6dd352..924addaa0 100644
--- a/frontend/src/app/components/transaction/transaction.component.ts
+++ b/frontend/src/app/components/transaction/transaction.component.ts
@@ -11,7 +11,9 @@ import {
tap,
map,
retry,
- startWith
+ startWith,
+ repeat,
+ take
} from 'rxjs/operators';
import { Transaction } from '../../interfaces/electrs.interface';
import { of, merge, Subscription, Observable, Subject, from, throwError, combineLatest, BehaviorSubject } from 'rxjs';
@@ -76,6 +78,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
transactionTime = -1;
subscription: Subscription;
fetchCpfpSubscription: Subscription;
+ transactionTimesSubscription: Subscription;
fetchRbfSubscription: Subscription;
fetchCachedTxSubscription: Subscription;
fetchAccelerationSubscription: Subscription;
@@ -107,6 +110,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
showCpfpDetails = false;
miningStats: MiningStats;
fetchCpfp$ = new Subject();
+ transactionTimes$ = new Subject();
fetchRbfHistory$ = new Subject();
fetchCachedTx$ = new Subject();
fetchAcceleration$ = new Subject();
@@ -226,6 +230,25 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
this.latestBlock = blocks[0];
});
+ this.transactionTimesSubscription = this.transactionTimes$.pipe(
+ tap(() => {
+ this.isLoadingFirstSeen = true;
+ }),
+ switchMap((txid) => this.apiService.getTransactionTimes$([txid]).pipe(
+ retry({ count: 2, delay: 2000 }),
+ // Try again until we either get a valid response, or the transaction is confirmed
+ repeat({ delay: 2000 }),
+ filter((transactionTimes) => transactionTimes?.length && transactionTimes[0] > 0 && !this.tx.status?.confirmed),
+ take(1),
+ )),
+ )
+ .subscribe((transactionTimes) => {
+ this.isLoadingFirstSeen = false;
+ if (transactionTimes?.length && transactionTimes[0]) {
+ this.transactionTime = transactionTimes[0];
+ }
+ });
+
this.fetchCpfpSubscription = this.fetchCpfp$
.pipe(
switchMap((txId) =>
@@ -573,7 +596,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
if (tx.firstSeen) {
this.transactionTime = tx.firstSeen;
} else {
- this.getTransactionTime();
+ this.transactionTimes$.next(tx.txid);
}
} else {
this.fetchAcceleration$.next(tx.status.block_height);
@@ -730,7 +753,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
this.accelerationPositions,
);
})
- )
+ );
}
ngAfterViewInit(): void {
@@ -764,28 +787,6 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
return of(false);
}
- getTransactionTime() {
- this.isLoadingFirstSeen = true;
- this.apiService
- .getTransactionTimes$([this.tx.txid])
- .pipe(
- retry({ count: 2, delay: 2000 }),
- catchError(() => {
- this.isLoadingFirstSeen = false;
- return throwError(() => new Error(''));
- })
- )
- .subscribe((transactionTimes) => {
- if (transactionTimes?.length && transactionTimes[0]) {
- this.transactionTime = transactionTimes[0];
- } else {
- setTimeout(() => {
- this.getTransactionTime();
- }, 2000);
- }
- });
- }
-
setCpfpInfo(cpfpInfo: CpfpInfo): void {
if (!cpfpInfo || !this.tx) {
this.cpfpInfo = null;
@@ -1058,6 +1059,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
ngOnDestroy() {
this.subscription.unsubscribe();
this.fetchCpfpSubscription.unsubscribe();
+ this.transactionTimesSubscription.unsubscribe();
this.fetchRbfSubscription.unsubscribe();
this.fetchCachedTxSubscription.unsubscribe();
this.fetchAccelerationSubscription.unsubscribe();
diff --git a/frontend/src/app/services/mining.service.ts b/frontend/src/app/services/mining.service.ts
index 7bbf6b759..64748e547 100644
--- a/frontend/src/app/services/mining.service.ts
+++ b/frontend/src/app/services/mining.service.ts
@@ -31,6 +31,7 @@ export class MiningService {
data: MiningStats;
}
} = {};
+ poolsData: SinglePoolStats[] = [];
constructor(
private stateService: StateService,
@@ -57,7 +58,19 @@ export class MiningService {
);
}
}
-
+
+ /**
+ * Get names and slugs of all pools
+ */
+ public getPools(): Observable {
+ return this.poolsData.length ? of(this.poolsData) : this.apiService.listPools$(undefined).pipe(
+ map(response => {
+ this.poolsData = response.body;
+ return this.poolsData;
+ })
+ );
+
+ }
/**
* Set the hashrate power of ten we want to display
*/
diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf
index f4b3dbc7b..a7aec72a3 100644
--- a/frontend/src/locale/messages.ar.xlf
+++ b/frontend/src/locale/messages.ar.xlf
@@ -1101,16 +1101,57 @@
91
+
+ Mined
+ تم تعدينه
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenاول رؤيةsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1171,11 +1212,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1195,51 +1236,6 @@
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
@@ -1248,7 +1244,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1260,14 +1256,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1286,7 +1282,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1574,6 +1570,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1720,7 +1720,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1729,7 +1729,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1737,7 +1737,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2093,8 +2093,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2109,14 +2109,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2125,13 +2117,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6824,7 +6816,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6832,7 +6824,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6840,7 +6832,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6848,7 +6840,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6856,7 +6848,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6864,7 +6856,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6872,7 +6864,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6880,7 +6872,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6897,7 +6889,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6912,7 +6904,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.ca.xlf b/frontend/src/locale/messages.ca.xlf
index 217ba8e31..c54f89092 100644
--- a/frontend/src/locale/messages.ca.xlf
+++ b/frontend/src/locale/messages.ca.xlf
@@ -1089,16 +1089,57 @@
91
+
+ Mined
+ Minat
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenVist per primera vegadasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1159,11 +1200,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1183,51 +1224,6 @@
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
@@ -1236,7 +1232,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1248,14 +1244,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1274,7 +1270,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1561,6 +1557,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1706,7 +1706,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1715,7 +1715,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1723,7 +1723,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2077,8 +2077,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2093,14 +2093,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2109,13 +2101,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6665,7 +6657,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6673,7 +6665,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6681,7 +6673,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6689,7 +6681,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6697,7 +6689,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6705,7 +6697,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6713,7 +6705,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6721,7 +6713,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6737,7 +6729,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6752,7 +6744,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf
index 1729c4fe4..075ed6d7f 100644
--- a/frontend/src/locale/messages.cs.xlf
+++ b/frontend/src/locale/messages.cs.xlf
@@ -1121,16 +1121,57 @@
91
+
+ Mined
+ Vytěžen
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenPoprvé viděnasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,11 +1233,11 @@
Akcelerovánosrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1216,51 +1257,6 @@
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 FeesPoplatky Akcelerace
@@ -1270,7 +1266,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1283,7 +1279,7 @@
V tomto časovém rámci žádná akcelerovaná transakcesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1291,7 +1287,7 @@
V bloku: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1311,7 +1307,7 @@
Kolem bloku: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1611,6 +1607,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1767,7 +1767,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1776,7 +1776,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1784,7 +1784,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2147,9 +2147,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Na této adrese je mnoho transakcí, více, než váš backend zvládne. Více informací o nastavení silnějšího backendu. Zvažte raději zobrazení této adresy na oficiálních Mempool stránkách:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2164,14 +2163,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2180,13 +2171,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -7008,7 +6999,7 @@
Vaše transakce byla urychlenasrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7017,7 +7008,7 @@
Čekání na zobrazení transakce v mempoolusrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7026,7 +7017,7 @@
Vaše transakce je v mempoolu, ale ještě nějakou dobu nebude potvrzena.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7035,7 +7026,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
- 160
+ 162tracker.explain.soon
@@ -7044,7 +7035,7 @@
Očekává se, že vaše transakce bude potvrzena v následujícím bloku.src/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7053,7 +7044,7 @@
Vaše transakce je potvrzena!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7061,7 +7052,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7069,7 +7060,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7086,7 +7077,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7102,7 +7093,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.da.xlf b/frontend/src/locale/messages.da.xlf
index 974be4a26..5233d9e93 100644
--- a/frontend/src/locale/messages.da.xlf
+++ b/frontend/src/locale/messages.da.xlf
@@ -1098,16 +1098,57 @@
91
+
+ Mined
+ Minet
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenFørst setsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1168,11 +1209,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,51 +1233,6 @@
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
@@ -1245,7 +1241,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1257,14 +1253,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1283,7 +1279,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1571,6 +1567,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1717,7 +1717,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1726,7 +1726,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1734,7 +1734,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2090,8 +2090,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2106,14 +2106,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2122,13 +2114,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6821,7 +6813,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6829,7 +6821,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6837,7 +6829,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6845,7 +6837,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6853,7 +6845,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6861,7 +6853,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6869,7 +6861,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6877,7 +6869,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6894,7 +6886,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6909,7 +6901,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf
index c0d06ec18..68d9c934e 100644
--- a/frontend/src/locale/messages.de.xlf
+++ b/frontend/src/locale/messages.de.xlf
@@ -417,6 +417,7 @@
Sorry, something went wrong!
+ Entschuldigung, etwas ist schief gelaufen.src/app/components/accelerate-checkout/accelerate-checkout.component.html5
@@ -425,6 +426,7 @@
We were not able to accelerate this transaction. Please try again later.
+ Wir konnten diese Transaktion nicht beschleunigen. Bitte später erneut versuchen.src/app/components/accelerate-checkout/accelerate-checkout.component.html11
@@ -870,6 +872,7 @@
Your account will be debited no more than
+ Ihr Konto wird maximal belastet mitsrc/app/components/accelerate-checkout/accelerate-checkout.component.html367
@@ -900,6 +903,7 @@
Failed to load invoice
+ Invoice konnte nicht geladen werdensrc/app/components/accelerate-checkout/accelerate-checkout.component.html381
@@ -998,6 +1002,7 @@
...sorry, this is taking longer than expected...
+ ...Entschuldigung, das dauert länger als erwartet...src/app/components/accelerate-checkout/accelerate-checkout.component.html509
@@ -1015,6 +1020,7 @@
Your transaction has been accepted for acceleration by our mining pool partners.
+ Die Transaktion wurde von unseren Mining-Pool-Partnern zur Beschleunigung akzeptiert.src/app/components/accelerate-checkout/accelerate-checkout.component.html524
@@ -1147,21 +1153,63 @@
accelerated
+ beschleunigtsrc/app/components/accelerate-checkout/accelerate-fee-graph.component.ts91
+
+ Mined
+ Gefunden
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenZuerst gesehensrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1223,11 +1271,11 @@
Beschleunigtsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1247,51 +1295,6 @@
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 FeesBeschleunigungsgebühren
@@ -1301,7 +1304,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1314,7 +1317,7 @@
Für diesen Zeitraum gibt es keine beschleunigte Transaktionsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1322,7 +1325,7 @@
Im Block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1342,7 +1345,7 @@
Um den Block herum: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1642,6 +1645,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1707,6 +1714,7 @@
(1 day)
+ (1 Tag)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html27
@@ -1733,6 +1741,7 @@
(all time)
+ (alle Zeiten)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html36
@@ -1800,7 +1809,7 @@
Beschleunigt durchsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1810,15 +1819,16 @@
der Hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-ratenot accelerating
+ nicht beschleunigtsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2185,9 +2195,9 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Es gibt viele Transaktionen auf diese Adresse, mehr als dein Backend verarbeiten kann. Weitere Informationen findest du unter Einrichten eines stärkeren Backends. Oder verwende für diese Addresse die offiziellen Mempool-Website:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+ Es gibt zu viele Transaktionen an dieser Adresse, mehr als Ihr Backend verarbeiten kann. Weitere Informationen finden Sie unter Einrichten eines stärkeren Backends. Stattdessen diese Adresse auf der offiziellen Mempool-Website ansehen:src/app/components/address/address.component.html204,207
@@ -2203,15 +2213,6 @@
address.confirmed-balance
-
- Unconfirmed balance
- Unbestätigtes Guthaben
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOsBestätigte UTXOs
@@ -2221,14 +2222,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
- Unbestätigte UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -3939,6 +3939,7 @@
Error loading block data.
+ Fehler beim Laden der Blockdaten.src/app/components/block/block.component.html367
@@ -6166,6 +6167,7 @@
Error loading pool data.
+ Fehler beim Laden der Pooldaten.src/app/components/pool/pool.component.html467
@@ -7071,7 +7073,7 @@
Deine Transaktion wurde beschleunigtsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7080,7 +7082,7 @@
Warten, bis Ihre Transaktion im Mempool erscheintsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7089,7 +7091,7 @@
Deine Transaktion befindet sich im Mempool, wird aber für einige Zeit nicht bestätigt werden.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7098,7 +7100,7 @@
Ihre Transaktion befindet sich fast oben im Mempool und wird voraussichtlich bald bestätigt werden.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7107,7 +7109,7 @@
Deine Transaktion wird voraussichtlich im nächsten Block bestätigtsrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7116,7 +7118,7 @@
Deine Transaktion ist bestätigt!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7125,7 +7127,7 @@
Ihre Transaktion wurde durch eine neuere Version ersetzt!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7134,7 +7136,7 @@
Mehr Details anzeigensrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7151,7 +7153,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7167,7 +7169,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
@@ -7226,6 +7228,7 @@
RBF Timeline
+ RBF-Zeitleistesrc/app/components/transaction/transaction.component.html158
@@ -7235,6 +7238,7 @@
Acceleration Timeline
+ Beschleunigungszeitleistesrc/app/components/transaction/transaction.component.html167
@@ -10077,6 +10081,7 @@
Your balance is too low.Please top up your account.
+ Ihr Guthaben ist zu niedrig.Bitte laden Sie Ihr Konto auf.src/app/shared/components/mempool-error/mempool-error.component.html9
diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf
index 3e726791d..d9bbcd65d 100644
--- a/frontend/src/locale/messages.es.xlf
+++ b/frontend/src/locale/messages.es.xlf
@@ -1111,16 +1111,57 @@
91
+
+ Mined
+ Minado
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenVisto por primera vezsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1182,11 +1223,11 @@
Aceleradosrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1206,51 +1247,6 @@
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 FeesComisiones de aceleración
@@ -1260,7 +1256,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1272,7 +1268,7 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1280,7 +1276,7 @@
En el bloque: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1299,7 +1295,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1594,6 +1590,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1740,7 +1740,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1749,7 +1749,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1757,7 +1757,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2116,8 +2116,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2132,14 +2132,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2148,13 +2140,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6916,7 +6908,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6924,7 +6916,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6932,7 +6924,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6940,7 +6932,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6948,7 +6940,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6956,7 +6948,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6964,7 +6956,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6972,7 +6964,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6989,7 +6981,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7004,7 +6996,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf
index 4e73c9d4e..13949c849 100644
--- a/frontend/src/locale/messages.fa.xlf
+++ b/frontend/src/locale/messages.fa.xlf
@@ -1125,16 +1125,57 @@
91
+
+ Mined
+ استخراجشده
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenاولین زمان دیدهشدنsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1196,11 +1237,11 @@
شتابدهیشدهsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1220,51 +1261,6 @@
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کارمزد شتابدهی
@@ -1274,7 +1270,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1287,7 +1283,7 @@
هیچ تراکنشی در این بازه زمانی شتابدهی نشده استsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1295,7 +1291,7 @@
در بلاک: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1315,7 +1311,7 @@
حدودا در بلاک: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1614,6 +1610,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1770,7 +1770,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1779,7 +1779,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1787,7 +1787,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2151,9 +2151,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- این آدرس تعداد زیادی تراکنش دارد. بیشتر از حدی که پیکربندی سیستم شما بتواند آن را پردازش کند. برای راهاندازی سیستم قویتر اینجا را ببینید. همچنین میتوانید این آدرس را در سایت ممپول مشاهده کنید:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2169,15 +2168,6 @@
address.confirmed-balance
-
- Unconfirmed balance
- موجودی تأییدنشده
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2186,13 +2176,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6957,7 +6947,7 @@
تراکنش شما شتابدهی شده استsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6966,7 +6956,7 @@
منتظر دیدهشدن تراکنش شما در mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6975,7 +6965,7 @@
تراکنش شما در mempool است اما فعلا تأیید نخواهد شد.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6984,7 +6974,7 @@
تراکنش شما جلوی صف mempool قرار دارد و به زودی تأیید خواهد شد.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6993,7 +6983,7 @@
تراکنش شما به زودی در بلاک بعدی تأیید خواهد شد.src/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7002,7 +6992,7 @@
تراکنش شما تأیید شد!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7011,7 +7001,7 @@
تراکنش شما با نسخه جدیدی جایگزین شده!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7020,7 +7010,7 @@
دیدن اطلاعات بیشترsrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7037,7 +7027,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7053,7 +7043,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf
index 2f32f942b..e7ffcc6a1 100644
--- a/frontend/src/locale/messages.fi.xlf
+++ b/frontend/src/locale/messages.fi.xlf
@@ -1121,16 +1121,57 @@
91
+
+ Mined
+ Louhittu
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenEnsimmäiseksi nähtysrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,11 +1233,11 @@
Kiihdytettysrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1216,51 +1257,6 @@
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 FeesNopeutusmaksut
@@ -1270,7 +1266,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1283,7 +1279,7 @@
Ei nopeutettua transaktiota tällä aikataulullasrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1291,7 +1287,7 @@
Lohkossa: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1311,7 +1307,7 @@
Noin lohko: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1609,6 +1605,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1765,7 +1765,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1774,7 +1774,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1782,7 +1782,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2139,8 +2139,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2155,14 +2155,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2171,13 +2163,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6919,7 +6911,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6927,7 +6919,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6935,7 +6927,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6943,7 +6935,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6951,7 +6943,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6959,7 +6951,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6967,7 +6959,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6975,7 +6967,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6992,7 +6984,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7007,7 +6999,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf
index a614195cf..4f338106a 100644
--- a/frontend/src/locale/messages.fr.xlf
+++ b/frontend/src/locale/messages.fr.xlf
@@ -1149,16 +1149,57 @@
91
+
+ Mined
+ Miné
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenVu pour la première foissrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1220,11 +1261,11 @@
Accélérésrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1244,51 +1285,6 @@
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 FeesFrais d'accélération
@@ -1298,7 +1294,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1311,7 +1307,7 @@
Aucune transaction accélérée pour cette périodesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1319,7 +1315,7 @@
Au bloc : src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1339,7 +1335,7 @@
Autour du bloc : src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1639,6 +1635,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1797,7 +1797,7 @@
Accéléré parsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1807,7 +1807,7 @@
du taux de hachagesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1815,7 +1815,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2182,9 +2182,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Il existe de nombreuses transactions sur cette adresse, plus que ce que votre backend peut gérer. En savoir plus sur la configuration d'un backend plus puissant. Vous pouvez consulter cette adresse sur le site officiel de Mempool :
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2200,15 +2199,6 @@
address.confirmed-balance
-
- Unconfirmed balance
- Solde non confirmé
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOsUTXOs confirmés
@@ -2218,14 +2208,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
- UTXOs non confirmés
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -7060,7 +7049,7 @@
Votre transaction a été accéléréesrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7069,7 +7058,7 @@
En attente que votre transaction apparaisse dans la mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7078,7 +7067,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
- 154
+ 156tracker.explain.pending
@@ -7087,7 +7076,7 @@
Votre transaction se trouve en haut de la mempool et devrait être confirmée bientôt.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7096,7 +7085,7 @@
Votre transaction devrait être confirmée dans le prochain blocsrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7105,7 +7094,7 @@
Votre transaction est confirmée !src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7114,7 +7103,7 @@
Votre transaction a été remplacée par une version plus récente !src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7123,7 +7112,7 @@
Voir plus de détailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7140,7 +7129,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7156,7 +7145,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf
index 9fe4420af..356416e1f 100644
--- a/frontend/src/locale/messages.he.xlf
+++ b/frontend/src/locale/messages.he.xlf
@@ -1099,16 +1099,57 @@
91
+
+ Mined
+ נכרה
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenנראה לראשונהsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1169,11 +1210,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1193,51 +1234,6 @@
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עמלות האצה
@@ -1247,7 +1243,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1259,14 +1255,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1285,7 +1281,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1576,6 +1572,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1722,7 +1722,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1731,7 +1731,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1739,7 +1739,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2095,8 +2095,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2111,14 +2111,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2127,13 +2119,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6826,7 +6818,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6834,7 +6826,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6842,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
- 154
+ 156tracker.explain.pending
@@ -6850,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
- 160
+ 162tracker.explain.soon
@@ -6858,7 +6850,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6866,7 +6858,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6874,7 +6866,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6882,7 +6874,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6899,7 +6891,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6914,7 +6906,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf
index f9d07db11..6cb035683 100644
--- a/frontend/src/locale/messages.hi.xlf
+++ b/frontend/src/locale/messages.hi.xlf
@@ -1095,16 +1095,57 @@
91
+
+ Mined
+ माइंड
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenप्रथम देखाsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1165,11 +1206,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1189,51 +1230,6 @@
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
@@ -1242,7 +1238,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1254,14 +1250,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1280,7 +1276,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1567,6 +1563,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1713,7 +1713,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1722,7 +1722,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1730,7 +1730,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2086,8 +2086,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2102,14 +2102,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2118,13 +2110,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6711,7 +6703,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6719,7 +6711,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6727,7 +6719,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6735,7 +6727,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6743,7 +6735,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6751,7 +6743,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6759,7 +6751,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6767,7 +6759,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6784,7 +6776,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6799,7 +6791,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf
index 54cac9754..563a2d4db 100644
--- a/frontend/src/locale/messages.hr.xlf
+++ b/frontend/src/locale/messages.hr.xlf
@@ -1056,16 +1056,56 @@
91
+
+ Mined
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenPrvo viđenosrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1126,11 +1166,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1150,50 +1190,6 @@
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,7 +1198,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1214,14 +1210,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1240,7 +1236,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1525,6 +1521,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1670,7 +1670,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1679,7 +1679,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1687,7 +1687,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2031,8 +2031,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2047,14 +2047,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2063,13 +2055,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6573,7 +6565,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6581,7 +6573,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6589,7 +6581,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6597,7 +6589,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6605,7 +6597,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6613,7 +6605,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6621,7 +6613,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6629,7 +6621,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6645,7 +6637,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6660,7 +6652,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf
index 78e70d0ef..072b6a963 100644
--- a/frontend/src/locale/messages.hu.xlf
+++ b/frontend/src/locale/messages.hu.xlf
@@ -1109,16 +1109,57 @@
91
+
+ Mined
+ Bányászott
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenElőször látvasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1179,11 +1220,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1203,51 +1244,6 @@
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 FeesGyorsítási Díjak
@@ -1257,7 +1253,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1269,14 +1265,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1295,7 +1291,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1584,6 +1580,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1730,7 +1730,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1739,7 +1739,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1747,7 +1747,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2104,8 +2104,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2120,14 +2120,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2136,13 +2128,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6856,7 +6848,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6864,7 +6856,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6872,7 +6864,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6880,7 +6872,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6888,7 +6880,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6897,7 +6889,7 @@
Az ön tranzakciója megerősítve!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6905,7 +6897,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6913,7 +6905,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6930,7 +6922,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6945,7 +6937,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf
index dcee24588..d3d6eb847 100644
--- a/frontend/src/locale/messages.it.xlf
+++ b/frontend/src/locale/messages.it.xlf
@@ -1121,16 +1121,57 @@
91
+
+ Mined
+ Minato
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenVista per la prima voltasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,11 +1233,11 @@
Acceleratasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1216,51 +1257,6 @@
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 FeesCommisioni di Accelerazione
@@ -1270,7 +1266,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1283,7 +1279,7 @@
Nessuna transazione accelerata in questo lasso di temposrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1291,7 +1287,7 @@
Al blocco: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1311,7 +1307,7 @@
Intorno al blocco: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1611,6 +1607,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1767,7 +1767,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1776,7 +1776,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1784,7 +1784,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2147,9 +2147,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Ci sono molte transazioni su questo indirizzo, più di quelle che il tuo backend può gestire. Scopri di più sulla configurazione di un backend più potente. Considera la visualizzazione di questo indirizzo sul sito web ufficiale di Mempool:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2164,14 +2163,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2180,13 +2171,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -7008,7 +6999,7 @@
La tua transazione è stata acceleratasrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7017,7 +7008,7 @@
In attesa che la transazione venga visualizzata nella mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7026,7 +7017,7 @@
La tua transazione è nella mempool, ma non sarà confermata in breve tempo.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7035,7 +7026,7 @@
La tua transazione è quasi nella parte alta della mempool e dovrebbe essere confermata presto.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7044,7 +7035,7 @@
La transazione dovrebbe essere confermata nel prossimo bloccosrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7053,7 +7044,7 @@
La tua transazione è confermata!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7061,7 +7052,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7069,7 +7060,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7086,7 +7077,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7102,7 +7093,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf
index a3bb4962d..6549c6104 100644
--- a/frontend/src/locale/messages.ja.xlf
+++ b/frontend/src/locale/messages.ja.xlf
@@ -417,6 +417,7 @@
Sorry, something went wrong!
+ 申し訳ございません。問題が発生しました。src/app/components/accelerate-checkout/accelerate-checkout.component.html5
@@ -425,6 +426,7 @@
We were not able to accelerate this transaction. Please try again later.
+ この取引を高速化できませんでした。しばらくしてからもう一度お試しください。src/app/components/accelerate-checkout/accelerate-checkout.component.html11
@@ -433,6 +435,7 @@
Close
+ 閉じるsrc/app/components/accelerate-checkout/accelerate-checkout.component.html18
@@ -869,6 +872,7 @@
Your account will be debited no more than
+ 最大で口座から引き落とされる金額はsrc/app/components/accelerate-checkout/accelerate-checkout.component.html367
@@ -899,6 +903,7 @@
Failed to load invoice
+ インボイスの読み込みに失敗しましたsrc/app/components/accelerate-checkout/accelerate-checkout.component.html381
@@ -997,6 +1002,7 @@
...sorry, this is taking longer than expected...
+ ...申し訳ありませんが、予想よりも時間がかかっています...src/app/components/accelerate-checkout/accelerate-checkout.component.html509
@@ -1005,6 +1011,7 @@
Your transaction is being accelerated!
+ 取引を高速化中です!src/app/components/accelerate-checkout/accelerate-checkout.component.html518
@@ -1013,6 +1020,7 @@
Your transaction has been accepted for acceleration by our mining pool partners.
+ 取引はマイニング プール パートナーによって高速化の承諾がされました。src/app/components/accelerate-checkout/accelerate-checkout.component.html524
@@ -1145,21 +1153,63 @@
accelerated
+ 高速化済みsrc/app/components/accelerate-checkout/accelerate-fee-graph.component.ts91
+
+ Mined
+ 採掘された
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seen最初に見たsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1221,11 +1271,11 @@
高速化済みsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1245,51 +1295,6 @@
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高速化手数料
@@ -1299,7 +1304,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1312,7 +1317,7 @@
この期間には高速化取引がありませんsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1320,7 +1325,7 @@
ブロック: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1340,7 +1345,7 @@
近くのブロック:src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1640,6 +1645,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1705,6 +1714,7 @@
(1 day)
+ (1日)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html27
@@ -1731,6 +1741,7 @@
(all time)
+ (全期間)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html36
@@ -1798,7 +1809,7 @@
高速化の際src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1808,15 +1819,16 @@
マイニングハッシュ力を使用src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-ratenot accelerating
+ 高速化してないsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2183,9 +2195,9 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- このアドレスには、バックエンドが処理できる以上のトランザクションが多数あります。詳細については、より強力なバックエンドの設定をご覧ください。代わりに、公式 Mempool サイトでこのアドレスを表示することを検討してください。
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+ このアドレスには、バックエンドが処理できる以上のトランザクションの数があります。詳細については、より強力なバックエンドの設定をご覧ください。代わりに、公式 Mempool サイトでこのアドレスを表示することを検討してください。src/app/components/address/address.component.html204,207
@@ -2201,15 +2213,6 @@
address.confirmed-balance
-
- Unconfirmed balance
- 未承認残高
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs承認済み UTXO
@@ -2219,14 +2222,14 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
- 未承認 UTXO
+
+ Pending UTXOs
+ 承認待ちUTXOsrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -3937,6 +3940,7 @@
Error loading block data.
+ ブロックデータを読み込み中にエラーが発生しました。src/app/components/block/block.component.html367
@@ -6164,6 +6168,7 @@
Error loading pool data.
+ プールデータを読み込み中にエラーが発生しました。src/app/components/pool/pool.component.html467
@@ -7069,7 +7074,7 @@
取引が高速化されましたsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7078,7 +7083,7 @@
mempoolに取引が表示されるのを待っています...src/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7087,7 +7092,7 @@
取引はmempoolにありますが、しばらくは承認されません。src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7096,7 +7101,7 @@
あなたの取引はmempoolの上位近くにあり、すぐに承認される予定です。src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7105,7 +7110,7 @@
あなたの取引は次のブロックで承認される予定ですsrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7114,7 +7119,7 @@
取引が承認されました!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7123,7 +7128,7 @@
取引は新しいバージョンに置き換えられました。src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7132,7 +7137,7 @@
詳細を見るsrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7149,7 +7154,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7165,7 +7170,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
@@ -7224,6 +7229,7 @@
RBF Timeline
+ RBF タイムラインsrc/app/components/transaction/transaction.component.html158
@@ -7233,6 +7239,7 @@
Acceleration Timeline
+ 高速化タイムラインsrc/app/components/transaction/transaction.component.html167
@@ -10075,6 +10082,7 @@
Your balance is too low.Please top up your account.
+ 残高が低すぎます。アカウントに入金してください。src/app/shared/components/mempool-error/mempool-error.component.html9
diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf
index 3f71e4f2e..a08f523e4 100644
--- a/frontend/src/locale/messages.ka.xlf
+++ b/frontend/src/locale/messages.ka.xlf
@@ -1098,16 +1098,57 @@
91
+
+ Mined
+ მოპოვებული
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenპირველიsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1168,11 +1209,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,51 +1233,6 @@
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
@@ -1245,7 +1241,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1257,14 +1253,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1283,7 +1279,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1571,6 +1567,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1717,7 +1717,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1726,7 +1726,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1734,7 +1734,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2090,8 +2090,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2106,14 +2106,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2122,13 +2114,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6808,7 +6800,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6816,7 +6808,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6824,7 +6816,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6832,7 +6824,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6840,7 +6832,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6848,7 +6840,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6856,7 +6848,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6864,7 +6856,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6881,7 +6873,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6896,7 +6888,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf
index abf5a3be7..8e17681b2 100644
--- a/frontend/src/locale/messages.ko.xlf
+++ b/frontend/src/locale/messages.ko.xlf
@@ -1106,16 +1106,57 @@
91
+
+ Mined
+ 채굴됨
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seen처음으로 감지됨src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1176,11 +1217,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1200,51 +1241,6 @@
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가속 수수료
@@ -1254,7 +1250,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1266,14 +1262,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1292,7 +1288,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1584,6 +1580,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1730,7 +1730,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1739,7 +1739,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1747,7 +1747,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2103,8 +2103,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2119,14 +2119,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2135,13 +2127,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6835,7 +6827,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6843,7 +6835,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6851,7 +6843,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6859,7 +6851,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6867,7 +6859,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6875,7 +6867,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6883,7 +6875,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6891,7 +6883,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6908,7 +6900,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6923,7 +6915,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.lt.xlf b/frontend/src/locale/messages.lt.xlf
index 00f82bc94..554158601 100644
--- a/frontend/src/locale/messages.lt.xlf
+++ b/frontend/src/locale/messages.lt.xlf
@@ -1098,16 +1098,57 @@
91
+
+ Mined
+ Iškasta
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenPirma pamatytassrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1168,11 +1209,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,51 +1233,6 @@
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
@@ -1245,7 +1241,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1257,14 +1253,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1283,7 +1279,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1571,6 +1567,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1717,7 +1717,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1726,7 +1726,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1734,7 +1734,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2090,8 +2090,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2106,14 +2106,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2122,13 +2114,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6821,7 +6813,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6829,7 +6821,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6837,7 +6829,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6845,7 +6837,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6853,7 +6845,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6861,7 +6853,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6869,7 +6861,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6877,7 +6869,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6894,7 +6886,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6909,7 +6901,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.mk.xlf b/frontend/src/locale/messages.mk.xlf
index c9c13f7fc..ffc4bddaa 100644
--- a/frontend/src/locale/messages.mk.xlf
+++ b/frontend/src/locale/messages.mk.xlf
@@ -1098,16 +1098,57 @@
91
+
+ Mined
+ Пронајден
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenПратенаsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1168,11 +1209,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,51 +1233,6 @@
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
@@ -1245,7 +1241,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1257,14 +1253,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1283,7 +1279,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1571,6 +1567,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1717,7 +1717,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1726,7 +1726,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1734,7 +1734,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2090,8 +2090,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2106,14 +2106,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2122,13 +2114,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6821,7 +6813,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6829,7 +6821,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6837,7 +6829,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6845,7 +6837,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6853,7 +6845,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6861,7 +6853,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6869,7 +6861,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6877,7 +6869,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6894,7 +6886,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6909,7 +6901,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf
index 33985b4d0..1ec269da3 100644
--- a/frontend/src/locale/messages.nb.xlf
+++ b/frontend/src/locale/messages.nb.xlf
@@ -1107,16 +1107,57 @@
91
+
+ Mined
+ Utvunnet
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenFørst settsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1178,11 +1219,11 @@
Akselerertsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1202,51 +1243,6 @@
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
@@ -1255,7 +1251,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1267,14 +1263,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1293,7 +1289,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1582,6 +1578,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1728,7 +1728,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1737,7 +1737,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1745,7 +1745,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2101,8 +2101,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2117,14 +2117,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2133,13 +2125,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6881,7 +6873,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6889,7 +6881,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6897,7 +6889,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6905,7 +6897,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6913,7 +6905,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6921,7 +6913,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6929,7 +6921,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6937,7 +6929,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6954,7 +6946,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6969,7 +6961,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.ne.xlf b/frontend/src/locale/messages.ne.xlf
index 7c6c6de28..235076044 100644
--- a/frontend/src/locale/messages.ne.xlf
+++ b/frontend/src/locale/messages.ne.xlf
@@ -1098,16 +1098,57 @@
91
+
+ Mined
+ खानी गरिएको
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenपहिलो पटक देखियोsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1168,11 +1209,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,51 +1233,6 @@
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
@@ -1245,7 +1241,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1257,14 +1253,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1283,7 +1279,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1571,6 +1567,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1717,7 +1717,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1726,7 +1726,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1734,7 +1734,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2090,8 +2090,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2106,14 +2106,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2122,13 +2114,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6818,7 +6810,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6826,7 +6818,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6834,7 +6826,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6842,7 +6834,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6850,7 +6842,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6858,7 +6850,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6866,7 +6858,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6874,7 +6866,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6891,7 +6883,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6906,7 +6898,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf
index 93f81081c..a8f5537c4 100644
--- a/frontend/src/locale/messages.nl.xlf
+++ b/frontend/src/locale/messages.nl.xlf
@@ -1121,16 +1121,57 @@
91
+
+ Mined
+ Gedolven
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenEerst geziensrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,11 +1233,11 @@
Versneldsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1216,51 +1257,6 @@
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 FeesVersnellingstarief
@@ -1270,7 +1266,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1283,7 +1279,7 @@
Geen versnelde transacties in dit tijdvaksrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1291,7 +1287,7 @@
Bij blok: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1311,7 +1307,7 @@
Rond blok: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1609,6 +1605,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1763,7 +1763,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1772,7 +1772,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1780,7 +1780,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2142,9 +2142,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Er zijn veel transacties op dit adres, meer dan uw backend aankan. Bekijk meer informatie over het opzetten van een krachtigere backend. Bekijk in plaats daarvan dit adres op de officiële Mempool-website:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2159,14 +2158,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2175,13 +2166,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6994,7 +6985,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7002,7 +6993,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7010,7 +7001,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7018,7 +7009,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7026,7 +7017,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7034,7 +7025,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7042,7 +7033,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7050,7 +7041,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7067,7 +7058,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7083,7 +7074,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf
index 4c92786b5..20599dee8 100644
--- a/frontend/src/locale/messages.pl.xlf
+++ b/frontend/src/locale/messages.pl.xlf
@@ -1121,16 +1121,57 @@
91
+
+ Mined
+ Wydobyty
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenPierwszy raz widzianasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,11 +1233,11 @@
Przyspieszonasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1216,51 +1257,6 @@
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 FeesOpłaty akceleracji
@@ -1270,7 +1266,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1283,7 +1279,7 @@
Brak przyspieszanych transakcji w tym okresiesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1291,7 +1287,7 @@
W bloku: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1311,7 +1307,7 @@
Wokół bloku: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1611,6 +1607,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1767,7 +1767,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1776,7 +1776,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1784,7 +1784,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2147,9 +2147,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Pod tym adresem jest wiele transakcji, więcej niż może obsłużyć Twój backend. Zobacz więcej na temat konfigurowania silniejszego backendu. Rozważ zamiast tego obejrzenie tego adresu na oficjalnej stronie Mempool:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2164,14 +2163,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2180,13 +2171,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -7008,7 +6999,7 @@
Twoja transakcja została przyspieszonasrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7017,7 +7008,7 @@
Oczekiwanie na pojawienie się twojej transakcji w mempoolusrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7026,7 +7017,7 @@
Twoja transakcja znajduje się w mempool, ale jej potwierdzenie zajmie trochę czasusrc/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7035,7 +7026,7 @@
Twoja transakcja znajduje się blisko szczytu mempool i powinna zostać wkrótce potwierdzonasrc/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7044,7 +7035,7 @@
Twoja transakcja powinna zostać potwierdzona w następnym blokusrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7053,7 +7044,7 @@
Twoja transakcja jest potwierdzona!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7061,7 +7052,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7069,7 +7060,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7086,7 +7077,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7102,7 +7093,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf
index 6dd370b24..e13c9c7ea 100644
--- a/frontend/src/locale/messages.pt.xlf
+++ b/frontend/src/locale/messages.pt.xlf
@@ -339,7 +339,7 @@
Community Integrations
- Integrações da comunidade
+ Integrações da Comunidadesrc/app/components/about/about.component.html237
@@ -348,7 +348,7 @@
Community Alliances
- Alianças da comunidade
+ Alianças da Comunidadesrc/app/components/about/about.component.html351
@@ -366,7 +366,7 @@
Project Contributors
- Contribuidores do projeto
+ Contribuidores do Projetosrc/app/components/about/about.component.html381
@@ -416,6 +416,7 @@
Sorry, something went wrong!
+ Desculpe, algo deu errado!src/app/components/accelerate-checkout/accelerate-checkout.component.html5
@@ -455,6 +456,7 @@
Plus unconfirmed ancestor(s)
+ E mais ancestral(ais) não confirmado(s)src/app/components/accelerate-checkout/accelerate-checkout.component.html41
@@ -489,6 +491,7 @@
Size in vbytes of this transaction (including unconfirmed ancestors)
+ Tamanho em vbytes desta transação (incluindo ancestrais não confirmados)src/app/components/accelerate-checkout/accelerate-checkout.component.html51
@@ -623,6 +626,7 @@
Fees already paid by this transaction (including unconfirmed ancestors)
+ Taxas já pagas por esta transação (incluindo ancestrais não confirmados)src/app/components/accelerate-checkout/accelerate-checkout.component.html62
@@ -805,7 +809,7 @@
Wait
- Espera
+ Esperarsrc/app/components/accelerate-checkout/accelerate-checkout.component.html285
@@ -970,6 +974,7 @@
We are processing your payment...
+ Estamos processando seu pagamento...src/app/components/accelerate-checkout/accelerate-checkout.component.html490
@@ -978,6 +983,7 @@
Accelerating your transaction
+ Acelerando sua transaçãosrc/app/components/accelerate-checkout/accelerate-checkout.component.html500
@@ -986,6 +992,7 @@
Confirming your acceleration with our mining pool partners...
+ Confirmando sua aceleração com nossos parceiros de pool de mineração...src/app/components/accelerate-checkout/accelerate-checkout.component.html507
@@ -994,6 +1001,7 @@
...sorry, this is taking longer than expected...
+ ...desculpe, isso está demorando mais que o esperado...src/app/components/accelerate-checkout/accelerate-checkout.component.html509
@@ -1011,6 +1019,7 @@
Your transaction has been accepted for acceleration by our mining pool partners.
+ Sua transação foi aceita para aceleração por nossos parceiros de pool de mineração.src/app/components/accelerate-checkout/accelerate-checkout.component.html524
@@ -1019,6 +1028,7 @@
Calculating cost...
+ Calculando custo...src/app/components/accelerate-checkout/accelerate-checkout.component.html543
@@ -1142,21 +1152,63 @@
accelerated
+ aceleradosrc/app/components/accelerate-checkout/accelerate-fee-graph.component.ts91
+
+ Mined
+ Minerada
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenVista pela primeira vezsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1218,11 +1270,11 @@
Aceleradasrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1242,60 +1294,16 @@
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
+ Taxas de Aceleraçãosrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html6src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1308,7 +1316,7 @@
Nenhuma transação acelerada neste períodosrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1316,7 +1324,7 @@
No bloco: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1336,7 +1344,7 @@
Por volta do bloco: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1383,7 +1391,7 @@
Total Bid Boost
- Total de Bid Boost
+ Total de Ofertasrc/app/components/acceleration/acceleration-stats/acceleration-stats.component.html11
@@ -1400,6 +1408,7 @@
BTC
+ BTCsrc/app/components/acceleration/acceleration-stats/acceleration-stats.component.html13
@@ -1433,6 +1442,7 @@
Total vSize
+ vSize Totalsrc/app/components/acceleration/acceleration-stats/acceleration-stats.component.html20
@@ -1520,7 +1530,7 @@
Fee rate
- Taxa de transação
+ Taxassrc/app/components/acceleration/accelerations-list/accelerations-list.component.html12
@@ -1554,6 +1564,7 @@
Bid
+ Ofertasrc/app/components/acceleration/accelerations-list/accelerations-list.component.html13
@@ -1562,6 +1573,7 @@
Requested
+ Solicitadasrc/app/components/acceleration/accelerations-list/accelerations-list.component.html14
@@ -1574,6 +1586,7 @@
Bid Boost
+ Oferta de Aumentosrc/app/components/acceleration/accelerations-list/accelerations-list.component.html17
@@ -1631,6 +1644,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1647,6 +1664,7 @@
Failed 🔄
+ Falha 🔄src/app/components/acceleration/accelerations-list/accelerations-list.component.html55,56
@@ -1695,6 +1713,7 @@
(1 day)
+ (1 dia)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html27
@@ -1721,6 +1740,7 @@
(all time)
+ (todos os tempos)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html36
@@ -1788,7 +1808,7 @@
Acelerada porsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1798,7 +1818,7 @@
do hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1807,7 +1827,7 @@
sem aceleraçãosrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -1821,7 +1841,7 @@
Avg Max Bid
- Lance máximo médio
+ Oferta máxima médiasrc/app/components/acceleration/pending-stats/pending-stats.component.html11
@@ -2126,6 +2146,7 @@
all
+ todossrc/app/components/address/address.component.html84
@@ -2134,6 +2155,7 @@
recent
+ recentesrc/app/components/address/address.component.html87
@@ -2142,6 +2164,7 @@
of transaction
+ de transaçãosrc/app/components/address/address.component.html101
@@ -2150,7 +2173,7 @@
of transactions
- de transações
+ de transaçõessrc/app/components/address/address.component.html102
@@ -2170,8 +2193,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2187,15 +2210,6 @@
address.confirmed-balance
-
- Unconfirmed balance
- Saldo não confirmado
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOsUTXOs confirmados
@@ -2205,14 +2219,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
- UTXOs não confirmados
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -2415,6 +2428,7 @@
No featured assets
+ Nenhum asset em destaquesrc/app/components/assets/assets-featured/assets-featured.component.html3
@@ -2573,6 +2587,7 @@
BTC Holdings
+ Holdings BTCsrc/app/components/balance-widget/balance-widget.component.html5
@@ -2589,6 +2604,7 @@
Change (7d)
+ Mudança (7d)src/app/components/balance-widget/balance-widget.component.html14
@@ -2601,6 +2617,7 @@
Change (30d)
+ Mudança (30d)src/app/components/balance-widget/balance-widget.component.html23
@@ -2630,6 +2647,7 @@
Avg Block Fee (24h)
+ Taxa média do bloco (24h)src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html51
@@ -2642,6 +2660,7 @@
Avg Block Fee (1m)
+ Taxa média de bloco (1 mês)src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html57
@@ -2661,6 +2680,7 @@
Block Fees
+ Taxas de Blocossrc/app/components/block-fees-graph/block-fees-graph.component.html6
@@ -2845,6 +2865,7 @@
Block Health
+ Saúde do Blocosrc/app/components/block-health-graph/block-health-graph.component.html6
@@ -2925,6 +2946,7 @@
Your browser does not support this feature.
+ Seu navegador não oferece suporte a esse recurso.src/app/components/block-overview-graph/block-overview-graph.component.html21
@@ -2966,7 +2988,7 @@
Confirmed
- Confirmado
+ Confirmadasrc/app/components/block-overview-tooltip/block-overview-tooltip.component.html32
@@ -3081,6 +3103,7 @@
Removed
+ Removidasrc/app/components/block-overview-tooltip/block-overview-tooltip.component.html71
@@ -3107,6 +3130,7 @@
High sigop count
+ Contagem alta de sigopsrc/app/components/block-overview-tooltip/block-overview-tooltip.component.html73
@@ -3124,6 +3148,7 @@
Recently CPFP'd
+ CPFP recentementesrc/app/components/block-overview-tooltip/block-overview-tooltip.component.html75
@@ -3132,6 +3157,7 @@
Added
+ Adicionadasrc/app/components/block-overview-tooltip/block-overview-tooltip.component.html76
@@ -3145,6 +3171,7 @@
Prioritized
+ Priorizadasrc/app/components/block-overview-tooltip/block-overview-tooltip.component.html77
@@ -3158,6 +3185,7 @@
Conflict
+ Conflitosrc/app/components/block-overview-tooltip/block-overview-tooltip.component.html79
@@ -3541,6 +3569,7 @@
This block does not belong to the main chain, it has been replaced by:
+ Este bloco não pertence à cadeia principal, foi substituído por:src/app/components/block/block.component.html5
@@ -3559,6 +3588,7 @@
Stale
+ Obsoletosrc/app/components/block/block.component.html30
@@ -3708,7 +3738,7 @@
Expected Block
- Block Esperado
+ Bloco Esperadosrc/app/components/block/block.component.html231
@@ -3894,6 +3924,7 @@
Error loading block data.
+ Erro ao carregar dados do bloco.src/app/components/block/block.component.html367
@@ -4236,7 +4267,7 @@
Recent Replacements
- Substituições recentes
+ Substituições Recentessrc/app/components/custom-dashboard/custom-dashboard.component.html100
@@ -4275,6 +4306,7 @@
Full RBF
+ RBF completosrc/app/components/custom-dashboard/custom-dashboard.component.html122
@@ -4401,6 +4433,7 @@
Coinjoin
+ Coinjoinsrc/app/components/custom-dashboard/custom-dashboard.component.ts73
@@ -4467,7 +4500,7 @@
Remaining
- Faltando
+ Restantesrc/app/components/difficulty-mining/difficulty-mining.component.html7
@@ -4696,6 +4729,7 @@
New subsidy
+ Novo subsídiosrc/app/components/difficulty/difficulty.component.html103
@@ -4713,6 +4747,7 @@
Block remaining
+ Bloco restantesrc/app/components/difficulty/difficulty.component.html112
@@ -4721,6 +4756,7 @@
Testnet4 Faucet
+ Torneira Testnet4src/app/components/faucet/faucet.component.html4
@@ -4729,6 +4765,7 @@
Amount (sats)
+ Quantidade (sats)src/app/components/faucet/faucet.component.html51
@@ -4737,6 +4774,7 @@
Request Testnet4 Coins
+ Solicitar moedas Testnet4src/app/components/faucet/faucet.component.html70
@@ -4839,6 +4877,7 @@
WU/s
+ WU/ssrc/app/components/footer/footer.component.html14
@@ -5214,6 +5253,7 @@
UTXOs
+ UTXOssrc/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html6
@@ -5230,6 +5270,7 @@
Total Expired
+ Total Expiradosrc/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html12
@@ -5246,6 +5287,7 @@
Liquid Federation Wallet
+ Carteira da Federação Liquidsrc/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html5
@@ -5292,6 +5334,7 @@
Related Peg-In
+ Peg-In Relacionadosrc/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html11
@@ -5300,6 +5343,7 @@
Expires in
+ Expira emsrc/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html13
@@ -5308,6 +5352,7 @@
Expired since
+ Expirado desdesrc/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html14
@@ -5316,6 +5361,7 @@
Dust
+ Pósrc/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html15
@@ -5324,6 +5370,7 @@
Change output
+ Saída de trocosrc/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html55
@@ -5374,6 +5421,7 @@
Recent Peg-In / Out's
+ Peg-In/Out recentessrc/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html4
@@ -5402,6 +5450,7 @@
BTC Address
+ Endereço BTCsrc/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html16
@@ -5426,6 +5475,7 @@
Peg-Ins
+ Peg-Inssrc/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html13
@@ -5442,6 +5492,7 @@
Peg-Outs
+ Peg-Outssrc/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html19
@@ -5450,6 +5501,7 @@
Unpeg
+ Desvincularsrc/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html3
@@ -5466,6 +5518,7 @@
Unpeg Event
+ Evento de Unpegsrc/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html7
@@ -5482,6 +5535,7 @@
Emergency Keys
+ Chaves de Emergênciasrc/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html28
@@ -5499,6 +5553,7 @@
Assets vs Liabilities
+ Ativos versus Passivossrc/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts163
@@ -5562,6 +5617,7 @@
Faucet
+ Torneirasrc/app/components/master-page/master-page.component.html105
@@ -5876,6 +5932,7 @@
Other ()
+ Outros ()src/app/components/pool-ranking/pool-ranking.component.ts186
@@ -6054,6 +6111,7 @@
1m
+ 1msrc/app/components/pool/pool.component.html144
@@ -6075,6 +6133,7 @@
Error loading pool data.
+ Erro ao carregar dados do pool.src/app/components/pool/pool.component.html467
@@ -6091,6 +6150,7 @@
Pool Dominance
+ Domínio dos Poolssrc/app/components/pool/pool.component.ts222
@@ -6134,6 +6194,7 @@
Broadcast Transaction
+ Transmitir Transaçãosrc/app/components/push-transaction/push-transaction.component.ts38
@@ -6198,6 +6259,7 @@
remaining
+ restantessrc/app/components/rbf-timeline/rbf-timeline.component.html86
@@ -6317,6 +6379,7 @@
Block Height
+ Altura do blocosrc/app/components/search-form/search-results/search-results.component.html3
@@ -6325,6 +6388,7 @@
Transaction
+ Transaçãosrc/app/components/search-form/search-results/search-results.component.html21
@@ -6333,6 +6397,7 @@
Address
+ Endereçosrc/app/components/search-form/search-results/search-results.component.html27
@@ -6345,6 +6410,7 @@
Block
+ Blocosrc/app/components/search-form/search-results/search-results.component.html33
@@ -6353,6 +6419,7 @@
Addresses
+ Endereçossrc/app/components/search-form/search-results/search-results.component.html39
@@ -6361,6 +6428,7 @@
Mining Pools
+ Pools de Mineraçãosrc/app/components/search-form/search-results/search-results.component.html47
@@ -6387,6 +6455,7 @@
Other Network Address
+ Outro endereço de redesrc/app/components/search-form/search-results/search-results.component.html72
@@ -6395,6 +6464,7 @@
Liquid Asset
+ Ativo Liquidsrc/app/components/search-form/search-results/search-results.component.html86
@@ -6474,6 +6544,7 @@
Cap outliers
+ Remover valores discrepantessrc/app/components/statistics/statistics.component.html121
@@ -6514,6 +6585,7 @@
Raw hex
+ Hex crusrc/app/components/test-transactions/test-transactions.component.html5
@@ -6522,6 +6594,7 @@
Comma-separated list of raw transactions
+ Lista de transações cruas separadas por vírgulassrc/app/components/test-transactions/test-transactions.component.html7
@@ -6539,6 +6612,7 @@
Allowed?
+ Permitido?src/app/components/test-transactions/test-transactions.component.html23
@@ -6555,6 +6629,7 @@
Immediately
+ Imediatamentesrc/app/components/time/time.component.ts107
@@ -6758,7 +6833,7 @@
After
- Depois
+ Depois desrc/app/components/time/time.component.ts234
@@ -6877,6 +6952,7 @@
Sent
+ Enviadosrc/app/components/tracker/tracker-bar.component.html2
@@ -6885,6 +6961,7 @@
Soon
+ Em Brevesrc/app/components/tracker/tracker-bar.component.html6
@@ -6935,6 +7012,7 @@
Confirmed at
+ Confirmada emsrc/app/components/tracker/tracker.component.html87
@@ -6943,6 +7021,7 @@
Block height
+ Altura do blocosrc/app/components/tracker/tracker.component.html96
@@ -6954,31 +7033,34 @@
Sua transação foi aceleradasrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.acceleratedWaiting for your transaction to appear in the mempool
+ Aguardando que sua transação apareça no mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waitingYour transaction is in the mempool, but it will not be confirmed for some time.
+ Sua transação está no mempool, mas não será confirmada por algum tempo.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pendingYour transaction is near the top of the mempool, and is expected to confirm soon.
+ Sua transação está próxima do topo do mempool e espera-se que seja confirmada em breve.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6987,31 +7069,34 @@
Espera-se que sua transação seja confirmada no próximo blocosrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-blockYour transaction is confirmed!
+ Sua transação foi confirmada!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmedYour transaction has been replaced by a newer version!
+ Sua transação foi substituída por uma versão mais recente!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replacedSee more details
+ Ver mais detalhessrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7028,7 +7113,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7043,7 +7128,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
@@ -7102,6 +7187,7 @@
RBF Timeline
+ Linha do tempo RBFsrc/app/components/transaction/transaction.component.html158
@@ -7111,6 +7197,7 @@
Acceleration Timeline
+ Linha do tempo da aceleraçãosrc/app/components/transaction/transaction.component.html167
@@ -7282,6 +7369,7 @@
Seen in Mempool
+ Visto no Mempoolsrc/app/components/transaction/transaction.component.html522
@@ -7299,6 +7387,7 @@
Not seen in Mempool
+ Não visto no Mempoolsrc/app/components/transaction/transaction.component.html524
@@ -7326,6 +7415,7 @@
This transaction conflicted with another version in our mempool
+ Esta transação entrou em conflito com outra versão em nosso mempoolsrc/app/components/transaction/transaction.component.html533
@@ -7504,6 +7594,7 @@
1 block earlier
+ 1 bloco antessrc/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html123
@@ -7512,6 +7603,7 @@
1 block later
+ 1 bloco depoissrc/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html127
@@ -7520,6 +7612,7 @@
in the same block
+ no mesmo blocosrc/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html131
@@ -7537,6 +7630,7 @@
spent
+ gasto src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html148
@@ -7883,6 +7977,7 @@
WebSocket API
+ API WebSocketsrc/app/docs/docs/docs.component.ts59
@@ -7904,6 +7999,7 @@
Electrum RPC
+ Electrum RPCsrc/app/docs/docs/docs.component.ts67
@@ -9023,6 +9119,7 @@
Decoded
+ Decodificadosrc/app/lightning/node/node.component.html134
@@ -9581,6 +9678,7 @@
fee
+ taxasrc/app/shared/components/address-type/address-type.component.html3
@@ -9589,6 +9687,7 @@
empty
+ vaziosrc/app/shared/components/address-type/address-type.component.html6
@@ -9653,6 +9752,7 @@
sat/WU
+ sáb/WUsrc/app/shared/components/fee-rate/fee-rate.component.html4
@@ -9909,6 +10009,7 @@
Your balance is too low.Please top up your account.
+ Seu saldo está muito baixo.Por favorrecarregue sua conta .src/app/shared/components/mempool-error/mempool-error.component.html9
diff --git a/frontend/src/locale/messages.ro.xlf b/frontend/src/locale/messages.ro.xlf
index 09bca8d7d..86e24dcd0 100644
--- a/frontend/src/locale/messages.ro.xlf
+++ b/frontend/src/locale/messages.ro.xlf
@@ -1119,16 +1119,57 @@
91
+
+ Mined
+ Minat
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenPrima dată văzutsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1190,11 +1231,11 @@
Acceleratsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1214,51 +1255,6 @@
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 FeesComisoane de accelerare
@@ -1268,7 +1264,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1281,7 +1277,7 @@
Nicio tranzacție accelerată pentru acest interval de timpsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1289,7 +1285,7 @@
La bloc: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1309,7 +1305,7 @@
În jurul blocului: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1606,6 +1602,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1760,7 +1760,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1769,7 +1769,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1777,7 +1777,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2139,9 +2139,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Există multe tranzacții la această adresă, mai mult decât poate suporta backend-ul dvs. Vedeți mai multe la configurarea unui backend mai puternic. Considerați în schimb să vizualizați această adresă pe site-ul oficial Mempool:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2156,14 +2155,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2172,13 +2163,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6991,7 +6982,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6999,7 +6990,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7007,7 +6998,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7015,7 +7006,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7023,7 +7014,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7031,7 +7022,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7039,7 +7030,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7047,7 +7038,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7064,7 +7055,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7080,7 +7071,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf
index 4f79ac9db..82b63285f 100644
--- a/frontend/src/locale/messages.ru.xlf
+++ b/frontend/src/locale/messages.ru.xlf
@@ -417,6 +417,7 @@
Sorry, something went wrong!
+ Извините, что-то пошло не так!src/app/components/accelerate-checkout/accelerate-checkout.component.html5
@@ -425,6 +426,7 @@
We were not able to accelerate this transaction. Please try again later.
+ Нам не удалось ускорить эту транзакцию. Пожалуйста, повторите попытку позже.src/app/components/accelerate-checkout/accelerate-checkout.component.html11
@@ -433,6 +435,7 @@
Close
+ Закрытьsrc/app/components/accelerate-checkout/accelerate-checkout.component.html18
@@ -633,6 +636,7 @@
How much faster?
+ Насколько быстрее?src/app/components/accelerate-checkout/accelerate-checkout.component.html71
@@ -641,6 +645,7 @@
This will reduce your expected waiting time until the first confirmation to
+ Это сократит время ожидания до первого подтверждения на src/app/components/accelerate-checkout/accelerate-checkout.component.html76,77
@@ -649,6 +654,7 @@
Summary
+ Сводкаsrc/app/components/accelerate-checkout/accelerate-checkout.component.html100
@@ -697,6 +703,7 @@
Target rate
+ Целевая ставкаsrc/app/components/accelerate-checkout/accelerate-checkout.component.html131
@@ -705,6 +712,7 @@
Extra fee required
+ Необходимая дополнительная платаsrc/app/components/accelerate-checkout/accelerate-checkout.component.html139
@@ -758,6 +766,7 @@
Acceleration cost
+ Стоимость ускоренияsrc/app/components/accelerate-checkout/accelerate-checkout.component.html206
@@ -775,6 +784,7 @@
Go back
+ Назадsrc/app/components/accelerate-checkout/accelerate-checkout.component.html258
@@ -791,6 +801,7 @@
Accelerate your Bitcoin transaction?
+ Ускорить вашу биткоин-транзакцию?src/app/components/accelerate-checkout/accelerate-checkout.component.html273
@@ -799,6 +810,7 @@
Wait
+ Ждатьsrc/app/components/accelerate-checkout/accelerate-checkout.component.html285
@@ -807,6 +819,7 @@
Confirmation expected
+ Ожидается подтверждениеsrc/app/components/accelerate-checkout/accelerate-checkout.component.html287
@@ -819,6 +832,7 @@
Confirmation not expected any time soon
+ Подтверждения в ближайшее время не ожидаетсяsrc/app/components/accelerate-checkout/accelerate-checkout.component.html290
@@ -827,6 +841,7 @@
For an additional
+ За дополнительныеsrc/app/components/accelerate-checkout/accelerate-checkout.component.html345
@@ -835,6 +850,7 @@
Reducing expected confirmation time to
+ Сокращение ожидаемого времени подтверждения до src/app/components/accelerate-checkout/accelerate-checkout.component.html351,352
@@ -843,6 +859,7 @@
Payment to mempool.space for acceleration of txid ..
+ Оплата на mempool.space за ускорение транзакции ..src/app/components/accelerate-checkout/accelerate-checkout.component.html362,363
@@ -855,6 +872,7 @@
Your account will be debited no more than
+ С вашего счета будет списано не болееsrc/app/components/accelerate-checkout/accelerate-checkout.component.html367
@@ -863,6 +881,7 @@
Pay
+ Оплатитьsrc/app/components/accelerate-checkout/accelerate-checkout.component.html378
@@ -884,6 +903,7 @@
Failed to load invoice
+ Не удалось загрузить инвойсsrc/app/components/accelerate-checkout/accelerate-checkout.component.html381
@@ -892,6 +912,7 @@
Loading invoice...
+ Загрузка инвойса...src/app/components/accelerate-checkout/accelerate-checkout.component.html386
@@ -900,6 +921,7 @@
OR
+ ИЛИsrc/app/components/accelerate-checkout/accelerate-checkout.component.html394
@@ -908,6 +930,7 @@
Confirm your payment
+ Подтвердите свой платежsrc/app/components/accelerate-checkout/accelerate-checkout.component.html428
@@ -916,6 +939,7 @@
Total additional cost
+ Итого дополнительные расходыsrc/app/components/accelerate-checkout/accelerate-checkout.component.html444
@@ -924,6 +948,7 @@
with
+ сsrc/app/components/accelerate-checkout/accelerate-checkout.component.html448
@@ -932,6 +957,7 @@
Loading payment method...
+ Загрузка способа оплаты...src/app/components/accelerate-checkout/accelerate-checkout.component.html462
@@ -940,6 +966,7 @@
Confirming your payment
+ Подтверждение вашего платежаsrc/app/components/accelerate-checkout/accelerate-checkout.component.html480
@@ -948,6 +975,7 @@
We are processing your payment...
+ Мы обрабатываем ваш платеж...src/app/components/accelerate-checkout/accelerate-checkout.component.html490
@@ -956,6 +984,7 @@
Accelerating your transaction
+ Ускорение вашей транзакцииsrc/app/components/accelerate-checkout/accelerate-checkout.component.html500
@@ -964,6 +993,7 @@
Confirming your acceleration with our mining pool partners...
+ Подтверждаем ваше ускорение у наших партнеров-майнеров...src/app/components/accelerate-checkout/accelerate-checkout.component.html507
@@ -972,6 +1002,7 @@
...sorry, this is taking longer than expected...
+ ...извините, операция проводится дольше, чем ожидалось...src/app/components/accelerate-checkout/accelerate-checkout.component.html509
@@ -980,6 +1011,7 @@
Your transaction is being accelerated!
+ Ваша транзакция ускоряется!src/app/components/accelerate-checkout/accelerate-checkout.component.html518
@@ -988,6 +1020,7 @@
Your transaction has been accepted for acceleration by our mining pool partners.
+ Ваша транзакция была принята для ускорения нашими партнерами-майнерами.src/app/components/accelerate-checkout/accelerate-checkout.component.html524
@@ -996,6 +1029,7 @@
Calculating cost...
+ Расчет стоимости...src/app/components/accelerate-checkout/accelerate-checkout.component.html543
@@ -1004,6 +1038,7 @@
customize
+ изменитьsrc/app/components/accelerate-checkout/accelerate-checkout.component.html549
@@ -1012,6 +1047,7 @@
Accelerate to ~ sat/vB
+ Ускорить до ~ sat/vBsrc/app/components/accelerate-checkout/accelerate-checkout.component.html552
@@ -1038,6 +1074,7 @@
Your transaction will be prioritized by up to % of miners.
+ Ваша транзакция будет приоритезирована вплоть до % майнеров .src/app/components/accelerate-checkout/accelerate-checkout.component.html580
@@ -1116,21 +1153,63 @@
accelerated
+ ускоренаsrc/app/components/accelerate-checkout/accelerate-fee-graph.component.ts91
+
+ Mined
+ Намайнено
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenВпервые замеченsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,11 +1271,11 @@
Ускореннаяsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1216,51 +1295,6 @@
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Комиссия за ускорение
@@ -1270,7 +1304,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1283,7 +1317,7 @@
В этом временном отрезке нет ускоренной транзакцииsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1291,7 +1325,7 @@
В блоке: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1311,7 +1345,7 @@
Около блока: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1409,6 +1443,7 @@
Total vSize
+ Итоговый виртуальный размерsrc/app/components/acceleration/acceleration-stats/acceleration-stats.component.html20
@@ -1429,6 +1464,7 @@
of blocks
+ блоковsrc/app/components/acceleration/acceleration-stats/acceleration-stats.component.html23
@@ -1609,6 +1645,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1674,6 +1714,7 @@
(1 day)
+ (1 день)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html27
@@ -1682,6 +1723,7 @@
(1 week)
+ (1 неделя)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html30
@@ -1690,6 +1732,7 @@
(1 month)
+ (1 месяц)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html33
@@ -1698,6 +1741,7 @@
(all time)
+ (все время)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html36
@@ -1752,6 +1796,7 @@
Accelerated to
+ Ускорено доsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html7
@@ -1761,26 +1806,29 @@
Accelerated by
+ Ускореноsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrateof hashrate
+ хешрейтаsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-ratenot accelerating
+ нет ускоренияsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -1807,6 +1855,7 @@
of block
+ блокаsrc/app/components/acceleration/pending-stats/pending-stats.component.html23
@@ -2099,6 +2148,7 @@
all
+ всеsrc/app/components/address/address.component.html84
@@ -2107,6 +2157,7 @@
recent
+ недавниеsrc/app/components/address/address.component.html87
@@ -2115,6 +2166,7 @@
of transaction
+ из транзакцииsrc/app/components/address/address.component.html101
@@ -2123,6 +2175,7 @@
of transactions
+ из транзакцийsrc/app/components/address/address.component.html102
@@ -2142,9 +2195,9 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- По этому адресу много транзакций, больше, чем может обработать ваш сервер. Подробнее о настройке более мощного бэкэнда. Вместо этого рассмотрите возможность просмотра этого адреса на официальном сайте Mempool:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+ По этому адресу слишком много транзакций; больше, чем может обработать ваш сервер. Подробнее о настройке более мощного бэкэнда. Вместо этого рассмотрите возможность просмотра этого адреса на официальном сайте Mempool: src/app/components/address/address.component.html204,207
@@ -2153,35 +2206,30 @@
Confirmed balance
+ Подтвержденный балансsrc/app/components/address/address.component.html247address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
+ Подтвержденные UTXOsrc/app/components/address/address.component.html257address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOs
+ Ожидаемые UTXOsrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -2562,6 +2610,7 @@
Change (7d)
+ Изменение (7д)src/app/components/balance-widget/balance-widget.component.html14
@@ -2574,6 +2623,7 @@
Change (30d)
+ Изменение (30д)src/app/components/balance-widget/balance-widget.component.html23
@@ -2698,6 +2748,7 @@
Block Fees Vs Subsidy
+ Комиссии против субсидии за блокsrc/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.html6
@@ -2714,6 +2765,7 @@
See the mining fees earned per Bitcoin block compared to the Bitcoin block subsidy, visualized in BTC and USD over time.
+ Оцените комиссии за майнинг, полученные за Биткоин-блок, в сравнении с субсидией за блок. Данные визуализированны в биткоинах и долларах США с течением времени.src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts79
@@ -2721,6 +2773,7 @@
At block
+ В блоке src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts185
@@ -2728,6 +2781,7 @@
Around block
+ Около блока src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts187
@@ -3468,6 +3522,7 @@
transaction
+ транзакцияsrc/app/components/block/block-transactions.component.html4
@@ -3488,6 +3543,7 @@
transactions
+ транзакцииsrc/app/components/block/block-transactions.component.html5
@@ -3884,6 +3940,7 @@
Error loading block data.
+ Ошибка загрузки данных блока.src/app/components/block/block.component.html367
@@ -4352,6 +4409,7 @@
Treasury
+ Сокровищницаsrc/app/components/custom-dashboard/custom-dashboard.component.html228
@@ -4360,6 +4418,7 @@
Treasury Transactions
+ Казначейские транзакцииsrc/app/components/custom-dashboard/custom-dashboard.component.html251
@@ -4368,6 +4427,7 @@
X Timeline
+ Таймлайн Xsrc/app/components/custom-dashboard/custom-dashboard.component.html265
@@ -4715,6 +4775,7 @@
Testnet4 Faucet
+ Кран Testnet4src/app/components/faucet/faucet.component.html4
@@ -4723,6 +4784,7 @@
Amount (sats)
+ Сумма (саты)src/app/components/faucet/faucet.component.html51
@@ -4731,6 +4793,7 @@
Request Testnet4 Coins
+ Запросить монеты Testnet4src/app/components/faucet/faucet.component.html70
@@ -5476,6 +5539,7 @@
Number of times that the Federation's BTC holdings fall below 95% of the total L-BTC supply
+ Сколько раз запасы BTC Федерации падали ниже 95% от общего объема поставок L-BTCsrc/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html6
@@ -5584,6 +5648,7 @@
Faucet
+ Кранsrc/app/components/master-page/master-page.component.html105
@@ -6103,6 +6168,7 @@
Error loading pool data.
+ Ошибка загрузки данных пула.src/app/components/pool/pool.component.html467
@@ -6399,6 +6465,7 @@
Mining Pools
+ Майнинг-улыsrc/app/components/search-form/search-results/search-results.component.html47
@@ -6539,6 +6606,7 @@
Test Transactions
+ Тестовые транзакцииsrc/app/components/test-transactions/test-transactions.component.html2
@@ -6556,6 +6624,7 @@
Raw hex
+ Сырой хексsrc/app/components/test-transactions/test-transactions.component.html5
@@ -6564,6 +6633,7 @@
Comma-separated list of raw transactions
+ Список необработанных транзакций, разделенных запятымиsrc/app/components/test-transactions/test-transactions.component.html7
@@ -6572,6 +6642,7 @@
Maximum fee rate (sat/vB)
+ Максимальная ставка комиссии (sat/vB)src/app/components/test-transactions/test-transactions.component.html9
@@ -6580,6 +6651,7 @@
Allowed?
+ Разрешено?src/app/components/test-transactions/test-transactions.component.html23
@@ -6588,6 +6660,7 @@
Rejection reason
+ Причина отклоненияsrc/app/components/test-transactions/test-transactions.component.html26
@@ -6740,6 +6813,7 @@
within ~
+ в пределах ~src/app/components/time/time.component.ts211
@@ -6919,6 +6993,7 @@
Sent
+ Отправленоsrc/app/components/tracker/tracker-bar.component.html2
@@ -6927,6 +7002,7 @@
Soon
+ Скороsrc/app/components/tracker/tracker-bar.component.html6
@@ -6963,6 +7039,7 @@
Not any time soon
+ Не в ближайшее времяsrc/app/components/tracker/tracker.component.html74
@@ -6976,6 +7053,7 @@
Confirmed at
+ Подтверждена вsrc/app/components/tracker/tracker.component.html87
@@ -6984,6 +7062,7 @@
Block height
+ Высота блокаsrc/app/components/tracker/tracker.component.html96
@@ -6992,65 +7071,73 @@
Your transaction has been accelerated
+ Ваша транзакция была ускоренаsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.acceleratedWaiting for your transaction to appear in the mempool
+ Ожидание появления вашей транзакции в мемпулеsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waitingYour transaction is in the mempool, but it will not be confirmed for some time.
+ Ваша транзакция находится в мемпуле, но некоторое время не будет подтверждена.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pendingYour transaction is near the top of the mempool, and is expected to confirm soon.
+ Ваша транзакция находится на вершине мемпула и, как ожидается, скоро будет подтверждена.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soonYour transaction is expected to confirm in the next block
+ Ожидается, что ваша транзакция будет подтверждена в следующем блоке.src/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-blockYour transaction is confirmed!
+ Ваша транзакция подтверждена!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmedYour transaction has been replaced by a newer version!
+ Ваша транзакция заменена на более новую версию!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replacedSee more details
+ Посмотреть подробностиsrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7067,7 +7154,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7083,7 +7170,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
@@ -7133,6 +7220,7 @@
Hide accelerator
+ Скрыть акселераторsrc/app/components/transaction/transaction.component.html131
@@ -7141,6 +7229,7 @@
RBF Timeline
+ Хронология RBFsrc/app/components/transaction/transaction.component.html158
@@ -7150,6 +7239,7 @@
Acceleration Timeline
+ Хронология ускоренияsrc/app/components/transaction/transaction.component.html167
@@ -9659,6 +9749,7 @@
fee
+ комиссияsrc/app/shared/components/address-type/address-type.component.html3
@@ -9667,6 +9758,7 @@
empty
+ пустоsrc/app/shared/components/address-type/address-type.component.html6
@@ -9675,6 +9767,7 @@
provably unspendable
+ доказуемо не подлежащий тратеsrc/app/shared/components/address-type/address-type.component.html18
@@ -9683,6 +9776,7 @@
bare multisig
+ bare multisigsrc/app/shared/components/address-type/address-type.component.html21
@@ -9767,6 +9861,7 @@
Test Transaction
+ Тестовая транзакцияsrc/app/shared/components/global-footer/global-footer.component.html64
@@ -9848,6 +9943,7 @@
Research
+ Исследованияsrc/app/shared/components/global-footer/global-footer.component.html75
@@ -9874,6 +9970,7 @@
Testnet3 Explorer
+ Обозреватель Testnet3src/app/shared/components/global-footer/global-footer.component.html81
@@ -9882,6 +9979,7 @@
Testnet4 Explorer
+ Обозреватель Testnet4src/app/shared/components/global-footer/global-footer.component.html82
@@ -9984,6 +10082,7 @@
Your balance is too low.Please top up your account.
+ Ваш баланс слишком мал.Пожалуйста, пополните свой счет .src/app/shared/components/mempool-error/mempool-error.component.html9
@@ -10001,6 +10100,7 @@
Testnet3 is deprecated, and will soon be replaced by Testnet4
+ Testnet3 устарел и скоро будет заменен на Testnet4src/app/shared/components/testnet-alert/testnet-alert.component.html6
@@ -10009,6 +10109,7 @@
Testnet4 is not yet finalized, and may be reset at anytime.
+ Testnet4 еще не завершен и может быть перезапущен в любой момент.src/app/shared/components/testnet-alert/testnet-alert.component.html9
@@ -10017,6 +10118,7 @@
Batch payment
+ Совмещенная оплатаsrc/app/shared/filters.utils.ts108
@@ -10176,6 +10278,7 @@
Multisig of
+ Мультиподпись из src/app/shared/script.utils.ts168
diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf
index 4c7c85d1d..bc6f5c328 100644
--- a/frontend/src/locale/messages.sl.xlf
+++ b/frontend/src/locale/messages.sl.xlf
@@ -1096,16 +1096,57 @@
91
+
+ Mined
+ Narudarjeno
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenPrejetosrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1166,11 +1207,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1190,51 +1231,6 @@
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
@@ -1243,7 +1239,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1255,14 +1251,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1281,7 +1277,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1568,6 +1564,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1714,7 +1714,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1723,7 +1723,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1731,7 +1731,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2087,8 +2087,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2103,14 +2103,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2119,13 +2111,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6767,7 +6759,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6775,7 +6767,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6783,7 +6775,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6791,7 +6783,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6799,7 +6791,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6807,7 +6799,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6815,7 +6807,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6823,7 +6815,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6840,7 +6832,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6855,7 +6847,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf
index 9c283c953..65a55d12b 100644
--- a/frontend/src/locale/messages.sv.xlf
+++ b/frontend/src/locale/messages.sv.xlf
@@ -1159,16 +1159,57 @@
91
+
+ Mined
+ Minad
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenFörst seddsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1230,11 +1271,11 @@
Accelereradsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1254,51 +1295,6 @@
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 FeesAccelerationsavgifter
@@ -1308,7 +1304,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1321,7 +1317,7 @@
Ingen accelererad transaktion för denna tidsramsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1329,7 +1325,7 @@
Vid block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1349,7 +1345,7 @@
Runt blocket: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1578,7 +1574,7 @@
Requested
- Begärda
+ Begärdsrc/app/components/acceleration/accelerations-list/accelerations-list.component.html14
@@ -1649,6 +1645,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1809,7 +1809,7 @@
Accelererade avsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1819,7 +1819,7 @@
av hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1828,7 +1828,7 @@
accelererar intesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2195,9 +2195,9 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- Det är många transaktioner på den här adressen, fler än din backend kan hantera. Fundera på att sätta upp en starkare backend. Överväg att titta på den här adressen på den officiella Mempool-webbplatsen istället:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+ Det är för många transaktioner på den address än vad din backend kan klara av. Läs mer om attsätta upp en starkare backend. Överväg att visa addressen på den officiella Mempool-webplatsen istället: src/app/components/address/address.component.html204,207
@@ -2213,15 +2213,6 @@
address.confirmed-balance
-
- Unconfirmed balance
- Obekräftad balans
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOsBekräftade UTXOs
@@ -2231,14 +2222,14 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
- Obekräftade UTXO
+
+ Pending UTXOs
+ Väntande UTXOsrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -4649,7 +4640,7 @@
blocks mined
- mineade block
+ minade blocksrc/app/components/difficulty/difficulty-tooltip.component.html52
@@ -4658,7 +4649,7 @@
block mined
- mineade block
+ minade blocksrc/app/components/difficulty/difficulty-tooltip.component.html53
@@ -7083,7 +7074,7 @@
Din transaktion har blivit accelereradsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7092,7 +7083,7 @@
Väntar på att din transaktion ska dyka upp i mempoolensrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7101,7 +7092,7 @@
Din transaktion finns i mempoolen, men den kommer inte att bekräftas på ett tag.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7110,7 +7101,7 @@
Din transaktion är nära toppen av mempoolen och förväntas bekräftas snart.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7119,7 +7110,7 @@
Din transaktion förväntas bekräftas i nästa blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7128,7 +7119,7 @@
Din transaktion är bekräftad!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7137,7 +7128,7 @@
Din transaktion har ersatts av en nyare version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7146,7 +7137,7 @@
Se mer informationsrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7163,7 +7154,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7179,7 +7170,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf
index b1531a3fe..6fc8bb896 100644
--- a/frontend/src/locale/messages.th.xlf
+++ b/frontend/src/locale/messages.th.xlf
@@ -1117,16 +1117,57 @@
91
+
+ Mined
+ ถูกขุดเมื่อ
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenพบเห็นครั้งแรกsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1188,11 +1229,11 @@
ถูกเร่งsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1212,51 +1253,6 @@
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
@@ -1266,7 +1262,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1279,7 +1275,7 @@
ไม่มีธุรกรรมที่ถูกเร่งในช่วงเวลานี้src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1287,7 +1283,7 @@
ที่บล็อก: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1307,7 +1303,7 @@
ประมาณบล็อกที่: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1599,6 +1595,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1748,7 +1748,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1757,7 +1757,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1765,7 +1765,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2125,8 +2125,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2141,14 +2141,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2157,13 +2149,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6918,7 +6910,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6926,7 +6918,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6934,7 +6926,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6942,7 +6934,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6950,7 +6942,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6958,7 +6950,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6966,7 +6958,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6974,7 +6966,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6991,7 +6983,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7006,7 +6998,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf
index bfd095f52..ad96aca29 100644
--- a/frontend/src/locale/messages.tr.xlf
+++ b/frontend/src/locale/messages.tr.xlf
@@ -1115,16 +1115,57 @@
91
+
+ Mined
+ Çıkarıldı
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenİlk görüldüğü ansrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1186,11 +1227,11 @@
Hızlandırıldısrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1210,51 +1251,6 @@
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 FeesHızlandırma ücretleri
@@ -1264,7 +1260,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1277,7 +1273,7 @@
Bu zaman aralığı için hızlandırılmış işlem bulunmamaktasrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1285,7 +1281,7 @@
Blok: içinsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1305,7 +1301,7 @@
Yaklaşık olarak blok: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1603,6 +1599,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1757,7 +1757,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1766,7 +1766,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1774,7 +1774,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2136,8 +2136,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2152,14 +2152,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2168,13 +2160,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6947,7 +6939,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6955,7 +6947,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6963,7 +6955,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6971,7 +6963,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6979,7 +6971,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6987,7 +6979,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6995,7 +6987,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7003,7 +6995,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7020,7 +7012,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7035,7 +7027,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf
index 7fe480272..81898bc42 100644
--- a/frontend/src/locale/messages.uk.xlf
+++ b/frontend/src/locale/messages.uk.xlf
@@ -1119,16 +1119,57 @@
91
+
+ Mined
+ Добутий
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenВперше поміченаsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1190,11 +1231,11 @@
Пришвидшеноsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1214,51 +1255,6 @@
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Комісії за пришвидшення
@@ -1268,7 +1264,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1281,7 +1277,7 @@
Немає пришвидшених транзакцій у цьому часовому діапазоніsrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1289,7 +1285,7 @@
У блоці: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1309,7 +1305,7 @@
Біля блоку: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1606,6 +1602,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1760,7 +1760,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1769,7 +1769,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1777,7 +1777,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2139,9 +2139,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- На цій адресі більше транзакцій, ніж ваш бекенд може витримати. Дізнатись більше на , налаштувати потужніший бекенд . Ви можете переглянути цю адресу на офіційному вебсайті Mempool:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2156,14 +2155,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2172,13 +2163,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6989,7 +6980,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6997,7 +6988,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7005,7 +6996,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7013,7 +7004,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7021,7 +7012,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7029,7 +7020,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7037,7 +7028,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7045,7 +7036,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7062,7 +7053,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7078,7 +7069,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf
index 738ecdcc5..75a46a063 100644
--- a/frontend/src/locale/messages.vi.xlf
+++ b/frontend/src/locale/messages.vi.xlf
@@ -1098,16 +1098,57 @@
91
+
+ Mined
+ đã đào
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seenLần đầu thấysrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1168,11 +1209,11 @@
Acceleratedsrc/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1192,51 +1233,6 @@
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
@@ -1245,7 +1241,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1257,14 +1253,14 @@
No accelerated transaction for this timeframesrc/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133At block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1283,7 +1279,7 @@
Around block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1571,6 +1567,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1717,7 +1717,7 @@
Accelerated bysrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1726,7 +1726,7 @@
of hashratesrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1734,7 +1734,7 @@
not acceleratingsrc/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2090,8 +2090,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2106,14 +2106,6 @@
address.confirmed-balance
-
- Unconfirmed balance
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs
@@ -2122,13 +2114,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6811,7 +6803,7 @@
Your transaction has been acceleratedsrc/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -6819,7 +6811,7 @@
Waiting for your transaction to appear in the mempoolsrc/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -6827,7 +6819,7 @@
Your transaction is in the mempool, but it will not be confirmed for some time.src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -6835,7 +6827,7 @@
Your transaction is near the top of the mempool, and is expected to confirm soon.src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -6843,7 +6835,7 @@
Your transaction is expected to confirm in the next blocksrc/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -6851,7 +6843,7 @@
Your transaction is confirmed!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -6859,7 +6851,7 @@
Your transaction has been replaced by a newer version!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -6867,7 +6859,7 @@
See more detailssrc/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -6884,7 +6876,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -6899,7 +6891,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf
index 026f7afae..bd82eb5c2 100644
--- a/frontend/src/locale/messages.zh.xlf
+++ b/frontend/src/locale/messages.zh.xlf
@@ -417,6 +417,7 @@
Sorry, something went wrong!
+ 对不起,出了点问题!src/app/components/accelerate-checkout/accelerate-checkout.component.html5
@@ -1152,21 +1153,63 @@
accelerated
+ 已加速src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts91
+
+ Mined
+ 已出块
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 31
+
+
+ src/app/components/acceleration-timeline/acceleration-timeline.component.html
+ 120
+
+
+ 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
+ First seen初次发现时间src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 26
-
-
- src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 120
+ 64src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1228,11 +1271,11 @@
已加速src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 40
+ 90src/app/components/acceleration-timeline/acceleration-timeline.component.html
- 136
+ 94src/app/components/block-overview-tooltip/block-overview-tooltip.component.html
@@ -1252,51 +1295,6 @@
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加速费
@@ -1306,7 +1304,7 @@
src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 74
+ 77src/app/components/graphs/graphs.component.html
@@ -1319,7 +1317,7 @@
此时间段内无加速交易src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 130
+ 133
@@ -1327,7 +1325,7 @@
在区块:src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 174
+ 177src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1347,7 +1345,7 @@
周围块:src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts
- 176
+ 179src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
@@ -1364,7 +1362,7 @@
Requests
- 要求
+ 请求src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html4
@@ -1496,7 +1494,7 @@
TXID
- TXID
+ 交易IDsrc/app/components/acceleration/accelerations-list/accelerations-list.component.html10
@@ -1647,6 +1645,10 @@
src/app/components/acceleration/accelerations-list/accelerations-list.component.html53
+
+ src/app/components/address/address.component.html
+ 252
+ src/app/components/tracker/tracker-bar.component.html4
@@ -1712,6 +1714,7 @@
(1 day)
+ (1天)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html27
@@ -1738,6 +1741,7 @@
(all time)
+ (有史以来)src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html36
@@ -1805,7 +1809,7 @@
已加速src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 25
+ 30Accelerated to hashratetransaction.accelerated-by-hashrate
@@ -1815,7 +1819,7 @@
的哈希率src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.html
- 27
+ 32accelerator.x-of-hash-rate
@@ -1824,7 +1828,7 @@
没有加速src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts
- 83
+ 85
@@ -2191,9 +2195,8 @@
address.error.loading-address-data
-
- There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead:
- 此地址上有许多交易,超出了您的后端的处理能力。有关设置更强大的后端的更多信息,请参见。请考虑在 Mempool 官方网站上查看此地址:
+
+ There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html204,207
@@ -2209,15 +2212,6 @@
address.confirmed-balance
-
- Unconfirmed balance
- 未确认余额
-
- src/app/components/address/address.component.html
- 252
-
- address.unconfirmed-balance
- Confirmed UTXOs已确认的UTXO
@@ -2227,14 +2221,13 @@
address.confirmed-utxos
-
- Unconfirmed UTXOs
- 未确认的UTXO
+
+ Pending UTXOssrc/app/components/address/address.component.html262
- address.unconfirmed-utxos
+ address.pending-utxosType
@@ -6147,6 +6140,7 @@
Error loading pool data.
+ 加载矿池数据时出错。src/app/components/pool/pool.component.html467
@@ -7051,7 +7045,7 @@
您的交易已加速src/app/components/tracker/tracker.component.html
- 141
+ 143tracker.explain.accelerated
@@ -7060,7 +7054,7 @@
等待你的交易出现在内存池中src/app/components/tracker/tracker.component.html
- 148
+ 150tracker.explain.waiting
@@ -7069,7 +7063,7 @@
您的交易已在内存池中,但一段时间内还无法确认。src/app/components/tracker/tracker.component.html
- 154
+ 156tracker.explain.pending
@@ -7078,7 +7072,7 @@
您的交易已接近内存池顶部,预计很快就会确认。src/app/components/tracker/tracker.component.html
- 160
+ 162tracker.explain.soon
@@ -7087,7 +7081,7 @@
您的交易预计将在下一个区块中确认src/app/components/tracker/tracker.component.html
- 166
+ 168tracker.explain.next-block
@@ -7096,7 +7090,7 @@
您的交易已确认!src/app/components/tracker/tracker.component.html
- 172
+ 174tracker.explain.confirmed
@@ -7105,7 +7099,7 @@
您的交易已被新版本取代!src/app/components/tracker/tracker.component.html
- 178
+ 180tracker.explain.replaced
@@ -7114,7 +7108,7 @@
查看更多详细信息src/app/components/tracker/tracker.component.html
- 186
+ 189accelerator.show-more-details
@@ -7131,7 +7125,7 @@
src/app/components/transaction/transaction.component.ts
- 497
+ 499
@@ -7147,7 +7141,7 @@
src/app/components/transaction/transaction.component.ts
- 501
+ 503
@@ -10058,6 +10052,7 @@
Your balance is too low.Please top up your account.
+ 您的余额太少.请充值.src/app/shared/components/mempool-error/mempool-error.component.html9