diff --git a/backend/src/repositories/BlocksAuditsRepository.ts b/backend/src/repositories/BlocksAuditsRepository.ts index abf26aa29..3b3f79ce0 100644 --- a/backend/src/repositories/BlocksAuditsRepository.ts +++ b/backend/src/repositories/BlocksAuditsRepository.ts @@ -132,11 +132,12 @@ class BlocksAuditRepositories { firstSeen = tx.time; } }); + const wasSeen = blockAudit.version === 1 ? !blockAudit.unseenTxs.includes(txid) : (isExpected || isPrioritized || isAccelerated); return { - seen: isExpected || isPrioritized || isAccelerated, + seen: wasSeen, expected: isExpected, - added: isAdded, + added: isAdded && (blockAudit.version === 0 || !wasSeen), prioritized: isPrioritized, conflict: isConflict, accelerated: isAccelerated, diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index aaa53b8ba..cef630984 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -151,7 +151,7 @@ export const languages: Language[] = [ { code: 'fr', name: 'Français' }, // French // { code: 'gl', name: 'Galego' }, // Galician { code: 'ko', name: '한국어' }, // Korean -// { code: 'hr', name: 'Hrvatski' }, // Croatian + { code: 'hr', name: 'Hrvatski' }, // Croatian // { code: 'id', name: 'Bahasa Indonesia' },// Indonesian { code: 'hi', name: 'हिन्दी' }, // Hindi { code: 'ne', name: 'नेपाली' }, // Nepalese diff --git a/frontend/src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts b/frontend/src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts index 7506fb6fc..f95bb71c8 100644 --- a/frontend/src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts +++ b/frontend/src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts @@ -67,13 +67,17 @@ export class ActiveAccelerationBox implements OnChanges { const acceleratingPools = (poolList || []).filter(id => pools[id]).sort((a,b) => pools[a].lastEstimatedHashrate - pools[b].lastEstimatedHashrate); const totalAcceleratedHashrate = acceleratingPools.reduce((total, pool) => total + pools[pool].lastEstimatedHashrate, 0); - const lightenStep = acceleratingPools.length ? (0.48 / acceleratingPools.length) : 0; + // Find the first pool with at least 1% of the total network hashrate + const firstSignificantPool = acceleratingPools.findIndex(pool => pools[pool].lastEstimatedHashrate > this.miningStats.lastEstimatedHashrate / 100); + const numSignificantPools = acceleratingPools.length - firstSignificantPool; acceleratingPools.forEach((poolId, index) => { const pool = pools[poolId]; const poolShare = ((pool.lastEstimatedHashrate / this.miningStats.lastEstimatedHashrate) * 100).toFixed(1); data.push(getDataItem( pool.lastEstimatedHashrate, - toRGB(lighten({ r: 147, g: 57, b: 244 }, index * lightenStep)), + index >= firstSignificantPool + ? toRGB(lighten({ r: 147, g: 57, b: 244 }, 1 - (index - firstSignificantPool) / (numSignificantPools - 1))) + : 'white', `${pool.name} (${poolShare}%)`, true, ) as PieSeriesOption); diff --git a/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.html b/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.html new file mode 100644 index 000000000..bf0080344 --- /dev/null +++ b/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.html @@ -0,0 +1,5 @@ +
+
+ + +
+
\ No newline at end of file diff --git a/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.scss b/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.scss new file mode 100644 index 000000000..35f6e32d5 --- /dev/null +++ b/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.scss @@ -0,0 +1,45 @@ +.sparkles { + position: absolute; + top: var(--block-size); + height: 50px; + right: 0; +} + +.sparkle { + position: absolute; + color: rgba(152, 88, 255, 0.75); + opacity: 0; + transform: scale(0.8) rotate(0deg); + animation: pop ease 2000ms forwards, sparkle ease 500ms infinite; +} + +.inner-sparkle { + display: block; +} + +@keyframes pop { + 0% { + transform: scale(0.8) rotate(0deg); + opacity: 0; + } + 20% { + transform: scale(1) rotate(72deg); + opacity: 1; + } + 100% { + transform: scale(0) rotate(360deg); + opacity: 0; + } +} + +@keyframes sparkle { + 0% { + color: rgba(152, 88, 255, 0.75); + } + 50% { + color: rgba(198, 162, 255, 0.75); + } + 100% { + color: rgba(152, 88, 255, 0.75); + } +} \ No newline at end of file diff --git a/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.ts b/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.ts new file mode 100644 index 000000000..2316c996d --- /dev/null +++ b/frontend/src/app/components/acceleration/sparkles/acceleration-sparkles.component.ts @@ -0,0 +1,73 @@ +import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, Input, OnChanges, SimpleChanges, ViewChild } from '@angular/core'; + +@Component({ + selector: 'app-acceleration-sparkles', + templateUrl: './acceleration-sparkles.component.html', + styleUrls: ['./acceleration-sparkles.component.scss'], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class AccelerationSparklesComponent implements OnChanges { + @Input() arrow: ElementRef; + @Input() run: boolean = false; + + @ViewChild('sparkleAnchor') + sparkleAnchor: ElementRef; + + constructor( + private cd: ChangeDetectorRef, + ) {} + + endTimeout: any; + lastSparkle: number = 0; + sparkleWidth: number = 0; + sparkles: any[] = []; + + ngOnChanges(changes: SimpleChanges): void { + if (changes.run) { + if (this.endTimeout) { + clearTimeout(this.endTimeout); + this.endTimeout = null; + } + if (this.run) { + this.doSparkle(); + } else { + this.endTimeout = setTimeout(() => { + this.sparkles = []; + }, 2000); + } + } + } + + doSparkle(): void { + if (this.run) { + const now = performance.now(); + if (now - this.lastSparkle > 20) { + this.lastSparkle = now; + if (this.arrow?.nativeElement && this.sparkleAnchor?.nativeElement) { + const anchor = this.sparkleAnchor.nativeElement.getBoundingClientRect().right; + const right = this.arrow.nativeElement.getBoundingClientRect().right; + const dx = (anchor - right) + 30; + const numSparkles = Math.ceil(Math.random() * 3); + for (let i = 0; i < numSparkles; i++) { + this.sparkles.push({ + style: { + right: (dx + (Math.random() * 10)) + 'px', + top: (15 + (Math.random() * 30)) + 'px', + }, + rotation: { + transform: `rotate(${Math.random() * 360}deg)`, + } + }); + } + while (this.sparkles.length > 200) { + this.sparkles.shift(); + } + this.cd.markForCheck(); + } + } + requestAnimationFrame(() => { + this.doSparkle(); + }); + } + } +} \ No newline at end of file diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html index 24f229598..b979e032b 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -51,7 +51,8 @@ -
+ +
diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts index 13608bb73..a0958ec40 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts @@ -1,4 +1,4 @@ -import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef, HostListener, Input, OnChanges, SimpleChanges, Output, EventEmitter } from '@angular/core'; +import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef, HostListener, Input, OnChanges, SimpleChanges, Output, EventEmitter, ViewChild, ElementRef } from '@angular/core'; import { Subscription, Observable, of, combineLatest } from 'rxjs'; import { MempoolBlock } from '../../interfaces/websocket.interface'; import { StateService } from '../../services/state.service'; @@ -77,6 +77,9 @@ export class MempoolBlocksComponent implements OnInit, OnChanges, OnDestroy { maxArrowPosition = 0; rightPosition = 0; transition = 'background 2s, right 2s, transform 1s'; + @ViewChild('arrowUp') + arrowElement: ElementRef; + acceleratingArrow: boolean = false; markIndex: number; txPosition: MempoolPosition; @@ -201,6 +204,7 @@ export class MempoolBlocksComponent implements OnInit, OnChanges, OnDestroy { this.markBlocksSubscription = this.stateService.markBlock$ .subscribe((state) => { + const oldTxPosition = this.txPosition; this.markIndex = undefined; this.txPosition = undefined; this.txFeePerVSize = undefined; @@ -209,6 +213,12 @@ export class MempoolBlocksComponent implements OnInit, OnChanges, OnDestroy { } if (state.mempoolPosition) { this.txPosition = state.mempoolPosition; + if (this.txPosition.accelerated && !oldTxPosition.accelerated) { + this.acceleratingArrow = true; + setTimeout(() => { + this.acceleratingArrow = false; + }, 2000); + } } if (state.txFeePerVSize) { this.txFeePerVSize = state.txFeePerVSize; diff --git a/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html b/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html index 6aa7cf7c0..3dfb2059d 100644 --- a/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html +++ b/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -43,7 +43,7 @@ Output Fee - #{{ line.index + 1 }} + #{{ line.index }} @@ -73,7 +73,7 @@

-

Output  #{{ line.vout + 1 }} +

Output  #{{ line.vout }} @@ -83,7 +83,7 @@

-

Input  #{{ line.vin + 1 }} +

Input  #{{ line.vin }} diff --git a/frontend/src/app/shared/shared.module.ts b/frontend/src/app/shared/shared.module.ts index 89bcfafbb..2d5b4d0f9 100644 --- a/frontend/src/app/shared/shared.module.ts +++ b/frontend/src/app/shared/shared.module.ts @@ -100,6 +100,7 @@ import { MempoolErrorComponent } from './components/mempool-error/mempool-error. import { AccelerationsListComponent } from '../components/acceleration/accelerations-list/accelerations-list.component'; import { PendingStatsComponent } from '../components/acceleration/pending-stats/pending-stats.component'; import { AccelerationStatsComponent } from '../components/acceleration/acceleration-stats/acceleration-stats.component'; +import { AccelerationSparklesComponent } from '../components/acceleration/sparkles/acceleration-sparkles.component'; import { BlockViewComponent } from '../components/block-view/block-view.component'; import { EightBlocksComponent } from '../components/eight-blocks/eight-blocks.component'; @@ -225,6 +226,7 @@ import { OnlyVsizeDirective, OnlyWeightDirective } from './components/weight-dir AccelerationsListComponent, AccelerationStatsComponent, PendingStatsComponent, + AccelerationSparklesComponent, HttpErrorComponent, TwitterWidgetComponent, FaucetComponent, @@ -355,6 +357,7 @@ import { OnlyVsizeDirective, OnlyWeightDirective } from './components/weight-dir AccelerationsListComponent, AccelerationStatsComponent, PendingStatsComponent, + AccelerationSparklesComponent, HttpErrorComponent, TwitterWidgetComponent, TwitterLogin, diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index df4f5f4e0..e0f2ceb89 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -2806,6 +2806,7 @@ See Bitcoin feerates visualized over time, including minimum and maximum feerates per block along with feerates at various percentiles. + Pogledajte bitcoin naknade vizualizirane tijekom vremena, uključujući minimalne i maksimalne naknade po bloku zajedno s naknadama na različitim postocima. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 73 @@ -2813,6 +2814,7 @@ Block Fees + Naknade bloka src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -2829,6 +2831,7 @@ See the average mining fees earned per Bitcoin block visualized in BTC and USD over time. + Pogledajte prosječne rudarske naknade zarađene po Bitcoin bloku vizualizirane u BTC-u i USD-u tijekom vremena. src/app/components/block-fees-graph/block-fees-graph.component.ts 70 @@ -2836,6 +2839,7 @@ Indexing blocks + Indeksiranje blokova src/app/components/block-fees-graph/block-fees-graph.component.ts 119 @@ -2871,6 +2875,7 @@ Block Fees Vs Subsidy + Blok naknade vs subsidy src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.html 6 @@ -2887,6 +2892,7 @@ See the mining fees earned per Bitcoin block compared to the Bitcoin block subsidy, visualized in BTC and USD over time. + Pogledajte naknade za rudarenje zarađene po bloku Bitcoina u usporedbi sa Bitcoin blok subsidy, vizualizirane u BTC-u i USD-u tijekom vremena. src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts 79 @@ -2894,6 +2900,7 @@ At block + U bloku src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts 185 @@ -2901,6 +2908,7 @@ Around block + Oko bloka src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts 187 @@ -2908,6 +2916,7 @@ select filter categories to highlight matching transactions + odaberite kategorije filtera za označavanje odgovarajućih transakcija src/app/components/block-filters/block-filters.component.html 2 @@ -2916,6 +2925,7 @@ beta + beta src/app/components/block-filters/block-filters.component.html 3 @@ -2940,6 +2950,7 @@ Match + Podudaranje src/app/components/block-filters/block-filters.component.html 19 @@ -2952,6 +2963,7 @@ Any + Bilo koji src/app/components/block-filters/block-filters.component.html 25 @@ -2960,6 +2972,7 @@ Tint + Nijansa src/app/components/block-filters/block-filters.component.html 30 @@ -2968,6 +2981,7 @@ Classic + klasična src/app/components/block-filters/block-filters.component.html 33 @@ -2980,6 +2994,7 @@ Age + Dob src/app/components/block-filters/block-filters.component.html 36 @@ -2988,6 +3003,7 @@ Block Health + Zdravlje bloka src/app/components/block-health-graph/block-health-graph.component.html 6 @@ -3004,6 +3020,7 @@ See Bitcoin block health visualized over time. Block health is a measure of how many expected transactions were included in an actual mined block. Expected transactions are determined using Mempool's re-implementation of Bitcoin Core's transaction selection algorithm. + Pogledajte zdravlje Bitcoin bloka vizualizirano tijekom vremena. Zdravlje bloka mjera je koliko je očekivanih transakcija uključeno u stvarni izrudareni blok. Očekivane transakcije određuju se pomoću Mempoolove re-implementacije Bitcoin Core algoritma za odabir transakcija. src/app/components/block-health-graph/block-health-graph.component.ts 64 @@ -3011,6 +3028,7 @@ No data to display yet. Try again later. + Još nema podataka za prikaz. Pokušajte ponovno kasnije. src/app/components/block-health-graph/block-health-graph.component.ts 109 @@ -3034,6 +3052,7 @@ Health + Zdravlje src/app/components/block-health-graph/block-health-graph.component.ts 190 @@ -3057,6 +3076,7 @@ not available + nije dostupno src/app/components/block-overview-graph/block-overview-graph.component.html 7 @@ -3065,6 +3085,7 @@ Your browser does not support this feature. + Vaš preglednik ne podržava ovu značajku. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -3128,6 +3149,7 @@ Effective fee rate + Efektivna stopa naknade src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 52 @@ -3145,6 +3167,7 @@ Weight + Težina src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 63 @@ -3162,6 +3185,7 @@ Audit status + Status audita src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 67 @@ -3170,6 +3194,7 @@ Removed + Uklonjeno src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -3183,6 +3208,7 @@ Marginal fee rate + Granična stopa naknade src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 72 @@ -3195,6 +3221,7 @@ High sigop count + Veliki broj sigopa src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 73 @@ -3203,6 +3230,7 @@ Recently broadcasted + Nedavno emitirano src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 74 @@ -3211,6 +3239,7 @@ Recently CPFP'd + Nedavno CPFP src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 75 @@ -3219,6 +3248,7 @@ Added + Dodano src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -3232,6 +3262,7 @@ Prioritized + Prioritizirano src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -3245,6 +3276,7 @@ Conflict + Konflikt src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -3258,6 +3290,7 @@ Block Rewards + Nagrade bloka src/app/components/block-rewards-graph/block-rewards-graph.component.html 7 @@ -3274,6 +3307,7 @@ See Bitcoin block rewards in BTC and USD visualized over time. Block rewards are the total funds miners earn from the block subsidy and fees. + Pogledajte nagrade Bitcoin blokova u BTC-u i USD-u vizualizirane tijekom vremena. Nagrade za blok su ukupna sredstva koja rudari zarade od blok subsidy-a i naknada. src/app/components/block-rewards-graph/block-rewards-graph.component.ts 68 @@ -3281,6 +3315,7 @@ Block Sizes and Weights + Veličine i težine blokova src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html 5 @@ -3297,6 +3332,7 @@ See Bitcoin block sizes (MB) and block weights (weight units) visualized over time. + Pogledajte veličine Bitcoin blokova (MB) i težine blokova (jedinice težine) vizualizirane tijekom vremena. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 65 @@ -3304,6 +3340,7 @@ Size + Veličina src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 187 @@ -3355,6 +3392,7 @@ Weight + Težina src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 195 @@ -3390,6 +3428,7 @@ Size per weight + Veličina po težini src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 203 @@ -3401,6 +3440,7 @@ Block : + Blok : src/app/components/block-view/block-view.component.ts 110 @@ -3416,6 +3456,7 @@ See size, weight, fee range, included transactions, and more for Liquid block (). + Pogledaj veličinu, težinu, raspon naknada, uključene transakcije i više za Liquid blok (). src/app/components/block-view/block-view.component.ts 112 @@ -3431,6 +3472,7 @@ See size, weight, fee range, included transactions, audit (expected v actual), and more for Bitcoin block (). + Pogledaj veličinu, težinu, raspon naknada, uključene transakcije, audit (očekivano v stvarno) i više za Bitcoin blok ( ). src/app/components/block-view/block-view.component.ts 114 @@ -3446,6 +3488,7 @@ Genesis + Genesis src/app/components/block/block-preview.component.html 10 @@ -3457,6 +3500,7 @@ Timestamp + Timestamp src/app/components/block/block-preview.component.html 26 @@ -3489,6 +3533,7 @@ Median fee + Srednja naknada src/app/components/block/block-preview.component.html 36 @@ -3505,6 +3550,7 @@ Total fees + Ukupne naknade src/app/components/block/block-preview.component.html 41 @@ -3538,6 +3584,7 @@ Miner + Rudar src/app/components/block/block-preview.component.html 53 @@ -3554,6 +3601,7 @@ transaction + transakcija src/app/components/block/block-transactions.component.html 4 @@ -3574,6 +3622,7 @@ transactions + transakcije src/app/components/block/block-transactions.component.html 5 @@ -3594,6 +3643,7 @@ Error loading data. + Pogreška pri učitavanju podataka. src/app/components/block/block-transactions.component.html 16 @@ -3614,6 +3664,7 @@ This block does not belong to the main chain, it has been replaced by: + Ovaj blok ne pripada glavnom lancu, zamijenjen je s: src/app/components/block/block.component.html 5 @@ -3623,6 +3674,7 @@ Previous Block + Prethodni blok src/app/components/block/block.component.html 19 @@ -3631,6 +3683,7 @@ Stale + Ustajao src/app/components/block/block.component.html 30 @@ -3640,6 +3693,7 @@ Hash + Haš src/app/components/block/block.component.html 44 @@ -3648,6 +3702,7 @@ Unknown + Nepoznato src/app/components/block/block.component.html 73 @@ -3704,6 +3759,7 @@ Fee span + Raspon naknada src/app/components/block/block.component.html 132 @@ -3716,6 +3772,7 @@ Based on average native segwit transaction of 140 vBytes + Na temelju prosječne native segwit transakcije od 140 vByte src/app/components/block/block.component.html 140 @@ -3744,6 +3801,7 @@ Subsidy + fees + Subsidy + naknade src/app/components/block/block.component.html 162 @@ -3757,6 +3815,7 @@ Expected + Očekivano src/app/components/block/block.component.html 225 @@ -3765,6 +3824,7 @@ Actual + Stvarno src/app/components/block/block.component.html 227 @@ -3773,6 +3833,7 @@ Expected Block + Očekivani blok src/app/components/block/block.component.html 231 @@ -3781,6 +3842,7 @@ Actual Block + Stvarni blok src/app/components/block/block.component.html 246 @@ -3789,6 +3851,7 @@ Version + Verzija src/app/components/block/block.component.html 273 @@ -3801,6 +3864,7 @@ Taproot + Taproot src/app/components/block/block.component.html 274 @@ -3830,6 +3894,7 @@ Bits + Bitovi src/app/components/block/block.component.html 277 @@ -3838,6 +3903,7 @@ Merkle root + Merkle root src/app/components/block/block.component.html 281 @@ -3846,6 +3912,7 @@ Difficulty + Težina src/app/components/block/block.component.html 292 @@ -3874,6 +3941,7 @@ Nonce + Nonce src/app/components/block/block.component.html 296 @@ -3882,6 +3950,7 @@ Block Header Hex + Hex zaglavlja bloka src/app/components/block/block.component.html 300 @@ -3890,6 +3959,7 @@ Audit + Audit src/app/components/block/block.component.html 318 @@ -3949,6 +4019,7 @@ Error loading block data. + Pogreška pri učitavanju podataka bloka. src/app/components/block/block.component.html 367 @@ -3957,6 +4028,7 @@ Why is this block empty? + Zašto je ovaj blok prazan? src/app/components/block/block.component.html 381 @@ -3965,6 +4037,7 @@ Acceleration fees paid out-of-band + Naknade za ubrzanje plaćene izvan pojasa src/app/components/block/block.component.html 413 @@ -3973,6 +4046,7 @@ Blocks + Blokovi src/app/components/blocks-list/blocks-list.component.html 4 @@ -3997,6 +4071,7 @@ Height + Visina src/app/components/blocks-list/blocks-list.component.html 12 @@ -4025,6 +4100,7 @@ Reward + Nagrada src/app/components/blocks-list/blocks-list.component.html 19 @@ -4057,6 +4133,7 @@ Fees + Naknade src/app/components/blocks-list/blocks-list.component.html 20 @@ -4073,6 +4150,7 @@ TXs + TX src/app/components/blocks-list/blocks-list.component.html 23 @@ -4109,6 +4187,7 @@ See the most recent Liquid blocks along with basic stats such as block height, block size, and more. + Pogledajte najnovije Liquid blokove zajedno s osnovnim statistikama kao što su visina bloka, veličina bloka i više. src/app/components/blocks-list/blocks-list.component.ts 71 @@ -4116,6 +4195,7 @@ See the most recent Bitcoin blocks along with basic stats such as block height, block reward, block size, and more. + Pogledajte najnovije Bitcoin blokove zajedno s osnovnim statistikama kao što su visina bloka, nagrada za blok, veličina bloka i više. src/app/components/blocks-list/blocks-list.component.ts 73 @@ -4123,6 +4203,7 @@ Calculator + Kalkulator src/app/components/calculator/calculator.component.html 3 @@ -4135,6 +4216,7 @@ Copied! + Kopirano! src/app/components/clipboard/clipboard.component.ts 19 @@ -4142,6 +4224,7 @@ Price + Cijena src/app/components/clock/clock.component.html 41 @@ -4149,6 +4232,7 @@ High Priority + Visoki prioritet src/app/components/clock/clock.component.html 47 @@ -4165,6 +4249,7 @@ Memory Usage + Upotreba memorije src/app/components/clock/clock.component.html 65 @@ -4182,6 +4267,7 @@ Unconfirmed + Nepotvrđeno src/app/components/clock/clock.component.html 69 @@ -4203,6 +4289,7 @@ Transaction Fees + Transakcijske naknade src/app/components/custom-dashboard/custom-dashboard.component.html 8 @@ -4215,6 +4302,7 @@ Incoming Transactions + Dolazne transakcije src/app/components/custom-dashboard/custom-dashboard.component.html 55 @@ -4231,6 +4319,7 @@ Minimum fee + Minimalna naknada src/app/components/custom-dashboard/custom-dashboard.component.html 71 @@ -4244,6 +4333,7 @@ Purging + Purging src/app/components/custom-dashboard/custom-dashboard.component.html 72 @@ -4257,6 +4347,7 @@ Recent Replacements + Nedavne zamjene src/app/components/custom-dashboard/custom-dashboard.component.html 100 @@ -4269,6 +4360,7 @@ Previous fee + Prethodna naknada src/app/components/custom-dashboard/custom-dashboard.component.html 107 @@ -4281,6 +4373,7 @@ New fee + Nova naknada src/app/components/custom-dashboard/custom-dashboard.component.html 108 @@ -4293,6 +4386,7 @@ Full RBF + Full RBF src/app/components/custom-dashboard/custom-dashboard.component.html 122 @@ -4313,6 +4407,7 @@ RBF + RBF src/app/components/custom-dashboard/custom-dashboard.component.html 123 @@ -4342,6 +4437,7 @@ Recent Blocks + Nedavni blokovi src/app/components/custom-dashboard/custom-dashboard.component.html 147 @@ -4362,6 +4458,7 @@ Recent Transactions + Nedavne transakcije src/app/components/custom-dashboard/custom-dashboard.component.html 190 @@ -4374,6 +4471,7 @@ Treasury + Riznica src/app/components/custom-dashboard/custom-dashboard.component.html 228 @@ -4382,6 +4480,7 @@ Treasury Transactions + Rizničke transakcije src/app/components/custom-dashboard/custom-dashboard.component.html 251 @@ -4390,6 +4489,7 @@ X Timeline + X Timeline src/app/components/custom-dashboard/custom-dashboard.component.html 265 @@ -4398,6 +4498,7 @@ Consolidation + Konsolidacija src/app/components/custom-dashboard/custom-dashboard.component.ts 72 @@ -4413,6 +4514,7 @@ Coinjoin + Coinjoin src/app/components/custom-dashboard/custom-dashboard.component.ts 73 @@ -4428,6 +4530,7 @@ Data + Podaci src/app/components/custom-dashboard/custom-dashboard.component.ts 74 @@ -4443,6 +4546,7 @@ Adjusted + Prilagođeno src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 6 @@ -4451,6 +4555,7 @@ Change + Promijeniti src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 8 @@ -4459,6 +4564,7 @@ Difficulty Adjustment + Prilagodba težine src/app/components/difficulty-mining/difficulty-mining.component.html 1 @@ -4475,6 +4581,7 @@ Remaining + Preostalo src/app/components/difficulty-mining/difficulty-mining.component.html 7 @@ -4487,6 +4594,7 @@ blocks + blokovi src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -4511,6 +4619,7 @@ block + blok src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 @@ -4527,6 +4636,7 @@ Estimate + Procjena src/app/components/difficulty-mining/difficulty-mining.component.html 16 @@ -4539,6 +4649,7 @@ Previous + Prethodno src/app/components/difficulty-mining/difficulty-mining.component.html 28 @@ -4551,6 +4662,7 @@ Current Period + Tekuće razdoblje src/app/components/difficulty-mining/difficulty-mining.component.html 40 @@ -4559,6 +4671,7 @@ Next Halving + Sljedeće prepolovljenje src/app/components/difficulty-mining/difficulty-mining.component.html 47 @@ -4571,6 +4684,7 @@ blocks expected + blokova očekivano src/app/components/difficulty/difficulty-tooltip.component.html 50 @@ -4579,6 +4693,7 @@ block expected + blok očekivan src/app/components/difficulty/difficulty-tooltip.component.html 51 @@ -4587,6 +4702,7 @@ blocks mined + blokova izrudareno src/app/components/difficulty/difficulty-tooltip.component.html 52 @@ -4595,6 +4711,7 @@ block mined + blok izrudaren src/app/components/difficulty/difficulty-tooltip.component.html 53 @@ -4603,6 +4720,7 @@ blocks remaining + blokova preostalo src/app/components/difficulty/difficulty-tooltip.component.html 54 @@ -4611,6 +4729,7 @@ block remaining + preostali blok src/app/components/difficulty/difficulty-tooltip.component.html 55 @@ -4619,6 +4738,7 @@ blocks ahead + blokova ispred src/app/components/difficulty/difficulty-tooltip.component.html 56 @@ -4627,6 +4747,7 @@ block ahead + blok ispred src/app/components/difficulty/difficulty-tooltip.component.html 57 @@ -4635,6 +4756,7 @@ blocks behind + blokova iza src/app/components/difficulty/difficulty-tooltip.component.html 58 @@ -4643,6 +4765,7 @@ block behind + blok iza src/app/components/difficulty/difficulty-tooltip.component.html 59 @@ -4651,6 +4774,7 @@ Halving Countdown + Odbrojavanje do prepolovljenja src/app/components/difficulty/difficulty.component.html 2 @@ -4659,6 +4783,7 @@ difficulty + težina src/app/components/difficulty/difficulty.component.html 7 @@ -4667,6 +4792,7 @@ halving + prepolovljenje src/app/components/difficulty/difficulty.component.html 10 @@ -4675,6 +4801,7 @@ Average block time + Prosječno vrijeme bloka src/app/components/difficulty/difficulty.component.html 50 @@ -4683,6 +4810,7 @@ New subsidy + Nova subvencija src/app/components/difficulty/difficulty.component.html 103 @@ -4691,6 +4819,7 @@ Blocks remaining + Blokova preostalo src/app/components/difficulty/difficulty.component.html 111 @@ -4699,6 +4828,7 @@ Block remaining + Preostali blok src/app/components/difficulty/difficulty.component.html 112 @@ -4707,6 +4837,7 @@ Testnet4 Faucet + Testnet4 Faucet src/app/components/faucet/faucet.component.html 4 @@ -4715,6 +4846,7 @@ Amount (sats) + Iznos (sat) src/app/components/faucet/faucet.component.html 51 @@ -4723,6 +4855,7 @@ Request Testnet4 Coins + Zatraži Testnet4 coinove src/app/components/faucet/faucet.component.html 70 @@ -4731,6 +4864,7 @@ Either 2x the minimum, or the Low Priority rate (whichever is lower) + Ili 2x minimalna ili stopa niskog prioriteta (što god je niže) src/app/components/fees-box/fees-box.component.html 4 @@ -4739,6 +4873,7 @@ No Priority + Bez prioriteta src/app/components/fees-box/fees-box.component.html 4 @@ -4751,6 +4886,7 @@ Usually places your transaction in between the second and third mempool blocks + Obično smješta vašu transakciju između drugog i trećeg bloka mempoola src/app/components/fees-box/fees-box.component.html 8 @@ -4759,6 +4895,7 @@ Low Priority + Nizak prioritet src/app/components/fees-box/fees-box.component.html 8 @@ -4771,6 +4908,7 @@ Usually places your transaction in between the first and second mempool blocks + Obično smješta vašu transakciju između prvog i drugog bloka mempoola src/app/components/fees-box/fees-box.component.html 9 @@ -4779,6 +4917,7 @@ Medium Priority + Srednji prioritet src/app/components/fees-box/fees-box.component.html 9 @@ -4791,6 +4930,7 @@ Places your transaction in the first mempool block + Smješta vašu transakciju u prvi mempool blok src/app/components/fees-box/fees-box.component.html 10 @@ -4799,6 +4939,7 @@ Backend is synchronizing + Pozadina se sinkronizira src/app/components/footer/footer.component.html 8 @@ -4807,6 +4948,7 @@ vB/s + vB/s src/app/components/footer/footer.component.html 13 @@ -4816,6 +4958,7 @@ WU/s + WU/s src/app/components/footer/footer.component.html 14 @@ -4825,6 +4968,7 @@ Mempool size + Veličina Mempoola src/app/components/footer/footer.component.html 24 @@ -4834,6 +4978,7 @@ Mining + Rudarenje src/app/components/graphs/graphs.component.html 7 @@ -4842,6 +4987,7 @@ Pools Ranking + Poredak pool-ova src/app/components/graphs/graphs.component.html 10 @@ -4854,6 +5000,7 @@ Pools Dominance + Dominacija pool-ova src/app/components/graphs/graphs.component.html 12 @@ -4866,6 +5013,7 @@ Hashrate & Difficulty + Hashrate i težina src/app/components/graphs/graphs.component.html 14 @@ -4882,6 +5030,7 @@ Lightning + Lightning src/app/components/graphs/graphs.component.html 31 @@ -4890,6 +5039,7 @@ Lightning Nodes Per Network + Lightning nodova po mreži src/app/components/graphs/graphs.component.html 34 @@ -4910,6 +5060,7 @@ Lightning Network Capacity + Kapacitet Lightning mreže src/app/components/graphs/graphs.component.html 36 @@ -4930,6 +5081,7 @@ Lightning Nodes Per ISP + Lightning nodova po ISP-u src/app/components/graphs/graphs.component.html 38 @@ -4942,6 +5094,7 @@ Lightning Nodes Per Country + Lightning nodovi po zemlji src/app/components/graphs/graphs.component.html 40 @@ -4958,6 +5111,7 @@ Lightning Nodes World Map + Karta svijeta lightning nodova src/app/components/graphs/graphs.component.html 42 @@ -4974,6 +5128,7 @@ Lightning Nodes Channels World Map + Karta svijeta kanala lightning nodova src/app/components/graphs/graphs.component.html 44 @@ -4986,6 +5141,7 @@ Hashrate + Hashrate src/app/components/hashrate-chart/hashrate-chart.component.html 8 @@ -5022,6 +5178,7 @@ See hashrate and difficulty for the Bitcoin network visualized over time. + Pogledajte hashrate i težinu za Bitcoin mrežu vizualiziranu tijekom vremena. src/app/components/hashrate-chart/hashrate-chart.component.ts 76 @@ -5029,6 +5186,7 @@ Hashrate (MA) + Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts 318 @@ -5040,6 +5198,7 @@ Pools Historical Dominance + Povijesna dominacija pool-ova src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 74 @@ -5047,6 +5206,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + Pogledajte vizualizaciju dominacije pool-ova za rudarenje Bitcoina tijekom vremena: pogledajte kako je udio najvećih pool-ova za rudarenje u ukupnom hashrateu fluktuirao tijekom vremena. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -5054,6 +5214,7 @@ Indexing network hashrate + Indeksiranje hashrate-a mreže src/app/components/indexing-progress/indexing-progress.component.html 2 @@ -5061,6 +5222,7 @@ Indexing pools hashrate + Indeksiranje hashrate-a pool-ova src/app/components/indexing-progress/indexing-progress.component.html 3 @@ -5068,6 +5230,7 @@ Offline + Offline src/app/components/liquid-master-page/liquid-master-page.component.html 41 @@ -5084,6 +5247,7 @@ Reconnecting... + Ponovno povezivanje... src/app/components/liquid-master-page/liquid-master-page.component.html 42 @@ -5100,6 +5264,7 @@ Layer 2 Networks + Mreže sloja 2 src/app/components/liquid-master-page/liquid-master-page.component.html 56 @@ -5108,6 +5273,7 @@ Dashboard + Nadzorna ploča src/app/components/liquid-master-page/liquid-master-page.component.html 65 @@ -5120,6 +5286,7 @@ Graphs + Grafikoni src/app/components/liquid-master-page/liquid-master-page.component.html 71 @@ -5136,6 +5303,7 @@ Documentation + Dokumentacija src/app/components/liquid-master-page/liquid-master-page.component.html 82 @@ -5152,6 +5320,7 @@ Non-Dust Expired + Non-Dust Isteklo src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -5160,6 +5329,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Ukupan iznos BTC-a koji se čuva u non-dust UTXO-ima Federacije kojima je isteklo vremensko zaključavanje src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -5168,6 +5338,7 @@ UTXOs + UTXO-ovi src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -5184,6 +5355,7 @@ Total Expired + Ukupno isteklo src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -5192,6 +5364,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + Ukupan iznos BTC-a koji se čuva u federacijskim UTXO-ima kojima je isteklo vremensko zaključavanje src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -5200,6 +5373,7 @@ Liquid Federation Wallet + Liquid Federacija novčanik src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -5220,6 +5394,7 @@ addresses + adrese src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -5228,6 +5403,7 @@ Output + Output src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 8 @@ -5244,6 +5420,7 @@ Related Peg-In + Povezani Peg-In src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -5252,6 +5429,7 @@ Expires in + Istječe za src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -5260,6 +5438,7 @@ Expired since + Isteklo od src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -5268,6 +5447,7 @@ Dust + Dust src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -5276,6 +5456,7 @@ Change output + Output ostatka src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -5284,6 +5465,7 @@ blocks + blokovi src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -5292,6 +5474,7 @@ Timelock-Expired UTXOs + UTXO-i s istekom vremenskog zaključavanja src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -5300,6 +5483,7 @@ Addresses + Adrese src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 15 @@ -5324,6 +5508,7 @@ Recent Peg-In / Out's + Nedavni Peg-In / Out-ovi src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -5344,6 +5529,7 @@ Fund / Redemption Tx + Fund/ Otkup Tx src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -5352,6 +5538,7 @@ BTC Address + BTC adresa src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -5360,6 +5547,7 @@ Peg out in progress... + Peg out u tijeku... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -5368,6 +5556,7 @@ 24h Peg-In Volume + 24h Peg-In Volumen src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -5376,6 +5565,7 @@ Peg-Ins + Peg-In-ovi src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -5384,6 +5574,7 @@ 24h Peg-Out Volume + 24-satni volumen Peg-Out src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -5392,6 +5583,7 @@ Peg-Outs + Peg-Out-ovi src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -5400,6 +5592,7 @@ Unpeg + Otpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -5408,6 +5601,7 @@ Number of times that the Federation's BTC holdings fall below 95% of the total L-BTC supply + Koliko puta BTC posjed Federacije padne ispod 95% ukupne ponude L-BTC-a src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 6 @@ -5416,6 +5610,7 @@ Unpeg Event + Unpeg događaj src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -5424,6 +5619,7 @@ Avg Peg Ratio + Prosječni omjer pega src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -5432,6 +5628,7 @@ Emergency Keys + Ključevi za hitnoće src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -5440,6 +5637,7 @@ usage + korištenje src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -5448,6 +5646,7 @@ Assets vs Liabilities + Imovina vs obveze src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 163 @@ -5455,6 +5654,7 @@ L-BTC in circulation + L-BTC u opticaju src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 3 @@ -5463,6 +5663,7 @@ As of block + Od bloka src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -5475,6 +5676,7 @@ Mining Dashboard + Nadzor rudarenja src/app/components/master-page/master-page.component.html 92 @@ -5491,6 +5693,7 @@ Lightning Explorer + Lightning explorer src/app/components/master-page/master-page.component.html 95 @@ -5507,6 +5710,7 @@ Faucet + Faucet src/app/components/master-page/master-page.component.html 105 @@ -5515,6 +5719,7 @@ See stats for transactions in the mempool: fee range, aggregate size, and more. Mempool blocks are updated in real-time as the network receives new transactions. + Pogledajte statistiku za transakcije u mempoolu: raspon naknada, ukupna veličina i više. Blokovi Mempoola ažuriraju se u stvarnom vremenu kako mreža prima nove transakcije. src/app/components/mempool-block/mempool-block.component.ts 62 @@ -5522,6 +5727,7 @@ Stack of mempool blocks + Hrpa od mempool blokova src/app/components/mempool-block/mempool-block.component.ts 89 @@ -5529,6 +5735,7 @@ Mempool block + Mempool blok src/app/components/mempool-block/mempool-block.component.ts 91 @@ -5536,6 +5743,7 @@ Count + Račun src/app/components/mempool-graph/mempool-graph.component.ts 329 @@ -5547,6 +5755,7 @@ Range + Raspon src/app/components/mempool-graph/mempool-graph.component.ts 330 @@ -5554,6 +5763,7 @@ Sum + Zbroj src/app/components/mempool-graph/mempool-graph.component.ts 332 @@ -5561,6 +5771,7 @@ Sign In + Prijavi se src/app/components/menu/menu.component.html 21 @@ -5577,6 +5788,7 @@ Reward stats + Statistika nagrada src/app/components/mining-dashboard/mining-dashboard.component.html 9 @@ -5585,6 +5797,7 @@ (144 blocks) + (144 bloka) src/app/components/mining-dashboard/mining-dashboard.component.html 10 @@ -5593,6 +5806,7 @@ Adjustments + Prilagodbe src/app/components/mining-dashboard/mining-dashboard.component.html 70 @@ -5601,6 +5815,7 @@ Get real-time Bitcoin mining stats like hashrate, difficulty adjustment, block rewards, pool dominance, and more. + Dobijte statistiku rudarenja Bitcoina u stvarnom vremenu kao što je hashrate, prilagodba težine, blok nagrade, dominacija pool-ova i više. src/app/components/mining-dashboard/mining-dashboard.component.ts 30 @@ -5608,6 +5823,7 @@ Pools luck (1 week) + Uspjeh pool-ova (1 tjedan) src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -5616,6 +5832,7 @@ Pools Luck + Uspjeh pool-ova src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -5628,6 +5845,7 @@ The overall luck of all mining pools over the past week. A luck bigger than 100% means the average block time for the current epoch is less than 10 minutes. + Ukupan uspjeh svih rudarskih pool-ova tijekom prošlog tjedna. Uspjeh veći od 100% znači da je prosječno vrijeme bloka za trenutnu epohu manje od 10 minuta. src/app/components/pool-ranking/pool-ranking.component.html 11 @@ -5636,6 +5854,7 @@ Pools count (1w) + Broj pool-ova (1w) src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -5644,6 +5863,7 @@ Pools Count + Broj pool-ova src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -5656,6 +5876,7 @@ How many unique pools found at least one block over the past week. + Koliko je pojedinih pool-ova pronašlo barem jedan blok tijekom prošlog tjedna. src/app/components/pool-ranking/pool-ranking.component.html 19 @@ -5664,6 +5885,7 @@ Blocks (1w) + Blokova (1w) src/app/components/pool-ranking/pool-ranking.component.html 25 @@ -5680,6 +5902,7 @@ The number of blocks found over the past week. + Broj blokova pronađenih tijekom prošlog tjedna. src/app/components/pool-ranking/pool-ranking.component.html 27 @@ -5688,6 +5911,7 @@ Rank + Rang src/app/components/pool-ranking/pool-ranking.component.html 90 @@ -5704,6 +5928,7 @@ Avg Health + Prosj. zdravlje src/app/components/pool-ranking/pool-ranking.component.html 96 @@ -5728,6 +5953,7 @@ Avg Block Fees + Prosječne naknade bloka src/app/components/pool-ranking/pool-ranking.component.html 97 @@ -5748,6 +5974,7 @@ Empty Blocks + Prazni blokovi src/app/components/pool-ranking/pool-ranking.component.html 98 @@ -5756,6 +5983,7 @@ All miners + Svi rudari src/app/components/pool-ranking/pool-ranking.component.html 138 @@ -5764,6 +5992,7 @@ Mining Pools + Rudarski pool-ovi src/app/components/pool-ranking/pool-ranking.component.ts 59 @@ -5771,6 +6000,7 @@ See the top Bitcoin mining pools ranked by number of blocks mined, over your desired timeframe. + Pogledajte najbolje rudarske pool-ove Bitcoina poredane prema broju iskopanih blokova u željenom vremenskom okviru. src/app/components/pool-ranking/pool-ranking.component.ts 60 @@ -5778,6 +6008,7 @@ blocks + blokova src/app/components/pool-ranking/pool-ranking.component.ts 167 @@ -5797,6 +6028,7 @@ Other () + Ostali () src/app/components/pool-ranking/pool-ranking.component.ts 186 @@ -5828,6 +6060,7 @@ mining pool + rudarski pool src/app/components/pool/pool-preview.component.html 3 @@ -5836,6 +6069,7 @@ Tags + Oznake src/app/components/pool/pool-preview.component.html 18 @@ -5860,6 +6094,7 @@ See mining pool stats for : most recent mined blocks, hashrate over time, total block reward to date, known coinbase addresses, and more. + Pogledajte statistiku rudarskih pool-ova za : najnovije iskopane blokove, hashrate tijekom vremena, ukupnu nagradu za blok do danas, poznate coinbase adrese i više. src/app/components/pool/pool-preview.component.ts 86 @@ -5871,6 +6106,7 @@ Show all + Prikaži sve src/app/components/pool/pool.component.html 53 @@ -5903,6 +6139,7 @@ Hide + Sakrij src/app/components/pool/pool.component.html 55 @@ -5911,6 +6148,7 @@ Hashrate (24h) + Hashrate (24h) src/app/components/pool/pool.component.html 95 @@ -5927,6 +6165,7 @@ Blocks (24h) + Blokovi (24h) src/app/components/pool/pool.component.html 120 @@ -5943,6 +6182,7 @@ 1w + 1w src/app/components/pool/pool.component.html 121 @@ -5959,6 +6199,7 @@ Out-of-band Fees (1w) + Izvanpojasne naknade (1w) src/app/components/pool/pool.component.html 143 @@ -5967,6 +6208,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -5975,6 +6217,7 @@ Coinbase tag + Coinbase oznaka src/app/components/pool/pool.component.html 184 @@ -5987,6 +6230,7 @@ Error loading pool data. + Pogreška pri učitavanju podataka pool-a. src/app/components/pool/pool.component.html 467 @@ -5995,6 +6239,7 @@ Not enough data yet + Još nema dovoljno podataka src/app/components/pool/pool.component.ts 142 @@ -6002,6 +6247,7 @@ Pool Dominance + Pool dominacija src/app/components/pool/pool.component.ts 222 @@ -6014,6 +6260,7 @@ Broadcast Transaction + Emitiraj transakciju src/app/components/push-transaction/push-transaction.component.html 2 @@ -6031,6 +6278,7 @@ Transaction hex + Hex transakcije src/app/components/push-transaction/push-transaction.component.html 6 @@ -6043,6 +6291,7 @@ Broadcast Transaction + Emitiraj transakciju src/app/components/push-transaction/push-transaction.component.ts 38 @@ -6050,6 +6299,7 @@ Broadcast a transaction to the network using the transaction's hash. + Emitiraj transakciju na mrežu koristeći hash transakcije. src/app/components/push-transaction/push-transaction.component.ts 39 @@ -6057,6 +6307,7 @@ RBF Replacements + RBF zamjene src/app/components/rbf-list/rbf-list.component.html 2 @@ -6069,6 +6320,7 @@ There are no replacements in the mempool yet! + Još nema zamjena u mempoolu! src/app/components/rbf-list/rbf-list.component.html 34 @@ -6077,6 +6329,7 @@ See the most recent RBF replacements on the Bitcoin network, updated in real-time. + Pogledaj najnovije zamjene RBF-a na Bitcoin mreži, ažurirane u stvarnom vremenu. src/app/components/rbf-list/rbf-list.component.ts 62 @@ -6084,6 +6337,7 @@ Show less + Prikaži manje src/app/components/rbf-timeline/rbf-timeline.component.html 61 @@ -6104,6 +6358,7 @@ remaining + preostalo src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -6116,6 +6371,7 @@ Miners Reward + Nagrada za rudare src/app/components/reward-stats/reward-stats.component.html 5 @@ -6132,6 +6388,7 @@ Amount being paid to miners in the past 144 blocks + Iznos isplaćen rudarima u protekla 144 bloka src/app/components/reward-stats/reward-stats.component.html 6 @@ -6140,6 +6397,7 @@ Average fees per block in the past 144 blocks + Prosječne naknade po bloku u posljednja 144 bloka src/app/components/reward-stats/reward-stats.component.html 18 @@ -6148,6 +6406,7 @@ BTC/block + BTC/blok src/app/components/reward-stats/reward-stats.component.html 21 @@ -6157,6 +6416,7 @@ Avg Tx Fee + Prosječna naknada za transakciju src/app/components/reward-stats/reward-stats.component.html 30 @@ -6173,6 +6433,7 @@ Fee paid on average for each transaction in the past 144 blocks + Naknada plaćena u prosjeku za svaku transakciju u posljednja 144 bloka src/app/components/reward-stats/reward-stats.component.html 31 @@ -6181,6 +6442,7 @@ sats/tx + sat/tx src/app/components/reward-stats/reward-stats.component.html 33 @@ -6190,6 +6452,7 @@ Explore the full Bitcoin ecosystem + Istražite cijeli Bitcoin ekosustav src/app/components/search-form/search-form.component.html 4 @@ -6206,6 +6469,7 @@ Search + Pretraživanje src/app/components/search-form/search-form.component.html 9 @@ -6214,6 +6478,7 @@ Block Height + Visina bloka src/app/components/search-form/search-results/search-results.component.html 3 @@ -6222,6 +6487,7 @@ Transaction + Transakcija src/app/components/search-form/search-results/search-results.component.html 21 @@ -6230,6 +6496,7 @@ Address + Adresa src/app/components/search-form/search-results/search-results.component.html 27 @@ -6242,6 +6509,7 @@ Block + Blok src/app/components/search-form/search-results/search-results.component.html 33 @@ -6250,6 +6518,7 @@ Addresses + Adrese src/app/components/search-form/search-results/search-results.component.html 39 @@ -6258,6 +6527,7 @@ Mining Pools + Rudarski pool-ovi src/app/components/search-form/search-results/search-results.component.html 47 @@ -6266,6 +6536,7 @@ Lightning Nodes + Lightning nodovi src/app/components/search-form/search-results/search-results.component.html 56 @@ -6274,6 +6545,7 @@ Lightning Channels + Lightning kanali src/app/components/search-form/search-results/search-results.component.html 64 @@ -6282,6 +6554,7 @@ Other Network Address + Druga mrežna adresa src/app/components/search-form/search-results/search-results.component.html 72 @@ -6290,6 +6563,7 @@ Liquid Asset + Liquid asset src/app/components/search-form/search-results/search-results.component.html 86 @@ -6298,6 +6572,7 @@ Go to "" + Idi na &quot;&quot; src/app/components/search-form/search-results/search-results.component.html 93 @@ -6306,6 +6581,7 @@ Mempool by vBytes (sat/vByte) + Mempool po vBytes (sat/vByte) src/app/components/statistics/statistics.component.html 7 @@ -6314,6 +6590,7 @@ Clock (Mempool) + Sat (Mempool) src/app/components/statistics/statistics.component.html 17 @@ -6326,6 +6603,7 @@ TV view + TV pogled src/app/components/statistics/statistics.component.html 20 @@ -6338,6 +6616,7 @@ Filter + Filter src/app/components/statistics/statistics.component.html 68 @@ -6346,6 +6625,7 @@ Invert + Preokrenuti src/app/components/statistics/statistics.component.html 93 @@ -6354,6 +6634,7 @@ Transaction vBytes per second (vB/s) + Transakcija vBytes u sekundi (vB/s) src/app/components/statistics/statistics.component.html 113 @@ -6362,6 +6643,7 @@ Cap outliers + Cap odstupanja src/app/components/statistics/statistics.component.html 121 @@ -6370,6 +6652,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + Pogledajte veličinu mempoola (u MvB) i transakcije po sekundi (u vB/s) vizualizirane tijekom vremena. src/app/components/statistics/statistics.component.ts 66 @@ -6377,6 +6660,7 @@ See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV. + Pogledajte Bitcoin blokove i zagušenja mempoola u stvarnom vremenu u pojednostavljenom formatu savršenom za TV. src/app/components/television/television.component.ts 40 @@ -6384,6 +6668,7 @@ Test Transactions + Testne transakcije src/app/components/test-transactions/test-transactions.component.html 2 @@ -6401,6 +6686,7 @@ Raw hex + Sirovi hex src/app/components/test-transactions/test-transactions.component.html 5 @@ -6409,6 +6695,7 @@ Comma-separated list of raw transactions + Popis neobrađenih transakcija odvojenih zarezima src/app/components/test-transactions/test-transactions.component.html 7 @@ -6417,6 +6704,7 @@ Maximum fee rate (sat/vB) + Maksimalna stopa naknade (sat/vB) src/app/components/test-transactions/test-transactions.component.html 9 @@ -6425,6 +6713,7 @@ Allowed? + Dopušteno? src/app/components/test-transactions/test-transactions.component.html 23 @@ -6433,6 +6722,7 @@ Rejection reason + Razlog odbijanja src/app/components/test-transactions/test-transactions.component.html 26 @@ -6441,6 +6731,7 @@ Immediately + Odmah src/app/components/time/time.component.ts 107 @@ -6448,6 +6739,7 @@ Just now + Upravo sada src/app/components/time/time.component.ts 111 @@ -6463,6 +6755,7 @@ ago + Prije src/app/components/time/time.component.ts 165 @@ -6522,6 +6815,7 @@ In ~ + U ~ src/app/components/time/time.component.ts 188 @@ -6581,6 +6875,7 @@ within ~ + unutar ~ src/app/components/time/time.component.ts 211 @@ -6640,6 +6935,7 @@ After + Nakon src/app/components/time/time.component.ts 234 @@ -6699,6 +6995,7 @@ before + prije src/app/components/time/time.component.ts 257 @@ -6758,6 +7055,7 @@ Sent + Poslano src/app/components/tracker/tracker-bar.component.html 2 @@ -6766,6 +7064,7 @@ Soon + Uskoro src/app/components/tracker/tracker-bar.component.html 6 @@ -6774,7 +7073,7 @@ This transaction has been replaced by: - Ova transakcija je zamijenja od: + Ova transakcija je zamijenjena sa: src/app/components/tracker/tracker.component.html 48 @@ -6788,6 +7087,7 @@ ETA + ETA src/app/components/tracker/tracker.component.html 69 @@ -6801,6 +7101,7 @@ Not any time soon + Ne u skorije vrijeme src/app/components/tracker/tracker.component.html 74 @@ -6814,6 +7115,7 @@ Confirmed at + Potvrđeno u src/app/components/tracker/tracker.component.html 87 @@ -6822,6 +7124,7 @@ Block height + Visina bloka src/app/components/tracker/tracker.component.html 96 @@ -6830,6 +7133,7 @@ Your transaction has been accelerated + Vaša transakcija je ubrzana src/app/components/tracker/tracker.component.html 143 @@ -6838,6 +7142,7 @@ Waiting for your transaction to appear in the mempool + Čeka se da se vaša transakcija pojavi u mempoolu src/app/components/tracker/tracker.component.html 150 @@ -6846,6 +7151,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. + Vaša transakcija je u mempoolu, ali još neko vrijeme neće biti potvrđena. src/app/components/tracker/tracker.component.html 156 @@ -6854,6 +7160,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. + Vaša je transakcija pri vrhu mempoola i očekuje se skora potvrda. src/app/components/tracker/tracker.component.html 162 @@ -6862,6 +7169,7 @@ Your transaction is expected to confirm in the next block + Očekuje se da će vaša transakcija biti potvrđena u sljedećem bloku src/app/components/tracker/tracker.component.html 168 @@ -6870,6 +7178,7 @@ Your transaction is confirmed! + Vaša transakcija je potvrđena! src/app/components/tracker/tracker.component.html 174 @@ -6878,6 +7187,7 @@ Your transaction has been replaced by a newer version! + Vaša je transakcija zamijenjena novijom verzijom! src/app/components/tracker/tracker.component.html 180 @@ -6886,6 +7196,7 @@ See more details + Pogledajte više detalja src/app/components/tracker/tracker.component.html 193 @@ -6894,6 +7205,7 @@ Transaction: + Transakcija: src/app/components/tracker/tracker.component.ts 409 @@ -6909,6 +7221,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + Dobijte status u stvarnom vremenu, adrese, naknade, informacije o skripti i više za transakciju s txid . src/app/components/tracker/tracker.component.ts 413 @@ -6924,6 +7237,7 @@ Coinbase + Coinbase src/app/components/transaction/transaction-preview.component.html 43 @@ -6944,6 +7258,7 @@ Descendant + Potomak src/app/components/transaction/transaction.component.html 88 @@ -6957,6 +7272,7 @@ Ancestor + Predak src/app/components/transaction/transaction.component.html 112 @@ -6966,6 +7282,7 @@ Hide accelerator + Sakrij akcelerator src/app/components/transaction/transaction.component.html 133 @@ -6974,6 +7291,7 @@ RBF Timeline + RBF kroz vrijeme src/app/components/transaction/transaction.component.html 160 @@ -6983,6 +7301,7 @@ Acceleration Timeline + Ubrzanja kroz vrijeme src/app/components/transaction/transaction.component.html 169 @@ -6992,6 +7311,7 @@ Flow + Protok src/app/components/transaction/transaction.component.html 178 @@ -7005,6 +7325,7 @@ Hide diagram + Sakrij dijagram src/app/components/transaction/transaction.component.html 181 @@ -7013,6 +7334,7 @@ Show more + Prikaži više src/app/components/transaction/transaction.component.html 202 @@ -7029,7 +7351,7 @@ Inputs & Outputs - Ulazi & Izlazi + Inputi i outputi src/app/components/transaction/transaction.component.html 220 @@ -7043,6 +7365,7 @@ Show diagram + Prikaži dijagram src/app/components/transaction/transaction.component.html 224 @@ -7051,6 +7374,7 @@ Adjusted vsize + Prilagođena vveličina src/app/components/transaction/transaction.component.html 249 @@ -7060,6 +7384,7 @@ Locktime + Vrijeme zaključavanja src/app/components/transaction/transaction.component.html 271 @@ -7068,6 +7393,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 275 @@ -7077,6 +7403,7 @@ Transaction not found. + Transakcija nije pronađena. src/app/components/transaction/transaction.component.html 407 @@ -7085,6 +7412,7 @@ Waiting for it to appear in the mempool... + Čeka se da se pojavi u mempoolu... src/app/components/transaction/transaction.component.html 408 @@ -7093,6 +7421,7 @@ Error loading transaction data. + Pogreška pri učitavanju podataka o transakciji. src/app/components/transaction/transaction.component.html 414 @@ -7101,6 +7430,7 @@ Features + Značajke src/app/components/transaction/transaction.component.html 499 @@ -7118,6 +7448,7 @@ This transaction was projected to be included in the block + Predviđeno je da će ova transakcija biti uključena u blok src/app/components/transaction/transaction.component.html 522 @@ -7126,6 +7457,7 @@ Expected in Block + Očekuje se u bloku src/app/components/transaction/transaction.component.html 522 @@ -7135,6 +7467,7 @@ This transaction was seen in the mempool prior to mining + Ova transakcija je viđena u mempoolu prije rudarenja src/app/components/transaction/transaction.component.html 524 @@ -7143,6 +7476,7 @@ Seen in Mempool + Viđeno u Mempoolu src/app/components/transaction/transaction.component.html 524 @@ -7152,6 +7486,7 @@ This transaction was missing from our mempool prior to mining + Ova transakcija je nedostajala u našem mempoolu prije rudarenja src/app/components/transaction/transaction.component.html 526 @@ -7160,6 +7495,7 @@ Not seen in Mempool + Nije viđeno u Mempoolu src/app/components/transaction/transaction.component.html 526 @@ -7169,6 +7505,7 @@ This transaction may have been added out-of-band + Ova je transakcija možda dodana izvanpojasno src/app/components/transaction/transaction.component.html 529 @@ -7177,6 +7514,7 @@ This transaction may have been prioritized out-of-band + Ova transakcija je možda bila prioritizirana izvanpojasno src/app/components/transaction/transaction.component.html 532 @@ -7185,6 +7523,7 @@ This transaction conflicted with another version in our mempool + Ova transakcija bila je u sukobu s drugom verzijom u našem mempoolu src/app/components/transaction/transaction.component.html 535 @@ -7193,6 +7532,7 @@ (Newly Generated Coins) + (Novogenerirani coin-ovi) src/app/components/transactions-list/transactions-list.component.html 54 @@ -7201,6 +7541,7 @@ Peg-in + Peg-in src/app/components/transactions-list/transactions-list.component.html 56 @@ -7209,6 +7550,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 105 @@ -7218,6 +7560,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 109 @@ -7227,6 +7570,7 @@ Witness + Witness src/app/components/transactions-list/transactions-list.component.html 114 @@ -7235,6 +7579,7 @@ P2SH redeem script + P2SH otkupna skripta src/app/components/transactions-list/transactions-list.component.html 148 @@ -7243,6 +7588,7 @@ P2TR tapscript + P2TR tapscript src/app/components/transactions-list/transactions-list.component.html 152 @@ -7251,6 +7597,7 @@ P2WSH witness script + P2WSH witness skripta src/app/components/transactions-list/transactions-list.component.html 154 @@ -7259,6 +7606,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 168 @@ -7267,6 +7615,7 @@ Previous output script + Skripta prethodnog outputa src/app/components/transactions-list/transactions-list.component.html 173 @@ -7275,6 +7624,7 @@ Previous output type + Prethodna vrsta outputa src/app/components/transactions-list/transactions-list.component.html 177 @@ -7283,6 +7633,7 @@ Peg-out to + Peg-out u src/app/components/transactions-list/transactions-list.component.html 225,226 @@ -7291,6 +7642,7 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html 284 @@ -7300,6 +7652,7 @@ ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html 288 @@ -7309,6 +7662,7 @@ Show more inputs to reveal fee data + Prikaži više unosa za otkrivanje podataka o naknadama src/app/components/transactions-list/transactions-list.component.html 326 @@ -7317,6 +7671,7 @@ other inputs + drugi inputi src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 12 @@ -7325,6 +7680,7 @@ other outputs + drugi outputi src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 13 @@ -7333,6 +7689,7 @@ Input + Input src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 42 @@ -7345,6 +7702,7 @@ 1 block earlier + 1 blok ranije src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -7353,6 +7711,7 @@ 1 block later + 1 blok kasnije src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -7361,6 +7720,7 @@ in the same block + u istom bloku src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -7369,6 +7729,7 @@ blocks earlier + blokova ranije src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -7377,6 +7738,7 @@ spent + potrošeno src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -7385,6 +7747,7 @@ blocks later + blokova kasnije src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -7393,6 +7756,7 @@ This transaction saved % on fees by using native SegWit + Ova je transakcija uštedjela % na naknadama korištenjem native SegWita src/app/components/tx-features/tx-features.component.html 2 @@ -7401,6 +7765,7 @@ SegWit + SegWit src/app/components/tx-features/tx-features.component.html 2 @@ -7418,6 +7783,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit + Ova je transakcija uštedjela % na naknadama korištenjem SegWita i mogla bi uštedjeti % više potpunom nadogradnjom na native SegWit src/app/components/tx-features/tx-features.component.html 4 @@ -7426,6 +7792,7 @@ This transaction could save % on fees by upgrading to native SegWit or % by upgrading to SegWit-P2SH + Ova bi transakcija mogla uštedjeti % na naknadama nadogradnjom na native SegWit ili % nadogradnjom na SegWit-P2SH src/app/components/tx-features/tx-features.component.html 6 @@ -7434,6 +7801,7 @@ This transaction uses Taproot and thereby saved at least % on fees + Ova transakcija koristi Taproot i time je uštedjela najmanje % na naknadama src/app/components/tx-features/tx-features.component.html 12 @@ -7442,6 +7810,7 @@ This transaction uses Taproot and already saved at least % on fees, but could save an additional % by fully using Taproot + Ova transakcija koristi Taproot i već je uštedjela najmanje % na naknadama, ali bi mogla uštedjeti dodatnih % potpunom upotrebom Taproota src/app/components/tx-features/tx-features.component.html 14 @@ -7450,6 +7819,7 @@ This transaction could save % on fees by using Taproot + Ova bi transakcija mogla uštedjeti % na naknadama korištenjem Taproota src/app/components/tx-features/tx-features.component.html 16 @@ -7458,6 +7828,7 @@ This transaction does not use Taproot + Ova transakcija ne koristi Taproot src/app/components/tx-features/tx-features.component.html 18 @@ -7466,6 +7837,7 @@ This transaction uses Taproot + Ova transakcija koristi Taproot src/app/components/tx-features/tx-features.component.html 21 @@ -7474,6 +7846,7 @@ This transaction supports Replace-By-Fee (RBF) allowing fee bumping + Ova transakcija podržava Replace-By-Fee (RBF) što omogućuje povećanje naknada src/app/components/tx-features/tx-features.component.html 28 @@ -7482,6 +7855,7 @@ This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method + Ova transakcija NE podržava Replace-By-Fee (RBF) i ne može se povećati naknada ovom metodom src/app/components/tx-features/tx-features.component.html 29 @@ -7490,6 +7864,7 @@ Optimal + Optimalno src/app/components/tx-fee-rating/tx-fee-rating.component.html 1 @@ -7499,6 +7874,7 @@ Only ~ sat/vB was needed to get into this block + Za ulazak u ovaj blok bio je potreban samo ~ sat/vB src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -7511,6 +7887,7 @@ Overpaid x + Preplaćeno x src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -7524,6 +7901,7 @@ Liquid Federation Holdings + Holding Liquid Federacije src/app/dashboard/dashboard.component.html 165 @@ -7536,6 +7914,7 @@ Federation Timelock-Expired UTXOs + UTXO-i Federacije s isteklim vremenom zaključavanja src/app/dashboard/dashboard.component.html 174 @@ -7548,6 +7927,7 @@ L-BTC Supply Against BTC Holdings + Ponuda L-BTC-a protiv BTC Holdingsa src/app/dashboard/dashboard.component.html 184 @@ -7560,6 +7940,7 @@ Indexing in progress + Indeksiranje u tijeku src/app/dashboard/dashboard.component.html 364 @@ -7576,6 +7957,7 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, wallet issues, etc.For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). + mempool.space samo pruža podatke o Bitcoin mreži. Ne može vam pomoći s vraćanjem sredstava, problemima s novčanikom itd.Za sve takve zahtjeve morate se obratiti entitetu koji je pomogao u transakciji (softver za novčanik, mjenjačnica itd.). src/app/docs/api-docs/api-docs.component.html 15,16 @@ -7584,6 +7966,7 @@ REST API service + REST API usluga src/app/docs/api-docs/api-docs.component.html 50 @@ -7592,6 +7975,7 @@ Endpoint + Krajnja točka src/app/docs/api-docs/api-docs.component.html 60 @@ -7604,6 +7988,7 @@ Description + Opis src/app/docs/api-docs/api-docs.component.html 79 @@ -7619,6 +8004,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Zadani push: akcija: 'want', data: ['blocks', ...] kako biste izrazili ono što želite da se progura. Dostupno: blokova, mempool-blokovi, live-2h-chart i statistika.Push transakcije povezane na adresu: 'track-address': '3PbJ...bF9B' za primanje svih novih transakcija koje sadrže tu adresu kao input ili output. Vraća niz transakcija. address-transactions za nove mempool transakcije i blok- transakcije za nove blok potvrđene transakcije. src/app/docs/api-docs/api-docs.component.html 120 @@ -7627,6 +8013,7 @@ Code Example + Primjer koda src/app/docs/code-template/code-template.component.html 6 @@ -7647,6 +8034,7 @@ Install Package + Instaliraj paket src/app/docs/code-template/code-template.component.html 23 @@ -7655,6 +8043,7 @@ Response + Odgovor src/app/docs/code-template/code-template.component.html 43 @@ -7663,6 +8052,7 @@ FAQ + FAQ src/app/docs/docs/docs.component.ts 46 @@ -7670,6 +8060,7 @@ Get answers to common questions like: What is a mempool? Why isn't my transaction confirming? How can I run my own instance of The Mempool Open Source Project? And more. + Dobijte odgovore na uobičajena pitanja poput: Što je mempool? Zašto se moja transakcija ne potvrđuje? Kako mogu pokrenuti vlastitu instancu projekta otvorenog koda Mempool? I više od toga. src/app/docs/docs/docs.component.ts 47 @@ -7677,6 +8068,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -7684,6 +8076,7 @@ Documentation for the liquid.network REST API service: get info on addresses, transactions, assets, blocks, and more. + Dokumentacija za REST API uslugu liquid.network: saznajte informacije o adresama, transakcijama, imovini, blokovima i više. src/app/docs/docs/docs.component.ts 53 @@ -7691,6 +8084,7 @@ Documentation for the mempool.space REST API service: get info on addresses, transactions, blocks, fees, mining, the Lightning network, and more. + Dokumentacija za mempool.space REST API uslugu: saznajte informacije o adresama, transakcijama, blokovima, naknadama, rudarenju, Lightning mreži i više. src/app/docs/docs/docs.component.ts 55 @@ -7698,6 +8092,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -7705,6 +8100,7 @@ Documentation for the liquid.network WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Dokumentacija za liquid.network WebSocket API uslugu: dobijte informacije u stvarnom vremenu o blokovima, mempoolima, transakcijama, adresama i više. src/app/docs/docs/docs.component.ts 61 @@ -7712,6 +8108,7 @@ Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Dokumentacija za mempool.space WebSocket API uslugu: dobijte informacije u stvarnom vremenu o blokovima, mempoolima, transakcijama, adresama i više. src/app/docs/docs/docs.component.ts 63 @@ -7719,6 +8116,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -7726,6 +8124,7 @@ Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance. + Dokumentacija za naše Electrum RPC sučelje: dobijte trenutan, praktičan i pouzdan pristup Esplora instanci. src/app/docs/docs/docs.component.ts 68 @@ -7733,6 +8132,7 @@ Base fee + Osnovna naknada src/app/lightning/channel/channel-box/channel-box.component.html 29 @@ -7745,6 +8145,7 @@ mSats + mSat src/app/lightning/channel/channel-box/channel-box.component.html 35 @@ -7765,6 +8166,7 @@ This channel supports zero base fee routing + Ovaj kanal podržava usmjeravanje bez osnovne naknade src/app/lightning/channel/channel-box/channel-box.component.html 44 @@ -7773,6 +8175,7 @@ Zero base fee + Nula osnovna naknada src/app/lightning/channel/channel-box/channel-box.component.html 45 @@ -7781,6 +8184,7 @@ This channel does not support zero base fee routing + Ovaj kanal ne podržava usmjeravanje bez osnovne naknade src/app/lightning/channel/channel-box/channel-box.component.html 50 @@ -7789,6 +8193,7 @@ Non-zero base fee + Osnovna naknada različita od nule src/app/lightning/channel/channel-box/channel-box.component.html 51 @@ -7797,6 +8202,7 @@ Min HTLC + Min HTLC src/app/lightning/channel/channel-box/channel-box.component.html 57 @@ -7805,6 +8211,7 @@ Max HTLC + Max HTLC src/app/lightning/channel/channel-box/channel-box.component.html 63 @@ -7813,6 +8220,7 @@ Timelock delta + Timelock delta src/app/lightning/channel/channel-box/channel-box.component.html 69 @@ -7821,6 +8229,7 @@ channels + kanala src/app/lightning/channel/channel-box/channel-box.component.html 79 @@ -7841,6 +8250,7 @@ Starting balance + Početno stanje src/app/lightning/channel/channel-close-box/channel-close-box.component.html 3 @@ -7850,6 +8260,7 @@ Closing balance + Završno stanje src/app/lightning/channel/channel-close-box/channel-close-box.component.html 26 @@ -7859,6 +8270,7 @@ lightning channel + lightning kanal src/app/lightning/channel/channel-preview.component.html 3 @@ -7867,6 +8279,7 @@ Inactive + Neaktivan src/app/lightning/channel/channel-preview.component.html 10 @@ -7883,6 +8296,7 @@ Active + Aktivan src/app/lightning/channel/channel-preview.component.html 11 @@ -7899,6 +8313,7 @@ Closed + Zatvoren src/app/lightning/channel/channel-preview.component.html 12 @@ -7923,6 +8338,7 @@ Created + Stvoren src/app/lightning/channel/channel-preview.component.html 23 @@ -7935,6 +8351,7 @@ Capacity + Kapacitet src/app/lightning/channel/channel-preview.component.html 27 @@ -8003,6 +8420,7 @@ ppm + ppm src/app/lightning/channel/channel-preview.component.html 34 @@ -8023,6 +8441,7 @@ Overview for Lightning channel . See channel capacity, the Lightning nodes involved, related on-chain transactions, and more. + Pregled za Lightning kanal . Pogledajte kapacitet kanala, uključene Lightning nodove, povezane transakcije on-chain i još mnogo toga. src/app/lightning/channel/channel-preview.component.ts 37 @@ -8034,6 +8453,7 @@ Lightning channel + Lightning kanal src/app/lightning/channel/channel.component.html 4 @@ -8046,6 +8466,7 @@ Last update + Zadnje ažuriranje src/app/lightning/channel/channel.component.html 40 @@ -8078,6 +8499,7 @@ Closing date + Datum zatvaranja src/app/lightning/channel/channel.component.html 44 @@ -8090,6 +8512,7 @@ Closed by + Zatvorio src/app/lightning/channel/channel.component.html 59 @@ -8098,6 +8521,7 @@ Opening transaction + Transakcija otvaranja src/app/lightning/channel/channel.component.html 91 @@ -8110,6 +8534,7 @@ Closing transaction + Transakcija zatvaranja src/app/lightning/channel/channel.component.html 100 @@ -8122,6 +8547,7 @@ Channel: + Kanal: src/app/lightning/channel/channel.component.ts 37 @@ -8129,6 +8555,7 @@ Mutually closed + Međusobno zatvoren src/app/lightning/channel/closing-type/closing-type.component.ts 20 @@ -8136,6 +8563,7 @@ Force closed + Prisilno zatvoren src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -8143,6 +8571,7 @@ Force closed with penalty + Prisilno zatvoren s kaznom src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -8150,6 +8579,7 @@ Open + Otvoren src/app/lightning/channels-list/channels-list.component.html 5 @@ -8158,6 +8588,7 @@ No channels to display + Nema kanala za prikaz src/app/lightning/channels-list/channels-list.component.html 29 @@ -8166,6 +8597,7 @@ Alias + Alias src/app/lightning/channels-list/channels-list.component.html 38 @@ -8202,6 +8634,7 @@ Channel ID + ID kanala src/app/lightning/channels-list/channels-list.component.html 44 @@ -8214,6 +8647,7 @@ avg + prosj src/app/lightning/channels-statistics/channels-statistics.component.html 3 @@ -8222,6 +8656,7 @@ med + med src/app/lightning/channels-statistics/channels-statistics.component.html 6 @@ -8230,6 +8665,7 @@ Avg Capacity + Prosječni kapacitet src/app/lightning/channels-statistics/channels-statistics.component.html 13 @@ -8242,6 +8678,7 @@ Avg Fee Rate + Prosječna stopa naknade src/app/lightning/channels-statistics/channels-statistics.component.html 26 @@ -8254,6 +8691,7 @@ The average fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm + Prosječna stopa naknade koju naplaćuju usmjerivački nodovi, zanemarujući stope naknade > 0,5% ili 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 28 @@ -8262,6 +8700,7 @@ Avg Base Fee + Prosječna osnovna naknada src/app/lightning/channels-statistics/channels-statistics.component.html 41 @@ -8274,6 +8713,7 @@ The average base fee charged by routing nodes, ignoring base fees > 5000ppm + Prosječna osnovna naknada koju naplaćuju usmjerivački nodovi, zanemarujući osnovne naknade > 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 43 @@ -8282,6 +8722,7 @@ Med Capacity + Medijalni Kapacitet src/app/lightning/channels-statistics/channels-statistics.component.html 59 @@ -8290,6 +8731,7 @@ Med Fee Rate + Medijalna stopa naknade src/app/lightning/channels-statistics/channels-statistics.component.html 72 @@ -8298,6 +8740,7 @@ The median fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm + Medijalna stopa naknade koju naplaćuju usmjerivački nodovi, zanemarujući stope naknada > 0,5% ili 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 74 @@ -8306,6 +8749,7 @@ Med Base Fee + Medijalna osnovna naknada src/app/lightning/channels-statistics/channels-statistics.component.html 87 @@ -8314,6 +8758,7 @@ The median base fee charged by routing nodes, ignoring base fees > 5000ppm + Medijalna osnovna naknada koju naplaćuju usmjerivački nodovi, zanemarujući osnovne naknade > 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 89 @@ -8322,6 +8767,7 @@ Lightning node group + Grupa lightning nodova src/app/lightning/group/group-preview.component.html 3 @@ -8334,6 +8780,7 @@ Nodes + Nodovi src/app/lightning/group/group-preview.component.html 25 @@ -8374,6 +8821,7 @@ Liquidity + Likvidnost src/app/lightning/group/group-preview.component.html 29 @@ -8406,6 +8854,7 @@ Channels + Kanali src/app/lightning/group/group-preview.component.html 40 @@ -8478,6 +8927,7 @@ Average size + Prosječna veličina src/app/lightning/group/group-preview.component.html 44 @@ -8490,6 +8940,7 @@ Connect + Poveži se src/app/lightning/group/group.component.html 73 @@ -8499,6 +8950,7 @@ Location + Mjesto src/app/lightning/group/group.component.html 74 @@ -8539,6 +8991,7 @@ Penalties + Penali src/app/lightning/justice-list/justice-list.component.html 4 @@ -8547,6 +9000,7 @@ Network Statistics + Statistika mreže src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 10 @@ -8555,6 +9009,7 @@ Channels Statistics + Statistika kanala src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 24 @@ -8563,6 +9018,7 @@ Lightning Network History + Povijest Lightning mreže src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 52 @@ -8571,6 +9027,7 @@ Liquidity Ranking + Rangiranje likvidnosti src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 66 @@ -8591,6 +9048,7 @@ Connectivity Ranking + Rangiranje povezanosti src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 80 @@ -8611,6 +9069,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Dobijte statistiku o Lightning mreži (ukupni kapacitet, povezanost itd.), Lightning nodovima (kanali, likvidnost itd.) i Lightning kanalima (status, naknade itd.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -8618,6 +9077,7 @@ Fee distribution + Distribucija naknada src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 @@ -8626,6 +9086,7 @@ Outgoing Fees + Odlazne naknade src/app/lightning/node-fee-chart/node-fee-chart.component.ts 179 @@ -8637,6 +9098,7 @@ Incoming Fees + Ulazne naknade src/app/lightning/node-fee-chart/node-fee-chart.component.ts 187 @@ -8648,6 +9110,7 @@ Percentage change past week + Postotna promjena prošli tjedan src/app/lightning/node-statistics/node-statistics.component.html 5 @@ -8664,6 +9127,7 @@ Lightning node + Lightning nod src/app/lightning/node/node-preview.component.html 3 @@ -8680,6 +9144,7 @@ Active capacity + Aktivni kapacitet src/app/lightning/node/node-preview.component.html 20 @@ -8692,6 +9157,7 @@ Active channels + Aktivni kanali src/app/lightning/node/node-preview.component.html 26 @@ -8704,6 +9170,7 @@ Country + Zemlja src/app/lightning/node/node-preview.component.html 44 @@ -8712,6 +9179,7 @@ Overview for the Lightning network node named . See channels, capacity, location, fee stats, and more. + Pregled Lightning noda pod nazivom . Pogledajte kanale, kapacitet, lokaciju, statistiku naknada i još mnogo toga. src/app/lightning/node/node-preview.component.ts 52 @@ -8723,6 +9191,7 @@ Average channel size + Prosječna veličina kanala src/app/lightning/node/node.component.html 44 @@ -8731,6 +9200,7 @@ Avg channel distance + Prosječna udaljenost kanala src/app/lightning/node/node.component.html 60 @@ -8739,6 +9209,7 @@ Color + Boja src/app/lightning/node/node.component.html 86 @@ -8747,6 +9218,7 @@ ISP + ISP src/app/lightning/node/node.component.html 92 @@ -8759,6 +9231,7 @@ Exclusively on Tor + Isključivo na Tor-u src/app/lightning/node/node.component.html 100 @@ -8767,6 +9240,7 @@ Decoded + Dekodirano src/app/lightning/node/node.component.html 134 @@ -8776,6 +9250,7 @@ Liquidity ad + Oglas za likvidnost src/app/lightning/node/node.component.html 184 @@ -8784,6 +9259,7 @@ Lease fee rate + Lease stopa naknade src/app/lightning/node/node.component.html 190 @@ -8793,6 +9269,7 @@ Lease base fee + Lease osnovna naknada src/app/lightning/node/node.component.html 198 @@ -8801,6 +9278,7 @@ Funding weight + Težina financiranja src/app/lightning/node/node.component.html 204 @@ -8809,6 +9287,7 @@ Channel fee rate + Stopa naknade za kanal src/app/lightning/node/node.component.html 214 @@ -8818,6 +9297,7 @@ Channel base fee + Osnovna naknada kanala src/app/lightning/node/node.component.html 222 @@ -8826,6 +9306,7 @@ Compact lease + Compact lease src/app/lightning/node/node.component.html 234 @@ -8834,6 +9315,7 @@ TLV extension records + TLV extension records src/app/lightning/node/node.component.html 245 @@ -8842,6 +9324,7 @@ Open channels + Otvoreni kanali src/app/lightning/node/node.component.html 286 @@ -8850,6 +9333,7 @@ Closed channels + Zatvoreni kanali src/app/lightning/node/node.component.html 290 @@ -8858,6 +9342,7 @@ Node: + Nod: src/app/lightning/node/node.component.ts 63 @@ -8865,6 +9350,7 @@ (Tor nodes excluded) + (Tor nodovi su isključeni) src/app/lightning/nodes-channels-map/nodes-channels-map.component.html 22 @@ -8885,6 +9371,7 @@ Lightning Nodes Channels World Map + Karta svijeta kanala Lightning nodova src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 73 @@ -8892,6 +9379,7 @@ See the channels of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. + Pogledajte kanale Lightning nodova koji nisu Tor, vizualizirani na karti svijeta. Zadržite pokazivač/dodirnite točke na karti za nazive nodova i detalje. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -8899,6 +9387,7 @@ No geolocation data available + Nema dostupnih geolokacijskih podataka src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 245 @@ -8906,6 +9395,7 @@ Active channels map + Karta aktivnih kanala src/app/lightning/nodes-channels/node-channels.component.html 3 @@ -8914,6 +9404,7 @@ See the locations of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. + Pogledajte lokacije Lightning nodova koji nisu Tor vizualizirane na karti svijeta. Zadržite pokazivač/dodirnite točke na karti za nazive nodova i detalje. src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -8921,6 +9412,7 @@ See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both. + Pogledajte broj Lightning nodova vizualiziranih tijekom vremena po mreži: samo clearnet (IPv4, IPv6), darknet (Tor, I2p, cjdns) i oboje. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 74 @@ -8928,6 +9420,7 @@ Indexing in progress + Indeksiranje u tijeku src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 133 @@ -8939,6 +9432,7 @@ Clearnet and Darknet + Clearnet i Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 176 @@ -8950,6 +9444,7 @@ Clearnet Only (IPv4, IPv6) + Samo Clearnet (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 197 @@ -8961,6 +9456,7 @@ Darknet Only (Tor, I2P, cjdns) + Samo Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 218 @@ -8972,6 +9468,7 @@ Share + Podijeli src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html 29 @@ -8984,6 +9481,7 @@ See a geographical breakdown of the Lightning network: how many Lightning nodes are hosted in countries around the world, aggregate BTC capacity for each country, and more. + Pogledajte zemljopisnu analizu Lightning mreže: koliko Lightning nodova je hostirano u zemljama diljem svijeta, ukupni BTC kapacitet za svaku zemlju i više. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 47 @@ -8991,6 +9489,7 @@ nodes + nodova src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 104 @@ -9010,6 +9509,7 @@ BTC capacity + BTC kapacitet src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 105 @@ -9017,6 +9517,7 @@ Lightning nodes in + Lightning nodova u src/app/lightning/nodes-per-country/nodes-per-country.component.html 3,4 @@ -9025,6 +9526,7 @@ ISP Count + Broj ISP-a src/app/lightning/nodes-per-country/nodes-per-country.component.html 34 @@ -9033,6 +9535,7 @@ Top ISP + Najbolji ISP src/app/lightning/nodes-per-country/nodes-per-country.component.html 38 @@ -9041,6 +9544,7 @@ Lightning nodes in + Lightning nodovi u src/app/lightning/nodes-per-country/nodes-per-country.component.ts 43 @@ -9048,6 +9552,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. + Istražite sve Lightning nodove hostirane u i pogledajte pregled kapaciteta svakog noda, broj otvorenih kanala i više. src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -9055,6 +9560,7 @@ Clearnet Capacity + Clearnet kapacitet src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 6 @@ -9067,6 +9573,7 @@ How much liquidity is running on nodes advertising at least one clearnet IP address + Koliko likvidnosti se pokreće na nodovima koji oglašavaju barem jednu clearnet IP adresu src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 8 @@ -9075,6 +9582,7 @@ Unknown Capacity + Nepoznati kapacitet src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 13 @@ -9087,6 +9595,7 @@ How much liquidity is running on nodes which ISP was not identifiable + Koliko likvidnosti teče na nodovima čiji ISP nije bio identificiran src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 15 @@ -9095,6 +9604,7 @@ Tor Capacity + Tor kapacitet src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 20 @@ -9107,6 +9617,7 @@ How much liquidity is running on nodes advertising only Tor addresses + Koliko se likvidnosti pokreće na nodovima koji oglašavaju samo Tor adrese src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 22 @@ -9115,6 +9626,7 @@ Top 100 ISPs hosting LN nodes + 100 najboljih ISP-ova koji hostiraju LN nodove src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 31 @@ -9123,6 +9635,7 @@ Browse the top 100 ISPs hosting Lightning nodes along with stats like total number of nodes per ISP, aggregate BTC capacity per ISP, and more + Pregledajte 100 najboljih ISP-ova koji hostiraju Lightning nodove zajedno sa statistikama kao što je ukupan broj nodova po ISP-u, ukupni BTC kapacitet po ISP-u i više src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -9130,6 +9643,7 @@ BTC + BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 164 @@ -9141,6 +9655,7 @@ Lightning ISP + Lightning ISP src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 3 @@ -9149,6 +9664,7 @@ Top country + Naj država src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 39 @@ -9161,6 +9677,7 @@ Top node + Naj nod src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 45 @@ -9169,6 +9686,7 @@ Lightning nodes on ISP: [AS] + Lightning nodovi na ISP-u: [AS] src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 44 @@ -9180,6 +9698,7 @@ Browse all Bitcoin Lightning nodes using the [AS] ISP and see aggregate stats like total number of nodes, total capacity, and more for the ISP. + Pregledajte sve Bitcoin Lightning nodove pomoću [AS] ISP-a i pogledajte skupne statistike poput ukupnog broja nodova, ukupnog kapaciteta, i više za ISP-a. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -9191,6 +9710,7 @@ Lightning nodes on ISP: + Lightning nodovi na ISP-u: src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 2,4 @@ -9199,6 +9719,7 @@ ASN + ASN src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 10 @@ -9207,6 +9728,7 @@ Active nodes + Aktivni nodovi src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14 @@ -9215,6 +9737,7 @@ Top 100 oldest lightning nodes + Top 100 najstarijih lightning nodova src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html 3 @@ -9223,6 +9746,7 @@ Oldest lightning nodes + Najstariji lightning nodovi src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 27 @@ -9230,6 +9754,7 @@ See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc. + Pogledajte najstarije nodove na Lightning mreži zajedno s njihovim kapacitetom, brojem kanala, lokacijom itd. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 28 @@ -9237,6 +9762,7 @@ See Lightning nodes with the most BTC liquidity deployed along with high-level stats like number of open channels, location, node age, and more. + Pogledajte Lightning nodove s najvećom likvidnošću BTC-a zajedno sa statističkim podacima na visokoj razini kao što su broj otvorenih kanala, lokacija, starost noda i više. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts 35 @@ -9244,6 +9770,7 @@ See Lightning nodes with the most channels open along with high-level stats like total node capacity, node age, and more. + Pogledajte Lightning nodove s najviše otvorenih kanala zajedno sa statistikama visoke razine kao što su ukupni kapacitet noda, starost noda i više. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts 39 @@ -9251,6 +9778,7 @@ Oldest nodes + Najstariji nodovi src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html 36 @@ -9259,6 +9787,7 @@ Top lightning nodes + Top lightning nodovi src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 22 @@ -9266,6 +9795,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + Pogledajte najbolje nodove Lightning mreže rangirane prema likvidnosti, povezanosti i starosti. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 23 @@ -9273,6 +9803,7 @@ See the capacity of the Lightning network visualized over time in terms of the number of open channels and total bitcoin capacity. + Pogledajte vizualizaciju kapaciteta Lightning mreže kroz vrijeme u smislu broja otvorenih kanala i ukupnog kapaciteta bitcoina. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 71 @@ -9280,6 +9811,7 @@ fee + naknada src/app/shared/components/address-type/address-type.component.html 3 @@ -9288,6 +9820,7 @@ empty + prazno src/app/shared/components/address-type/address-type.component.html 6 @@ -9296,6 +9829,7 @@ provably unspendable + dokazivo nepotrošivo src/app/shared/components/address-type/address-type.component.html 18 @@ -9304,6 +9838,7 @@ bare multisig + goli multisig src/app/shared/components/address-type/address-type.component.html 21 @@ -9312,6 +9847,7 @@ confirmation + potvrda src/app/shared/components/confirmations/confirmations.component.html 4 @@ -9321,6 +9857,7 @@ confirmations + potvrde src/app/shared/components/confirmations/confirmations.component.html 5 @@ -9330,6 +9867,7 @@ Replaced + Zamijenjeno src/app/shared/components/confirmations/confirmations.component.html 12 @@ -9349,6 +9887,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -9362,6 +9901,7 @@ My Account + Moj račun src/app/shared/components/global-footer/global-footer.component.html 36 @@ -9374,6 +9914,7 @@ Explore + Istraži src/app/shared/components/global-footer/global-footer.component.html 59 @@ -9382,6 +9923,7 @@ Test Transaction + Testna transakcija src/app/shared/components/global-footer/global-footer.component.html 64 @@ -9391,6 +9933,7 @@ Connect to our Nodes + Povežite se s našim nodovima src/app/shared/components/global-footer/global-footer.component.html 65 @@ -9399,6 +9942,7 @@ API Documentation + API dokumentacija src/app/shared/components/global-footer/global-footer.component.html 66 @@ -9407,6 +9951,7 @@ Learn + Nauči src/app/shared/components/global-footer/global-footer.component.html 69 @@ -9415,6 +9960,7 @@ What is a mempool? + Što je mempool? src/app/shared/components/global-footer/global-footer.component.html 70 @@ -9423,6 +9969,7 @@ What is a block explorer? + Što je blok explorer? src/app/shared/components/global-footer/global-footer.component.html 71 @@ -9431,6 +9978,7 @@ What is a mempool explorer? + Što je mempool explorer? src/app/shared/components/global-footer/global-footer.component.html 72 @@ -9439,6 +9987,7 @@ Why isn't my transaction confirming? + Zašto se moja transakcija ne potvrđuje? src/app/shared/components/global-footer/global-footer.component.html 73 @@ -9447,6 +9996,7 @@ More FAQs » + Više često postavljanih pitanja » src/app/shared/components/global-footer/global-footer.component.html 74 @@ -9455,6 +10005,7 @@ Research + Istraživanje src/app/shared/components/global-footer/global-footer.component.html 75 @@ -9463,6 +10014,7 @@ Networks + Mreže src/app/shared/components/global-footer/global-footer.component.html 79 @@ -9471,6 +10023,7 @@ Mainnet Explorer + Mainnet Explorer src/app/shared/components/global-footer/global-footer.component.html 80 @@ -9479,6 +10032,7 @@ Testnet3 Explorer + Testnet3 Explorer src/app/shared/components/global-footer/global-footer.component.html 81 @@ -9487,6 +10041,7 @@ Testnet4 Explorer + Testnet4 Explorer src/app/shared/components/global-footer/global-footer.component.html 82 @@ -9495,6 +10050,7 @@ Signet Explorer + Signet Explorer src/app/shared/components/global-footer/global-footer.component.html 83 @@ -9503,6 +10059,7 @@ Liquid Testnet Explorer + Liquid Testnet Explorer src/app/shared/components/global-footer/global-footer.component.html 84 @@ -9511,6 +10068,7 @@ Liquid Explorer + Liquid Explorer src/app/shared/components/global-footer/global-footer.component.html 85 @@ -9519,6 +10077,7 @@ Tools + Alati src/app/shared/components/global-footer/global-footer.component.html 89 @@ -9527,6 +10086,7 @@ Clock (Mined) + Sat (izrudaren) src/app/shared/components/global-footer/global-footer.component.html 91 @@ -9535,6 +10095,7 @@ Legal + Legalno src/app/shared/components/global-footer/global-footer.component.html 96 @@ -9543,6 +10104,7 @@ Terms of Service + Uvjeti usluge src/app/shared/components/global-footer/global-footer.component.html 97 @@ -9552,6 +10114,7 @@ Privacy Policy + Politika privatnosti src/app/shared/components/global-footer/global-footer.component.html 98 @@ -9561,6 +10124,7 @@ Trademark Policy + Politika zaštitnih znakova src/app/shared/components/global-footer/global-footer.component.html 99 @@ -9570,6 +10134,7 @@ Third-party Licenses + Licence trećih strana src/app/shared/components/global-footer/global-footer.component.html 100 @@ -9579,6 +10144,7 @@ Your balance is too low.Please top up your account. + Vaš saldo je prenizak.Molimo dopunite svoj račun . src/app/shared/components/mempool-error/mempool-error.component.html 9 @@ -9587,6 +10153,7 @@ This is a test network. Coins have no value. + Ovo je testna mreža. Coini nemaju vrijednost. src/app/shared/components/testnet-alert/testnet-alert.component.html 4 @@ -9595,6 +10162,7 @@ Testnet3 is deprecated, and will soon be replaced by Testnet4 + Testnet3 je zastario i uskoro će ga zamijeniti Testnet4 src/app/shared/components/testnet-alert/testnet-alert.component.html 6 @@ -9603,6 +10171,7 @@ Testnet4 is not yet finalized, and may be reset at anytime. + Testnet4 još nije finaliziran i može se resetirati u bilo kojem trenutku. src/app/shared/components/testnet-alert/testnet-alert.component.html 9 @@ -9611,6 +10180,7 @@ Batch payment + Skupno plaćanje src/app/shared/filters.utils.ts 108 @@ -9618,6 +10188,7 @@ Address Types + Vrste adresa src/app/shared/filters.utils.ts 119 @@ -9625,6 +10196,7 @@ Behavior + Ponašanje src/app/shared/filters.utils.ts 120 @@ -9632,6 +10204,7 @@ Heuristics + Heuristika src/app/shared/filters.utils.ts 122 @@ -9639,6 +10212,7 @@ Sighash Flags + Sighash Flags src/app/shared/filters.utils.ts 123 @@ -9646,6 +10220,7 @@ year + godina src/app/shared/i18n/dates.ts 3 @@ -9653,6 +10228,7 @@ years + godina src/app/shared/i18n/dates.ts 4 @@ -9660,6 +10236,7 @@ month + mjesec src/app/shared/i18n/dates.ts 5 @@ -9667,6 +10244,7 @@ months + mjeseci src/app/shared/i18n/dates.ts 6 @@ -9674,6 +10252,7 @@ week + tjedan src/app/shared/i18n/dates.ts 7 @@ -9681,6 +10260,7 @@ weeks + tjedana src/app/shared/i18n/dates.ts 8 @@ -9688,6 +10268,7 @@ day + dan src/app/shared/i18n/dates.ts 9 @@ -9695,6 +10276,7 @@ days + dana src/app/shared/i18n/dates.ts 10 @@ -9702,6 +10284,7 @@ hour + sat src/app/shared/i18n/dates.ts 11 @@ -9709,6 +10292,7 @@ hours + sati src/app/shared/i18n/dates.ts 12 @@ -9716,6 +10300,7 @@ minute + minuta src/app/shared/i18n/dates.ts 13 @@ -9723,6 +10308,7 @@ minutes + minuta src/app/shared/i18n/dates.ts 14 @@ -9730,6 +10316,7 @@ second + sekunda src/app/shared/i18n/dates.ts 15 @@ -9737,6 +10324,7 @@ seconds + sekundi src/app/shared/i18n/dates.ts 16 @@ -9744,6 +10332,7 @@ Transaction fee + Transakcijska naknada src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts 11 @@ -9751,6 +10340,7 @@ Multisig of + Multisig od src/app/shared/script.utils.ts 168 diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index 7e80a2387..47c1eac43 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -457,6 +457,7 @@ Plus unconfirmed ancestor(s) + 컨펌되지 않은 조상(들) src/app/components/accelerate-checkout/accelerate-checkout.component.html 41 @@ -491,6 +492,7 @@ Size in vbytes of this transaction (including unconfirmed ancestors) + 트랜잭션 크기 (확인되지 않은 조상 포함) src/app/components/accelerate-checkout/accelerate-checkout.component.html 51 @@ -499,6 +501,7 @@ In-band fees + 대역 내 수수료 src/app/components/accelerate-checkout/accelerate-checkout.component.html 55 @@ -624,6 +627,7 @@ Fees already paid by this transaction (including unconfirmed ancestors) + 이 트랜잭션이 이미 지불한 수수료 (확인되지 않은 조상 포함) src/app/components/accelerate-checkout/accelerate-checkout.component.html 62 @@ -632,6 +636,7 @@ How much faster? + 얼마나 더 빠르게 원하시나요? src/app/components/accelerate-checkout/accelerate-checkout.component.html 71 @@ -640,6 +645,7 @@ This will reduce your expected waiting time until the first confirmation to + 첫 번째 컨펌까지 예상 대기 시간이 로 단축됩니다 src/app/components/accelerate-checkout/accelerate-checkout.component.html 76,77 @@ -657,6 +663,7 @@ Next block market rate + 다음 블록 시장 수수료율 src/app/components/accelerate-checkout/accelerate-checkout.component.html 109 @@ -687,6 +694,7 @@ Estimated extra fee required + 예측된 추가발생 수수료 src/app/components/accelerate-checkout/accelerate-checkout.component.html 117 @@ -695,6 +703,7 @@ Target rate + 목표율 src/app/components/accelerate-checkout/accelerate-checkout.component.html 131 @@ -703,6 +712,7 @@ Extra fee required + 필요한 추가 수수료 src/app/components/accelerate-checkout/accelerate-checkout.component.html 139 @@ -711,6 +721,7 @@ Mempool Accelerator™ fees + 멤풀 엑셀러레이터 수수료 src/app/components/accelerate-checkout/accelerate-checkout.component.html 153 @@ -719,6 +730,7 @@ Accelerator Service Fee + 엑셀러레이터 서비스 수수료 src/app/components/accelerate-checkout/accelerate-checkout.component.html 157 @@ -727,6 +739,7 @@ Transaction Size Surcharge + 트랜잭션 사이즈에 의한 추가 요금 src/app/components/accelerate-checkout/accelerate-checkout.component.html 169 @@ -735,6 +748,7 @@ Estimated acceleration cost + 예상 가속 비용 src/app/components/accelerate-checkout/accelerate-checkout.component.html 185 @@ -743,6 +757,7 @@ Maximum acceleration cost + 최대 가속 비용 src/app/components/accelerate-checkout/accelerate-checkout.component.html 204 @@ -760,6 +775,7 @@ Available balance + 잔액 src/app/components/accelerate-checkout/accelerate-checkout.component.html 226 @@ -785,6 +801,7 @@ Accelerate your Bitcoin transaction? + 비트코인 트랜잭션 가속하기 src/app/components/accelerate-checkout/accelerate-checkout.component.html 273 @@ -802,6 +819,7 @@ Confirmation expected + 컨펌이 예상됩니다 src/app/components/accelerate-checkout/accelerate-checkout.component.html 287 @@ -1587,6 +1605,7 @@ Total vSize + 총 vSize src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 95c6222e4..7912e34ee 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -645,6 +645,7 @@ This will reduce your expected waiting time until the first confirmation to + İlk onaya kadar geçen bekleme süresini kadar azaltacak. src/app/components/accelerate-checkout/accelerate-checkout.component.html 76,77 @@ -1392,6 +1393,7 @@ Out-of-band fees + Bant-dışı ücretler src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html 27 @@ -1791,6 +1793,7 @@ Completed + Tamamlandı src/app/components/acceleration/accelerations-list/accelerations-list.component.html 65 @@ -1799,6 +1802,7 @@ Failed + Başarısız oldu src/app/components/acceleration/accelerations-list/accelerations-list.component.html 67 @@ -2320,6 +2324,7 @@ 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: + Bu adres üzerindeki işlem sayısı arka arayüzününüzün işleyemeyeceği kadar fazla. Daha kuvvetli bir arkayüz için 'ye bakın. . Ya da bu adresi resmi Mempool sitesinde görüntüleyin: src/app/components/address/address.component.html 204,207 @@ -2535,6 +2540,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + Liquid varlığın genel görünümünü incele (): üretilen, yakılan, dolaşan miktarlır ve ilişkili işlemleri ve daha fazlasını gör. src/app/components/asset/asset.component.ts 108 @@ -2800,6 +2806,7 @@ See Bitcoin feerates visualized over time, including minimum and maximum feerates per block along with feerates at various percentiles. + Bitcoin ücret çizelgesinin zaman içindeki değişimini görüntüle. Minimum ve maksimum ücretler ve farklı yüzdelik dilimlerdeki ücretleri görüntüleyebilirsin. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 73 @@ -2824,6 +2831,7 @@ See the average mining fees earned per Bitcoin block visualized in BTC and USD over time. + Bitcoin bloğu başına ortalama madencilik ücretlerinin BTC ve USD cinsi olarak değişimini gör. src/app/components/block-fees-graph/block-fees-graph.component.ts 70 @@ -3012,6 +3020,7 @@ See Bitcoin block health visualized over time. Block health is a measure of how many expected transactions were included in an actual mined block. Expected transactions are determined using Mempool's re-implementation of Bitcoin Core's transaction selection algorithm. + Bitcoin blok sağlığını zaman içinde görüntüle. Blok sağlığı beklenen işlemlerin kaçının gerçekten bloğa dahil edildiğinin ölçüsüdür. Beklenen işlemler Mempool'un çalıştırdığı Bitcoin Core işlem seçme algoritması ile belirlenir. src/app/components/block-health-graph/block-health-graph.component.ts 64 @@ -3298,6 +3307,7 @@ See Bitcoin block rewards in BTC and USD visualized over time. Block rewards are the total funds miners earn from the block subsidy and fees. + Bitcoin blok ödüllerini BTC ve USD cinsinden zaman içerisinde görüntüle. Blok ödülleri yeni çıkarılan bitcoin ödülleri ve işlem ücretlerinin toplamıdır. src/app/components/block-rewards-graph/block-rewards-graph.component.ts 68 @@ -3322,6 +3332,7 @@ See Bitcoin block sizes (MB) and block weights (weight units) visualized over time. + Bitcoin blok boyutlarını (MB) ve blok ağırlıklarını (ağırlık ünitesi) zaman içinde görselleştir. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 65 @@ -3445,6 +3456,7 @@ See size, weight, fee range, included transactions, and more for Liquid block (). + Liquid bloğundaki () boyut, ağırlık, ücret aralığı, dahil edilen işlemler ve daha fazlasını gör. src/app/components/block-view/block-view.component.ts 112 @@ -3460,6 +3472,7 @@ See size, weight, fee range, included transactions, audit (expected v actual), and more for Bitcoin block (). + Bitcoin block () için boyut, ağırlıklar, ücret aralığı, dahili işlemler, denetim (beklene vs gerçek) ve daha fazlasını gör. src/app/components/block-view/block-view.component.ts 114 @@ -3651,6 +3664,7 @@ This block does not belong to the main chain, it has been replaced by: + Bu blok ana-zincire dahil değil ve şununla değiştirilebilir: src/app/components/block/block.component.html 5 @@ -4173,6 +4187,7 @@ See the most recent Liquid blocks along with basic stats such as block height, block size, and more. + En güncel Liquid blokları için blok yüksekliği, blok büyüklüğü vb temel dataları gör. src/app/components/blocks-list/blocks-list.component.ts 71 @@ -4180,6 +4195,7 @@ See the most recent Bitcoin blocks along with basic stats such as block height, block reward, block size, and more. + En güncel Bitcoin blokları için blok yüksekliği, blok büyüklüğü vb temel dataları gör. src/app/components/blocks-list/blocks-list.component.ts 73 @@ -5162,6 +5178,7 @@ See hashrate and difficulty for the Bitcoin network visualized over time. + Bitcoin ağı için hashrate ve zorluk seviyelerinin değişimini zaman içinde gör. src/app/components/hashrate-chart/hashrate-chart.component.ts 76 @@ -5189,6 +5206,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + Madencilik havuzu dominasyonunu değişimini zaman içinde gör : en büyük madencilik havuzlarının toplam havuzdan aldığı payın değişimini incele. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -5311,6 +5329,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Dust-dışı Federasyon UTXO'larındaki zaman kilidi bitmiş toplam BTC miktarını gör. src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -5510,6 +5529,7 @@ Fund / Redemption Tx + Fon/ Amortisman İşlemi src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -5581,6 +5601,7 @@ Number of times that the Federation's BTC holdings fall below 95% of the total L-BTC supply + Federasyonun tuttuğu BTC miktarının toplam L-BTC'nin %95'inin altına düşme sayısı src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 6 @@ -5698,6 +5719,7 @@ See stats for transactions in the mempool: fee range, aggregate size, and more. Mempool blocks are updated in real-time as the network receives new transactions. + İşlemler için mempool istatistiklerini göster: ücret aralığı, toplam büyüklük, ve fazlasını gör. Mempool blokları, ağa yeni işlem geldiğinde anlık olarak güncellenir. src/app/components/mempool-block/mempool-block.component.ts 62 @@ -5793,6 +5815,7 @@ Get real-time Bitcoin mining stats like hashrate, difficulty adjustment, block rewards, pool dominance, and more. + Anlık olarak hashrate, zorluk seviyesi, blok ödülleri, havuz dominasyonu vb madencilik istatistiklerini görüntüle. src/app/components/mining-dashboard/mining-dashboard.component.ts 30 @@ -6071,6 +6094,7 @@ See mining pool stats for : most recent mined blocks, hashrate over time, total block reward to date, known coinbase addresses, and more. + Madencilik havuzu istatistiklerini : en son bulunan bloklar, hashrate'in zaman içindeki değişimi, bugüne kadarki toplam ödül miktarı, bilinen Coinbase adresleri vb gör. src/app/components/pool/pool-preview.component.ts 86 @@ -6305,6 +6329,7 @@ See the most recent RBF replacements on the Bitcoin network, updated in real-time. + Bitcoin ağı üzerindeki en yeni RBF değişimlerini gerçek zamanlı olarak görüntüle. src/app/components/rbf-list/rbf-list.component.ts 62 @@ -6618,6 +6643,7 @@ Cap outliers + Sınır dışı değerler src/app/components/statistics/statistics.component.html 121 @@ -6626,6 +6652,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + Mempool büyüklüğünün (MvB olarak) ve saniyedeki işlem sayısının (vB/s) zaman içindeki değişimini görselleştir. src/app/components/statistics/statistics.component.ts 66 @@ -6633,6 +6660,7 @@ See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV. + Bitcoin bloklarını ve mempool yoğunluğunu televizyon formatına uygun olarak doğru zamanlı gör src/app/components/television/television.component.ts 40 @@ -6667,6 +6695,7 @@ Comma-separated list of raw transactions + Raw-işlem datalarının virgül ile ayrık gösterimi src/app/components/test-transactions/test-transactions.component.html 7 @@ -7113,6 +7142,7 @@ Waiting for your transaction to appear in the mempool + İşleminizin mempool'da gözükemsini bekliyoruz. src/app/components/tracker/tracker.component.html 150 @@ -7121,6 +7151,7 @@ Your transaction is in the mempool, but it will not be confirmed for some time. + İşleminiz mempool'da yalnız yakın zamanda onaylanması beklenmiyor. src/app/components/tracker/tracker.component.html 156 @@ -7129,6 +7160,7 @@ Your transaction is near the top of the mempool, and is expected to confirm soon. + İşleminizin mempool'un üst kademesinde, yakında onaylanması bekleniyor. src/app/components/tracker/tracker.component.html 162 @@ -7137,6 +7169,7 @@ Your transaction is expected to confirm in the next block + İşleminizin bir sonraki blokta onaylanması bekleniyor. src/app/components/tracker/tracker.component.html 168 @@ -7188,6 +7221,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + İşlemler ve işlem id'si için anlık durum, adresler, ücretler, script vb bilgileri çek. src/app/components/tracker/tracker.component.ts 413 @@ -7923,6 +7957,7 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, wallet issues, etc.For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). + mempool.space Bitcoin ağı hakkında sadece bilgi sağlar. kaybettiğiniz fonları, cüzdanlar ile yaşadığınız sorunları çözmekte yardımcı olamaz. İşlemler ile ilgili sorun yaşarsanız bu işlemi gerçekleştirdiğiniz entite ile iletişime geçmeniz gerekir. (cüzdan yazılımı, borsa vb) src/app/docs/api-docs/api-docs.component.html 15,16 @@ -8025,6 +8060,7 @@ Get answers to common questions like: What is a mempool? Why isn't my transaction confirming? How can I run my own instance of The Mempool Open Source Project? And more. + Mempool nedir, neden işlemim onaylanmıyor, Açık Kaynak Kodlu Mempool projesinin bir kopyasını nasıl çalıştırabilirim? gibi temel sorulara cevaplar bulun. src/app/docs/docs/docs.component.ts 47 @@ -8072,6 +8108,7 @@ Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Mempool.space Websoket API servisi için, bloklardan gerçek-zamanlı bilgi çek, mempoollar, işlemler, adresler vb talepler için dökümantasyon. src/app/docs/docs/docs.component.ts 63 @@ -8087,6 +8124,7 @@ Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance. + Electrum RPC için arayüz dökümantasyonu: Esplora'ya anında, kolayca ve emniyetli bir şekilde ulaşın. src/app/docs/docs/docs.component.ts 68 @@ -8403,6 +8441,7 @@ Overview for Lightning channel . See channel capacity, the Lightning nodes involved, related on-chain transactions, and more. + Lightning Kanalı için genel bakış sağlar. Kanal kapasitesi, bağlantılı Lightning nodeları, alakalı zincir üstü işlemler vb veriler. src/app/lightning/channel/channel-preview.component.ts 37 @@ -9030,6 +9069,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Lightning Network için istatistikleri getir. ( toplam kapasite, bağlantılar vb), Ligthning nodeları (kanallar, likidite) ve Lightning kanalları (durum, ücretler vb) src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -9139,6 +9179,7 @@ Overview for the Lightning network node named . See channels, capacity, location, fee stats, and more. + adındaki Lightning ağı nodu için genel bakış. Kanalları, kapasiteyi, lokasyonu, ücret bilgileri ve daha fazlasını gör. src/app/lightning/node/node-preview.component.ts 52 @@ -9338,6 +9379,7 @@ See the channels of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. + Tor-dışı Lightning ağı nodelarını dünya haritası üzerinde görselleştir. Haritadaki noktaların üzerinde gezerek node adı ve detayları görebilirsiniz. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -9362,6 +9404,7 @@ See the locations of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. + Tor-dışı Lightning ağı nodelarını dünya haritası üzerinde görselleştir. Haritadaki noktaların üzerinde gezerek node adı ve detayları görebilirsiniz. src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -9369,6 +9412,7 @@ See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both. + Ağ türüne göre Lightning ağı nodelarının zaman içerisindeki değişimini göster. Sadece clearnet (IPv4, IPv6), darknet (Tor, I2p, cjdns) ve iki tür bağlantı için. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 74 @@ -9437,6 +9481,7 @@ See a geographical breakdown of the Lightning network: how many Lightning nodes are hosted in countries around the world, aggregate BTC capacity for each country, and more. + Lightning network ağının coğrafi dağılımını görüntüle. Hangi ülkede kaç tane node bulunuyor, ülkeler için toplam BTC kapasitesi ve dha fazlası. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 47 @@ -9507,6 +9552,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. + de çalıştırılan bütün Lightning nodeları içn node kapasitesi, açık node sayısı vb bilgileri incele. src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -9589,6 +9635,7 @@ Browse the top 100 ISPs hosting Lightning nodes along with stats like total number of nodes per ISP, aggregate BTC capacity per ISP, and more + En fazla Lightning Node'u barındıran 100 ISP'yi ve onların ISP başı toplam node sayısı, ISP'nin toplam BTC kapasitesi vb verilerini incele. src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -9651,6 +9698,7 @@ Browse all Bitcoin Lightning nodes using the [AS] ISP and see aggregate stats like total number of nodes, total capacity, and more for the ISP. + ISP [AS] kulanan bütün Lightning nodelarını ve onların toplam node sayısı, toplam kapasites vb görüntüle. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -9706,6 +9754,7 @@ See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc. + Lightning ağındaki en eski nodları ve bu nodeların kanal sayısı, kapasitesi ve lokasyonunu vb dataları görüntüle. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 28 @@ -9713,6 +9762,7 @@ See Lightning nodes with the most BTC liquidity deployed along with high-level stats like number of open channels, location, node age, and more. + Lightning ağındaki en fazla BTC likiditesi olan nodelar için açık kanal sayısı, lokasyon, node yaşı vb dataları gör. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts 35 @@ -9720,6 +9770,7 @@ See Lightning nodes with the most channels open along with high-level stats like total node capacity, node age, and more. + Lightning nodeları için toplam node kapasitesi, node yaşı vb temel dataları görüntüle. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts 39 @@ -10093,6 +10144,7 @@ Your balance is too low.Please top up your account. + Balansınız çok düşük. lütfen hesabınıza ekleme yapınız . src/app/shared/components/mempool-error/mempool-error.component.html 9 diff --git a/nginx.conf b/nginx.conf index abd7b1269..670764e20 100644 --- a/nginx.conf +++ b/nginx.conf @@ -108,6 +108,7 @@ http { ~*^hi hi; ~*^ne ne; ~*^lt lt; + ~*^hr hr; } map $cookie_lang $lang { @@ -145,6 +146,7 @@ http { ~*^hi hi; ~*^ne ne; ~*^lt lt; + ~*^hr hr; } server { diff --git a/production/nginx/http-language.conf b/production/nginx/http-language.conf index c03d776b0..14c26a741 100644 --- a/production/nginx/http-language.conf +++ b/production/nginx/http-language.conf @@ -32,6 +32,7 @@ map $http_accept_language $header_lang { ~*^vi vi; ~*^zh zh; ~*^lt lt; + ~*^hr hr; } map $cookie_lang $lang { default $header_lang; @@ -67,4 +68,5 @@ map $cookie_lang $lang { ~*^vi vi; ~*^zh zh; ~*^lt lt; + ~*^hr hr; }