Merge branch 'master' into simon/fix-use-same-fee-span-calc
This commit is contained in:
		
						commit
						627c913d5e
					
				| @ -171,52 +171,58 @@ Helpful link: https://gist.github.com/System-Glitch/cb4e87bf1ae3fec9925725bb3ebe | ||||
| 
 | ||||
| Run bitcoind on regtest: | ||||
|    ``` | ||||
|    bitcoind -regtest -rpcport=8332 | ||||
|    bitcoind -regtest | ||||
|    ``` | ||||
| 
 | ||||
| Create a new wallet, if needed: | ||||
|    ``` | ||||
|    bitcoin-cli -regtest -rpcport=8332 createwallet test | ||||
|    bitcoin-cli -regtest createwallet test | ||||
|    ``` | ||||
| 
 | ||||
| Load wallet (this command may take a while if you have lot of UTXOs): | ||||
|    ``` | ||||
|    bitcoin-cli -regtest -rpcport=8332 loadwallet test | ||||
|    bitcoin-cli -regtest loadwallet test | ||||
|    ``` | ||||
| 
 | ||||
| Get a new address: | ||||
|    ``` | ||||
|    address=$(./src/bitcoin-cli -regtest -rpcport=8332 getnewaddress) | ||||
|    address=$(bitcoin-cli -regtest getnewaddress) | ||||
|    ``` | ||||
| 
 | ||||
| Mine blocks to the previously generated address. You need at least 101 blocks before you can spend. This will take some time to execute (~1 min): | ||||
|    ``` | ||||
|    bitcoin-cli -regtest -rpcport=8332 generatetoaddress 101 $address | ||||
|    bitcoin-cli -regtest generatetoaddress 101 $address | ||||
|    ``` | ||||
| 
 | ||||
| Send 0.1 BTC at 5 sat/vB to another address: | ||||
|    ``` | ||||
|    ./src/bitcoin-cli -named -regtest -rpcport=8332 sendtoaddress address=$(./src/bitcoin-cli -regtest -rpcport=8332 getnewaddress) amount=0.1 fee_rate=5 | ||||
|    bitcoin-cli -named -regtest sendtoaddress address=$(bitcoin-cli -regtest getnewaddress) amount=0.1 fee_rate=5 | ||||
|    ``` | ||||
| 
 | ||||
| See more example of `sendtoaddress`: | ||||
|    ``` | ||||
|    ./src/bitcoin-cli sendtoaddress # will print the help | ||||
|    bitcoin-cli sendtoaddress # will print the help | ||||
|    ``` | ||||
| 
 | ||||
| Mini script to generate transactions with random TX fee-rate (between 1 to 100 sat/vB). It's slow so don't expect to use this to test mempool spam, except if you let it run for a long time, or maybe with multiple regtest nodes connected to each other. | ||||
| Mini script to generate random network activity (random TX count with random tx fee-rate). It's slow so don't expect to use this to test mempool spam, except if you let it run for a long time, or maybe with multiple regtest nodes connected to each other. | ||||
|    ``` | ||||
|    #!/bin/bash | ||||
|    address=$(./src/bitcoin-cli -regtest -rpcport=8332 getnewaddress) | ||||
|    address=$(bitcoin-cli -regtest getnewaddress) | ||||
|    bitcoin-cli -regtest generatetoaddress 101 $address | ||||
|    for i in {1..1000000} | ||||
|    do | ||||
|      ./src/bitcoin-cli -regtest -rpcport=8332 -named sendtoaddress address=$address amount=0.01 fee_rate=$(jot -r 1  1 100) | ||||
|       for y in $(seq 1 "$(jot -r 1 1 1000)") | ||||
|       do | ||||
|          bitcoin-cli -regtest -named sendtoaddress address=$address amount=0.01 fee_rate=$(jot -r 1 1 100) | ||||
|       done | ||||
|       bitcoin-cli -regtest generatetoaddress 1 $address | ||||
|       sleep 5 | ||||
|    done | ||||
|    ``` | ||||
| 
 | ||||
| Generate block at regular interval (every 10 seconds in this example): | ||||
|    ``` | ||||
|    watch -n 10 "./src/bitcoin-cli -regtest -rpcport=8332 generatetoaddress 1 $address" | ||||
|    watch -n 10 "bitcoin-cli -regtest generatetoaddress 1 $address" | ||||
|    ``` | ||||
| 
 | ||||
| ### Mining pools update | ||||
|  | ||||
| @ -23,9 +23,11 @@ describe('Mempool Difficulty Adjustment', () => { | ||||
|           remainingBlocks: 1834, | ||||
|           remainingTime: 977591692, | ||||
|           previousRetarget: 0.6280047707459726, | ||||
|           previousTime: 1660820820, | ||||
|           nextRetargetHeight: 751968, | ||||
|           timeAvg: 533038, | ||||
|           timeOffset: 0, | ||||
|           expectedBlocks: 161.68833333333333, | ||||
|         }, | ||||
|       ], | ||||
|       [ // Vector 2 (testnet)
 | ||||
| @ -43,11 +45,13 @@ describe('Mempool Difficulty Adjustment', () => { | ||||
|           estimatedRetargetDate: 1661895424692, | ||||
|           remainingBlocks: 1834, | ||||
|           remainingTime: 977591692, | ||||
|           previousTime: 1660820820, | ||||
|           previousRetarget: 0.6280047707459726, | ||||
|           nextRetargetHeight: 751968, | ||||
|           timeAvg: 533038, | ||||
|           timeOffset: -667000, // 11 min 7 seconds since last block (testnet only)
 | ||||
|           // If we add time avg to abs(timeOffset) it makes exactly 1200000 ms, or 20 minutes
 | ||||
|           expectedBlocks: 161.68833333333333, | ||||
|         }, | ||||
|       ], | ||||
|     ] as [[number, number, number, number, string, number], DifficultyAdjustment][]; | ||||
|  | ||||
| @ -9,9 +9,11 @@ export interface DifficultyAdjustment { | ||||
|   remainingBlocks: number;       // Block count
 | ||||
|   remainingTime: number;         // Duration of time in ms
 | ||||
|   previousRetarget: number;      // Percent: -75 to 300
 | ||||
|   previousTime: number;          // Unix time in ms
 | ||||
|   nextRetargetHeight: number;    // Block Height
 | ||||
|   timeAvg: number;               // Duration of time in ms
 | ||||
|   timeOffset: number;            // (Testnet) Time since last block (cap @ 20min) in ms
 | ||||
|   expectedBlocks: number;         // Block count
 | ||||
| } | ||||
| 
 | ||||
| export function calcDifficultyAdjustment( | ||||
| @ -32,12 +34,12 @@ export function calcDifficultyAdjustment( | ||||
|   const progressPercent = (blockHeight >= 0) ? blocksInEpoch / EPOCH_BLOCK_LENGTH * 100 : 100; | ||||
|   const remainingBlocks = EPOCH_BLOCK_LENGTH - blocksInEpoch; | ||||
|   const nextRetargetHeight = (blockHeight >= 0) ? blockHeight + remainingBlocks : 0; | ||||
|   const expectedBlocks = diffSeconds / BLOCK_SECONDS_TARGET; | ||||
| 
 | ||||
|   let difficultyChange = 0; | ||||
|   let timeAvgSecs = BLOCK_SECONDS_TARGET; | ||||
|   let timeAvgSecs = diffSeconds / blocksInEpoch; | ||||
|   // Only calculate the estimate once we have 7.2% of blocks in current epoch
 | ||||
|   if (blocksInEpoch >= ESTIMATE_LAG_BLOCKS) { | ||||
|     timeAvgSecs = diffSeconds / blocksInEpoch; | ||||
|     difficultyChange = (BLOCK_SECONDS_TARGET / timeAvgSecs - 1) * 100; | ||||
|     // Max increase is x4 (+300%)
 | ||||
|     if (difficultyChange > 300) { | ||||
| @ -74,9 +76,11 @@ export function calcDifficultyAdjustment( | ||||
|     remainingBlocks, | ||||
|     remainingTime, | ||||
|     previousRetarget, | ||||
|     previousTime: DATime, | ||||
|     nextRetargetHeight, | ||||
|     timeAvg, | ||||
|     timeOffset, | ||||
|     expectedBlocks, | ||||
|   }; | ||||
| } | ||||
| 
 | ||||
|  | ||||
| @ -417,24 +417,24 @@ class NodesApi { | ||||
| 
 | ||||
|         if (!ispList[isp1]) { | ||||
|           ispList[isp1] = { | ||||
|             id: channel.isp1ID.toString(), | ||||
|             ids: [channel.isp1ID], | ||||
|             capacity: 0, | ||||
|             channels: 0, | ||||
|             nodes: {}, | ||||
|           }; | ||||
|         } else if (ispList[isp1].id.indexOf(channel.isp1ID) === -1) { | ||||
|           ispList[isp1].id += ',' + channel.isp1ID.toString(); | ||||
|         } else if (ispList[isp1].ids.includes(channel.isp1ID) === false) { | ||||
|           ispList[isp1].ids.push(channel.isp1ID); | ||||
|         } | ||||
| 
 | ||||
|         if (!ispList[isp2]) { | ||||
|           ispList[isp2] = { | ||||
|             id: channel.isp2ID.toString(), | ||||
|             ids: [channel.isp2ID], | ||||
|             capacity: 0, | ||||
|             channels: 0, | ||||
|             nodes: {}, | ||||
|           }; | ||||
|         } else if (ispList[isp2].id.indexOf(channel.isp2ID) === -1) { | ||||
|           ispList[isp2].id += ',' + channel.isp2ID.toString(); | ||||
|         } else if (ispList[isp2].ids.includes(channel.isp2ID) === false) { | ||||
|           ispList[isp2].ids.push(channel.isp2ID); | ||||
|         } | ||||
|          | ||||
|         ispList[isp1].capacity += channel.capacity; | ||||
| @ -444,11 +444,11 @@ class NodesApi { | ||||
|         ispList[isp2].channels += 1; | ||||
|         ispList[isp2].nodes[channel.node2PublicKey] = true; | ||||
|       } | ||||
| 
 | ||||
|        | ||||
|       const ispRanking: any[] = []; | ||||
|       for (const isp of Object.keys(ispList)) { | ||||
|         ispRanking.push([ | ||||
|           ispList[isp].id, | ||||
|           ispList[isp].ids.sort((a, b) => a - b).join(','), | ||||
|           isp, | ||||
|           ispList[isp].capacity, | ||||
|           ispList[isp].channels, | ||||
|  | ||||
| @ -31,6 +31,11 @@ class Mempool { | ||||
|   private mempoolProtection = 0; | ||||
|   private latestTransactions: any[] = []; | ||||
| 
 | ||||
|   private ESPLORA_MISSING_TX_WARNING_THRESHOLD = 100;  | ||||
|   private SAMPLE_TIME = 10000; // In ms
 | ||||
|   private timer = new Date().getTime(); | ||||
|   private missingTxCount = 0; | ||||
| 
 | ||||
|   constructor() { | ||||
|     setInterval(this.updateTxPerSecond.bind(this), 1000); | ||||
|     setInterval(this.deleteExpiredTransactions.bind(this), 20000); | ||||
| @ -128,6 +133,16 @@ class Mempool { | ||||
|       loadingIndicators.setProgress('mempool', Object.keys(this.mempoolCache).length / transactions.length * 100); | ||||
|     } | ||||
| 
 | ||||
|     // https://github.com/mempool/mempool/issues/3283
 | ||||
|     const logEsplora404 = (missingTxCount, threshold, time) => { | ||||
|       const log = `In the past ${time / 1000} seconds, esplora tx API replied ${missingTxCount} times with a 404 error code while updating nodejs backend mempool`; | ||||
|       if (missingTxCount >= threshold) { | ||||
|         logger.warn(log); | ||||
|       } else if (missingTxCount > 0) { | ||||
|         logger.debug(log); | ||||
|       } | ||||
|     }; | ||||
| 
 | ||||
|     for (const txid of transactions) { | ||||
|       if (!this.mempoolCache[txid]) { | ||||
|         try { | ||||
| @ -142,7 +157,10 @@ class Mempool { | ||||
|           } | ||||
|           hasChange = true; | ||||
|           newTransactions.push(transaction); | ||||
|         } catch (e) { | ||||
|         } catch (e: any) { | ||||
|           if (config.MEMPOOL.BACKEND === 'esplora' && e.response?.status === 404) { | ||||
|             this.missingTxCount++; | ||||
|           } | ||||
|           logger.debug(`Error finding transaction '${txid}' in the mempool: ` + (e instanceof Error ? e.message : e)); | ||||
|         } | ||||
|       } | ||||
| @ -152,6 +170,14 @@ class Mempool { | ||||
|       } | ||||
|     } | ||||
| 
 | ||||
|     // Reset esplora 404 counter and log a warning if needed
 | ||||
|     const elapsedTime = new Date().getTime() - this.timer; | ||||
|     if (elapsedTime > this.SAMPLE_TIME) { | ||||
|       logEsplora404(this.missingTxCount, this.ESPLORA_MISSING_TX_WARNING_THRESHOLD, elapsedTime); | ||||
|       this.timer = new Date().getTime(); | ||||
|       this.missingTxCount = 0; | ||||
|     } | ||||
| 
 | ||||
|     // Prevent mempool from clear on bitcoind restart by delaying the deletion
 | ||||
|     if (this.mempoolProtection === 0 | ||||
|       && currentMempoolSize > 20000 | ||||
|  | ||||
| @ -107,7 +107,7 @@ export class BlockchainBlocksComponent implements OnInit, OnChanges, OnDestroy { | ||||
|           this.blocks.unshift(block); | ||||
|           this.blocks = this.blocks.slice(0, this.dynamicBlocksAmount); | ||||
| 
 | ||||
|           if (txConfirmed) { | ||||
|           if (txConfirmed && this.height === block.height) { | ||||
|             this.markHeight = block.height; | ||||
|             this.moveArrowToPosition(true, true); | ||||
|           } else { | ||||
|  | ||||
| @ -87,8 +87,8 @@ export class BlocksList implements OnInit, OnDestroy { | ||||
|       this.stateService.blocks$ | ||||
|         .pipe( | ||||
|           switchMap((block) => { | ||||
|             if (block[0].height < this.lastBlockHeight) { | ||||
|               return []; // Return an empty stream so the last pipe is not executed
 | ||||
|             if (block[0].height <= this.lastBlockHeight) { | ||||
|               return [null]; // Return an empty stream so the last pipe is not executed
 | ||||
|             } | ||||
|             this.lastBlockHeight = block[0].height; | ||||
|             return [block]; | ||||
| @ -101,14 +101,16 @@ export class BlocksList implements OnInit, OnDestroy { | ||||
|             this.lastPage = this.page; | ||||
|             return blocks[0]; | ||||
|           } | ||||
|           this.blocksCount = Math.max(this.blocksCount, blocks[1][0].height) + 1; | ||||
|           if (this.stateService.env.MINING_DASHBOARD) { | ||||
|             // @ts-ignore: Need to add an extra field for the template
 | ||||
|             blocks[1][0].extras.pool.logo = `/resources/mining-pools/` + | ||||
|               blocks[1][0].extras.pool.name.toLowerCase().replace(' ', '').replace('.', '') + '.svg'; | ||||
|           if (blocks[1]) { | ||||
|             this.blocksCount = Math.max(this.blocksCount, blocks[1][0].height) + 1; | ||||
|             if (this.stateService.env.MINING_DASHBOARD) { | ||||
|               // @ts-ignore: Need to add an extra field for the template
 | ||||
|               blocks[1][0].extras.pool.logo = `/resources/mining-pools/` + | ||||
|                 blocks[1][0].extras.pool.name.toLowerCase().replace(' ', '').replace('.', '') + '.svg'; | ||||
|             } | ||||
|             acc.unshift(blocks[1][0]); | ||||
|             acc = acc.slice(0, this.widget ? 6 : 15); | ||||
|           } | ||||
|           acc.unshift(blocks[1][0]); | ||||
|           acc = acc.slice(0, this.widget ? 6 : 15); | ||||
|           return acc; | ||||
|         }, []) | ||||
|       ); | ||||
|  | ||||
| @ -0,0 +1,87 @@ | ||||
| <div *ngIf="showTitle" class="main-title" i18n="dashboard.difficulty-adjustment">Difficulty Adjustment</div> | ||||
| <div class="card-wrapper"> | ||||
|   <div class="card"> | ||||
|     <div class="card-body more-padding"> | ||||
|       <div class="difficulty-adjustment-container" *ngIf="(isLoadingWebSocket$ | async) === false && (difficultyEpoch$ | async) as epochData; else loadingDifficulty"> | ||||
|         <div class="item"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.remaining">Remaining</h5> | ||||
|           <div class="card-text"> | ||||
|             <ng-container *ngTemplateOutlet="epochData.remainingBlocks === 1 ? blocksSingular : blocksPlural; context: {$implicit: epochData.remainingBlocks }"></ng-container> | ||||
|             <ng-template #blocksPlural let-i i18n="shared.blocks">{{ i }} <span class="shared-block">blocks</span></ng-template> | ||||
|             <ng-template #blocksSingular let-i i18n="shared.block">{{ i }} <span class="shared-block">block</span></ng-template> | ||||
|           </div> | ||||
|           <div class="symbol"><app-time kind="until" [time]="epochData.estimatedRetargetDate" [fastRender]="true"></app-time></div> | ||||
|         </div> | ||||
|         <div class="item"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.estimate">Estimate</h5> | ||||
|           <div *ngIf="epochData.remainingBlocks < 1870; else recentlyAdjusted" class="card-text" [ngStyle]="{'color': epochData.colorAdjustments}"> | ||||
|             <span *ngIf="epochData.change > 0; else arrowDownDifficulty" > | ||||
|               <fa-icon class="retarget-sign" [icon]="['fas', 'caret-up']" [fixedWidth]="true"></fa-icon> | ||||
|             </span> | ||||
|             <ng-template #arrowDownDifficulty > | ||||
|               <fa-icon class="retarget-sign" [icon]="['fas', 'caret-down']" [fixedWidth]="true"></fa-icon> | ||||
|             </ng-template> | ||||
|             {{ epochData.change | absolute | number: '1.2-2' }} | ||||
|             <span class="symbol">%</span> | ||||
|           </div> | ||||
|           <ng-template #recentlyAdjusted> | ||||
|             <div class="card-text">—</div> | ||||
|           </ng-template> | ||||
|           <div class="symbol"> | ||||
|             <span i18n="difficulty-box.previous">Previous</span>: | ||||
|             <span [ngStyle]="{'color': epochData.colorPreviousAdjustments}"> | ||||
|               <span *ngIf="epochData.previousRetarget > 0; else arrowDownPreviousDifficulty" > | ||||
|                 <fa-icon class="previous-retarget-sign" [icon]="['fas', 'caret-up']" [fixedWidth]="true"></fa-icon> | ||||
|               </span> | ||||
|               <ng-template #arrowDownPreviousDifficulty > | ||||
|                 <fa-icon class="previous-retarget-sign" [icon]="['fas', 'caret-down']" [fixedWidth]="true"></fa-icon> | ||||
|               </ng-template> | ||||
|               {{ epochData.previousRetarget | absolute | number: '1.2-2' }} </span> % | ||||
|           </div> | ||||
|         </div> | ||||
|         <div class="item" *ngIf="showProgress"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.current-period">Current Period</h5> | ||||
|           <div class="card-text">{{ epochData.progress | number: '1.2-2' }} <span class="symbol">%</span></div> | ||||
|           <div class="progress small-bar"> | ||||
|             <div class="progress-bar" role="progressbar" style="width: 15%; background-color: #105fb0" [ngStyle]="{'width': epochData.base}"> </div> | ||||
|           </div> | ||||
|         </div> | ||||
|         <div class="item" *ngIf="showHalving"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.next-halving">Next Halving</h5> | ||||
|           <div class="card-text"> | ||||
|             <ng-container *ngTemplateOutlet="epochData.blocksUntilHalving === 1 ? blocksSingular : blocksPlural; context: {$implicit: epochData.blocksUntilHalving }"></ng-container> | ||||
|             <ng-template #blocksPlural let-i i18n="shared.blocks">{{ i }} <span class="shared-block">blocks</span></ng-template> | ||||
|             <ng-template #blocksSingular let-i i18n="shared.block">{{ i }} <span class="shared-block">block</span></ng-template> | ||||
|           </div> | ||||
|           <div class="symbol"><app-time kind="until" [time]="epochData.timeUntilHalving" [fastRender]="true"></app-time></div> | ||||
|         </div> | ||||
|       </div> | ||||
|     </div> | ||||
|   </div> | ||||
| </div> | ||||
| 
 | ||||
| <ng-template #loadingDifficulty> | ||||
|   <div class="difficulty-skeleton loading-container"> | ||||
|     <div class="item"> | ||||
|       <h5 class="card-title" i18n="difficulty-box.remaining">Remaining</h5> | ||||
|       <div class="card-text"> | ||||
|         <div class="skeleton-loader"></div> | ||||
|         <div class="skeleton-loader"></div> | ||||
|       </div> | ||||
|     </div> | ||||
|     <div class="item"> | ||||
|       <h5 class="card-title" i18n="difficulty-box.estimate">Estimate</h5> | ||||
|       <div class="card-text"> | ||||
|         <div class="skeleton-loader"></div> | ||||
|         <div class="skeleton-loader"></div> | ||||
|       </div> | ||||
|     </div> | ||||
|     <div class="item"> | ||||
|       <h5 class="card-title" i18n="difficulty-box.current-period">Current Period</h5> | ||||
|       <div class="card-text"> | ||||
|         <div class="skeleton-loader"></div> | ||||
|         <div class="skeleton-loader"></div> | ||||
|       </div> | ||||
|     </div> | ||||
|   </div> | ||||
| </ng-template> | ||||
| @ -0,0 +1,154 @@ | ||||
| .difficulty-adjustment-container { | ||||
|   display: flex; | ||||
|   flex-direction: row; | ||||
|   justify-content: space-around; | ||||
|   height: 76px; | ||||
|   .shared-block { | ||||
|     color: #ffffff66; | ||||
|     font-size: 12px; | ||||
|   } | ||||
|   .item { | ||||
|     padding: 0 5px; | ||||
|     width: 100%; | ||||
|     &:nth-child(1) { | ||||
|       display: none; | ||||
|       @media (min-width: 485px) { | ||||
|         display: table-cell; | ||||
|       } | ||||
|       @media (min-width: 768px) { | ||||
|         display: none; | ||||
|       } | ||||
|       @media (min-width: 992px) { | ||||
|         display: table-cell; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
|   .card-text { | ||||
|     font-size: 22px; | ||||
|     margin-top: -9px; | ||||
|     position: relative; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| .difficulty-skeleton { | ||||
|   display: flex; | ||||
|   justify-content: space-between; | ||||
|   @media (min-width: 376px) { | ||||
|     flex-direction: row; | ||||
|   } | ||||
|   .item { | ||||
|     max-width: 150px; | ||||
|     margin: 0; | ||||
|     width: -webkit-fill-available; | ||||
|     @media (min-width: 376px) { | ||||
|       margin: 0 auto 0px; | ||||
|     } | ||||
|     &:first-child{ | ||||
|       display: none; | ||||
|       @media (min-width: 485px) { | ||||
|         display: block; | ||||
|       } | ||||
|       @media (min-width: 768px) { | ||||
|         display: none; | ||||
|       } | ||||
|       @media (min-width: 992px) { | ||||
|         display: block; | ||||
|       } | ||||
|     } | ||||
|     &:last-child { | ||||
|       margin-bottom: 0; | ||||
|     } | ||||
|   } | ||||
|   .card-text { | ||||
|     .skeleton-loader { | ||||
|       width: 100%; | ||||
|       display: block; | ||||
|       &:first-child { | ||||
|         margin: 14px auto 0; | ||||
|         max-width: 80px; | ||||
|       } | ||||
|       &:last-child { | ||||
|         margin: 10px auto 0; | ||||
|         max-width: 120px; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .card { | ||||
|   background-color: #1d1f31; | ||||
|   height: 100%; | ||||
| } | ||||
| 
 | ||||
| .card-title { | ||||
|   color: #4a68b9; | ||||
|   font-size: 1rem; | ||||
| } | ||||
| 
 | ||||
| .progress { | ||||
|   display: inline-flex; | ||||
|   width: 100%; | ||||
|   background-color: #2d3348; | ||||
|   height: 1.1rem; | ||||
|   max-width: 180px; | ||||
| } | ||||
| 
 | ||||
| .skeleton-loader { | ||||
|   max-width: 100%; | ||||
| } | ||||
| 
 | ||||
| .more-padding { | ||||
|   padding: 18px; | ||||
| } | ||||
| 
 | ||||
| .small-bar { | ||||
|   height: 8px; | ||||
|   top: -4px; | ||||
|   max-width: 120px; | ||||
| } | ||||
| 
 | ||||
| .loading-container { | ||||
|   min-height: 76px; | ||||
| } | ||||
| 
 | ||||
| .main-title { | ||||
|   position: relative; | ||||
|   color: #ffffff91; | ||||
|   margin-top: -13px; | ||||
|   font-size: 10px; | ||||
|   text-transform: uppercase; | ||||
|   font-weight: 500; | ||||
|   text-align: center; | ||||
|   padding-bottom: 3px; | ||||
| } | ||||
| 
 | ||||
| .card-wrapper { | ||||
|   .card { | ||||
|     height: auto !important; | ||||
|   } | ||||
|   .card-body { | ||||
|     display: flex; | ||||
|     flex: inherit; | ||||
|     text-align: center; | ||||
|     flex-direction: column; | ||||
|     justify-content: space-around; | ||||
|     padding: 24px 20px; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .retarget-sign { | ||||
|   margin-right: -3px; | ||||
|   font-size: 14px; | ||||
|   top: -2px; | ||||
|   position: relative; | ||||
| } | ||||
| 
 | ||||
| .previous-retarget-sign { | ||||
|   margin-right: -2px; | ||||
|   font-size: 10px; | ||||
| } | ||||
| 
 | ||||
| .symbol { | ||||
|   font-size: 13px; | ||||
| } | ||||
| @ -0,0 +1,86 @@ | ||||
| import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core'; | ||||
| import { combineLatest, Observable, timer } from 'rxjs'; | ||||
| import { map, switchMap } from 'rxjs/operators'; | ||||
| import { StateService } from '../../services/state.service'; | ||||
| 
 | ||||
| interface EpochProgress { | ||||
|   base: string; | ||||
|   change: number; | ||||
|   progress: number; | ||||
|   remainingBlocks: number; | ||||
|   newDifficultyHeight: number; | ||||
|   colorAdjustments: string; | ||||
|   colorPreviousAdjustments: string; | ||||
|   estimatedRetargetDate: number; | ||||
|   previousRetarget: number; | ||||
|   blocksUntilHalving: number; | ||||
|   timeUntilHalving: number; | ||||
| } | ||||
| 
 | ||||
| @Component({ | ||||
|   selector: 'app-difficulty-mining', | ||||
|   templateUrl: './difficulty-mining.component.html', | ||||
|   styleUrls: ['./difficulty-mining.component.scss'], | ||||
|   changeDetection: ChangeDetectionStrategy.OnPush, | ||||
| }) | ||||
| export class DifficultyMiningComponent implements OnInit { | ||||
|   isLoadingWebSocket$: Observable<boolean>; | ||||
|   difficultyEpoch$: Observable<EpochProgress>; | ||||
| 
 | ||||
|   @Input() showProgress = true; | ||||
|   @Input() showHalving = false; | ||||
|   @Input() showTitle = true; | ||||
| 
 | ||||
|   constructor( | ||||
|     public stateService: StateService, | ||||
|   ) { } | ||||
| 
 | ||||
|   ngOnInit(): void { | ||||
|     this.isLoadingWebSocket$ = this.stateService.isLoadingWebSocket$; | ||||
|     this.difficultyEpoch$ = combineLatest([ | ||||
|       this.stateService.blocks$.pipe(map(([block]) => block)), | ||||
|       this.stateService.difficultyAdjustment$, | ||||
|     ]) | ||||
|     .pipe( | ||||
|       map(([block, da]) => { | ||||
|         let colorAdjustments = '#ffffff66'; | ||||
|         if (da.difficultyChange > 0) { | ||||
|           colorAdjustments = '#3bcc49'; | ||||
|         } | ||||
|         if (da.difficultyChange < 0) { | ||||
|           colorAdjustments = '#dc3545'; | ||||
|         } | ||||
| 
 | ||||
|         let colorPreviousAdjustments = '#dc3545'; | ||||
|         if (da.previousRetarget) { | ||||
|           if (da.previousRetarget >= 0) { | ||||
|             colorPreviousAdjustments = '#3bcc49'; | ||||
|           } | ||||
|           if (da.previousRetarget === 0) { | ||||
|             colorPreviousAdjustments = '#ffffff66'; | ||||
|           } | ||||
|         } else { | ||||
|           colorPreviousAdjustments = '#ffffff66'; | ||||
|         } | ||||
| 
 | ||||
|         const blocksUntilHalving = 210000 - (block.height % 210000); | ||||
|         const timeUntilHalving = new Date().getTime() + (blocksUntilHalving * 600000); | ||||
| 
 | ||||
|         const data = { | ||||
|           base: `${da.progressPercent.toFixed(2)}%`, | ||||
|           change: da.difficultyChange, | ||||
|           progress: da.progressPercent, | ||||
|           remainingBlocks: da.remainingBlocks - 1, | ||||
|           colorAdjustments, | ||||
|           colorPreviousAdjustments, | ||||
|           newDifficultyHeight: da.nextRetargetHeight, | ||||
|           estimatedRetargetDate: da.estimatedRetargetDate, | ||||
|           previousRetarget: da.previousRetarget, | ||||
|           blocksUntilHalving, | ||||
|           timeUntilHalving, | ||||
|         }; | ||||
|         return data; | ||||
|       }) | ||||
|     ); | ||||
|   } | ||||
| } | ||||
| @ -0,0 +1,41 @@ | ||||
| <div | ||||
|   #tooltip | ||||
|   *ngIf="status" | ||||
|   class="difficulty-tooltip" | ||||
|   [style.visibility]="status ? 'visible' : 'hidden'" | ||||
|   [style.left]="tooltipPosition.x + 'px'" | ||||
|   [style.top]="tooltipPosition.y + 'px'" | ||||
| > | ||||
| <ng-container [ngSwitch]="status"> | ||||
|   <ng-container *ngSwitchCase="'mined'"> | ||||
|     <ng-container *ngIf="isAhead"> | ||||
|       <ng-container *ngTemplateOutlet="expected === 1 ? blocksSingular : blocksPlural; context: {$implicit: expected }"></ng-container> | ||||
|       <ng-template #blocksPlural let-i i18n="difficulty-box.expected-blocks">{{ i }} blocks expected</ng-template> | ||||
|       <ng-template #blocksSingular let-i i18n="difficulty-box.expected-block">{{ i }} block expected</ng-template> | ||||
|     </ng-container> | ||||
|     <ng-container *ngIf="!isAhead"> | ||||
|       <ng-container *ngTemplateOutlet="mined === 1 ? blocksSingular : blocksPlural; context: {$implicit: mined }"></ng-container> | ||||
|       <ng-template #blocksPlural let-i i18n="difficulty-box.mined-blocks">{{ i }} blocks mined</ng-template> | ||||
|       <ng-template #blocksSingular let-i i18n="difficulty-box.mined-block">{{ i }} block mined</ng-template> | ||||
|     </ng-container> | ||||
|   </ng-container> | ||||
|   <ng-container *ngSwitchCase="'remaining'"> | ||||
|     <ng-container *ngTemplateOutlet="remaining === 1 ? blocksSingular : blocksPlural; context: {$implicit: remaining }"></ng-container> | ||||
|     <ng-template #blocksPlural let-i i18n="difficulty-box.remaining-blocks">{{ i }} blocks remaining</ng-template> | ||||
|     <ng-template #blocksSingular let-i i18n="difficulty-box.remaining-block">{{ i }} block remaining</ng-template> | ||||
|   </ng-container> | ||||
|   <ng-container *ngSwitchCase="'ahead'"> | ||||
|     <ng-container *ngTemplateOutlet="ahead === 1 ? blocksSingular : blocksPlural; context: {$implicit: ahead }"></ng-container> | ||||
|     <ng-template #blocksPlural let-i i18n="difficulty-box.blocks-ahead">{{ i }} blocks ahead</ng-template> | ||||
|     <ng-template #blocksSingular let-i i18n="difficulty-box.block-ahead">{{ i }} block ahead</ng-template> | ||||
|   </ng-container> | ||||
|   <ng-container *ngSwitchCase="'behind'"> | ||||
|     <ng-container *ngTemplateOutlet="behind === 1 ? blocksSingular : blocksPlural; context: {$implicit: behind }"></ng-container> | ||||
|     <ng-template #blocksPlural let-i i18n="difficulty-box.blocks-behind">{{ i }} blocks behind</ng-template> | ||||
|     <ng-template #blocksSingular let-i i18n="difficulty-box.block-behind">{{ i }} block behind</ng-template> | ||||
|   </ng-container> | ||||
|   <ng-container *ngSwitchCase="'next'"> | ||||
|     <span class="next-block" i18n="@@bdf0e930eb22431140a2eaeacd809cc5f8ebd38c">Next Block</span> | ||||
|   </ng-container> | ||||
| </ng-container> | ||||
| </div> | ||||
| @ -0,0 +1,22 @@ | ||||
| .difficulty-tooltip { | ||||
|   position: fixed; | ||||
|   background: rgba(#11131f, 0.95); | ||||
|   border-radius: 4px; | ||||
|   box-shadow: 1px 1px 10px rgba(0,0,0,0.5); | ||||
|   color: #b1b1b1; | ||||
|   padding: 10px 15px; | ||||
|   text-align: left; | ||||
|   pointer-events: none; | ||||
|   max-width: 300px; | ||||
|   min-width: 200px; | ||||
|   text-align: center; | ||||
| 
 | ||||
|   p { | ||||
|     margin: 0; | ||||
|     white-space: nowrap; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .next-block { | ||||
|   text-transform: lowercase; | ||||
| } | ||||
| @ -0,0 +1,66 @@ | ||||
| import { Component, ElementRef, ViewChild, Input, OnChanges } from '@angular/core'; | ||||
| 
 | ||||
| interface EpochProgress { | ||||
|   base: string; | ||||
|   change: number; | ||||
|   progress: number; | ||||
|   minedBlocks: number; | ||||
|   remainingBlocks: number; | ||||
|   expectedBlocks: number; | ||||
|   newDifficultyHeight: number; | ||||
|   colorAdjustments: string; | ||||
|   colorPreviousAdjustments: string; | ||||
|   estimatedRetargetDate: number; | ||||
|   previousRetarget: number; | ||||
|   blocksUntilHalving: number; | ||||
|   timeUntilHalving: number; | ||||
| } | ||||
| 
 | ||||
| const EPOCH_BLOCK_LENGTH = 2016; // Bitcoin mainnet
 | ||||
| 
 | ||||
| @Component({ | ||||
|   selector: 'app-difficulty-tooltip', | ||||
|   templateUrl: './difficulty-tooltip.component.html', | ||||
|   styleUrls: ['./difficulty-tooltip.component.scss'], | ||||
| }) | ||||
| export class DifficultyTooltipComponent implements OnChanges { | ||||
|   @Input() status: string | void; | ||||
|   @Input() progress: EpochProgress | void = null;  | ||||
|   @Input() cursorPosition: { x: number, y: number }; | ||||
| 
 | ||||
|   mined: number; | ||||
|   ahead: number; | ||||
|   behind: number; | ||||
|   expected: number; | ||||
|   remaining: number; | ||||
|   isAhead: boolean; | ||||
|   isBehind: boolean; | ||||
| 
 | ||||
|   tooltipPosition = { x: 0, y: 0 }; | ||||
| 
 | ||||
|   @ViewChild('tooltip') tooltipElement: ElementRef<HTMLCanvasElement>; | ||||
| 
 | ||||
|   constructor() {} | ||||
| 
 | ||||
|   ngOnChanges(changes): void { | ||||
|     if (changes.cursorPosition && changes.cursorPosition.currentValue) { | ||||
|       let x = changes.cursorPosition.currentValue.x; | ||||
|       let y = changes.cursorPosition.currentValue.y - 50; | ||||
|       if (this.tooltipElement) { | ||||
|         const elementBounds = this.tooltipElement.nativeElement.getBoundingClientRect(); | ||||
|         x -= elementBounds.width / 2; | ||||
|         x = Math.min(Math.max(x, 20), (window.innerWidth - 20 - elementBounds.width)); | ||||
|       } | ||||
|       this.tooltipPosition = { x, y }; | ||||
|     } | ||||
|     if ((changes.progress || changes.status) && this.progress && this.status) { | ||||
|       this.remaining = this.progress.remainingBlocks; | ||||
|       this.expected = this.progress.expectedBlocks; | ||||
|       this.mined = this.progress.minedBlocks; | ||||
|       this.ahead = Math.max(0, this.mined - this.expected); | ||||
|       this.behind = Math.max(0, this.expected - this.mined); | ||||
|       this.isAhead = this.ahead > 0; | ||||
|       this.isBehind = this.behind > 0; | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @ -3,81 +3,100 @@ | ||||
|   <div class="card"> | ||||
|     <div class="card-body more-padding"> | ||||
|       <div class="difficulty-adjustment-container" *ngIf="(isLoadingWebSocket$ | async) === false && (difficultyEpoch$ | async) as epochData; else loadingDifficulty"> | ||||
|         <div class="item"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.remaining">Remaining</h5> | ||||
|           <div class="card-text"> | ||||
|             <ng-container *ngTemplateOutlet="epochData.remainingBlocks === 1 ? blocksSingular : blocksPlural; context: {$implicit: epochData.remainingBlocks }"></ng-container> | ||||
|             <ng-template #blocksPlural let-i i18n="shared.blocks">{{ i }} <span class="shared-block">blocks</span></ng-template> | ||||
|             <ng-template #blocksSingular let-i i18n="shared.block">{{ i }} <span class="shared-block">block</span></ng-template> | ||||
|           </div> | ||||
|           <div class="symbol"><app-time kind="until" [time]="epochData.estimatedRetargetDate" [fastRender]="true"></app-time></div> | ||||
|         <div class="epoch-progress"> | ||||
|           <svg class="epoch-blocks" height="22px" width="100%" viewBox="0 0 224 9" shape-rendering="crispEdges" preserveAspectRatio="none"> | ||||
|             <defs> | ||||
|               <linearGradient id="diff-gradient" x1="0%" y1="0%" x2="100%" y2="0%" gradientUnits="userSpaceOnUse"> | ||||
|                 <stop offset="0%" stop-color="#105fb0" /> | ||||
|                 <stop offset="100%" stop-color="#9339f4" /> | ||||
|               </linearGradient> | ||||
|               <linearGradient id="diff-hover-gradient" x1="0%" y1="0%" x2="100%" y2="0%" gradientUnits="userSpaceOnUse"> | ||||
|                 <stop offset="0%" stop-color="#2486eb" /> | ||||
|                 <stop offset="100%" stop-color="#ae6af7" /> | ||||
|               </linearGradient> | ||||
|             </defs> | ||||
|             <rect | ||||
|               *ngFor="let rect of shapes" | ||||
|               [attr.x]="rect.x" [attr.y]="rect.y" | ||||
|               [attr.width]="rect.w" [attr.height]="rect.h" | ||||
|               class="rect {{rect.status}}" | ||||
|               [class.hover]="hoverSection && rect.status === hoverSection.status" | ||||
|               (pointerover)="onHover($event, rect);" | ||||
|               (pointerout)="onBlur($event);" | ||||
|             > | ||||
|               <animate | ||||
|                 *ngIf="rect.status === 'next'" | ||||
|                 attributeType="XML" | ||||
|                 attributeName="fill" | ||||
|                 [attr.values]="'#fff;' + (rect.expected ? '#D81B60' : '#2d3348') + ';#fff'" | ||||
|                 dur="2s" | ||||
|                 repeatCount="indefinite"/> | ||||
|             </rect> | ||||
|           </svg> | ||||
|         </div> | ||||
|         <div class="item"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.estimate">Estimate</h5> | ||||
|           <div *ngIf="epochData.remainingBlocks < 1870; else recentlyAdjusted" class="card-text" [ngStyle]="{'color': epochData.colorAdjustments}"> | ||||
|             <span *ngIf="epochData.change > 0; else arrowDownDifficulty" > | ||||
|               <fa-icon class="retarget-sign" [icon]="['fas', 'caret-up']" [fixedWidth]="true"></fa-icon> | ||||
|             </span> | ||||
|             <ng-template #arrowDownDifficulty > | ||||
|               <fa-icon class="retarget-sign" [icon]="['fas', 'caret-down']" [fixedWidth]="true"></fa-icon> | ||||
|             </ng-template> | ||||
|             {{ epochData.change | absolute | number: '1.2-2' }} | ||||
|             <span class="symbol">%</span> | ||||
|         <div class="difficulty-stats"> | ||||
|           <div class="item"> | ||||
|             <div class="card-text"> | ||||
|               ~<app-time [time]="epochData.timeAvg / 1000" [forceFloorOnTimeIntervals]="['minute']" [fractionDigits]="1"></app-time> | ||||
|             </div> | ||||
|             <div class="symbol" i18n="difficulty-box.average-block-time">Average block time</div> | ||||
|           </div> | ||||
|           <ng-template #recentlyAdjusted> | ||||
|             <div class="card-text">—</div> | ||||
|           </ng-template> | ||||
|           <div class="symbol"> | ||||
|             <span i18n="difficulty-box.previous">Previous</span>: | ||||
|             <span [ngStyle]="{'color': epochData.colorPreviousAdjustments}"> | ||||
|               <span *ngIf="epochData.previousRetarget > 0; else arrowDownPreviousDifficulty" > | ||||
|                 <fa-icon class="previous-retarget-sign" [icon]="['fas', 'caret-up']" [fixedWidth]="true"></fa-icon> | ||||
|           <div class="item"> | ||||
|             <div *ngIf="epochData.remainingBlocks < 1870; else recentlyAdjusted" class="card-text" [ngStyle]="{'color': epochData.colorAdjustments}"> | ||||
|               <span *ngIf="epochData.change > 0; else arrowDownDifficulty" > | ||||
|                 <fa-icon class="retarget-sign" [icon]="['fas', 'caret-up']" [fixedWidth]="true"></fa-icon> | ||||
|               </span> | ||||
|               <ng-template #arrowDownPreviousDifficulty > | ||||
|                 <fa-icon class="previous-retarget-sign" [icon]="['fas', 'caret-down']" [fixedWidth]="true"></fa-icon> | ||||
|               <ng-template #arrowDownDifficulty > | ||||
|                 <fa-icon class="retarget-sign" [icon]="['fas', 'caret-down']" [fixedWidth]="true"></fa-icon> | ||||
|               </ng-template> | ||||
|               {{ epochData.previousRetarget | absolute | number: '1.2-2' }} </span> % | ||||
|               {{ epochData.change | absolute | number: '1.2-2' }} | ||||
|               <span class="symbol">%</span> | ||||
|             </div> | ||||
|             <ng-template #recentlyAdjusted> | ||||
|               <div class="card-text">—</div> | ||||
|             </ng-template> | ||||
|             <div class="symbol"> | ||||
|               <span i18n="difficulty-box.previous">Previous</span>: | ||||
|               <span [ngStyle]="{'color': epochData.colorPreviousAdjustments}"> | ||||
|                 <span *ngIf="epochData.previousRetarget > 0; else arrowDownPreviousDifficulty" > | ||||
|                   <fa-icon class="previous-retarget-sign" [icon]="['fas', 'caret-up']" [fixedWidth]="true"></fa-icon> | ||||
|                 </span> | ||||
|                 <ng-template #arrowDownPreviousDifficulty > | ||||
|                   <fa-icon class="previous-retarget-sign" [icon]="['fas', 'caret-down']" [fixedWidth]="true"></fa-icon> | ||||
|                 </ng-template> | ||||
|                 {{ epochData.previousRetarget | absolute | number: '1.2-2' }} </span> % | ||||
|             </div> | ||||
|           </div> | ||||
|         </div> | ||||
|         <div class="item" *ngIf="showProgress"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.current-period">Current Period</h5> | ||||
|           <div class="card-text">{{ epochData.progress | number: '1.2-2' }} <span class="symbol">%</span></div> | ||||
|           <div class="progress small-bar"> | ||||
|             <div class="progress-bar" role="progressbar" style="width: 15%; background-color: #105fb0" [ngStyle]="{'width': epochData.base}"> </div> | ||||
|           <div class="item"> | ||||
|             <div class="card-text"><app-time kind="until" [time]="epochData.estimatedRetargetDate" [fastRender]="true"></app-time></div> | ||||
|             <div class="symbol"> | ||||
|               {{ epochData.retargetDateString }} | ||||
|             </div> | ||||
|           </div> | ||||
|         </div> | ||||
|         <div class="item" *ngIf="showHalving"> | ||||
|           <h5 class="card-title" i18n="difficulty-box.next-halving">Next Halving</h5> | ||||
|           <div class="card-text"> | ||||
|             <ng-container *ngTemplateOutlet="epochData.blocksUntilHalving === 1 ? blocksSingular : blocksPlural; context: {$implicit: epochData.blocksUntilHalving }"></ng-container> | ||||
|             <ng-template #blocksPlural let-i i18n="shared.blocks">{{ i }} <span class="shared-block">blocks</span></ng-template> | ||||
|             <ng-template #blocksSingular let-i i18n="shared.block">{{ i }} <span class="shared-block">block</span></ng-template> | ||||
|           </div> | ||||
|           <div class="symbol"><app-time kind="until" [time]="epochData.timeUntilHalving" [fastRender]="true"></app-time></div> | ||||
|         </div> | ||||
|       </div> | ||||
|     </div> | ||||
|   </div> | ||||
| </div> | ||||
| 
 | ||||
| <ng-template #loadingDifficulty> | ||||
|   <div class="epoch-progress"> | ||||
|     <div class="skeleton-loader"></div> | ||||
|   </div> | ||||
|   <div class="difficulty-skeleton loading-container"> | ||||
|     <div class="item"> | ||||
|       <h5 class="card-title" i18n="difficulty-box.remaining">Remaining</h5> | ||||
|       <div class="card-text"> | ||||
|         <div class="skeleton-loader"></div> | ||||
|         <div class="skeleton-loader"></div> | ||||
|       </div> | ||||
|     </div> | ||||
|     <div class="item"> | ||||
|       <h5 class="card-title" i18n="difficulty-box.estimate">Estimate</h5> | ||||
|       <div class="card-text"> | ||||
|         <div class="skeleton-loader"></div> | ||||
|         <div class="skeleton-loader"></div> | ||||
|       </div> | ||||
|     </div> | ||||
|     <div class="item"> | ||||
|       <h5 class="card-title" i18n="difficulty-box.current-period">Current Period</h5> | ||||
|       <div class="card-text"> | ||||
|         <div class="skeleton-loader"></div> | ||||
|         <div class="skeleton-loader"></div> | ||||
| @ -85,3 +104,10 @@ | ||||
|     </div> | ||||
|   </div> | ||||
| </ng-template> | ||||
| 
 | ||||
| <app-difficulty-tooltip | ||||
|   *ngIf="hoverSection && (isLoadingWebSocket$ | async) === false && (difficultyEpoch$ | async) as epochData" | ||||
|   [cursorPosition]="tooltipPosition" | ||||
|   [status]="hoverSection.status" | ||||
|   [progress]="epochData" | ||||
| ></app-difficulty-tooltip> | ||||
| @ -1,8 +1,14 @@ | ||||
| .difficulty-adjustment-container { | ||||
|   display: flex; | ||||
|   flex-direction: column; | ||||
|   justify-content: space-between; | ||||
| } | ||||
| 
 | ||||
| .difficulty-stats { | ||||
|   display: flex; | ||||
|   flex-direction: row; | ||||
|   justify-content: space-around; | ||||
|   height: 76px; | ||||
|   height: 50.5px; | ||||
|   .shared-block { | ||||
|     color: #ffffff66; | ||||
|     font-size: 12px; | ||||
| @ -24,8 +30,8 @@ | ||||
|     } | ||||
|   } | ||||
|   .card-text { | ||||
|     font-size: 22px; | ||||
|     margin-top: -9px; | ||||
|     font-size: 20px; | ||||
|     margin: auto; | ||||
|     position: relative; | ||||
|   } | ||||
| } | ||||
| @ -33,7 +39,9 @@ | ||||
| 
 | ||||
| .difficulty-skeleton { | ||||
|   display: flex; | ||||
|   justify-content: space-between; | ||||
|   flex-direction: row; | ||||
|   justify-content: space-around; | ||||
|   height: 50.5px; | ||||
|   @media (min-width: 376px) { | ||||
|     flex-direction: row; | ||||
|   } | ||||
| @ -65,7 +73,7 @@ | ||||
|       width: 100%; | ||||
|       display: block; | ||||
|       &:first-child { | ||||
|         margin: 14px auto 0; | ||||
|         margin: 10px auto 4px; | ||||
|         max-width: 80px; | ||||
|       } | ||||
|       &:last-child { | ||||
| @ -109,7 +117,7 @@ | ||||
| } | ||||
| 
 | ||||
| .loading-container { | ||||
|   min-height: 76px; | ||||
|   min-height: 50.5px; | ||||
| } | ||||
| 
 | ||||
| .main-title { | ||||
| @ -133,7 +141,7 @@ | ||||
|     text-align: center; | ||||
|     flex-direction: column; | ||||
|     justify-content: space-around; | ||||
|     padding: 24px 20px; | ||||
|     padding: 20px; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| @ -151,4 +159,50 @@ | ||||
| 
 | ||||
| .symbol { | ||||
|   font-size: 13px; | ||||
| } | ||||
| 
 | ||||
| .epoch-progress { | ||||
|   width: 100%; | ||||
|   height: 22px; | ||||
|   margin-bottom: 12px; | ||||
| } | ||||
| 
 | ||||
| .epoch-blocks { | ||||
|   display: block; | ||||
|   width: 100%; | ||||
|   background: #2d3348; | ||||
| 
 | ||||
|   .rect { | ||||
|     fill: #2d3348; | ||||
| 
 | ||||
|     &.behind { | ||||
|       fill: #D81B60; | ||||
|     } | ||||
|     &.mined { | ||||
|       fill: url(#diff-gradient); | ||||
|     } | ||||
|     &.ahead { | ||||
|       fill: #1a9436; | ||||
|     } | ||||
| 
 | ||||
|     &.hover { | ||||
|       fill: #535e84; | ||||
|       &.behind { | ||||
|         fill: #e94d86; | ||||
|       } | ||||
|       &.mined { | ||||
|         fill: url(#diff-hover-gradient); | ||||
|       } | ||||
|       &.ahead { | ||||
|         fill: #29d951; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .blocks-ahead { | ||||
|   color: #3bcc49; | ||||
| } | ||||
| .blocks-behind { | ||||
|   color: #D81B60; | ||||
| } | ||||
| @ -1,4 +1,4 @@ | ||||
| import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core'; | ||||
| import { ChangeDetectionStrategy, Component, HostListener, Inject, Input, LOCALE_ID, OnInit } from '@angular/core'; | ||||
| import { combineLatest, Observable, timer } from 'rxjs'; | ||||
| import { map, switchMap } from 'rxjs/operators'; | ||||
| import { StateService } from '../..//services/state.service'; | ||||
| @ -7,16 +7,33 @@ interface EpochProgress { | ||||
|   base: string; | ||||
|   change: number; | ||||
|   progress: number; | ||||
|   minedBlocks: number; | ||||
|   remainingBlocks: number; | ||||
|   expectedBlocks: number; | ||||
|   newDifficultyHeight: number; | ||||
|   colorAdjustments: string; | ||||
|   colorPreviousAdjustments: string; | ||||
|   estimatedRetargetDate: number; | ||||
|   retargetDateString: string; | ||||
|   previousRetarget: number; | ||||
|   blocksUntilHalving: number; | ||||
|   timeUntilHalving: number; | ||||
|   timeAvg: number; | ||||
| } | ||||
| 
 | ||||
| type BlockStatus = 'mined' | 'behind' | 'ahead' | 'next' | 'remaining'; | ||||
| 
 | ||||
| interface DiffShape { | ||||
|   x: number; | ||||
|   y: number; | ||||
|   w: number; | ||||
|   h: number; | ||||
|   status: BlockStatus; | ||||
|   expected: boolean; | ||||
| } | ||||
| 
 | ||||
| const EPOCH_BLOCK_LENGTH = 2016; // Bitcoin mainnet
 | ||||
| 
 | ||||
| @Component({ | ||||
|   selector: 'app-difficulty', | ||||
|   templateUrl: './difficulty.component.html', | ||||
| @ -24,15 +41,27 @@ interface EpochProgress { | ||||
|   changeDetection: ChangeDetectionStrategy.OnPush, | ||||
| }) | ||||
| export class DifficultyComponent implements OnInit { | ||||
|   isLoadingWebSocket$: Observable<boolean>; | ||||
|   difficultyEpoch$: Observable<EpochProgress>; | ||||
| 
 | ||||
|   @Input() showProgress = true; | ||||
|   @Input() showHalving = false; | ||||
|   @Input() showTitle = true; | ||||
|   | ||||
|   isLoadingWebSocket$: Observable<boolean>; | ||||
|   difficultyEpoch$: Observable<EpochProgress>; | ||||
| 
 | ||||
|   epochStart: number; | ||||
|   currentHeight: number; | ||||
|   currentIndex: number; | ||||
|   expectedHeight: number; | ||||
|   expectedIndex: number; | ||||
|   difference: number; | ||||
|   shapes: DiffShape[]; | ||||
| 
 | ||||
|   tooltipPosition = { x: 0, y: 0 }; | ||||
|   hoverSection: DiffShape | void; | ||||
| 
 | ||||
|   constructor( | ||||
|     public stateService: StateService, | ||||
|     @Inject(LOCALE_ID) private locale: string, | ||||
|   ) { } | ||||
| 
 | ||||
|   ngOnInit(): void { | ||||
| @ -65,22 +94,110 @@ export class DifficultyComponent implements OnInit { | ||||
| 
 | ||||
|         const blocksUntilHalving = 210000 - (block.height % 210000); | ||||
|         const timeUntilHalving = new Date().getTime() + (blocksUntilHalving * 600000); | ||||
|         const newEpochStart = Math.floor(this.stateService.latestBlockHeight / EPOCH_BLOCK_LENGTH) * EPOCH_BLOCK_LENGTH; | ||||
|         const newExpectedHeight = Math.floor(newEpochStart + da.expectedBlocks); | ||||
| 
 | ||||
|         if (newEpochStart !== this.epochStart || newExpectedHeight !== this.expectedHeight || this.currentHeight !== this.stateService.latestBlockHeight) { | ||||
|           this.epochStart = newEpochStart; | ||||
|           this.expectedHeight = newExpectedHeight; | ||||
|           this.currentHeight = this.stateService.latestBlockHeight; | ||||
|           this.currentIndex = this.currentHeight - this.epochStart; | ||||
|           this.expectedIndex = Math.min(this.expectedHeight - this.epochStart, 2016) - 1; | ||||
|           this.difference = this.currentIndex - this.expectedIndex; | ||||
| 
 | ||||
|           this.shapes = []; | ||||
|           this.shapes = this.shapes.concat(this.blocksToShapes( | ||||
|             0, Math.min(this.currentIndex, this.expectedIndex), 'mined', true | ||||
|           )); | ||||
|           this.shapes = this.shapes.concat(this.blocksToShapes( | ||||
|             this.currentIndex + 1, this.expectedIndex, 'behind', true | ||||
|           )); | ||||
|           this.shapes = this.shapes.concat(this.blocksToShapes( | ||||
|             this.expectedIndex + 1, this.currentIndex, 'ahead', false | ||||
|           )); | ||||
|           if (this.currentIndex < 2015) { | ||||
|             this.shapes = this.shapes.concat(this.blocksToShapes( | ||||
|               this.currentIndex + 1, this.currentIndex + 1, 'next', (this.expectedIndex > this.currentIndex) | ||||
|             )); | ||||
|           } | ||||
|           this.shapes = this.shapes.concat(this.blocksToShapes( | ||||
|             Math.max(this.currentIndex + 2, this.expectedIndex + 1), 2105, 'remaining', false | ||||
|           )); | ||||
|         } | ||||
| 
 | ||||
| 
 | ||||
|         let retargetDateString; | ||||
|         if (da.remainingBlocks > 1870) { | ||||
|           retargetDateString = (new Date(da.estimatedRetargetDate)).toLocaleDateString(this.locale, { month: 'long', day: 'numeric' }); | ||||
|         } else { | ||||
|           retargetDateString = (new Date(da.estimatedRetargetDate)).toLocaleTimeString(this.locale, { month: 'long', day: 'numeric', hour: 'numeric', minute: 'numeric' }); | ||||
|         } | ||||
| 
 | ||||
|         const data = { | ||||
|           base: `${da.progressPercent.toFixed(2)}%`, | ||||
|           change: da.difficultyChange, | ||||
|           progress: da.progressPercent, | ||||
|           remainingBlocks: da.remainingBlocks, | ||||
|           minedBlocks: this.currentIndex + 1, | ||||
|           remainingBlocks: da.remainingBlocks - 1, | ||||
|           expectedBlocks: Math.floor(da.expectedBlocks), | ||||
|           colorAdjustments, | ||||
|           colorPreviousAdjustments, | ||||
|           newDifficultyHeight: da.nextRetargetHeight, | ||||
|           estimatedRetargetDate: da.estimatedRetargetDate, | ||||
|           retargetDateString, | ||||
|           previousRetarget: da.previousRetarget, | ||||
|           blocksUntilHalving, | ||||
|           timeUntilHalving, | ||||
|           timeAvg: da.timeAvg, | ||||
|         }; | ||||
|         return data; | ||||
|       }) | ||||
|     ); | ||||
|   } | ||||
| 
 | ||||
|   blocksToShapes(start: number, end: number, status: BlockStatus, expected: boolean = false): DiffShape[] { | ||||
|     const startY = start % 9; | ||||
|     const startX = Math.floor(start / 9); | ||||
|     const endY = (end % 9); | ||||
|     const endX = Math.floor(end / 9); | ||||
| 
 | ||||
|     if (startX > endX) { | ||||
|       return []; | ||||
|     } | ||||
| 
 | ||||
|     if (startX === endX) { | ||||
|       return [{ | ||||
|         x: startX, y: startY, w: 1, h: 1 + endY - startY, status, expected | ||||
|       }]; | ||||
|     } | ||||
| 
 | ||||
|     const shapes = []; | ||||
|     shapes.push({ | ||||
|       x: startX, y: startY, w: 1, h: 9 - startY, status, expected | ||||
|     }); | ||||
|     shapes.push({ | ||||
|       x: endX, y: 0, w: 1, h: endY + 1, status, expected | ||||
|     }); | ||||
| 
 | ||||
|     if (startX < endX - 1) { | ||||
|       shapes.push({ | ||||
|         x: startX + 1, y: 0, w: endX - startX - 1, h: 9, status, expected | ||||
|       }); | ||||
|     } | ||||
| 
 | ||||
|     return shapes; | ||||
|   } | ||||
| 
 | ||||
|   @HostListener('pointermove', ['$event']) | ||||
|   onPointerMove(event) { | ||||
|     this.tooltipPosition = { x: event.clientX, y: event.clientY }; | ||||
|   } | ||||
| 
 | ||||
|   onHover(event, rect): void { | ||||
|     this.hoverSection = rect; | ||||
|   } | ||||
| 
 | ||||
|   onBlur(event): void { | ||||
|     this.hoverSection = null; | ||||
|   } | ||||
| } | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
| 
 | ||||
|   <div class="row row-cols-1 row-cols-md-2"> | ||||
| 
 | ||||
|     <!-- Temporary stuff here - Will be moved to a component once we have more useful data to show --> | ||||
|     <div class="col"> | ||||
|       <div class="main-title"> | ||||
|         <span [attr.data-cy]="'reward-stats'" i18n="mining.reward-stats">Reward stats</span>  | ||||
| @ -22,7 +21,7 @@ | ||||
|     <!-- difficulty adjustment --> | ||||
|     <div class="col"> | ||||
|       <div class="main-title" i18n="dashboard.difficulty-adjustment">Difficulty Adjustment</div> | ||||
|       <app-difficulty [attr.data-cy]="'difficulty-adjustment'" [showTitle]="false" [showProgress]="false" [showHalving]="true"></app-difficulty> | ||||
|       <app-difficulty-mining [attr.data-cy]="'difficulty-adjustment'" [showTitle]="false" [showProgress]="false" [showHalving]="true"></app-difficulty-mining> | ||||
|     </div> | ||||
| 
 | ||||
|     <!-- pool distribution --> | ||||
|  | ||||
| @ -19,6 +19,7 @@ export class TimeComponent implements OnInit, OnChanges, OnDestroy { | ||||
|   @Input() fixedRender = false; | ||||
|   @Input() relative = false; | ||||
|   @Input() forceFloorOnTimeIntervals: string[]; | ||||
|   @Input() fractionDigits: number = 0; | ||||
| 
 | ||||
|   constructor( | ||||
|     private ref: ChangeDetectorRef, | ||||
| @ -88,7 +89,12 @@ export class TimeComponent implements OnInit, OnChanges, OnDestroy { | ||||
|       } else { | ||||
|         counter = Math.round(seconds / this.intervals[i]); | ||||
|       } | ||||
|       const dateStrings = dates(counter); | ||||
|       let rounded = counter; | ||||
|       if (this.fractionDigits) { | ||||
|         const roundFactor = Math.pow(10,this.fractionDigits); | ||||
|         rounded = Math.round((seconds / this.intervals[i]) * roundFactor) / roundFactor; | ||||
|       } | ||||
|       const dateStrings = dates(rounded); | ||||
|       if (counter > 0) { | ||||
|         switch (this.kind) { | ||||
|           case 'since': | ||||
|  | ||||
| @ -347,7 +347,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { | ||||
|     this.blocksSubscription = this.stateService.blocks$.subscribe(([block, txConfirmed]) => { | ||||
|       this.latestBlock = block; | ||||
| 
 | ||||
|       if (txConfirmed && this.tx) { | ||||
|       if (txConfirmed && this.tx && !this.tx.status.confirmed) { | ||||
|         this.tx.status = { | ||||
|           confirmed: true, | ||||
|           block_height: block.height, | ||||
|  | ||||
| @ -1,7 +1,7 @@ | ||||
| import { Component, OnInit, Input, ChangeDetectionStrategy, OnChanges, Output, EventEmitter, ChangeDetectorRef } from '@angular/core'; | ||||
| import { StateService } from '../../services/state.service'; | ||||
| import { CacheService } from '../../services/cache.service'; | ||||
| import { Observable, ReplaySubject, BehaviorSubject, merge, Subscription, of } from 'rxjs'; | ||||
| import { Observable, ReplaySubject, BehaviorSubject, merge, Subscription, of, forkJoin } from 'rxjs'; | ||||
| import { Outspend, Transaction, Vin, Vout } from '../../interfaces/electrs.interface'; | ||||
| import { ElectrsApiService } from '../../services/electrs-api.service'; | ||||
| import { environment } from '../../../environments/environment'; | ||||
| @ -70,12 +70,19 @@ export class TransactionsListComponent implements OnInit, OnChanges { | ||||
|         .pipe( | ||||
|           switchMap((txIds) => { | ||||
|             if (!this.cached) { | ||||
|               return this.apiService.getOutspendsBatched$(txIds); | ||||
|               // break list into batches of 50 (maximum supported by esplora)
 | ||||
|               const batches = []; | ||||
|               for (let i = 0; i < txIds.length; i += 50) { | ||||
|                 batches.push(txIds.slice(i, i + 50)); | ||||
|               } | ||||
|               return forkJoin(batches.map(batch => this.apiService.getOutspendsBatched$(batch))); | ||||
|             } else { | ||||
|               return of([]); | ||||
|             } | ||||
|           }), | ||||
|           tap((outspends: Outspend[][]) => { | ||||
|           tap((batchedOutspends: Outspend[][][]) => { | ||||
|             // flatten batched results back into a single array
 | ||||
|             const outspends = batchedOutspends.flat(1); | ||||
|             if (!this.transactions) { | ||||
|               return; | ||||
|             } | ||||
|  | ||||
| @ -33,9 +33,11 @@ export interface DifficultyAdjustment { | ||||
|   remainingBlocks: number; | ||||
|   remainingTime: number; | ||||
|   previousRetarget: number; | ||||
|   previousTime: number; | ||||
|   nextRetargetHeight: number; | ||||
|   timeAvg: number; | ||||
|   timeOffset: number; | ||||
|   expectedBlocks: number; | ||||
| } | ||||
| 
 | ||||
| export interface AddressInformation { | ||||
|  | ||||
| @ -36,25 +36,25 @@ | ||||
| <ng-template #tableHeader> | ||||
|   <thead> | ||||
|     <th class="alias text-left" i18n="lightning.alias">Alias</th> | ||||
|     <th class="alias text-left d-none d-md-table-cell"> </th> | ||||
|     <th class="alias text-left d-none d-md-table-cell" i18n="status">Status</th> | ||||
|     <th *ngIf="status !== 'closed'" class="channels text-left d-none d-md-table-cell" i18n="transaction.fee-rate|Transaction fee rate">Fee rate</th> | ||||
|     <th *ngIf="status === 'closed'" class="channels text-left d-none d-md-table-cell" i18n="channels.closing_date">Closing date</th> | ||||
|     <th class="capacity text-right d-none d-md-table-cell" i18n="lightning.capacity">Capacity</th> | ||||
|     <th class="capacity text-right" i18n="channels.id">Channel ID</th> | ||||
|     <th class="nodedetails text-left"> </th> | ||||
|     <th class="status text-left" i18n="status">Status</th> | ||||
|     <th class="feerate text-left" *ngIf="status !== 'closed'" i18n="transaction.fee-rate|Transaction fee rate">Fee rate</th> | ||||
|     <th class="feerate text-left" *ngIf="status === 'closed'" i18n="channels.closing_date">Closing date</th> | ||||
|     <th class="liquidity text-right" i18n="lightning.capacity">Capacity</th> | ||||
|     <th class="channelid text-right" i18n="channels.id">Channel ID</th> | ||||
|   </thead> | ||||
| </ng-template> | ||||
| 
 | ||||
| <ng-template #tableTemplate let-channel let-node="node"> | ||||
|   <td class="alias text-left"> | ||||
|     <div>{{ node.alias || '?' }}</div> | ||||
|     <app-truncate [text]="node.alias || '?'" [maxWidth]="200" [lastChars]="6"></app-truncate> | ||||
|     <div class="second-line"> | ||||
|       <app-truncate [text]="node.public_key" [maxWidth]="200" [lastChars]="6" [link]="['/lightning/node' | relativeUrl, node.public_key]"> | ||||
|         <app-clipboard [text]="node.public_key" size="small"></app-clipboard> | ||||
|       </app-truncate> | ||||
|     </div> | ||||
|   </td> | ||||
|   <td class="alias text-left d-none d-md-table-cell"> | ||||
|   <td class="nodedetails text-left"> | ||||
|     <div class="second-line"><ng-container *ngTemplateOutlet="xChannels; context: {$implicit: node.channels }"></ng-container></div> | ||||
|     <div class="second-line"> | ||||
|       <app-amount *ngIf="node.capacity > 100000000; else smallnode" [satoshis]="node.capacity" [digitsInfo]="'1.2-2'" [noFiat]="true"></app-amount> | ||||
| @ -64,7 +64,7 @@ | ||||
|       </ng-template> | ||||
|     </div> | ||||
|   </td> | ||||
|   <td class="d-none d-md-table-cell"> | ||||
|   <td class="status"> | ||||
|     <span class="badge rounded-pill badge-secondary" *ngIf="channel.status === 0" i18n="status.inactive">Inactive</span> | ||||
|     <span class="badge rounded-pill badge-success" *ngIf="channel.status === 1" i18n="status.active">Active</span> | ||||
|     <ng-template [ngIf]="channel.status === 2"> | ||||
| @ -74,20 +74,20 @@ | ||||
|       </ng-template> | ||||
|     </ng-template> | ||||
|   </td> | ||||
|   <td *ngIf="status !== 'closed'" class="capacity text-left d-none d-md-table-cell"> | ||||
|   <td *ngIf="status !== 'closed'" class="feerate text-left"> | ||||
|     {{ channel.fee_rate }} <span class="symbol">ppm ({{ channel.fee_rate / 10000 | number }}%)</span> | ||||
|   </td> | ||||
|   <td *ngIf="status === 'closed'" class="capacity text-left d-none d-md-table-cell"> | ||||
|   <td *ngIf="status === 'closed'" class="feerate text-left"> | ||||
|     <app-timestamp [unixTime]="channel.closing_date"></app-timestamp> | ||||
|   </td> | ||||
|   <td class="capacity text-right d-none d-md-table-cell"> | ||||
|   <td class="liquidity text-right"> | ||||
|     <app-amount *ngIf="channel.capacity > 100000000; else smallchannel" [satoshis]="channel.capacity" [digitsInfo]="'1.2-2'" [noFiat]="true"></app-amount> | ||||
|     <ng-template #smallchannel> | ||||
|       {{ channel.capacity | amountShortener: 1 }} | ||||
|       <span class="sats" i18n="shared.sats">sats</span> | ||||
|     </ng-template> | ||||
| </td> | ||||
|   <td class="capacity text-right"> | ||||
|   </td> | ||||
|   <td class="channelid text-right"> | ||||
|     <a [routerLink]="['/lightning/channel' | relativeUrl, channel.id]">{{ channel.short_id }}</a> | ||||
|    </td> | ||||
| </ng-template> | ||||
| @ -100,19 +100,19 @@ | ||||
|       <td class="alias text-left" style="width: 370px;"> | ||||
|         <span class="skeleton-loader"></span> | ||||
|       </td> | ||||
|       <td class="alias text-left"> | ||||
|       <td class="nodedetails text-left"> | ||||
|         <span class="skeleton-loader"></span> | ||||
|       </td> | ||||
|       <td class="capacity text-left d-none d-md-table-cell"> | ||||
|       <td class="status text-left"> | ||||
|         <span class="skeleton-loader"></span> | ||||
|       </td> | ||||
|       <td class="channels text-left d-none d-md-table-cell"> | ||||
|       <td class="feerate text-left"> | ||||
|         <span class="skeleton-loader"></span> | ||||
|       </td> | ||||
|       <td class="channels text-right d-none d-md-table-cell"> | ||||
|       <td class="liquidity text-right"> | ||||
|         <span class="skeleton-loader"></span> | ||||
|       </td> | ||||
|       <td class="channels text-left"> | ||||
|       <td class="channelid text-left"> | ||||
|         <span class="skeleton-loader"></span> | ||||
|       </td> | ||||
|     </tr> | ||||
|  | ||||
| @ -31,4 +31,36 @@ | ||||
|   @media (max-width: 435px) { | ||||
|     flex-grow: 1; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .alias { | ||||
|   padding-left: 0; | ||||
| } | ||||
| 
 | ||||
| .feerate { | ||||
|   @media (max-width: 815px) { | ||||
|     display: none; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .status { | ||||
|   @media (max-width: 710px) { | ||||
|     display: none; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .nodedetails { | ||||
|   @media (max-width: 600px) { | ||||
|     display: none; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .liquidity { | ||||
|   @media (max-width: 500px) { | ||||
|     display: none; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| .channelid { | ||||
|   padding-right: 0; | ||||
| } | ||||
| @ -57,7 +57,7 @@ | ||||
|             </tr> | ||||
|             <tr *ngIf="(avgChannelDistance$ | async) as avgDistance;"> | ||||
|               <td i18n="lightning.avg-distance" class="text-truncate">Avg channel distance</td> | ||||
|               <td class="direction-ltr">{{ avgDistance | number : '1.0-0' }} <span class="symbol">km</span> <span class="separator">/</span> {{ kmToMiles(avgDistance) | number : '1.0-0' }} <span class="symbol">mi</span></td> | ||||
|               <td class="direction-ltr">{{ avgDistance | amountShortener: 1 }} <span class="symbol">km</span> <span class="separator">·</span>{{ kmToMiles(avgDistance) | amountShortener: 1 }} <span class="symbol">mi</span></td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|  | ||||
| @ -108,5 +108,6 @@ app-fiat { | ||||
| } | ||||
| 
 | ||||
| .separator { | ||||
|   margin: 0 1em; | ||||
|   margin: 0 0.25em; | ||||
|   color: slategrey; | ||||
| } | ||||
|  | ||||
| @ -58,6 +58,8 @@ import { AssetsNavComponent } from '../components/assets/assets-nav/assets-nav.c | ||||
| import { StatusViewComponent } from '../components/status-view/status-view.component'; | ||||
| import { FeesBoxComponent } from '../components/fees-box/fees-box.component'; | ||||
| import { DifficultyComponent } from '../components/difficulty/difficulty.component'; | ||||
| import { DifficultyTooltipComponent } from '../components/difficulty/difficulty-tooltip.component'; | ||||
| import { DifficultyMiningComponent } from '../components/difficulty-mining/difficulty-mining.component'; | ||||
| import { TermsOfServiceComponent } from '../components/terms-of-service/terms-of-service.component'; | ||||
| import { TxBowtieGraphComponent } from '../components/tx-bowtie-graph/tx-bowtie-graph.component'; | ||||
| import { TxBowtieGraphTooltipComponent } from '../components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component'; | ||||
| @ -133,6 +135,8 @@ import { GeolocationComponent } from '../shared/components/geolocation/geolocati | ||||
|     StatusViewComponent, | ||||
|     FeesBoxComponent, | ||||
|     DifficultyComponent, | ||||
|     DifficultyMiningComponent, | ||||
|     DifficultyTooltipComponent, | ||||
|     TxBowtieGraphComponent, | ||||
|     TxBowtieGraphTooltipComponent, | ||||
|     TermsOfServiceComponent, | ||||
| @ -234,6 +238,8 @@ import { GeolocationComponent } from '../shared/components/geolocation/geolocati | ||||
|     StatusViewComponent, | ||||
|     FeesBoxComponent, | ||||
|     DifficultyComponent, | ||||
|     DifficultyMiningComponent, | ||||
|     DifficultyTooltipComponent, | ||||
|     TxBowtieGraphComponent, | ||||
|     TxBowtieGraphTooltipComponent, | ||||
|     TermsOfServiceComponent, | ||||
|  | ||||
| @ -1074,7 +1074,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">282,284</context> | ||||
|           <context context-type="linenumber">283,285</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.version</note> | ||||
|       </trans-unit> | ||||
| @ -1202,11 +1202,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">256,261</context> | ||||
|           <context context-type="linenumber">257,262</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">400,406</context> | ||||
|           <context context-type="linenumber">401,407</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.details</note> | ||||
|       </trans-unit> | ||||
| @ -1223,11 +1223,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">243,247</context> | ||||
|           <context context-type="linenumber">244,248</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">371,377</context> | ||||
|           <context context-type="linenumber">372,378</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction inputs and outputs</note> | ||||
|         <note priority="1" from="meaning">transaction.inputs-and-outputs</note> | ||||
| @ -1245,7 +1245,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.ts</context> | ||||
|           <context context-type="linenumber">244,243</context> | ||||
|           <context context-type="linenumber">246,245</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4d6066e445db90780e4b30ca93398be0b6567eda" datatype="html"> | ||||
| @ -1581,7 +1581,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/amount/amount.component.html</context> | ||||
|           <context context-type="linenumber">20,23</context> | ||||
|           <context context-type="linenumber">18,21</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context> | ||||
| @ -2044,7 +2044,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|           <context context-type="linenumber">17</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fee-rates</note> | ||||
|       </trans-unit> | ||||
| @ -2093,7 +2093,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">20</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fees</note> | ||||
|       </trans-unit> | ||||
| @ -2114,7 +2114,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">171,166</context> | ||||
|           <context context-type="linenumber">178,173</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts</context> | ||||
| @ -2155,7 +2155,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> | ||||
| @ -2181,7 +2181,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2203,7 +2203,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">475,477</context> | ||||
|           <context context-type="linenumber">476,478</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> | ||||
| @ -2297,11 +2297,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">477,480</context> | ||||
|           <context context-type="linenumber">478,481</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">488,490</context> | ||||
|           <context context-type="linenumber">489,491</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2331,7 +2331,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">268,271</context> | ||||
|           <context context-type="linenumber">269,272</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction Virtual Size</note> | ||||
|         <note priority="1" from="meaning">transaction.vsize</note> | ||||
| @ -2407,7 +2407,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">26</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-prediction-accuracy</note> | ||||
|       </trans-unit> | ||||
| @ -2448,7 +2448,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">22</context> | ||||
|           <context context-type="linenumber">21</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-rewards</note> | ||||
|       </trans-unit> | ||||
| @ -2465,7 +2465,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|           <context context-type="linenumber">23</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-sizes-weights</note> | ||||
|       </trans-unit> | ||||
| @ -2506,7 +2506,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">264,266</context> | ||||
|           <context context-type="linenumber">265,267</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> | ||||
| @ -2534,7 +2534,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">272,274</context> | ||||
|           <context context-type="linenumber">273,275</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4786852746659896870" datatype="html"> | ||||
| @ -2846,11 +2846,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">284,283</context> | ||||
|           <context context-type="linenumber">291,290</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">371,368</context> | ||||
|           <context context-type="linenumber">378,375</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">block.difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -2891,7 +2891,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">248,253</context> | ||||
|           <context context-type="linenumber">249,254</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> | ||||
| @ -3346,7 +3346,7 @@ | ||||
|         <target>Mining</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">8</context> | ||||
|           <context context-type="linenumber">7</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining</note> | ||||
|       </trans-unit> | ||||
| @ -3355,7 +3355,7 @@ | ||||
|         <target>Pool rangering</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">11</context> | ||||
|           <context context-type="linenumber">10</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3368,7 +3368,7 @@ | ||||
|         <target>Pool dominans</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|           <context context-type="linenumber">12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html</context> | ||||
| @ -3381,7 +3381,7 @@ | ||||
|         <target>Hashrate og sværhedsgrad</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">15,16</context> | ||||
|           <context context-type="linenumber">14,15</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.hashrate-difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -3390,7 +3390,7 @@ | ||||
|         <target>Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">31</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">lightning</note> | ||||
|       </trans-unit> | ||||
| @ -3399,7 +3399,7 @@ | ||||
|         <target>Lightningnoder pr. netværk</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|           <context context-type="linenumber">33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html</context> | ||||
| @ -3420,7 +3420,7 @@ | ||||
|         <target>Lightning Netværkets kapacitet</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">36</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.html</context> | ||||
| @ -3441,7 +3441,7 @@ | ||||
|         <target>Lightningnoder pr. internetudbyder</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|           <context context-type="linenumber">37</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context> | ||||
| @ -3454,7 +3454,7 @@ | ||||
|         <target>Lightningnoder pr. land</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">40</context> | ||||
|           <context context-type="linenumber">39</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> | ||||
| @ -3471,7 +3471,7 @@ | ||||
|         <target>Verdenskort over Lightningnoder</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">42</context> | ||||
|           <context context-type="linenumber">41</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.html</context> | ||||
| @ -3488,7 +3488,7 @@ | ||||
|         <target>Verdenskort over lightningnodernes kanaler</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">44</context> | ||||
|           <context context-type="linenumber">43</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.html</context> | ||||
| @ -3509,11 +3509,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">273,272</context> | ||||
|           <context context-type="linenumber">280,279</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">359,356</context> | ||||
|           <context context-type="linenumber">366,363</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3543,11 +3543,11 @@ | ||||
|         <target>Hashrate (MA)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">292,291</context> | ||||
|           <context context-type="linenumber">299,298</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">382,380</context> | ||||
|           <context context-type="linenumber">389,387</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="mining.pools-historical-dominance" datatype="html"> | ||||
| @ -4115,7 +4115,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">290,291</context> | ||||
|           <context context-type="linenumber">291,292</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.hex</note> | ||||
|       </trans-unit> | ||||
| @ -4339,7 +4339,7 @@ | ||||
|         <target>Filter</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="linenumber">60</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-filter.title</note> | ||||
|       </trans-unit> | ||||
| @ -4348,7 +4348,7 @@ | ||||
|         <target>Vend om</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-invert.title</note> | ||||
|       </trans-unit> | ||||
| @ -4357,7 +4357,7 @@ | ||||
|         <target>Transaktion vBytes pr. sekund (vB/s)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.transaction-vbytes-per-second</note> | ||||
|       </trans-unit> | ||||
| @ -4365,196 +4365,188 @@ | ||||
|         <source>Just now</source> | ||||
|         <target>Lige nu</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">64</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <target> <x id="DATE" equiv-text="dateStrings.i18nYear"/> siden</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">74</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">97</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">98</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">100</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">101</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">102</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">108</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">87</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">110</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">88</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">111</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">89</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">112</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Om ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">120</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">121</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">122</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">123</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">124</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">125</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">131</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">133</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">134</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">135</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Efter <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">67</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">143</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">68</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">144</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">69</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">145</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">70</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">146</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">71</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">147</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">72</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">148</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">73</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">154</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">156</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">158</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></source> | ||||
|         <target>Om ~ <x id="DATE" equiv-text="dateStrings.i18nMinute"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">66</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">91</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">93</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">94</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">95</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
| @ -4688,7 +4680,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">340,344</context> | ||||
|           <context context-type="linenumber">341,345</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction flow</note> | ||||
|         <note priority="1" from="meaning">transaction.flow</note> | ||||
| @ -4707,7 +4699,7 @@ | ||||
|         <target>Vis mere</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">225,227</context> | ||||
|           <context context-type="linenumber">226,228</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4724,7 +4716,7 @@ | ||||
|         <target>Vis mindre</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">227,233</context> | ||||
|           <context context-type="linenumber">228,234</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4737,7 +4729,7 @@ | ||||
|         <target>Vis diagram</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">247,248</context> | ||||
|           <context context-type="linenumber">248,249</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">show-diagram</note> | ||||
|       </trans-unit> | ||||
| @ -4746,7 +4738,7 @@ | ||||
|         <target>Låsetid</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">286,288</context> | ||||
|           <context context-type="linenumber">287,289</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.locktime</note> | ||||
|       </trans-unit> | ||||
| @ -4755,7 +4747,7 @@ | ||||
|         <target>Transaktionen blev ikke fundet.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">449,450</context> | ||||
|           <context context-type="linenumber">450,451</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.transaction-not-found</note> | ||||
|       </trans-unit> | ||||
| @ -4764,7 +4756,7 @@ | ||||
|         <target>Venter på, at den dukker op i mempoolen...</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">450,455</context> | ||||
|           <context context-type="linenumber">451,456</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.waiting-for-it-to-appear</note> | ||||
|       </trans-unit> | ||||
| @ -4773,7 +4765,7 @@ | ||||
|         <target>Effektiv gebyrsats</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">485,488</context> | ||||
|           <context context-type="linenumber">486,489</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Effective transaction fee rate</note> | ||||
|         <note priority="1" from="meaning">transaction.effective-fee-rate</note> | ||||
| @ -5228,6 +5220,10 @@ | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">faq.big-disclaimer</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="cd2330c7e9c74256f6a91e83bccf10e2905f8556" datatype="html"> | ||||
| @ -5235,7 +5231,7 @@ | ||||
|         <target>REST API service</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">41,42</context> | ||||
|           <context context-type="linenumber">42,43</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.title</note> | ||||
|       </trans-unit> | ||||
| @ -5244,11 +5240,11 @@ | ||||
|         <target>Endpoint</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">50,51</context> | ||||
|           <context context-type="linenumber">51,52</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">104,107</context> | ||||
|           <context context-type="linenumber">105,108</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Api docs endpoint</note> | ||||
|       </trans-unit> | ||||
| @ -5257,11 +5253,11 @@ | ||||
|         <target>Beskrivelse</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">69,70</context> | ||||
|           <context context-type="linenumber">70,71</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">108,109</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> | ||||
| @ -5269,7 +5265,7 @@ | ||||
|         <target>Default push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> to express what you want pushed. Available: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, and <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Push transactions related to address: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> to receive all new transactions containing that address as input or output. Returns an array of transactions. <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> for new mempool transactions, and <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> for new block confirmed transactions.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|           <context context-type="linenumber">110,111</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.websocket.websocket</note> | ||||
|       </trans-unit> | ||||
| @ -5558,6 +5554,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> | ||||
|           <context context-type="linenumber">43,46</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">227</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">4,5</context> | ||||
| @ -6079,6 +6083,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/group/group.component.html</context> | ||||
|           <context context-type="linenumber">40,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">204</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">28,29</context> | ||||
|  | ||||
| @ -1074,7 +1074,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">282,284</context> | ||||
|           <context context-type="linenumber">283,285</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.version</note> | ||||
|       </trans-unit> | ||||
| @ -1202,11 +1202,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">256,261</context> | ||||
|           <context context-type="linenumber">257,262</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">400,406</context> | ||||
|           <context context-type="linenumber">401,407</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.details</note> | ||||
|       </trans-unit> | ||||
| @ -1223,11 +1223,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">243,247</context> | ||||
|           <context context-type="linenumber">244,248</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">371,377</context> | ||||
|           <context context-type="linenumber">372,378</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction inputs and outputs</note> | ||||
|         <note priority="1" from="meaning">transaction.inputs-and-outputs</note> | ||||
| @ -1245,7 +1245,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.ts</context> | ||||
|           <context context-type="linenumber">244,243</context> | ||||
|           <context context-type="linenumber">246,245</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4d6066e445db90780e4b30ca93398be0b6567eda" datatype="html"> | ||||
| @ -1581,7 +1581,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/amount/amount.component.html</context> | ||||
|           <context context-type="linenumber">20,23</context> | ||||
|           <context context-type="linenumber">18,21</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context> | ||||
| @ -2044,7 +2044,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|           <context context-type="linenumber">17</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fee-rates</note> | ||||
|       </trans-unit> | ||||
| @ -2093,7 +2093,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">20</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fees</note> | ||||
|       </trans-unit> | ||||
| @ -2114,7 +2114,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">171,166</context> | ||||
|           <context context-type="linenumber">178,173</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts</context> | ||||
| @ -2155,7 +2155,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> | ||||
| @ -2181,7 +2181,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2203,7 +2203,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">475,477</context> | ||||
|           <context context-type="linenumber">476,478</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> | ||||
| @ -2297,11 +2297,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">477,480</context> | ||||
|           <context context-type="linenumber">478,481</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">488,490</context> | ||||
|           <context context-type="linenumber">489,491</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2331,7 +2331,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">268,271</context> | ||||
|           <context context-type="linenumber">269,272</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction Virtual Size</note> | ||||
|         <note priority="1" from="meaning">transaction.vsize</note> | ||||
| @ -2407,7 +2407,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">26</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-prediction-accuracy</note> | ||||
|       </trans-unit> | ||||
| @ -2448,7 +2448,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">22</context> | ||||
|           <context context-type="linenumber">21</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-rewards</note> | ||||
|       </trans-unit> | ||||
| @ -2465,7 +2465,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|           <context context-type="linenumber">23</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-sizes-weights</note> | ||||
|       </trans-unit> | ||||
| @ -2506,7 +2506,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">264,266</context> | ||||
|           <context context-type="linenumber">265,267</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> | ||||
| @ -2534,7 +2534,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">272,274</context> | ||||
|           <context context-type="linenumber">273,275</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4786852746659896870" datatype="html"> | ||||
| @ -2846,11 +2846,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">284,283</context> | ||||
|           <context context-type="linenumber">291,290</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">371,368</context> | ||||
|           <context context-type="linenumber">378,375</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">block.difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -2891,7 +2891,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">248,253</context> | ||||
|           <context context-type="linenumber">249,254</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> | ||||
| @ -3346,7 +3346,7 @@ | ||||
|         <target>Minado</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">8</context> | ||||
|           <context context-type="linenumber">7</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining</note> | ||||
|       </trans-unit> | ||||
| @ -3355,7 +3355,7 @@ | ||||
|         <target>Ranking de pools</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">11</context> | ||||
|           <context context-type="linenumber">10</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3368,7 +3368,7 @@ | ||||
|         <target>Dominancia de pools</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|           <context context-type="linenumber">12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html</context> | ||||
| @ -3381,7 +3381,7 @@ | ||||
|         <target>Dificultad y Hashrate</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">15,16</context> | ||||
|           <context context-type="linenumber">14,15</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.hashrate-difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -3390,7 +3390,7 @@ | ||||
|         <target>Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">31</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">lightning</note> | ||||
|       </trans-unit> | ||||
| @ -3399,7 +3399,7 @@ | ||||
|         <target>Nodos Lightning Por Red</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|           <context context-type="linenumber">33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html</context> | ||||
| @ -3420,7 +3420,7 @@ | ||||
|         <target>Capacidad De Red Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">36</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.html</context> | ||||
| @ -3441,7 +3441,7 @@ | ||||
|         <target>Nodos Lightning Por ISP</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|           <context context-type="linenumber">37</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context> | ||||
| @ -3454,7 +3454,7 @@ | ||||
|         <target>Nodos Lightning Por País</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">40</context> | ||||
|           <context context-type="linenumber">39</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> | ||||
| @ -3471,7 +3471,7 @@ | ||||
|         <target>Mapa Mundial De Nodos Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">42</context> | ||||
|           <context context-type="linenumber">41</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.html</context> | ||||
| @ -3488,7 +3488,7 @@ | ||||
|         <target>Mapa Mundial De Canales De Nodos Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">44</context> | ||||
|           <context context-type="linenumber">43</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.html</context> | ||||
| @ -3509,11 +3509,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">273,272</context> | ||||
|           <context context-type="linenumber">280,279</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">359,356</context> | ||||
|           <context context-type="linenumber">366,363</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3543,11 +3543,11 @@ | ||||
|         <target>Tasa de hash (MA)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">292,291</context> | ||||
|           <context context-type="linenumber">299,298</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">382,380</context> | ||||
|           <context context-type="linenumber">389,387</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="mining.pools-historical-dominance" datatype="html"> | ||||
| @ -4115,7 +4115,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">290,291</context> | ||||
|           <context context-type="linenumber">291,292</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.hex</note> | ||||
|       </trans-unit> | ||||
| @ -4339,7 +4339,7 @@ | ||||
|         <target>Filtro</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="linenumber">60</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-filter.title</note> | ||||
|       </trans-unit> | ||||
| @ -4348,7 +4348,7 @@ | ||||
|         <target>Invertir</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-invert.title</note> | ||||
|       </trans-unit> | ||||
| @ -4357,7 +4357,7 @@ | ||||
|         <target>vBytes de transacciones por segundo (vB/s)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.transaction-vbytes-per-second</note> | ||||
|       </trans-unit> | ||||
| @ -4365,196 +4365,188 @@ | ||||
|         <source>Just now</source> | ||||
|         <target>Justo ahora</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">64</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <target><x id="DATE" equiv-text="dateStrings.i18nYear"/> atrás</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">74</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">97</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">98</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">100</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">101</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">102</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">108</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">87</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">110</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">88</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">111</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">89</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">112</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>En ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">120</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">121</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">122</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">123</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">124</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">125</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">131</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">133</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">134</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">135</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Después <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">67</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">143</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">68</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">144</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">69</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">145</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">70</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">146</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">71</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">147</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">72</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">148</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">73</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">154</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">156</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">158</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></source> | ||||
|         <target>En ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">66</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">91</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">93</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">94</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">95</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
| @ -4688,7 +4680,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">340,344</context> | ||||
|           <context context-type="linenumber">341,345</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction flow</note> | ||||
|         <note priority="1" from="meaning">transaction.flow</note> | ||||
| @ -4707,7 +4699,7 @@ | ||||
|         <target>Mostrar más</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">225,227</context> | ||||
|           <context context-type="linenumber">226,228</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4724,7 +4716,7 @@ | ||||
|         <target>Mostras menos</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">227,233</context> | ||||
|           <context context-type="linenumber">228,234</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4737,7 +4729,7 @@ | ||||
|         <target>Mostrar diagrama</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">247,248</context> | ||||
|           <context context-type="linenumber">248,249</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">show-diagram</note> | ||||
|       </trans-unit> | ||||
| @ -4746,7 +4738,7 @@ | ||||
|         <target>Tiempo de bloque</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">286,288</context> | ||||
|           <context context-type="linenumber">287,289</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.locktime</note> | ||||
|       </trans-unit> | ||||
| @ -4755,7 +4747,7 @@ | ||||
|         <target>Transacción no encontrada</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">449,450</context> | ||||
|           <context context-type="linenumber">450,451</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.transaction-not-found</note> | ||||
|       </trans-unit> | ||||
| @ -4764,7 +4756,7 @@ | ||||
|         <target>Esperando a que aparezca en la mempool...</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">450,455</context> | ||||
|           <context context-type="linenumber">451,456</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.waiting-for-it-to-appear</note> | ||||
|       </trans-unit> | ||||
| @ -4773,7 +4765,7 @@ | ||||
|         <target>Ratio de tasa efectiva</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">485,488</context> | ||||
|           <context context-type="linenumber">486,489</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Effective transaction fee rate</note> | ||||
|         <note priority="1" from="meaning">transaction.effective-fee-rate</note> | ||||
| @ -5228,6 +5220,10 @@ | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">faq.big-disclaimer</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="cd2330c7e9c74256f6a91e83bccf10e2905f8556" datatype="html"> | ||||
| @ -5235,7 +5231,7 @@ | ||||
|         <target>servicio REST API</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">41,42</context> | ||||
|           <context context-type="linenumber">42,43</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.title</note> | ||||
|       </trans-unit> | ||||
| @ -5244,11 +5240,11 @@ | ||||
|         <target>Endpoint</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">50,51</context> | ||||
|           <context context-type="linenumber">51,52</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">104,107</context> | ||||
|           <context context-type="linenumber">105,108</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Api docs endpoint</note> | ||||
|       </trans-unit> | ||||
| @ -5257,11 +5253,11 @@ | ||||
|         <target>Descripción</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">69,70</context> | ||||
|           <context context-type="linenumber">70,71</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">108,109</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> | ||||
| @ -5269,7 +5265,7 @@ | ||||
|         <target>Empujar por defecto: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> acciona: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> para expresar lo que quiere empujar. Disponible: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, y <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Empujar transacciones relaccionadas a la direccion: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> para recibir todas las nuevas transacciones que contengan la direccion como input o output. Devuelve cualquier formación de transacciones.  <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>dirección-transacciones<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> para nuevas transacciones mempool, y <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>bloque-transacciones<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> para nuevas transacciones confirmadas en bloque.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|           <context context-type="linenumber">110,111</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.websocket.websocket</note> | ||||
|       </trans-unit> | ||||
| @ -5558,6 +5554,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> | ||||
|           <context context-type="linenumber">43,46</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">227</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">4,5</context> | ||||
| @ -6079,6 +6083,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/group/group.component.html</context> | ||||
|           <context context-type="linenumber">40,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">204</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">28,29</context> | ||||
| @ -6559,6 +6571,7 @@ | ||||
|       </trans-unit> | ||||
|       <trans-unit id="599038141003770125" datatype="html"> | ||||
|         <source>Clearnet and Darknet</source> | ||||
|         <target>Clearnet y Darknet</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context> | ||||
|           <context context-type="linenumber">164,161</context> | ||||
| @ -6570,6 +6583,7 @@ | ||||
|       </trans-unit> | ||||
|       <trans-unit id="1282458597026430784" datatype="html"> | ||||
|         <source>Clearnet Only (IPv4, IPv6)</source> | ||||
|         <target>Solo Clearnet (IPv4, IPv6)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context> | ||||
|           <context context-type="linenumber">185,182</context> | ||||
| @ -6581,6 +6595,7 @@ | ||||
|       </trans-unit> | ||||
|       <trans-unit id="2165336009914523952" datatype="html"> | ||||
|         <source>Darknet Only (Tor, I2P, cjdns)</source> | ||||
|         <target>Solo Darknet (Tor, I2P, cjdns)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context> | ||||
|           <context context-type="linenumber">206,203</context> | ||||
|  | ||||
| @ -1074,7 +1074,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">282,284</context> | ||||
|           <context context-type="linenumber">283,285</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.version</note> | ||||
|       </trans-unit> | ||||
| @ -1202,11 +1202,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">256,261</context> | ||||
|           <context context-type="linenumber">257,262</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">400,406</context> | ||||
|           <context context-type="linenumber">401,407</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.details</note> | ||||
|       </trans-unit> | ||||
| @ -1223,11 +1223,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">243,247</context> | ||||
|           <context context-type="linenumber">244,248</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">371,377</context> | ||||
|           <context context-type="linenumber">372,378</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction inputs and outputs</note> | ||||
|         <note priority="1" from="meaning">transaction.inputs-and-outputs</note> | ||||
| @ -1245,7 +1245,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.ts</context> | ||||
|           <context context-type="linenumber">244,243</context> | ||||
|           <context context-type="linenumber">246,245</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4d6066e445db90780e4b30ca93398be0b6567eda" datatype="html"> | ||||
| @ -1581,7 +1581,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/amount/amount.component.html</context> | ||||
|           <context context-type="linenumber">20,23</context> | ||||
|           <context context-type="linenumber">18,21</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context> | ||||
| @ -2044,7 +2044,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|           <context context-type="linenumber">17</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fee-rates</note> | ||||
|       </trans-unit> | ||||
| @ -2093,7 +2093,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">20</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fees</note> | ||||
|       </trans-unit> | ||||
| @ -2114,7 +2114,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">171,166</context> | ||||
|           <context context-type="linenumber">178,173</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts</context> | ||||
| @ -2155,7 +2155,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> | ||||
| @ -2181,7 +2181,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2203,7 +2203,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">475,477</context> | ||||
|           <context context-type="linenumber">476,478</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> | ||||
| @ -2297,11 +2297,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">477,480</context> | ||||
|           <context context-type="linenumber">478,481</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">488,490</context> | ||||
|           <context context-type="linenumber">489,491</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2331,7 +2331,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">268,271</context> | ||||
|           <context context-type="linenumber">269,272</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction Virtual Size</note> | ||||
|         <note priority="1" from="meaning">transaction.vsize</note> | ||||
| @ -2407,7 +2407,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">26</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-prediction-accuracy</note> | ||||
|       </trans-unit> | ||||
| @ -2448,7 +2448,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">22</context> | ||||
|           <context context-type="linenumber">21</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-rewards</note> | ||||
|       </trans-unit> | ||||
| @ -2465,7 +2465,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|           <context context-type="linenumber">23</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-sizes-weights</note> | ||||
|       </trans-unit> | ||||
| @ -2506,7 +2506,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">264,266</context> | ||||
|           <context context-type="linenumber">265,267</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> | ||||
| @ -2534,7 +2534,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">272,274</context> | ||||
|           <context context-type="linenumber">273,275</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4786852746659896870" datatype="html"> | ||||
| @ -2846,11 +2846,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">284,283</context> | ||||
|           <context context-type="linenumber">291,290</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">371,368</context> | ||||
|           <context context-type="linenumber">378,375</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">block.difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -2891,7 +2891,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">248,253</context> | ||||
|           <context context-type="linenumber">249,254</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> | ||||
| @ -3346,7 +3346,7 @@ | ||||
|         <target>Louhinta</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">8</context> | ||||
|           <context context-type="linenumber">7</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining</note> | ||||
|       </trans-unit> | ||||
| @ -3355,7 +3355,7 @@ | ||||
|         <target>Poolien sijoitus</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">11</context> | ||||
|           <context context-type="linenumber">10</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3368,7 +3368,7 @@ | ||||
|         <target>Poolien dominanssi</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|           <context context-type="linenumber">12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html</context> | ||||
| @ -3381,7 +3381,7 @@ | ||||
|         <target>Laskentateho & Vaikeusaste</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">15,16</context> | ||||
|           <context context-type="linenumber">14,15</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.hashrate-difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -3390,7 +3390,7 @@ | ||||
|         <target>Salamaverkko</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">31</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">lightning</note> | ||||
|       </trans-unit> | ||||
| @ -3399,7 +3399,7 @@ | ||||
|         <target>Salamasolmut per verkko</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|           <context context-type="linenumber">33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html</context> | ||||
| @ -3420,7 +3420,7 @@ | ||||
|         <target>Salamaverkon kapasiteetti</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">36</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.html</context> | ||||
| @ -3441,7 +3441,7 @@ | ||||
|         <target>Salamasolmut palveluntarjoajaa kohti</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|           <context context-type="linenumber">37</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context> | ||||
| @ -3454,7 +3454,7 @@ | ||||
|         <target>Salamasolmut maata kohti</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">40</context> | ||||
|           <context context-type="linenumber">39</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> | ||||
| @ -3471,7 +3471,7 @@ | ||||
|         <target>Salamasolmujen maailmankartta</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">42</context> | ||||
|           <context context-type="linenumber">41</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.html</context> | ||||
| @ -3488,7 +3488,7 @@ | ||||
|         <target>Salamasolmu kanavien maailmankartta</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">44</context> | ||||
|           <context context-type="linenumber">43</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.html</context> | ||||
| @ -3509,11 +3509,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">273,272</context> | ||||
|           <context context-type="linenumber">280,279</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">359,356</context> | ||||
|           <context context-type="linenumber">366,363</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3543,11 +3543,11 @@ | ||||
|         <target>Laskentateho (MA)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">292,291</context> | ||||
|           <context context-type="linenumber">299,298</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">382,380</context> | ||||
|           <context context-type="linenumber">389,387</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="mining.pools-historical-dominance" datatype="html"> | ||||
| @ -4115,7 +4115,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">290,291</context> | ||||
|           <context context-type="linenumber">291,292</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.hex</note> | ||||
|       </trans-unit> | ||||
| @ -4339,7 +4339,7 @@ | ||||
|         <target>Suodatin</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="linenumber">60</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-filter.title</note> | ||||
|       </trans-unit> | ||||
| @ -4348,7 +4348,7 @@ | ||||
|         <target>Käänteinen</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-invert.title</note> | ||||
|       </trans-unit> | ||||
| @ -4357,7 +4357,7 @@ | ||||
|         <target>Siirtotapahtuma vByte:ä sekunnissa (vB/s)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.transaction-vbytes-per-second</note> | ||||
|       </trans-unit> | ||||
| @ -4365,196 +4365,187 @@ | ||||
|         <source>Just now</source> | ||||
|         <target>Juuri nyt</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">64</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <target><x id="DATE" equiv-text="dateStrings.i18nYear"/> sitten</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">74</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">97</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">98</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">100</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">101</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">102</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">108</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">87</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">110</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">88</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">111</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">89</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">112</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">120</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">121</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">122</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">123</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">124</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">125</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">131</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">133</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">134</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">135</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target><x id="DATE" equiv-text="dateStrings.i18nYear"/> jälkeen</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">67</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">143</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">68</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">144</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">69</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">145</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">70</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">146</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">71</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">147</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">72</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">148</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">73</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">154</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">156</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">158</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></source> | ||||
|         <target>~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">66</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">91</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">93</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">94</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">95</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
| @ -4688,7 +4679,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">340,344</context> | ||||
|           <context context-type="linenumber">341,345</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction flow</note> | ||||
|         <note priority="1" from="meaning">transaction.flow</note> | ||||
| @ -4707,7 +4698,7 @@ | ||||
|         <target>Näytä enemmän</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">225,227</context> | ||||
|           <context context-type="linenumber">226,228</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4724,7 +4715,7 @@ | ||||
|         <target>Näytä vähemmän</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">227,233</context> | ||||
|           <context context-type="linenumber">228,234</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4737,7 +4728,7 @@ | ||||
|         <target>Näytä kaavio</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">247,248</context> | ||||
|           <context context-type="linenumber">248,249</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">show-diagram</note> | ||||
|       </trans-unit> | ||||
| @ -4746,7 +4737,7 @@ | ||||
|         <target>Lukitusaika</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">286,288</context> | ||||
|           <context context-type="linenumber">287,289</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.locktime</note> | ||||
|       </trans-unit> | ||||
| @ -4755,7 +4746,7 @@ | ||||
|         <target>Siirtotapahtumaa ei löydy.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">449,450</context> | ||||
|           <context context-type="linenumber">450,451</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.transaction-not-found</note> | ||||
|       </trans-unit> | ||||
| @ -4764,7 +4755,7 @@ | ||||
|         <target>Odotetaan sen ilmestymistä mempooliin...</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">450,455</context> | ||||
|           <context context-type="linenumber">451,456</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.waiting-for-it-to-appear</note> | ||||
|       </trans-unit> | ||||
| @ -4773,7 +4764,7 @@ | ||||
|         <target>Todellinen siirtomaksu taso</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">485,488</context> | ||||
|           <context context-type="linenumber">486,489</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Effective transaction fee rate</note> | ||||
|         <note priority="1" from="meaning">transaction.effective-fee-rate</note> | ||||
| @ -5228,6 +5219,10 @@ | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">faq.big-disclaimer</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="cd2330c7e9c74256f6a91e83bccf10e2905f8556" datatype="html"> | ||||
| @ -5235,7 +5230,7 @@ | ||||
|         <target>REST API-palvelu</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">41,42</context> | ||||
|           <context context-type="linenumber">42,43</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.title</note> | ||||
|       </trans-unit> | ||||
| @ -5244,11 +5239,11 @@ | ||||
|         <target>Päätepiste</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">50,51</context> | ||||
|           <context context-type="linenumber">51,52</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">104,107</context> | ||||
|           <context context-type="linenumber">105,108</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Api docs endpoint</note> | ||||
|       </trans-unit> | ||||
| @ -5257,11 +5252,11 @@ | ||||
|         <target>Kuvaus</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">69,70</context> | ||||
|           <context context-type="linenumber">70,71</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">108,109</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> | ||||
| @ -5269,7 +5264,7 @@ | ||||
|         <target>Oletus työntö: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/>action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>ilmaisemaan, mitä haluat työnnettävän. Käytettävissä: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> ja <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Työnnä osoitteeseen liittyvät tapahtumat: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> vastaanottaa kaikki uudet transaktiot, jotka sisältävät kyseisen osoitteen syötteenä tai tulosteena. Palauttaa transaktioiden joukon. <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> uusille mempool-transaktioille ja <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> uusille lohkon vahvistetuille transaktioille.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|           <context context-type="linenumber">110,111</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.websocket.websocket</note> | ||||
|       </trans-unit> | ||||
| @ -5558,6 +5553,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> | ||||
|           <context context-type="linenumber">43,46</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">227</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">4,5</context> | ||||
| @ -6079,6 +6082,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/group/group.component.html</context> | ||||
|           <context context-type="linenumber">40,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">204</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">28,29</context> | ||||
|  | ||||
| @ -1074,7 +1074,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">282,284</context> | ||||
|           <context context-type="linenumber">283,285</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.version</note> | ||||
|       </trans-unit> | ||||
| @ -1202,11 +1202,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">256,261</context> | ||||
|           <context context-type="linenumber">257,262</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">400,406</context> | ||||
|           <context context-type="linenumber">401,407</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.details</note> | ||||
|       </trans-unit> | ||||
| @ -1223,11 +1223,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">243,247</context> | ||||
|           <context context-type="linenumber">244,248</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">371,377</context> | ||||
|           <context context-type="linenumber">372,378</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction inputs and outputs</note> | ||||
|         <note priority="1" from="meaning">transaction.inputs-and-outputs</note> | ||||
| @ -1245,7 +1245,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.ts</context> | ||||
|           <context context-type="linenumber">244,243</context> | ||||
|           <context context-type="linenumber">246,245</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4d6066e445db90780e4b30ca93398be0b6567eda" datatype="html"> | ||||
| @ -1581,7 +1581,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/amount/amount.component.html</context> | ||||
|           <context context-type="linenumber">20,23</context> | ||||
|           <context context-type="linenumber">18,21</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context> | ||||
| @ -2044,7 +2044,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|           <context context-type="linenumber">17</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fee-rates</note> | ||||
|       </trans-unit> | ||||
| @ -2093,7 +2093,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">20</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fees</note> | ||||
|       </trans-unit> | ||||
| @ -2114,7 +2114,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">171,166</context> | ||||
|           <context context-type="linenumber">178,173</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts</context> | ||||
| @ -2155,7 +2155,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> | ||||
| @ -2181,7 +2181,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2203,7 +2203,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">475,477</context> | ||||
|           <context context-type="linenumber">476,478</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> | ||||
| @ -2297,11 +2297,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">477,480</context> | ||||
|           <context context-type="linenumber">478,481</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">488,490</context> | ||||
|           <context context-type="linenumber">489,491</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2331,7 +2331,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">268,271</context> | ||||
|           <context context-type="linenumber">269,272</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction Virtual Size</note> | ||||
|         <note priority="1" from="meaning">transaction.vsize</note> | ||||
| @ -2407,7 +2407,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">26</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-prediction-accuracy</note> | ||||
|       </trans-unit> | ||||
| @ -2448,7 +2448,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">22</context> | ||||
|           <context context-type="linenumber">21</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-rewards</note> | ||||
|       </trans-unit> | ||||
| @ -2465,7 +2465,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|           <context context-type="linenumber">23</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-sizes-weights</note> | ||||
|       </trans-unit> | ||||
| @ -2506,7 +2506,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">264,266</context> | ||||
|           <context context-type="linenumber">265,267</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> | ||||
| @ -2534,7 +2534,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">272,274</context> | ||||
|           <context context-type="linenumber">273,275</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4786852746659896870" datatype="html"> | ||||
| @ -2846,11 +2846,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">284,283</context> | ||||
|           <context context-type="linenumber">291,290</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">371,368</context> | ||||
|           <context context-type="linenumber">378,375</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">block.difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -2891,7 +2891,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">248,253</context> | ||||
|           <context context-type="linenumber">249,254</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> | ||||
| @ -3346,7 +3346,7 @@ | ||||
|         <target>Minage</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">8</context> | ||||
|           <context context-type="linenumber">7</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining</note> | ||||
|       </trans-unit> | ||||
| @ -3355,7 +3355,7 @@ | ||||
|         <target>Classement des pools</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">11</context> | ||||
|           <context context-type="linenumber">10</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3368,7 +3368,7 @@ | ||||
|         <target>Dominance des pools</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|           <context context-type="linenumber">12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html</context> | ||||
| @ -3381,7 +3381,7 @@ | ||||
|         <target>Taux de hachage & difficulté</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">15,16</context> | ||||
|           <context context-type="linenumber">14,15</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.hashrate-difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -3390,7 +3390,7 @@ | ||||
|         <target>Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">31</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">lightning</note> | ||||
|       </trans-unit> | ||||
| @ -3399,7 +3399,7 @@ | ||||
|         <target>Nœuds Lightning par réseau</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|           <context context-type="linenumber">33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html</context> | ||||
| @ -3420,7 +3420,7 @@ | ||||
|         <target>Capacité du réseau Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">36</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.html</context> | ||||
| @ -3441,7 +3441,7 @@ | ||||
|         <target>Nœuds Lightning par FAI</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|           <context context-type="linenumber">37</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context> | ||||
| @ -3454,7 +3454,7 @@ | ||||
|         <target>Nœuds Lightning par pays</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">40</context> | ||||
|           <context context-type="linenumber">39</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> | ||||
| @ -3471,7 +3471,7 @@ | ||||
|         <target>Carte du monde des nœuds Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">42</context> | ||||
|           <context context-type="linenumber">41</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.html</context> | ||||
| @ -3488,7 +3488,7 @@ | ||||
|         <target>Carte du monde des canaux Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">44</context> | ||||
|           <context context-type="linenumber">43</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.html</context> | ||||
| @ -3509,11 +3509,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">273,272</context> | ||||
|           <context context-type="linenumber">280,279</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">359,356</context> | ||||
|           <context context-type="linenumber">366,363</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3543,11 +3543,11 @@ | ||||
|         <target>Taux de hachage (moy)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">292,291</context> | ||||
|           <context context-type="linenumber">299,298</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">382,380</context> | ||||
|           <context context-type="linenumber">389,387</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="mining.pools-historical-dominance" datatype="html"> | ||||
| @ -4115,7 +4115,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">290,291</context> | ||||
|           <context context-type="linenumber">291,292</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.hex</note> | ||||
|       </trans-unit> | ||||
| @ -4339,7 +4339,7 @@ | ||||
|         <target>Filtrer</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="linenumber">60</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-filter.title</note> | ||||
|       </trans-unit> | ||||
| @ -4348,7 +4348,7 @@ | ||||
|         <target>Inverser</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-invert.title</note> | ||||
|       </trans-unit> | ||||
| @ -4357,7 +4357,7 @@ | ||||
|         <target>Transaction vBytes par seconde (vB/s)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.transaction-vbytes-per-second</note> | ||||
|       </trans-unit> | ||||
| @ -4365,196 +4365,188 @@ | ||||
|         <source>Just now</source> | ||||
|         <target>Juste maintenant</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">64</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <target>Il y a <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">74</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">97</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">98</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">100</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">101</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">102</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">108</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">87</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">110</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">88</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">111</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">89</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">112</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Dans ~ <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">120</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">121</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">122</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">123</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">124</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">125</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">131</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">133</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">134</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">135</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Après <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">67</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">143</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">68</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">144</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">69</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">145</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">70</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">146</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">71</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">147</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">72</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">148</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">73</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">154</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">156</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">158</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></source> | ||||
|         <target>Dans ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">66</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">91</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">93</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">94</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">95</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
| @ -4688,7 +4680,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">340,344</context> | ||||
|           <context context-type="linenumber">341,345</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction flow</note> | ||||
|         <note priority="1" from="meaning">transaction.flow</note> | ||||
| @ -4707,7 +4699,7 @@ | ||||
|         <target>Montrer plus</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">225,227</context> | ||||
|           <context context-type="linenumber">226,228</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4724,7 +4716,7 @@ | ||||
|         <target>Montrer moins</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">227,233</context> | ||||
|           <context context-type="linenumber">228,234</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4737,7 +4729,7 @@ | ||||
|         <target>Afficher le diagramme</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">247,248</context> | ||||
|           <context context-type="linenumber">248,249</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">show-diagram</note> | ||||
|       </trans-unit> | ||||
| @ -4746,7 +4738,7 @@ | ||||
|         <target>Temps de verrouillage</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">286,288</context> | ||||
|           <context context-type="linenumber">287,289</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.locktime</note> | ||||
|       </trans-unit> | ||||
| @ -4755,7 +4747,7 @@ | ||||
|         <target>Transaction introuvable.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">449,450</context> | ||||
|           <context context-type="linenumber">450,451</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.transaction-not-found</note> | ||||
|       </trans-unit> | ||||
| @ -4764,7 +4756,7 @@ | ||||
|         <target>Veuillez patienter pendant que nous attendons qu'elle apparaisse dans le mempool</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">450,455</context> | ||||
|           <context context-type="linenumber">451,456</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.waiting-for-it-to-appear</note> | ||||
|       </trans-unit> | ||||
| @ -4773,7 +4765,7 @@ | ||||
|         <target>Taux de frais effectif</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">485,488</context> | ||||
|           <context context-type="linenumber">486,489</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Effective transaction fee rate</note> | ||||
|         <note priority="1" from="meaning">transaction.effective-fee-rate</note> | ||||
| @ -5228,6 +5220,10 @@ | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">faq.big-disclaimer</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="cd2330c7e9c74256f6a91e83bccf10e2905f8556" datatype="html"> | ||||
| @ -5235,7 +5231,7 @@ | ||||
|         <target>Service d'API REST</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">41,42</context> | ||||
|           <context context-type="linenumber">42,43</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.title</note> | ||||
|       </trans-unit> | ||||
| @ -5244,11 +5240,11 @@ | ||||
|         <target>Point de terminaison</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">50,51</context> | ||||
|           <context context-type="linenumber">51,52</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">104,107</context> | ||||
|           <context context-type="linenumber">105,108</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Api docs endpoint</note> | ||||
|       </trans-unit> | ||||
| @ -5257,11 +5253,11 @@ | ||||
|         <target>Description</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">69,70</context> | ||||
|           <context context-type="linenumber">70,71</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">108,109</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> | ||||
| @ -5269,7 +5265,7 @@ | ||||
|         <target>Pousser par défaut : <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> pour exprimer ce que vous voulez pousser. Disponible:  <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, et <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Pousse les transactions liées à l'adresse : <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> pour recevoir toutes les nouvelles transactions contenant cette adresse en entrée ou en sortie. Renvoie un tableau de transactions. <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> pour les nouvelles transactions mempool, et <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> pour les nouvelles transactions confirmées en bloc.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|           <context context-type="linenumber">110,111</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.websocket.websocket</note> | ||||
|       </trans-unit> | ||||
| @ -5558,6 +5554,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> | ||||
|           <context context-type="linenumber">43,46</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">227</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">4,5</context> | ||||
| @ -6079,6 +6083,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/group/group.component.html</context> | ||||
|           <context context-type="linenumber">40,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">204</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">28,29</context> | ||||
|  | ||||
| @ -1074,7 +1074,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">282,284</context> | ||||
|           <context context-type="linenumber">283,285</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.version</note> | ||||
|       </trans-unit> | ||||
| @ -1202,11 +1202,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">256,261</context> | ||||
|           <context context-type="linenumber">257,262</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">400,406</context> | ||||
|           <context context-type="linenumber">401,407</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.details</note> | ||||
|       </trans-unit> | ||||
| @ -1223,11 +1223,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">243,247</context> | ||||
|           <context context-type="linenumber">244,248</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">371,377</context> | ||||
|           <context context-type="linenumber">372,378</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction inputs and outputs</note> | ||||
|         <note priority="1" from="meaning">transaction.inputs-and-outputs</note> | ||||
| @ -1245,7 +1245,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.ts</context> | ||||
|           <context context-type="linenumber">244,243</context> | ||||
|           <context context-type="linenumber">246,245</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4d6066e445db90780e4b30ca93398be0b6567eda" datatype="html"> | ||||
| @ -1581,7 +1581,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/amount/amount.component.html</context> | ||||
|           <context context-type="linenumber">20,23</context> | ||||
|           <context context-type="linenumber">18,21</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context> | ||||
| @ -2044,7 +2044,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|           <context context-type="linenumber">17</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fee-rates</note> | ||||
|       </trans-unit> | ||||
| @ -2093,7 +2093,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">20</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fees</note> | ||||
|       </trans-unit> | ||||
| @ -2114,7 +2114,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">171,166</context> | ||||
|           <context context-type="linenumber">178,173</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts</context> | ||||
| @ -2155,7 +2155,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> | ||||
| @ -2181,7 +2181,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2203,7 +2203,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">475,477</context> | ||||
|           <context context-type="linenumber">476,478</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> | ||||
| @ -2297,11 +2297,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">477,480</context> | ||||
|           <context context-type="linenumber">478,481</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">488,490</context> | ||||
|           <context context-type="linenumber">489,491</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2331,7 +2331,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">268,271</context> | ||||
|           <context context-type="linenumber">269,272</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction Virtual Size</note> | ||||
|         <note priority="1" from="meaning">transaction.vsize</note> | ||||
| @ -2407,7 +2407,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">26</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-prediction-accuracy</note> | ||||
|       </trans-unit> | ||||
| @ -2448,7 +2448,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">22</context> | ||||
|           <context context-type="linenumber">21</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-rewards</note> | ||||
|       </trans-unit> | ||||
| @ -2465,7 +2465,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|           <context context-type="linenumber">23</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-sizes-weights</note> | ||||
|       </trans-unit> | ||||
| @ -2506,7 +2506,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">264,266</context> | ||||
|           <context context-type="linenumber">265,267</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> | ||||
| @ -2534,7 +2534,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">272,274</context> | ||||
|           <context context-type="linenumber">273,275</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4786852746659896870" datatype="html"> | ||||
| @ -2846,11 +2846,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">284,283</context> | ||||
|           <context context-type="linenumber">291,290</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">371,368</context> | ||||
|           <context context-type="linenumber">378,375</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">block.difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -2891,7 +2891,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">248,253</context> | ||||
|           <context context-type="linenumber">249,254</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> | ||||
| @ -3346,7 +3346,7 @@ | ||||
|         <target>כרייה</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">8</context> | ||||
|           <context context-type="linenumber">7</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining</note> | ||||
|       </trans-unit> | ||||
| @ -3355,7 +3355,7 @@ | ||||
|         <target>דירוג בריכות</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">11</context> | ||||
|           <context context-type="linenumber">10</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3368,7 +3368,7 @@ | ||||
|         <target>שליטת בריכות</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|           <context context-type="linenumber">12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html</context> | ||||
| @ -3381,7 +3381,7 @@ | ||||
|         <target>קשי וכמות האשים</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">15,16</context> | ||||
|           <context context-type="linenumber">14,15</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.hashrate-difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -3390,7 +3390,7 @@ | ||||
|         <target>ברק</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">31</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">lightning</note> | ||||
|       </trans-unit> | ||||
| @ -3399,7 +3399,7 @@ | ||||
|         <target>צמתי ברק לפי רשת</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|           <context context-type="linenumber">33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html</context> | ||||
| @ -3420,7 +3420,7 @@ | ||||
|         <target>קיבולת רשת הברק</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">36</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.html</context> | ||||
| @ -3441,7 +3441,7 @@ | ||||
|         <target>צמתי ברק לפי ספקי תשתית</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|           <context context-type="linenumber">37</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context> | ||||
| @ -3454,7 +3454,7 @@ | ||||
|         <target>צמתי ברק לפי מדינה</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">40</context> | ||||
|           <context context-type="linenumber">39</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> | ||||
| @ -3471,7 +3471,7 @@ | ||||
|         <target>צמתי ברק במפת העולם</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">42</context> | ||||
|           <context context-type="linenumber">41</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.html</context> | ||||
| @ -3488,7 +3488,7 @@ | ||||
|         <target>ערוצי צמתי ברק במפת העולם</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">44</context> | ||||
|           <context context-type="linenumber">43</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.html</context> | ||||
| @ -3509,11 +3509,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">273,272</context> | ||||
|           <context context-type="linenumber">280,279</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">359,356</context> | ||||
|           <context context-type="linenumber">366,363</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3543,11 +3543,11 @@ | ||||
|         <target>כמות האשים (ממוצע נע)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">292,291</context> | ||||
|           <context context-type="linenumber">299,298</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">382,380</context> | ||||
|           <context context-type="linenumber">389,387</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="mining.pools-historical-dominance" datatype="html"> | ||||
| @ -4113,7 +4113,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">290,291</context> | ||||
|           <context context-type="linenumber">291,292</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.hex</note> | ||||
|       </trans-unit> | ||||
| @ -4336,7 +4336,7 @@ | ||||
|         <target>סנן</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="linenumber">60</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-filter.title</note> | ||||
|       </trans-unit> | ||||
| @ -4345,7 +4345,7 @@ | ||||
|         <target>להפוך</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-invert.title</note> | ||||
|       </trans-unit> | ||||
| @ -4354,7 +4354,7 @@ | ||||
|         <target>טרנזקציות vBytes לשניה (vB/s)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.transaction-vbytes-per-second</note> | ||||
|       </trans-unit> | ||||
| @ -4362,196 +4362,187 @@ | ||||
|         <source>Just now</source> | ||||
|         <target>זה עתה</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">64</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <target>לפני <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">74</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">97</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">98</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">100</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">101</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">102</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">108</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">87</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">110</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">88</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">111</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">89</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">112</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">120</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">121</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">122</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">123</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">124</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">125</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">131</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">133</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">134</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">135</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>לאחר <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">67</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">143</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">68</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">144</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">69</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">145</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">70</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">146</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">71</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">147</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">72</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">148</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">73</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">154</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">156</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">158</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></source> | ||||
|         <target>תוך ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">66</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">91</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">93</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">94</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">95</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
| @ -4685,7 +4676,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">340,344</context> | ||||
|           <context context-type="linenumber">341,345</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction flow</note> | ||||
|         <note priority="1" from="meaning">transaction.flow</note> | ||||
| @ -4704,7 +4695,7 @@ | ||||
|         <target>הצג עוד</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">225,227</context> | ||||
|           <context context-type="linenumber">226,228</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4721,7 +4712,7 @@ | ||||
|         <target>הצג פחות</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">227,233</context> | ||||
|           <context context-type="linenumber">228,234</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4734,7 +4725,7 @@ | ||||
|         <target>הצג דיאגמה</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">247,248</context> | ||||
|           <context context-type="linenumber">248,249</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">show-diagram</note> | ||||
|       </trans-unit> | ||||
| @ -4743,7 +4734,7 @@ | ||||
|         <target>זמן נעילה</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">286,288</context> | ||||
|           <context context-type="linenumber">287,289</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.locktime</note> | ||||
|       </trans-unit> | ||||
| @ -4752,7 +4743,7 @@ | ||||
|         <target>טרנזקציה לא נמצאה.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">449,450</context> | ||||
|           <context context-type="linenumber">450,451</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.transaction-not-found</note> | ||||
|       </trans-unit> | ||||
| @ -4761,7 +4752,7 @@ | ||||
|         <target>ממתין להופעתה בממפול..</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">450,455</context> | ||||
|           <context context-type="linenumber">451,456</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.waiting-for-it-to-appear</note> | ||||
|       </trans-unit> | ||||
| @ -4770,7 +4761,7 @@ | ||||
|         <target>שיעור עמלה אפקטיבי</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">485,488</context> | ||||
|           <context context-type="linenumber">486,489</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Effective transaction fee rate</note> | ||||
|         <note priority="1" from="meaning">transaction.effective-fee-rate</note> | ||||
| @ -5224,13 +5215,17 @@ | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">faq.big-disclaimer</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="cd2330c7e9c74256f6a91e83bccf10e2905f8556" datatype="html"> | ||||
|         <source>REST API service</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">41,42</context> | ||||
|           <context context-type="linenumber">42,43</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.title</note> | ||||
|       </trans-unit> | ||||
| @ -5239,11 +5234,11 @@ | ||||
|         <target>נקודת קצה</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">50,51</context> | ||||
|           <context context-type="linenumber">51,52</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">104,107</context> | ||||
|           <context context-type="linenumber">105,108</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Api docs endpoint</note> | ||||
|       </trans-unit> | ||||
| @ -5252,11 +5247,11 @@ | ||||
|         <target>תיאור</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">69,70</context> | ||||
|           <context context-type="linenumber">70,71</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">108,109</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> | ||||
| @ -5264,7 +5259,7 @@ | ||||
|         <target>ברירת מחדל דוחף: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> פעולה ׳רוצה׳, מידע: [׳בלוקים׳,...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> לבטא את מה שרצית לדחוף. זמין <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> בלוקים <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> בלוקי-ממפול <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, תצוגה חיה-שעתיים-טבלה <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, ו<x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> סטטיסטיקות <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>. <x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/> דוחף טרנזקציות הקשורות לכתובת: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> ׳עקוב-כתובת׳: ׳3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>  לקבלה של כל הטרנזקציות החדשות המכילות את כתובת זו כקלט או פלט. מאחזר מערך של טרנזקציות. <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> טרנזקציות-כתובת <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> לטרנזקציות ממפול חדשות ו<x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> בלוקי-טרנזקציות <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> לבלוקים מאושרים חדשים.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|           <context context-type="linenumber">110,111</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.websocket.websocket</note> | ||||
|       </trans-unit> | ||||
| @ -5545,6 +5540,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> | ||||
|           <context context-type="linenumber">43,46</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">227</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">4,5</context> | ||||
| @ -6061,6 +6064,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/group/group.component.html</context> | ||||
|           <context context-type="linenumber">40,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">204</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">28,29</context> | ||||
|  | ||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -1074,7 +1074,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">282,284</context> | ||||
|           <context context-type="linenumber">283,285</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.version</note> | ||||
|       </trans-unit> | ||||
| @ -1202,11 +1202,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">256,261</context> | ||||
|           <context context-type="linenumber">257,262</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">400,406</context> | ||||
|           <context context-type="linenumber">401,407</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.details</note> | ||||
|       </trans-unit> | ||||
| @ -1223,11 +1223,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">243,247</context> | ||||
|           <context context-type="linenumber">244,248</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">371,377</context> | ||||
|           <context context-type="linenumber">372,378</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction inputs and outputs</note> | ||||
|         <note priority="1" from="meaning">transaction.inputs-and-outputs</note> | ||||
| @ -1245,7 +1245,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.ts</context> | ||||
|           <context context-type="linenumber">244,243</context> | ||||
|           <context context-type="linenumber">246,245</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4d6066e445db90780e4b30ca93398be0b6567eda" datatype="html"> | ||||
| @ -1581,7 +1581,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/amount/amount.component.html</context> | ||||
|           <context context-type="linenumber">20,23</context> | ||||
|           <context context-type="linenumber">18,21</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context> | ||||
| @ -2044,7 +2044,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|           <context context-type="linenumber">17</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fee-rates</note> | ||||
|       </trans-unit> | ||||
| @ -2093,7 +2093,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">20</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fees</note> | ||||
|       </trans-unit> | ||||
| @ -2114,7 +2114,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">171,166</context> | ||||
|           <context context-type="linenumber">178,173</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts</context> | ||||
| @ -2155,7 +2155,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> | ||||
| @ -2181,7 +2181,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2203,7 +2203,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">475,477</context> | ||||
|           <context context-type="linenumber">476,478</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> | ||||
| @ -2297,11 +2297,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">477,480</context> | ||||
|           <context context-type="linenumber">478,481</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">488,490</context> | ||||
|           <context context-type="linenumber">489,491</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2331,7 +2331,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">268,271</context> | ||||
|           <context context-type="linenumber">269,272</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction Virtual Size</note> | ||||
|         <note priority="1" from="meaning">transaction.vsize</note> | ||||
| @ -2407,7 +2407,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">26</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-prediction-accuracy</note> | ||||
|       </trans-unit> | ||||
| @ -2448,7 +2448,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">22</context> | ||||
|           <context context-type="linenumber">21</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-rewards</note> | ||||
|       </trans-unit> | ||||
| @ -2465,7 +2465,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|           <context context-type="linenumber">23</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-sizes-weights</note> | ||||
|       </trans-unit> | ||||
| @ -2506,7 +2506,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">264,266</context> | ||||
|           <context context-type="linenumber">265,267</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> | ||||
| @ -2534,7 +2534,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">272,274</context> | ||||
|           <context context-type="linenumber">273,275</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4786852746659896870" datatype="html"> | ||||
| @ -2633,6 +2633,10 @@ | ||||
|           <context context-type="sourcefile">src/app/components/block/block.component.html</context> | ||||
|           <context context-type="linenumber">8,9</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
| @ -2846,11 +2850,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">284,283</context> | ||||
|           <context context-type="linenumber">291,290</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">371,368</context> | ||||
|           <context context-type="linenumber">378,375</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">block.difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -2891,7 +2895,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">248,253</context> | ||||
|           <context context-type="linenumber">249,254</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> | ||||
| @ -3080,6 +3084,10 @@ | ||||
|       <trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html"> | ||||
|         <source>Difficulty Adjustment</source> | ||||
|         <target>Sudėtingumo Koregavimas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">1,5</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">1,5</context> | ||||
| @ -3094,11 +3102,11 @@ | ||||
|         <source>Remaining</source> | ||||
|         <target>Liko</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">7,9</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">66,69</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining</note> | ||||
| @ -3107,11 +3115,11 @@ | ||||
|         <source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template>             <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||||
|         <target> <x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template>             <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> blokai <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">10,11</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">53,54</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
| @ -3132,11 +3140,11 @@ | ||||
|         <source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template>           </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||||
|         <target> <x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template>           </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> blokas <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">11,12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">54,55</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
| @ -3149,11 +3157,11 @@ | ||||
|         <source>Estimate</source> | ||||
|         <target>Prognozė</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">16,17</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">73,76</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.estimate</note> | ||||
| @ -3162,20 +3170,24 @@ | ||||
|         <source>Previous</source> | ||||
|         <target>Buvęs</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">31,33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">59,61</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.previous</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html"> | ||||
|         <source>Current Period</source> | ||||
|         <target>Šis Periodas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">43,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">80,83</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.current-period</note> | ||||
| @ -3184,11 +3196,99 @@ | ||||
|         <source>Next Halving</source> | ||||
|         <target>Iki Halvingo Liko</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">50,52</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.next-halving</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.expected-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.expected-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.mined-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.mined-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">29</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.blocks-ahead</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.block-ahead</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.blocks-behind</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.block-behind</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html"> | ||||
|         <source>Average block time</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">42,45</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.average-block-time</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html"> | ||||
|         <source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source> | ||||
|         <target>Arba 2x daugiau už minimalų arba žemo prioriteto tarifas (pagal tai kuris mažesnis)</target> | ||||
| @ -3346,7 +3446,7 @@ | ||||
|         <target>Kasimas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">8</context> | ||||
|           <context context-type="linenumber">7</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining</note> | ||||
|       </trans-unit> | ||||
| @ -3355,7 +3455,7 @@ | ||||
|         <target>Telkinių Reitingas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">11</context> | ||||
|           <context context-type="linenumber">10</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3368,7 +3468,7 @@ | ||||
|         <target>Telkinių Dominavimas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|           <context context-type="linenumber">12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html</context> | ||||
| @ -3381,7 +3481,7 @@ | ||||
|         <target>Maišos Dažnis ir Sudėtingumas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">15,16</context> | ||||
|           <context context-type="linenumber">14,15</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.hashrate-difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -3390,7 +3490,7 @@ | ||||
|         <target>„Lightning“</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">31</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">lightning</note> | ||||
|       </trans-unit> | ||||
| @ -3399,7 +3499,7 @@ | ||||
|         <target>„Lightning“ Mazgai Tinkle</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|           <context context-type="linenumber">33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html</context> | ||||
| @ -3420,7 +3520,7 @@ | ||||
|         <target>„Lightning“ Tinklo Talpa</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">36</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.html</context> | ||||
| @ -3441,7 +3541,7 @@ | ||||
|         <target>„Lightning“ Mazgai Tenkantys Vienam IPT</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|           <context context-type="linenumber">37</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context> | ||||
| @ -3454,7 +3554,7 @@ | ||||
|         <target>„Lightning“ Mazgai Pagal Šalį</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">40</context> | ||||
|           <context context-type="linenumber">39</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> | ||||
| @ -3471,7 +3571,7 @@ | ||||
|         <target>„Lightning“ Tinklo Žemėlapis</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">42</context> | ||||
|           <context context-type="linenumber">41</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.html</context> | ||||
| @ -3488,7 +3588,7 @@ | ||||
|         <target>„Lightning“ Kanalų Žemėlapis</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">44</context> | ||||
|           <context context-type="linenumber">43</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.html</context> | ||||
| @ -3509,11 +3609,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">273,272</context> | ||||
|           <context context-type="linenumber">280,279</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">359,356</context> | ||||
|           <context context-type="linenumber">366,363</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3543,11 +3643,11 @@ | ||||
|         <target>Maišos dažnis (JV)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">292,291</context> | ||||
|           <context context-type="linenumber">299,298</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">382,380</context> | ||||
|           <context context-type="linenumber">389,387</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="mining.pools-historical-dominance" datatype="html"> | ||||
| @ -3704,7 +3804,7 @@ | ||||
|       </trans-unit> | ||||
|       <trans-unit id="f13cbfe8cfc955918e9f64466d2cafddb4760d9a" datatype="html"> | ||||
|         <source>Broadcast Transaction</source> | ||||
|         <target>Transliavimo Sandoris</target> | ||||
|         <target>Transliuoti Sandorį</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
| @ -4115,7 +4215,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">290,291</context> | ||||
|           <context context-type="linenumber">291,292</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.hex</note> | ||||
|       </trans-unit> | ||||
| @ -4339,7 +4439,7 @@ | ||||
|         <target>Filtruoti</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="linenumber">60</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-filter.title</note> | ||||
|       </trans-unit> | ||||
| @ -4348,7 +4448,7 @@ | ||||
|         <target>Apversti</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-invert.title</note> | ||||
|       </trans-unit> | ||||
| @ -4357,7 +4457,7 @@ | ||||
|         <target>Operacijos vBaitai per sekundę (vB/s)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.transaction-vbytes-per-second</note> | ||||
|       </trans-unit> | ||||
| @ -4365,196 +4465,187 @@ | ||||
|         <source>Just now</source> | ||||
|         <target>Dabar</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">64</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <target> Prieš<x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">74</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">104</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">105</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">106</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">108</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">114</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">115</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">87</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">116</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">88</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">117</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">89</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">118</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">119</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">127</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">128</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">129</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">131</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">137</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">138</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">139</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">140</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">141</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">142</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Po <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">67</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">68</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">150</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">69</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">151</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">70</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">152</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">71</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">72</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">154</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">73</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">160</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">161</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">162</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">163</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">164</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></source> | ||||
|         <target>Per ~ <x id="DATE" equiv-text="dateStrings.i18nMinute"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">66</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">91</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">93</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">94</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">95</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">165</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
| @ -4688,7 +4779,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">340,344</context> | ||||
|           <context context-type="linenumber">341,345</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction flow</note> | ||||
|         <note priority="1" from="meaning">transaction.flow</note> | ||||
| @ -4707,7 +4798,7 @@ | ||||
|         <target>Rodyti daugiau</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">225,227</context> | ||||
|           <context context-type="linenumber">226,228</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4724,7 +4815,7 @@ | ||||
|         <target>Rodyti mažiau</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">227,233</context> | ||||
|           <context context-type="linenumber">228,234</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4737,7 +4828,7 @@ | ||||
|         <target>Rodyti diagramą</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">247,248</context> | ||||
|           <context context-type="linenumber">248,249</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">show-diagram</note> | ||||
|       </trans-unit> | ||||
| @ -4746,7 +4837,7 @@ | ||||
|         <target>Užrakinimo laikas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">286,288</context> | ||||
|           <context context-type="linenumber">287,289</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.locktime</note> | ||||
|       </trans-unit> | ||||
| @ -4755,7 +4846,7 @@ | ||||
|         <target>Sandoris nerastas.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">449,450</context> | ||||
|           <context context-type="linenumber">450,451</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.transaction-not-found</note> | ||||
|       </trans-unit> | ||||
| @ -4764,7 +4855,7 @@ | ||||
|         <target>Laukiama pasirodymo atmintinėje...</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">450,455</context> | ||||
|           <context context-type="linenumber">451,456</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.waiting-for-it-to-appear</note> | ||||
|       </trans-unit> | ||||
| @ -4773,7 +4864,7 @@ | ||||
|         <target>Efektyvus mokesčių tarifas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">485,488</context> | ||||
|           <context context-type="linenumber">486,489</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Effective transaction fee rate</note> | ||||
|         <note priority="1" from="meaning">transaction.effective-fee-rate</note> | ||||
| @ -5228,6 +5319,10 @@ | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">faq.big-disclaimer</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="cd2330c7e9c74256f6a91e83bccf10e2905f8556" datatype="html"> | ||||
| @ -5235,7 +5330,7 @@ | ||||
|         <target>REST API paslauga</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">41,42</context> | ||||
|           <context context-type="linenumber">42,43</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.title</note> | ||||
|       </trans-unit> | ||||
| @ -5244,11 +5339,11 @@ | ||||
|         <target>Galutinis taškas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">50,51</context> | ||||
|           <context context-type="linenumber">51,52</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">104,107</context> | ||||
|           <context context-type="linenumber">105,108</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Api docs endpoint</note> | ||||
|       </trans-unit> | ||||
| @ -5257,11 +5352,11 @@ | ||||
|         <target>Apibūdinimas</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">69,70</context> | ||||
|           <context context-type="linenumber">70,71</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">108,109</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> | ||||
| @ -5269,7 +5364,7 @@ | ||||
|         <target>Numatytas passtūmimas: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> <x id="INTERPOLATION" equiv-text="'track-ad"/> veiksmas: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, išreikšti tai, ką norite pastūmėti. Galimi: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> blokai <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> , <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> mempool blokai <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> , <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> realaus laiko-2val grafikas <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, ir <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/> statistika <x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>. <x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/> Pastūmėti sandorius susietus su adresu:<x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> priimti visus naujus sandorius susietus su adresu kaip įvestis ar išvestis. Pateikiama kaip sandorių rinkinys. <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>adreso-sandoriai<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>naujiems mempool sandoriams, ir <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>bloko sandoriai<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>naujiems bloke patvirtintoms sandoriams.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|           <context context-type="linenumber">110,111</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.websocket.websocket</note> | ||||
|       </trans-unit> | ||||
| @ -5558,6 +5653,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> | ||||
|           <context context-type="linenumber">43,46</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">227</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">4,5</context> | ||||
| @ -6079,6 +6182,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/group/group.component.html</context> | ||||
|           <context context-type="linenumber">40,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">204</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">28,29</context> | ||||
|  | ||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -1074,7 +1074,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">282,284</context> | ||||
|           <context context-type="linenumber">283,285</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.version</note> | ||||
|       </trans-unit> | ||||
| @ -1202,11 +1202,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">256,261</context> | ||||
|           <context context-type="linenumber">257,262</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">400,406</context> | ||||
|           <context context-type="linenumber">401,407</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.details</note> | ||||
|       </trans-unit> | ||||
| @ -1223,11 +1223,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">243,247</context> | ||||
|           <context context-type="linenumber">244,248</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">371,377</context> | ||||
|           <context context-type="linenumber">372,378</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction inputs and outputs</note> | ||||
|         <note priority="1" from="meaning">transaction.inputs-and-outputs</note> | ||||
| @ -1245,7 +1245,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.ts</context> | ||||
|           <context context-type="linenumber">244,243</context> | ||||
|           <context context-type="linenumber">246,245</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4d6066e445db90780e4b30ca93398be0b6567eda" datatype="html"> | ||||
| @ -1581,7 +1581,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/amount/amount.component.html</context> | ||||
|           <context context-type="linenumber">20,23</context> | ||||
|           <context context-type="linenumber">18,21</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context> | ||||
| @ -2044,7 +2044,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|           <context context-type="linenumber">17</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fee-rates</note> | ||||
|       </trans-unit> | ||||
| @ -2093,7 +2093,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">20</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-fees</note> | ||||
|       </trans-unit> | ||||
| @ -2114,7 +2114,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">171,166</context> | ||||
|           <context context-type="linenumber">178,173</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts</context> | ||||
| @ -2155,7 +2155,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> | ||||
| @ -2181,7 +2181,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">472</context> | ||||
|           <context context-type="linenumber">473</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2203,7 +2203,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">475,477</context> | ||||
|           <context context-type="linenumber">476,478</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> | ||||
| @ -2297,11 +2297,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">477,480</context> | ||||
|           <context context-type="linenumber">478,481</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">488,490</context> | ||||
|           <context context-type="linenumber">489,491</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -2331,7 +2331,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">268,271</context> | ||||
|           <context context-type="linenumber">269,272</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction Virtual Size</note> | ||||
|         <note priority="1" from="meaning">transaction.vsize</note> | ||||
| @ -2407,7 +2407,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">26</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-prediction-accuracy</note> | ||||
|       </trans-unit> | ||||
| @ -2448,7 +2448,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">22</context> | ||||
|           <context context-type="linenumber">21</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-rewards</note> | ||||
|       </trans-unit> | ||||
| @ -2465,7 +2465,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|           <context context-type="linenumber">23</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.block-sizes-weights</note> | ||||
|       </trans-unit> | ||||
| @ -2506,7 +2506,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">264,266</context> | ||||
|           <context context-type="linenumber">265,267</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> | ||||
| @ -2534,7 +2534,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">272,274</context> | ||||
|           <context context-type="linenumber">273,275</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4786852746659896870" datatype="html"> | ||||
| @ -2633,6 +2633,10 @@ | ||||
|           <context context-type="sourcefile">src/app/components/block/block.component.html</context> | ||||
|           <context context-type="linenumber">8,9</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
| @ -2846,11 +2850,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">284,283</context> | ||||
|           <context context-type="linenumber">291,290</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">371,368</context> | ||||
|           <context context-type="linenumber">378,375</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">block.difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -2891,7 +2895,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">248,253</context> | ||||
|           <context context-type="linenumber">249,254</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> | ||||
| @ -3080,6 +3084,10 @@ | ||||
|       <trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html"> | ||||
|         <source>Difficulty Adjustment</source> | ||||
|         <target>Svårighetsjustering</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">1,5</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">1,5</context> | ||||
| @ -3094,11 +3102,11 @@ | ||||
|         <source>Remaining</source> | ||||
|         <target>Återstående</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">7,9</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">66,69</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining</note> | ||||
| @ -3107,11 +3115,11 @@ | ||||
|         <source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template>             <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template>             <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">10,11</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">53,54</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
| @ -3132,11 +3140,11 @@ | ||||
|         <source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template>           </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template>           </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">11,12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">54,55</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
| @ -3149,11 +3157,11 @@ | ||||
|         <source>Estimate</source> | ||||
|         <target>Estimat</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">16,17</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">73,76</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.estimate</note> | ||||
| @ -3162,20 +3170,24 @@ | ||||
|         <source>Previous</source> | ||||
|         <target>Föregående</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">31,33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">59,61</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.previous</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html"> | ||||
|         <source>Current Period</source> | ||||
|         <target>Nuvarande period</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">43,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">80,83</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.current-period</note> | ||||
| @ -3184,11 +3196,110 @@ | ||||
|         <source>Next Halving</source> | ||||
|         <target>Nästa halvering</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">50,52</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.next-halving</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> förväntade block</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.expected-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> förväntade block</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.expected-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> mineade block</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.mined-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> mineade block</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.mined-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> återstående block</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> återstående block</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ikapp</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">29</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.blocks-ahead</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ikapp</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.block-ahead</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks efter</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.blocks-behind</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source> | ||||
|         <target><x id="INTERPOLATION" equiv-text="{{ i }}"/> block efter</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.block-behind</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html"> | ||||
|         <source>Average block time</source> | ||||
|         <target>Average block time</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">42,45</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.average-block-time</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html"> | ||||
|         <source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source> | ||||
|         <target>Antingen 2x minimumavgiften eller Låg prioritet-avgiften (den lägsta)</target> | ||||
| @ -3346,7 +3457,7 @@ | ||||
|         <target>Mining</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">8</context> | ||||
|           <context context-type="linenumber">7</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining</note> | ||||
|       </trans-unit> | ||||
| @ -3355,7 +3466,7 @@ | ||||
|         <target>Poolranking</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">11</context> | ||||
|           <context context-type="linenumber">10</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3368,7 +3479,7 @@ | ||||
|         <target>Pooldominans</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|           <context context-type="linenumber">12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html</context> | ||||
| @ -3381,7 +3492,7 @@ | ||||
|         <target>Hashrate & svårighetsgrad</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">15,16</context> | ||||
|           <context context-type="linenumber">14,15</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">mining.hashrate-difficulty</note> | ||||
|       </trans-unit> | ||||
| @ -3390,7 +3501,7 @@ | ||||
|         <target>Lightning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">31</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">lightning</note> | ||||
|       </trans-unit> | ||||
| @ -3399,7 +3510,7 @@ | ||||
|         <target>Lightningnoder per nätverk</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|           <context context-type="linenumber">33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html</context> | ||||
| @ -3420,7 +3531,7 @@ | ||||
|         <target>Lightning nätverkskapacitet</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">36</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.html</context> | ||||
| @ -3441,7 +3552,7 @@ | ||||
|         <target>Lightningnoder per ISP</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|           <context context-type="linenumber">37</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context> | ||||
| @ -3454,7 +3565,7 @@ | ||||
|         <target>Lightningnoder per land</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">40</context> | ||||
|           <context context-type="linenumber">39</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> | ||||
| @ -3471,7 +3582,7 @@ | ||||
|         <target>Världskarta över Lightningnoder</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">42</context> | ||||
|           <context context-type="linenumber">41</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.html</context> | ||||
| @ -3488,7 +3599,7 @@ | ||||
|         <target>Världskarta över Lightningkanaler</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context> | ||||
|           <context context-type="linenumber">44</context> | ||||
|           <context context-type="linenumber">43</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.html</context> | ||||
| @ -3509,11 +3620,11 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">273,272</context> | ||||
|           <context context-type="linenumber">280,279</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">359,356</context> | ||||
|           <context context-type="linenumber">366,363</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> | ||||
| @ -3543,11 +3654,11 @@ | ||||
|         <target>Hashrate (MA)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">292,291</context> | ||||
|           <context context-type="linenumber">299,298</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/hashrate-chart/hashrate-chart.component.ts</context> | ||||
|           <context context-type="linenumber">382,380</context> | ||||
|           <context context-type="linenumber">389,387</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="mining.pools-historical-dominance" datatype="html"> | ||||
| @ -4115,7 +4226,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">290,291</context> | ||||
|           <context context-type="linenumber">291,292</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.hex</note> | ||||
|       </trans-unit> | ||||
| @ -4339,7 +4450,7 @@ | ||||
|         <target>Filter</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="linenumber">60</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-filter.title</note> | ||||
|       </trans-unit> | ||||
| @ -4348,7 +4459,7 @@ | ||||
|         <target>Invertera</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.component-invert.title</note> | ||||
|       </trans-unit> | ||||
| @ -4357,7 +4468,7 @@ | ||||
|         <target>Transaktioner i vBytes per sekund (vB/s)</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/statistics/statistics.component.html</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">statistics.transaction-vbytes-per-second</note> | ||||
|       </trans-unit> | ||||
| @ -4365,196 +4476,188 @@ | ||||
|         <source>Just now</source> | ||||
|         <target>Just nu</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">64</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">57</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <target><x id="DATE" equiv-text="dateStrings.i18nYear"/> sedan</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">74</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">104</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">76</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">105</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">106</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">108</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">114</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">115</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">87</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">116</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">88</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">117</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">89</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">118</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">119</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Om ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">127</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">128</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">129</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">131</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">137</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">138</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">139</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">140</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">141</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">142</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <target>Efter <x id="DATE" equiv-text="dateStrings.i18nYear"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">67</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">68</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">150</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">69</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">151</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">70</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">152</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">71</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">72</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">154</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">73</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">77</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">160</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">161</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">162</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">163</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">164</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></source> | ||||
|         <target>Om ~<x id="DATE" equiv-text="dateStrings.i18nMinute"/></target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">66</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">80</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">81</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">82</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">83</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">84</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">85</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">86</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">90</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">91</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">92</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">93</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">94</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">95</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context> | ||||
|           <context context-type="linenumber">96</context> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">165</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
| @ -4688,7 +4791,7 @@ | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">340,344</context> | ||||
|           <context context-type="linenumber">341,345</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Transaction flow</note> | ||||
|         <note priority="1" from="meaning">transaction.flow</note> | ||||
| @ -4707,7 +4810,7 @@ | ||||
|         <target>Visa mer</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">225,227</context> | ||||
|           <context context-type="linenumber">226,228</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4724,7 +4827,7 @@ | ||||
|         <target>Visa mindre</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">227,233</context> | ||||
|           <context context-type="linenumber">228,234</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> | ||||
| @ -4737,7 +4840,7 @@ | ||||
|         <target>Visa diagram</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">247,248</context> | ||||
|           <context context-type="linenumber">248,249</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">show-diagram</note> | ||||
|       </trans-unit> | ||||
| @ -4746,7 +4849,7 @@ | ||||
|         <target>Locktime</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">286,288</context> | ||||
|           <context context-type="linenumber">287,289</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.locktime</note> | ||||
|       </trans-unit> | ||||
| @ -4755,7 +4858,7 @@ | ||||
|         <target>Transaktionen hittades inte</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">449,450</context> | ||||
|           <context context-type="linenumber">450,451</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.transaction-not-found</note> | ||||
|       </trans-unit> | ||||
| @ -4764,7 +4867,7 @@ | ||||
|         <target>Väntar på den att dyka upp i mempoolen...</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">450,455</context> | ||||
|           <context context-type="linenumber">451,456</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">transaction.error.waiting-for-it-to-appear</note> | ||||
|       </trans-unit> | ||||
| @ -4773,7 +4876,7 @@ | ||||
|         <target>Effektiv avgiftssats</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> | ||||
|           <context context-type="linenumber">485,488</context> | ||||
|           <context context-type="linenumber">486,489</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Effective transaction fee rate</note> | ||||
|         <note priority="1" from="meaning">transaction.effective-fee-rate</note> | ||||
| @ -5228,6 +5331,10 @@ | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">faq.big-disclaimer</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="cd2330c7e9c74256f6a91e83bccf10e2905f8556" datatype="html"> | ||||
| @ -5235,7 +5342,7 @@ | ||||
|         <target>REST API service</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">41,42</context> | ||||
|           <context context-type="linenumber">42,43</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.title</note> | ||||
|       </trans-unit> | ||||
| @ -5244,11 +5351,11 @@ | ||||
|         <target>Slutpunkt</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">50,51</context> | ||||
|           <context context-type="linenumber">51,52</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">104,107</context> | ||||
|           <context context-type="linenumber">105,108</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">Api docs endpoint</note> | ||||
|       </trans-unit> | ||||
| @ -5257,11 +5364,11 @@ | ||||
|         <target>Beskrivning</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">69,70</context> | ||||
|           <context context-type="linenumber">70,71</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">108,109</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> | ||||
| @ -5269,7 +5376,7 @@ | ||||
|         <target>Standard push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> för att uttrycka vad du vill ha pushat. Tillgängligt: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>, och <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Pusha transaktioner relaterat till address: <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> för att ta emot alla nya transaktioner innehållandes den addressen som input eller output. Returnerar en lista av transaktioner. <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> för nya mempooltransaktioner, och <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> för nya blockbekräftade transaktioner.</target> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> | ||||
|           <context context-type="linenumber">109,110</context> | ||||
|           <context context-type="linenumber">110,111</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">api-docs.websocket.websocket</note> | ||||
|       </trans-unit> | ||||
| @ -5558,6 +5665,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> | ||||
|           <context context-type="linenumber">43,46</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">227</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">4,5</context> | ||||
| @ -6079,6 +6194,14 @@ | ||||
|           <context context-type="sourcefile">src/app/lightning/group/group.component.html</context> | ||||
|           <context context-type="linenumber">40,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts</context> | ||||
|           <context context-type="linenumber">204</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> | ||||
|           <context context-type="linenumber">28,29</context> | ||||
|  | ||||
| @ -2452,6 +2452,10 @@ | ||||
|           <context context-type="sourcefile">src/app/components/block/block.component.html</context> | ||||
|           <context context-type="linenumber">8,9</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">38</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context> | ||||
|           <context context-type="linenumber">75</context> | ||||
| @ -2870,6 +2874,10 @@ | ||||
|       </trans-unit> | ||||
|       <trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html"> | ||||
|         <source>Difficulty Adjustment</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">1,5</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">1,5</context> | ||||
| @ -2883,11 +2891,11 @@ | ||||
|       <trans-unit id="0912816d94f2f05a7eee8f7622670e0c6bbbce16" datatype="html"> | ||||
|         <source>Remaining</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">7,9</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">66,69</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining</note> | ||||
| @ -2896,11 +2904,11 @@ | ||||
|         <source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> | ||||
|             <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">10,11</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">53,54</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
| @ -2921,11 +2929,11 @@ | ||||
|         <source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> | ||||
|           </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">11,12</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">54,55</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
| @ -2937,11 +2945,11 @@ | ||||
|       <trans-unit id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef" datatype="html"> | ||||
|         <source>Estimate</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">16,17</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">73,76</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.estimate</note> | ||||
| @ -2949,19 +2957,23 @@ | ||||
|       <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | ||||
|         <source>Previous</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">31,33</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">59,61</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.previous</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html"> | ||||
|         <source>Current Period</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">43,44</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">80,83</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.current-period</note> | ||||
| @ -2969,11 +2981,99 @@ | ||||
|       <trans-unit id="df71fa93f0503396ea2bb3ba5161323330314d6c" datatype="html"> | ||||
|         <source>Next Halving</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context> | ||||
|           <context context-type="linenumber">50,52</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.next-halving</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">13</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.expected-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">14</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.expected-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">18</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.mined-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">19</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.mined-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">24</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining-blocks</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">25</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.remaining-block</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">29</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.blocks-ahead</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">30</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.block-ahead</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">34</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.blocks-behind</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html"> | ||||
|         <source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context> | ||||
|           <context context-type="linenumber">35</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.block-behind</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html"> | ||||
|         <source>Average block time</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context> | ||||
|           <context context-type="linenumber">42,45</context> | ||||
|         </context-group> | ||||
|         <note priority="1" from="description">difficulty-box.average-block-time</note> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html"> | ||||
|         <source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source> | ||||
|         <context-group purpose="location"> | ||||
| @ -4054,39 +4154,27 @@ | ||||
|         <source>Just now</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">78</context> | ||||
|           <context context-type="linenumber">79</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-since" datatype="html"> | ||||
|         <source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">97</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">98</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">99</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">100</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">101</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">102</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">103</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">104</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">105</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">106</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">107</context> | ||||
| @ -4099,53 +4187,53 @@ | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">109</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">110</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">111</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">112</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">113</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">114</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">115</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">116</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">117</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">118</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">119</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-until" datatype="html"> | ||||
|         <source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">120</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">121</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">122</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">123</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">124</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">125</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">126</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">127</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">128</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">129</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">130</context> | ||||
| @ -4158,53 +4246,53 @@ | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">132</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">133</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">134</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">135</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">136</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">137</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">138</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">139</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">140</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">141</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">142</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="time-span" datatype="html"> | ||||
|         <source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">143</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">144</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">145</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">146</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">147</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">148</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">149</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">150</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">151</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">152</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">153</context> | ||||
| @ -4217,22 +4305,34 @@ | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">155</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">156</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">157</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">158</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">159</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">160</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">161</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">162</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">163</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">164</context> | ||||
|         </context-group> | ||||
|         <context-group purpose="location"> | ||||
|           <context context-type="sourcefile">src/app/components/time/time.component.ts</context> | ||||
|           <context context-type="linenumber">165</context> | ||||
|         </context-group> | ||||
|       </trans-unit> | ||||
|       <trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html"> | ||||
|         <source>This transaction has been replaced by:</source> | ||||
|  | ||||
| @ -95,7 +95,7 @@ do for url in / \ | ||||
| 	'/api/v1/lightning/statistics/3y' \ | ||||
| 	'/api/v1/lightning/statistics/all' \ | ||||
| 	'/api/v1/lightning/nodes/isp-ranking' \ | ||||
| 	'/api/v1/lightning/nodes/isp/396982,15169' `# Google` \ | ||||
| 	'/api/v1/lightning/nodes/isp/15169,396982' `# Google` \ | ||||
| 	'/api/v1/lightning/nodes/isp/14618,16509' `# Amazon` \ | ||||
| 	'/api/v1/lightning/nodes/isp/39572' `# DataWeb` \ | ||||
| 	'/api/v1/lightning/nodes/isp/14061' `# Digital Ocean` \ | ||||
| @ -107,12 +107,15 @@ do for url in / \ | ||||
| 	'/api/v1/lightning/nodes/isp/34197' `# SHRD SARL` \ | ||||
| 	'/api/v1/lightning/nodes/isp/42275' `# Three Fourteen SASU` \ | ||||
| 	'/api/v1/lightning/nodes/isp/16276' `# OVH SAS` \ | ||||
| 	'/api/v1/lightning/nodes/isp/11426,11427,20001,20115,11351,10796,33363,12271' `# Spectrum` \ | ||||
| 	'/api/v1/lightning/nodes/isp/10796,11351,11426,11427,12271,20001,20115,33363' `# Spectrum` \ | ||||
| 	'/api/v1/lightning/nodes/isp/701' `# Verizon` \ | ||||
| 	'/api/v1/lightning/nodes/isp/12876' `# Scaleway` \ | ||||
| 	'/api/v1/lightning/nodes/isp/33915' `# Ziggo` \ | ||||
| 	'/api/v1/lightning/nodes/isp/3320' `# Deutsche Telekom AG` \ | ||||
| 	'/api/v1/lightning/nodes/isp/8075' `# Microsoft Azure` \ | ||||
| 	'/api/v1/lightning/nodes/isp/212531', `# UAB Interneto vizija` \ | ||||
| 	'/api/v1/lightning/nodes/isp/63949', `# Linode` \ | ||||
| 	'/api/v1/lightning/nodes/isp/51167', `# Contabo GmbH` \ | ||||
| 	'/api/v1/lightning/nodes/countries' \ | ||||
| 	'/api/v1/lightning/nodes/rankings' \ | ||||
| 	'/api/v1/lightning/nodes/rankings/liquidity' \ | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user