diff --git a/backend/src/tasks/pools-updater.ts b/backend/src/tasks/pools-updater.ts index dc76382d6..fb86d03be 100644 --- a/backend/src/tasks/pools-updater.ts +++ b/backend/src/tasks/pools-updater.ts @@ -17,7 +17,9 @@ class PoolsUpdater { treeUrl: string = config.MEMPOOL.POOLS_JSON_TREE_URL; public async updatePoolsJson(): Promise { - if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false) { + if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false || + config.MEMPOOL.ENABLED === false + ) { return; } diff --git a/frontend/angular.json b/frontend/angular.json index d157cc443..792f59443 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -38,6 +38,10 @@ "translation": "src/locale/messages.de.xlf", "baseHref": "/de/" }, + "da": { + "translation": "src/locale/messages.da.xlf", + "baseHref": "/da/" + }, "es": { "translation": "src/locale/messages.es.xlf", "baseHref": "/es/" diff --git a/frontend/src/app/components/about/about.component.scss b/frontend/src/app/components/about/about.component.scss index e538d724b..f2d4328b7 100644 --- a/frontend/src/app/components/about/about.component.scss +++ b/frontend/src/app/components/about/about.component.scss @@ -42,9 +42,11 @@ video { width: 640px; - height: 360px; max-width: 90%; margin-top: 0; + @media (min-width: 768px) { + height: 360px; + } } .social-icons { @@ -57,9 +59,13 @@ .enterprise-sponsor, .community-integrations-sponsor, .maintainers { - margin-top: 68px; + margin-top: 30px; margin-bottom: 68px; scroll-margin: 30px; + + @media (min-width: 768px) { + margin-top: 68px; + } } .maintainers { diff --git a/frontend/src/app/components/pool-ranking/pool-ranking.component.ts b/frontend/src/app/components/pool-ranking/pool-ranking.component.ts index 0f2103024..ea3a52e8e 100644 --- a/frontend/src/app/components/pool-ranking/pool-ranking.component.ts +++ b/frontend/src/app/components/pool-ranking/pool-ranking.component.ts @@ -162,10 +162,10 @@ export class PoolRankingComponent implements OnInit { if (this.miningWindowPreference === '24h') { return `${pool.name} (${pool.share}%)
` + pool.lastEstimatedHashrate.toString() + ' PH/s' + - `
` + $localize`${i} blocks`; + `
` + $localize`${ i }:INTERPOLATION: blocks`; } else { return `${pool.name} (${pool.share}%)
` + - $localize`${i} blocks`; + $localize`${ i }:INTERPOLATION: blocks`; } } }, @@ -195,13 +195,15 @@ export class PoolRankingComponent implements OnInit { }, borderColor: '#000', formatter: () => { + const percentage = totalShareOther.toFixed(2) + '%'; + const i = totalBlockOther.toString(); if (this.miningWindowPreference === '24h') { - return `${'Other'} (${totalShareOther.toFixed(2)}%)
` + + return `` + $localize`Other (${percentage})` + `
` + totalEstimatedHashrateOther.toString() + ' PH/s' + - `
` + totalBlockOther.toString() + ` blocks`; + `
` + $localize`${ i }:INTERPOLATION: blocks`; } else { - return `${'Other'} (${totalShareOther.toFixed(2)}%)
` + - totalBlockOther.toString() + ` blocks`; + return `` + $localize`Other (${percentage})` + `
` + + $localize`${ i }:INTERPOLATION: blocks`; } } }, diff --git a/frontend/src/app/lightning/nodes-map/nodes-map.component.ts b/frontend/src/app/lightning/nodes-map/nodes-map.component.ts index db13ca6fe..e0fd80a53 100644 --- a/frontend/src/app/lightning/nodes-map/nodes-map.component.ts +++ b/frontend/src/app/lightning/nodes-map/nodes-map.component.ts @@ -207,8 +207,8 @@ export class NodesMap implements OnInit, OnChanges { return ` ${alias}
- ${liquidity}
- ${data[5]} channels
+ ${liquidity}
` + + $localize`:@@205c1b86ac1cc419c4d0cca51fdde418c4ffdc20:${data[5]}:INTERPOLATION: channels` + `
${getFlagEmoji(data[7])} ${data[6]} `; } diff --git a/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts b/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts index 681688842..b4621d7bf 100644 --- a/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts +++ b/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -99,8 +99,9 @@ export class NodesPerCountryChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { + const nodeCount = country.count.toString(); return `${country.name.en} (${country.share}%)
` + - $localize`${country.count.toString()} nodes` + `
` + + $localize`${nodeCount} nodes` + `
` + $localize`${this.amountShortenerPipe.transform(country.capacity / 100000000, 2)} BTC capacity` ; } @@ -115,7 +116,7 @@ export class NodesPerCountryChartComponent implements OnInit { color: 'grey', }, value: totalShareOther, - name: 'Other' + (this.isMobile() ? `` : ` (${totalShareOther.toFixed(2)}%)`), + name: $localize`Other (${totalShareOther.toFixed(2) + '%'})`, label: { overflow: 'truncate', color: '#b1b1b1', @@ -131,8 +132,9 @@ export class NodesPerCountryChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { - return `${'Other'} (${totalShareOther.toFixed(2)}%)
` + - totalNodeOther.toString() + ` nodes`; + const nodeCount = totalNodeOther.toString(); + return `` + $localize`Other (${totalShareOther.toFixed(2) + '%'})` + `
` + + $localize`${nodeCount} nodes`; }, }, data: 9999 as any diff --git a/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts b/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts index caaa350d6..614704ed6 100644 --- a/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts +++ b/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -153,8 +153,9 @@ export class NodesPerISPChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { + const nodeCount = isp[4].toString(); return `${isp[1]} (${this.sortBy === 'capacity' ? isp[7] : isp[6]}%)
` + - $localize`${isp[4].toString()} nodes` + `
` + + $localize`${nodeCount} nodes` + `
` + $localize`${this.amountShortenerPipe.transform(isp[2] / 100000000, 2)} BTC` ; } @@ -169,7 +170,7 @@ export class NodesPerISPChartComponent implements OnInit { color: 'grey', }, value: totalShareOther, - name: 'Other' + (isMobile() || this.widget ? `` : ` (${totalShareOther.toFixed(2)}%)`), + name: $localize`Other (${totalShareOther.toFixed(2) + '%'})`, label: { overflow: 'truncate', color: '#b1b1b1', @@ -185,8 +186,9 @@ export class NodesPerISPChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { - return `Other (${totalShareOther.toFixed(2)}%)
` + - $localize`${nodeCountOther.toString()} nodes` + `
` + + const nodeCount = nodeCountOther.toString(); + return `` + $localize`Other (${totalShareOther.toFixed(2) + '%'})` + `
` + + $localize`${nodeCount} nodes` + `
` + $localize`${this.amountShortenerPipe.transform(capacityOther / 100000000, 2)} BTC`; } }, diff --git a/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts b/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts index b93ee1f3d..dd034eabd 100644 --- a/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts +++ b/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts @@ -256,7 +256,7 @@ export class LightningStatisticsChartComponent implements OnInit { series: data.channel_count.length === 0 ? [] : [ { zlevel: 1, - name: 'Channels', + name: $localize`:@@807cf11e6ac1cde912496f764c176bdfdd6b7e19:Channels`, showSymbol: false, symbol: 'none', data: data.channel_count, diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 98e8c44c6..6c00d6e07 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ التحالفات المجتمعية src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ مترجمو المشروع src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ المساهمون في المشروع src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ أعضاء المشروع src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ فريق صيانة المشروع src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment تعديل الصعوبة + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining متبقي - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks كتل - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block كتله - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate متوقعة - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous السابق - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period الفترة الحالية - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving الانقسام التالي - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) إما ضعف الحد الأدنى أو معدل الأولوية المنخفضة (أيهما أقل) @@ -3346,7 +3446,7 @@ التعدين src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ ترتيب التجمعات src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ هيمنة التجمعات src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ معدل التجزئة & معدل الصعوبة src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ البرق src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ أنواد برق لكل شبكة src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ سعة شبكة البرق src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ شبكات البرق حسب مزود خدمة انترنت src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ شبكات البرق حسب الدولة src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ أنواد البرق على خريطة العالم src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ قنوات البرق على خريطة العالم src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ (متوسط) معدل التجزئة src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ إحصائيات المكافأة src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (١٤٤ كتله) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ احدث الكتل src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ التعديلات src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ بث معاملة src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - كتل + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ تصفية src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ عكس src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ حجم التحويلات في الثانية (بايت افتراضي/ثانية) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now الآن - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago منذ - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After بعد - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - خلال ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ اعرض المزيد src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ قلل العرض src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ اعرض الرسم االبياني src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ وقت القفل src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ الحوالة غير موجودة. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ في انتظار ظهورها على mempool src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ معدل الرسوم الفعلي src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5227,6 +5352,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5234,7 +5363,7 @@ اعادة تشغيل خادم API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5243,11 +5372,11 @@ نقطة النهاية src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5256,11 +5385,11 @@ وصف src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5268,7 +5397,7 @@ الدفع الإعتيادي:إجراء:أريد, بيانات:[’الكتل’،...]لتحدديد ما تريد دفعه.متوفر:كتل،;كتل عقود للعمليات غير المعلنة،جدول-2h-مباشر،وإحصاءات .دفع المعاملات المرتبطة بالعنوان:’إتبع-عنوان’: ’3PbJ...bF98’للحصول على معاملة جديدة تحتوي ذلك العنوان كإدخال و إخراج. إرجاع مصفوف المعاملات.عنوان المعاملاتلكتل العقود غير المعلنة الجديدة، و معاملات الكتللالمعاملات المؤكدة في الكتل الجديدة. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5443,6 +5572,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5557,6 +5690,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5675,7 +5816,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5815,7 +5956,7 @@ ساتوشي src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6075,6 +6216,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6123,6 +6272,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6598,19 +6751,22 @@ lightning.share - nodes - أنواد + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6618,7 +6774,7 @@ سعة BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6736,11 +6892,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 304f3fba4..fb249f4a1 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Komunitní aliance src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Překladatelé projektu src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Přispěvatelé projektu src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Členové projektu src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Správci projektu src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,11 +2534,12 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 Size per weight + Velikost dle váhy src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 200,199 @@ -2632,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2745,6 +2750,7 @@ Subsidy + fees + Vytěžené + poplatky src/app/components/block/block.component.html 153,156 @@ -2844,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2889,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3078,13 +3084,17 @@ Difficulty Adjustment Změna obtížnosti + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3092,11 +3102,11 @@ Remaining Zbývá - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3105,11 +3115,11 @@ blocks bloky - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3130,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3147,11 +3157,11 @@ Estimate Odhad - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3160,20 +3170,24 @@ Previous Předchozí - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Současné období - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3182,11 +3196,99 @@ Next Halving Další půlení - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Buď dvojnásobek minimální sazby, nebo sazba Nízká priorita (podle toho, která je nižší). @@ -3344,7 +3446,7 @@ Těžba src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3353,7 +3455,7 @@ Hodnocení poolů src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3366,7 +3468,7 @@ Dominance poolů src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3379,7 +3481,7 @@ Hashrate & obtížnost src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3388,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3397,7 +3499,7 @@ Lightning uzly v síti src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3418,7 +3520,7 @@ Kapacita Lightning sítě src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3439,7 +3541,7 @@ Lightning uzly na jednoho ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3452,7 +3554,7 @@ Lightning uzly podle zemí src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3469,7 +3571,7 @@ Světová mapa Lightning uzlů src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3486,7 +3588,7 @@ Světová mapa kanálů Lightning uzlů src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3507,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3541,11 +3643,11 @@ Hashrate (KP) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3665,7 +3767,7 @@ Statistiky odměn src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3674,7 +3776,7 @@ (144 bloků) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3683,7 +3785,7 @@ Poslední bloky src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3696,7 +3798,7 @@ Úpravy src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3705,7 +3807,7 @@ Vyslat transakci src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3825,6 +3927,7 @@ Avg Health + Průměrné zdraví src/app/components/pool-ranking/pool-ranking.component.html 96,97 @@ -3879,9 +3982,8 @@ 58 - - blocks - bloků + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3890,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4112,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4239,6 +4376,7 @@ Bitcoin Block Height + Výška bitcoinového bloku src/app/components/search-form/search-results/search-results.component.html 3 @@ -4247,6 +4385,7 @@ Bitcoin Transaction + Bitcoinová transakce src/app/components/search-form/search-results/search-results.component.html 9 @@ -4255,6 +4394,7 @@ Bitcoin Address + Bitcoinová adresa src/app/components/search-form/search-results/search-results.component.html 15 @@ -4263,6 +4403,7 @@ Bitcoin Block + Bitcoinový blok src/app/components/search-form/search-results/search-results.component.html 21 @@ -4271,6 +4412,7 @@ Bitcoin Addresses + Bitcoinové adresy src/app/components/search-form/search-results/search-results.component.html 27 @@ -4279,6 +4421,7 @@ Lightning Nodes + Lightningové uzly src/app/components/search-form/search-results/search-results.component.html 35 @@ -4287,6 +4430,7 @@ Lightning Channels + Lightningové kanály src/app/components/search-form/search-results/search-results.component.html 43 @@ -4329,7 +4473,7 @@ Filtr src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4338,7 +4482,7 @@ Převrátit src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4347,7 +4491,7 @@ Transakce vBytů za sekundu (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4355,196 +4499,188 @@ Just now Právě teď - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago před - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Po - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Za ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4678,7 +4814,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4697,7 +4833,7 @@ Zobrazit více src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4714,7 +4850,7 @@ Zobrazit méně src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4727,7 +4863,7 @@ Zobrazit diagram src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4736,7 +4872,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4745,7 +4881,7 @@ Transakce nebyla nalezena. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4754,7 +4890,7 @@ Čekání na to, až se objeví v mempoolu... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4763,7 +4899,7 @@ Efektivní poplatek src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5213,10 +5349,15 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + mempool.space pouze poskytuje údaje o Bitcoinové síti. Nemůže vám pomoci při získávání finančních prostředků, rychlejším potvrzování transakcí atd. src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5224,7 +5365,7 @@ Služba REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5233,11 +5374,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5246,11 +5387,11 @@ Popis src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5258,7 +5399,7 @@ Výchozí push: akce: 'want', data: ['blocks', ...] pro vyjádření toho, co chcete pushnout. K dispozici: blocks, mempool-blocks, live-2h-chart a stats. Push transakce související s adresou: 'track-address': '3PbJ...bF9B' pro příjem všech nových transakcí obsahujících tuto adresu jako vstup nebo výstup. Vrací pole transakcí. address-transactions pro nové transakce mempoolu a block-transactions pro nové transakce potvrzené blokem. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5433,6 +5574,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5547,6 +5692,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5665,7 +5818,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5706,6 +5859,7 @@ Mutually closed + Vzájemně uzavřeno src/app/lightning/channel/closing-type/closing-type.component.ts 20 @@ -5713,6 +5867,7 @@ Force closed + Uzavřeno vynuceně src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5720,6 +5875,7 @@ Force closed with penalty + Uzavřeno vynuceně s pokutou src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5803,7 +5959,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5853,6 +6009,7 @@ avg + prům src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5861,6 +6018,7 @@ med + med src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -6063,6 +6221,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6111,6 +6277,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6243,6 +6413,7 @@ Outgoing Fees + Odchozí poplatky src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6254,6 +6425,7 @@ Incoming Fees + Příchozí poplatky src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6541,6 +6713,7 @@ Clearnet and Darknet + Clearnet a Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6552,6 +6725,7 @@ Clearnet Only (IPv4, IPv6) + Pouze Clearnet (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6563,6 +6737,7 @@ Darknet Only (Tor, I2P, cjdns) + Pouze Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6586,19 +6761,22 @@ lightning.share - nodes - uzlů + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6606,7 +6784,7 @@ BTC kapacita src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6724,11 +6902,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.da.xlf b/frontend/src/locale/messages.da.xlf index 29f667ed5..57f4c2cf4 100644 --- a/frontend/src/locale/messages.da.xlf +++ b/frontend/src/locale/messages.da.xlf @@ -487,7 +487,7 @@ Block : - Blok : + Blok : src/app/bisq/bisq-block/bisq-block.component.ts 89 @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Community alliancer src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Oversættere src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Bidragsydere src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Medlemmer src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Vedligeholdere src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Sværhedsgrad justering + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Tilbage - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blokke - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimat - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Forrige - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Nuværende periode - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Næste Halvering - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Enten 2x minimum eller lavprioritetssatsen (alt efter hvad der er lavest) @@ -3667,7 +3767,7 @@ Belønningsstatistik src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blokke) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Seneste blokke src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Justeringer src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Udsend transaktion src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,9 @@ 58 - - blocks - blokke + + blocks + blokke src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3993,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4501,28 @@ Lige nu src/app/components/time/time.component.ts - 78 + 79 ago siden - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,54 +4535,54 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ Om ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4472,54 +4595,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After Efter - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4532,22 +4655,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5440,6 +5575,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5680,7 +5819,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5821,7 +5960,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6139,6 +6278,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6619,19 +6762,23 @@ lightning.share - nodes - noder + nodes + noder src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6639,7 +6786,7 @@ BTC kapacitet src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6757,11 +6904,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6879,7 +7026,7 @@ year - år + år src/app/shared/i18n/dates.ts 3 @@ -6887,7 +7034,7 @@ years - år + år src/app/shared/i18n/dates.ts 4 @@ -6895,7 +7042,7 @@ month - måned + måned src/app/shared/i18n/dates.ts 5 @@ -6903,7 +7050,7 @@ months - måneder + måneder src/app/shared/i18n/dates.ts 6 @@ -6911,7 +7058,7 @@ week - uge + uge src/app/shared/i18n/dates.ts 7 @@ -6919,7 +7066,7 @@ weeks - uger + uger src/app/shared/i18n/dates.ts 8 @@ -6927,7 +7074,7 @@ day - dag + dag src/app/shared/i18n/dates.ts 9 @@ -6935,7 +7082,7 @@ days - dage + dage src/app/shared/i18n/dates.ts 10 @@ -6943,7 +7090,7 @@ hour - time + time src/app/shared/i18n/dates.ts 11 @@ -6951,7 +7098,7 @@ hours - timer + timer src/app/shared/i18n/dates.ts 12 @@ -6959,7 +7106,7 @@ minute - minut + minut src/app/shared/i18n/dates.ts 13 @@ -6967,7 +7114,7 @@ minutes - minutter + minutter src/app/shared/i18n/dates.ts 14 @@ -6975,7 +7122,7 @@ second - sekund + sekund src/app/shared/i18n/dates.ts 15 @@ -6983,7 +7130,7 @@ seconds - sekunder + sekunder src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index 398f4f60e..a78568ca1 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Community-Allianzen src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projektübersetzer src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projektmitwirkende src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projektmitglieder src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projektbetreuer src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3778,7 +3778,7 @@ Belohnungsstatistiken src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 Blöcke) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Neueste Blöcke src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Anpassungen src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Transaktion senden src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,8 @@ 58 - - blocks - Blocks + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4003,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5585,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5829,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5970,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6288,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6772,22 @@ lightning.share - nodes - Nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6795,7 @@ BTC Kapazität src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6913,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 66437d4fb..e0cc2d847 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Alianzas de la comunidad src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traductores del proyecto src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contribuyentes al proyecto src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Miembros del proyecto src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Mantenedores del proyecto src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Ajuste de Dificultad + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Restante - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks bloques - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block bloque - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimada - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Previo - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Período Actual - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,101 @@ Next Halving Siguiente halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + bloques minados + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + bloque minado + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) O bien 2x el mínimo, o la tasa de prioridad baja (lo que resulte menor) @@ -3667,7 +3769,7 @@ Estadísticas de recompensa src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3778,7 @@ (144 bloques) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3787,7 @@ Últimos bloques src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3800,7 @@ Ajustes src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3809,7 @@ Transmitir transacción src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3984,8 @@ 58 - - blocks - bloques + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3994,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Otros () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4503,28 @@ Justo ahora src/app/components/time/time.component.ts - 78 + 79 ago atrás - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,54 +4537,54 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ En ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4472,54 +4597,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After Después - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4532,22 +4657,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5440,6 +5577,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5680,7 +5821,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5821,7 +5962,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6139,6 +6280,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6619,19 +6764,23 @@ lightning.share - nodes - nodos + nodes + nodos src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6639,7 +6788,7 @@ capacidad BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6757,11 +6906,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 4f11ea03e..e4bec8dbc 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ متحدین جامعه src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ مترجم‌های پروژه src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ مشارکت کنندگان src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ اعضای پروژه src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ نگهدارندگان پروژه src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment تنظیم سختی بلاک‌ها + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining باقیمانده - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks بلاک - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block بلاک - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate تخمین - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous قبلی - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period دوره فعلی - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,110 @@ Next Halving نصف‌شدن یارانهٔ بلاک بعدی - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + بلاک مورد انتظار + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + بلاک مورد انتظار + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + بلاک استخراج‌شده + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + بلاک استخراج‌شده + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + بلاک باقی‌مانده + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + بلاک باقی‌مانده + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + بلاک جلوتر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + بلاک جلوتر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + بلاک عقب‌تر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + بلاک عقب‌تر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + متوسط زمان ایجاد بلاک + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) «2 برابر نرخ کمینه» یا «اولویت پایین» (هر کدام که کمتر است) @@ -3346,7 +3457,7 @@ استخراج src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3466,7 @@ رتبه‌بندی استخرها src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3479,7 @@ سهم استخرها src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3492,7 @@ نرخ تولید هش و سختی src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3501,7 @@ لایتنینگ src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3510,7 @@ نسبت گره‌های لایتنینگ به شبکه src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3531,7 @@ ظرفیت شبکه لایتنینگ src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3552,7 @@ نسبت گره‌های لایتنینگ به ارائه کننده اینترنت src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3565,7 @@ نسبت گره‌های لایتنینگ به کشور src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3582,7 @@ نقشه گره‌های لایتنینگ دنیا src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3599,7 @@ نقشه کانال‌های گره‌های لایتنینگ دنیا src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3620,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3654,11 @@ نرخ تولید هش (میانگین متحرک) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3778,7 @@ وضعیت پاداش src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3787,7 @@ (144 بلاک) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3796,7 @@ آخرین بلاک‌ها src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3809,7 @@ تنظیم‌سختی‌ها src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3818,7 @@ انتشار تراکنش src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3993,9 @@ 58 - - blocks - بلاک + + blocks + بلاک src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + دیگر () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4262,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4486,7 @@ پالایش src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4495,7 @@ معکوس src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4504,7 @@ تراکنش vByte بر ثانیه (vB بر ثانیه) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4512,188 @@ Just now همین الان - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago پیش - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + در حدود + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After بعد از - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - در حدود - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4827,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4846,7 @@ بیشتر src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4863,7 @@ کمتر src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4876,7 @@ نمایش نمودار src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4885,7 @@ قفل‌زمانی src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4894,7 @@ تراکنش پیدا نشد. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4903,7 @@ منتظر دیده‌شدن در mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4912,7 @@ نرخ کارمزد مؤثر src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5367,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5378,7 @@ خدمات REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5387,11 @@ نقطه اتصال src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5400,11 @@ توضیحات src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5412,7 @@ دستور پیش‌فرض: action: 'want', data: ['blocks', ...] که نشان می‌دهد چه چیزی باید ارسال شود. گزینه‌های در دسترس: blocks, mempool-blocks, live-2h-chart و stats. دستورهای مربوط به آدرس: 'track-address': '3PbJ...bF9B' جهت دریافت تمام تراکنش‌های جدیدی که خروجی یا ورودی‌های آنها شامل این آدرس می‌شود. آرایه‌ای از تراکنش‌ها برمی‌گرداند. address-transactions برای تراکنش‌های جدید ممپول و block-transactions برای تراکنش‌های بلاک تایید شده‌ی جدید. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5705,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6234,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6607,19 +6774,23 @@ lightning.share - nodes - گره + nodes + گره src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6627,7 +6798,7 @@ ظرفیت BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6745,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index 44217e369..438fdde54 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Yhteisöliittoumat src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projektin kääntäjät src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projektin avustajat src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projektin jäsenet src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projektin ylläpitäjät src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Vaikeudensäätö + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Jäljellä - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks lohkoa - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block lohko - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Arvio - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Edellinen - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Nykyinen jakso - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Puoliintuminen - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Joko 2x vähimmäismäärä tai alhaisen prioriteetin määrä (riippuen siitä, kumpi on alhaisempi) @@ -3667,7 +3767,7 @@ Palkkiotilastot src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 lohkoa) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Viimeisimmät lohkot src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Vaikeudensäädöt src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Siirtotapahtuman kuulutus src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - lohkoa + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4500,28 @@ Juuri nyt src/app/components/time/time.component.ts - 78 + 79 ago sitten - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,53 +4534,53 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4471,54 +4593,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After jälkeen - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4531,22 +4653,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5439,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5679,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5820,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6138,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6618,19 +6760,22 @@ lightning.share - nodes - solmua + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6638,7 +6783,7 @@ BTC kapasiteetti src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6756,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 208b71ce0..d4158fdaa 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Alliances communautaires src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traducteurs src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contributeurs au projet src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membres du projet src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Mainteneurs de projet src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Ajustement de la difficulté + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Restant - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blocs - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block bloc - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimation - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Précédent - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Période actuelle - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,110 @@ Next Halving Prochain halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + blocs attendus + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + bloc attendu + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + blocs trouvés + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + bloc trouvé + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + blocs restants + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + bloc restant + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + blocs d'avance + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + bloc d'avance + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + blocs de retard + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + bloc de retard + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + Temps de bloc moyen + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Soit 2x les frais minimum, soit les frais de faible priorité (selon le plus bas) @@ -3667,7 +3778,7 @@ Statistiques de récompense src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3787,7 @@ (144 blocs) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3796,7 @@ Derniers blocs src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3809,7 @@ Ajustements src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3818,7 @@ Émettre une transaction src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3993,9 @@ 58 - - blocks - blocs + + blocks + blocs src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Autre ( ) + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4513,28 @@ Juste maintenant src/app/components/time/time.component.ts - 78 + 79 ago Il y a - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,54 +4547,54 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ Dans ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4472,54 +4607,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After Après - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4532,22 +4667,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5440,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5680,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5821,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6139,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6619,19 +6774,23 @@ lightning.share - nodes - nœuds + nodes + nœuds src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6639,7 +6798,7 @@ Capacité de BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6757,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6911,7 +7070,7 @@ week - semaine + sem src/app/shared/i18n/dates.ts 7 @@ -6919,7 +7078,7 @@ weeks - semaines + sem src/app/shared/i18n/dates.ts 8 diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf index 3ab6c3305..a7e3962da 100644 --- a/frontend/src/locale/messages.he.xlf +++ b/frontend/src/locale/messages.he.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ בני ברית מהקהילה src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ מתרגמי הפרוייקט src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ תורמי הפרוייקט src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ חברי צוות הפרוייקט src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ מתחזקי הפרוייקט src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment התאמת קשי + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining נותרו - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks בלוקים - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block בלוק - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate הערכה - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous הקודם - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period מחזור נוכחי - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving חצייה הבאה - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) או כפול מהמינימום או בעמלת עדיפות נמוכה (הנמוך מבין השניים) @@ -3666,7 +3766,7 @@ סטטיסטיקת פרסים src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3675,7 +3775,7 @@ (144 בלוקים) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3684,7 +3784,7 @@ בלוקים אחרונים src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3697,7 +3797,7 @@ התאמות src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3706,7 +3806,7 @@ שדר טרנזקציה src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3880,9 +3980,8 @@ 58 - - blocks - בלוקים + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3891,6 +3990,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4363,40 +4497,28 @@ זה עתה src/app/components/time/time.component.ts - 78 + 79 ago לפני - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4409,53 +4531,53 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4468,54 +4590,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After לאחר - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4528,22 +4650,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5426,6 +5560,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5665,7 +5803,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5806,7 +5944,7 @@ סאטושיז src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6120,6 +6258,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6589,19 +6731,22 @@ lightning.share - nodes - צמתים + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6609,7 +6754,7 @@ קיבולת ביטקוין src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6721,11 +6866,11 @@ ביטקוין src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index 2cbb07923..9b07c7917 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 385,389 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1451,7 +1451,7 @@ Our mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, completely self-hosted without any trusted third-parties. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1459,7 +1459,7 @@ Céges Szponzorok 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1468,7 +1468,7 @@ Közösségi Szponzorok ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1477,7 +1477,7 @@ Közösségi Integrációk src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1486,7 +1486,7 @@ Közösségi Szövetségesek src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1495,7 +1495,7 @@ Projekt Fordítók src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1504,7 +1504,7 @@ Projekt Kontribútorok src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1513,7 +1513,7 @@ Projekt Tagok src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1522,7 +1522,7 @@ Projekt Fenntartók src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1531,7 +1531,7 @@ Részletek src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -2042,7 +2042,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2091,7 +2091,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2112,7 +2112,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2153,7 +2153,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2179,7 +2179,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2201,7 +2201,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2213,7 +2213,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2295,11 +2295,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2329,7 +2329,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2405,7 +2405,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2446,7 +2446,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2463,7 +2463,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2504,7 +2504,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2532,11 +2532,12 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 Size per weight + Méret súlyonként src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 200,199 @@ -2630,6 +2631,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2683,11 +2688,11 @@ src/app/lightning/node/node.component.html - 52,55 + 55,58 src/app/lightning/node/node.component.html - 96,100 + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2843,11 +2848,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2888,19 +2893,19 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2920,10 +2925,6 @@ src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -3081,13 +3082,17 @@ Difficulty Adjustment Bányászási Nehézségifok + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3095,11 +3100,11 @@ Remaining Hátramaradt - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3112,11 @@ blocks - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3131,11 +3136,11 @@ block - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3148,11 +3153,11 @@ Estimate Becslés - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3161,20 +3166,24 @@ Previous Előző - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Mostani Periódus - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3183,11 +3192,99 @@ Next Halving Következő Felezés - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) @@ -3343,7 +3440,7 @@ Bányászat src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3352,7 +3449,7 @@ Pool Rangsorolás src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3365,7 +3462,7 @@ Pool Fölény src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3378,7 +3475,7 @@ Hashráta és Nehézség src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3387,7 +3484,7 @@ Villám src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3396,7 +3493,7 @@ Villám Nodeok Hálózatonként src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3417,7 +3514,7 @@ Villám Hálózati Kapacítás src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3438,7 +3535,7 @@ Villám Node Szolgáltatónként src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3451,7 +3548,7 @@ Villám Nodeok Országonként src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3468,7 +3565,7 @@ Villám Node Világ Térkép src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3485,7 +3582,7 @@ Villám Node Csatorna Világ Térkép src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3506,11 +3603,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3540,11 +3637,11 @@ Hashráta (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3661,7 +3758,7 @@ Jutalmi statisztikák src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3670,7 +3767,7 @@ (144 blokk) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3679,7 +3776,7 @@ Legutóbbi blokkok src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3692,7 +3789,7 @@ Módosítás src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3701,7 +3798,7 @@ Tranzakció Küldése src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3869,9 +3966,8 @@ 58 - - blocks - blokk + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3880,6 +3976,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4099,12 +4230,13 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex Miners Reward + Bányász Jutalma src/app/components/reward-stats/reward-stats.component.html 5 @@ -4308,7 +4440,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4317,7 +4449,7 @@ Invertál src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4326,7 +4458,7 @@ vBájtnyi tranzakciók másodpercenként (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4334,196 +4466,187 @@ Just now Épp most - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After után - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4578,7 +4701,7 @@ src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4594,11 +4717,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4656,7 +4779,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4675,7 +4798,7 @@ Továbbiak megjelenítése src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4692,7 +4815,7 @@ Kevesebb megjelenítése src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4705,7 +4828,7 @@ Diagram megjelenítése src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4714,7 +4837,7 @@ Zárolási idő src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4723,7 +4846,7 @@ Nem található tranzakció. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4732,7 +4855,7 @@ Várakozás arra hogy a mempoolban feltünjön... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4741,7 +4864,7 @@ Effektív díj ráta src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5186,6 +5309,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5193,7 +5320,7 @@ REST API szolgáltatás src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5202,11 +5329,11 @@ Végpont src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5215,11 +5342,11 @@ Leírás src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5227,7 +5354,7 @@ Alaphelyzeti push: művelet: 'kell', data: ['blocks', ...] hogy kifejezd mit szeretnél pusholni. Elérhető: blocks, mempool-blocks, live-2h-chart, and stats.Pusholjon tranzakciókat címekhez fogva: 'cím-követés': '3PbJ...bF9B' az összes új tranzakció fogadásához, amely ezt a címet tartalmazza bemenetként vagy kimenetként. Tranzakciók tömbjét adja vissza. cím-tranzakciókúj mempool tranzakciókhoz , és block-tranzakciók az új blokk megerősített tranzakciókhoz. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5324,7 +5451,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5400,6 +5527,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5440,7 +5571,7 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html @@ -5457,7 +5588,7 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html @@ -5474,7 +5605,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5495,7 +5626,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5508,12 +5639,20 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5542,6 +5681,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5578,11 +5721,11 @@ Villám csatorna src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5591,11 +5734,11 @@ Utolsó frissítés src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5611,11 +5754,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5624,11 +5767,11 @@ Zárási dátum src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5637,7 +5780,7 @@ Lezárva átala src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5646,7 +5789,7 @@ Nyitó tranzakció src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5655,7 +5798,7 @@ Záró tranzakció src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5677,6 +5820,7 @@ Force closed + Kényszer zárva src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5684,6 +5828,7 @@ Force closed with penalty + Kényszer zárva büntető díjjal src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5736,11 +5881,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5767,7 +5912,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5817,6 +5962,7 @@ avg + átlag src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5825,6 +5971,7 @@ med + közép src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -6005,10 +6152,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -6024,6 +6167,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6062,16 +6213,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6104,7 +6259,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -6120,11 +6275,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -6158,9 +6313,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6182,6 +6345,7 @@ Fee distribution + Díj eloszlás src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 @@ -6190,6 +6354,7 @@ Outgoing Fees + Kimenő Díjak src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6201,6 +6366,7 @@ Incoming Fees + Beérkező Díjak src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6235,11 +6401,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6252,19 +6418,20 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity Active channels + Aktív csatornák src/app/lightning/node/node-preview.component.html 26,30 src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6277,19 +6444,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6297,7 +6456,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6306,7 +6465,7 @@ Szín src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6315,7 +6474,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6327,7 +6486,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6335,7 +6494,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6343,7 +6502,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6352,7 +6511,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6360,7 +6519,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6368,16 +6527,17 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate Channel base fee + Csatorna alapdíj src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6385,7 +6545,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6394,7 +6554,7 @@ TLV kiterjesztési esemény src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6403,7 +6563,7 @@ Nyitott csatornák src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6412,7 +6572,7 @@ Lezárt csatornák src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6453,6 +6613,7 @@ No geolocation data available + Geolokációs adat nem elérhető src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 219,214 @@ -6460,6 +6621,7 @@ Active channels map + Aktív csatorna térkép src/app/lightning/nodes-channels/node-channels.component.html 2,3 @@ -6468,6 +6630,7 @@ Indexing in progress + Indexelés folyamatban src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6477,8 +6640,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6488,8 +6651,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6499,8 +6662,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6524,26 +6687,30 @@ lightning.share - nodes - nódok + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity + BTC kapacitás src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6656,11 +6823,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6741,27 +6908,12 @@ Oldest lightning nodes + Legidősebb villám nodeok src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes Legrégebbi nodeok diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index d48ce0dcb..22d7cf978 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 385,389 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1452,7 +1452,7 @@ I nostri mempool e blockchain explorer per la community di Bitcoin, con attenzione su costi di transazione di mercato e ecosistema multi-strato, completamente self-hosted senza bisogno di terze parti. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1460,7 +1460,7 @@ Sponsor Aziendali 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1469,7 +1469,7 @@ Sponsor comunitari ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1478,7 +1478,7 @@ Integrazioni della comunità src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1487,7 +1487,7 @@ Alleanze della comunità src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traduttori del progetto src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Hanno contribuito al progetto src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membri del Progetto src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Manutentori del progetto src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1532,7 +1532,7 @@ Su di noi src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2686,11 +2690,11 @@ src/app/lightning/node/node.component.html - 52,55 + 55,58 src/app/lightning/node/node.component.html - 96,100 + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,19 +2895,19 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2923,10 +2927,6 @@ src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -3084,13 +3084,17 @@ Difficulty Adjustment Aggiustamento della Difficoltà + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3098,11 +3102,11 @@ Remaining Rimanente - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3111,11 +3115,11 @@ blocks blocchi - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3136,11 +3140,11 @@ block blocco - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3153,11 +3157,11 @@ Estimate Stima - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3166,20 +3170,24 @@ Previous Precedente - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Periodo Attuale - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3188,11 +3196,99 @@ Next Halving Prossimo Halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) O 2x il minimo o il tasso di Bassa Priorità (in base a quale sia il più basso) @@ -3350,7 +3446,7 @@ Mining src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3359,7 +3455,7 @@ Classifica Pool src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3372,7 +3468,7 @@ Predominanza Pool src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3385,7 +3481,7 @@ Hashrate & Difficoltà src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3394,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3403,7 +3499,7 @@ Nodi Lightning Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3424,7 +3520,7 @@ Capacità Lightning Network src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3445,7 +3541,7 @@ Nodi Lightning Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3458,7 +3554,7 @@ Nodi Lightning Per Paese src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3474,7 +3570,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3490,7 +3586,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3511,11 +3607,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3545,11 +3641,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3668,7 +3764,7 @@ Statistiche di ricompensa src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3677,7 +3773,7 @@ (144 blocchi) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3686,7 +3782,7 @@ Ultimi blocchi src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3699,7 +3795,7 @@ Adeguamenti src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3708,7 +3804,7 @@ Trasmetti Transazione src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3978,8 @@ 58 - - blocks - blocchi + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3988,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4114,7 +4244,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4325,7 +4455,7 @@ Filtro src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4334,7 +4464,7 @@ Invertire src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4343,7 +4473,7 @@ vByte transati al secondo (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4351,196 +4481,187 @@ Just now Proprio adesso - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago fa - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Dopo - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - In ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4594,7 +4715,7 @@ src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4610,11 +4731,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4671,7 +4792,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4688,7 +4809,7 @@ Show more src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4704,7 +4825,7 @@ Show less src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4716,7 +4837,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4725,7 +4846,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4734,7 +4855,7 @@ Transazione non trovata. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4743,7 +4864,7 @@ Aspettando che appaia nella mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4752,7 +4873,7 @@ Prezzo effettivo della commissione src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5191,6 +5312,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5198,7 +5323,7 @@ Servizio REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5207,11 +5332,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5220,11 +5345,11 @@ Descrizione src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5232,7 +5357,7 @@ Push predefinito: action: 'want', data: ['blocks', ...] per esprimere cosa vuoi spingere. Disponibile: blocks, mempool-blocks, live-2h-chart, and stats.Spingi transazioni collegate all'indirizzo: 'track-address': '3PbJ...bF9B' per ricevere tutte le nuove transazioni contenenti quell'indirizzo come input o output. Restituisce un array di transazioni. address-transactions per nuove transazioni di mempool e block-transactions per le nuove transazioni confermate nel blocco. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5327,7 +5452,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5397,6 +5522,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5433,7 +5562,7 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html @@ -5449,7 +5578,7 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html @@ -5465,7 +5594,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5485,7 +5614,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5497,12 +5626,20 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5531,6 +5668,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5565,11 +5706,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5577,11 +5718,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5597,11 +5738,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5609,11 +5750,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5621,7 +5762,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5629,7 +5770,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5637,7 +5778,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5713,11 +5854,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5741,7 +5882,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5973,10 +6114,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5991,6 +6128,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6029,16 +6174,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6069,7 +6218,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -6085,11 +6234,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -6123,9 +6272,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6199,11 +6356,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6215,7 +6372,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6227,7 +6384,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6239,19 +6396,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6259,7 +6408,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6267,7 +6416,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6275,7 +6424,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6287,7 +6436,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6295,7 +6444,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6303,7 +6452,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6312,7 +6461,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6320,7 +6469,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6328,7 +6477,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6337,7 +6486,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6345,7 +6494,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6353,7 +6502,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6361,7 +6510,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6369,7 +6518,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6433,8 +6582,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6444,8 +6593,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6455,8 +6604,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6479,25 +6628,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6603,11 +6756,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6688,22 +6841,6 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 56975a922..cf9d860dd 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ コミュニティーの提携 src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ プロジェクト翻訳者 src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ プロジェクト貢献者 src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ プロジェクトメンバー src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ プロジェクトメンテナー src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3203,6 +3203,7 @@ blocks expected + 個のブロック - 期待値 src/app/components/difficulty/difficulty-tooltip.component.html 13 @@ -3211,6 +3212,7 @@ block expected + 個のブロック - 期待値 src/app/components/difficulty/difficulty-tooltip.component.html 14 @@ -3219,6 +3221,7 @@ blocks mined + 個のブロック - 採掘済 src/app/components/difficulty/difficulty-tooltip.component.html 18 @@ -3227,6 +3230,7 @@ block mined + 個のブロック - 採掘済 src/app/components/difficulty/difficulty-tooltip.component.html 19 @@ -3235,6 +3239,7 @@ blocks remaining + 個のブロック - 残り src/app/components/difficulty/difficulty-tooltip.component.html 24 @@ -3243,6 +3248,7 @@ block remaining + 個のブロック - 残り src/app/components/difficulty/difficulty-tooltip.component.html 25 @@ -3251,6 +3257,7 @@ blocks ahead + 個のブロック - 早い src/app/components/difficulty/difficulty-tooltip.component.html 29 @@ -3259,6 +3266,7 @@ block ahead + 個のブロック - 早い src/app/components/difficulty/difficulty-tooltip.component.html 30 @@ -3267,6 +3275,7 @@ blocks behind + 個のブロック - 遅い src/app/components/difficulty/difficulty-tooltip.component.html 34 @@ -3275,6 +3284,7 @@ block behind + 個のブロック - 遅い src/app/components/difficulty/difficulty-tooltip.component.html 35 @@ -3283,6 +3293,7 @@ Average block time + 平均ブロック生成時間 src/app/components/difficulty/difficulty.component.html 42,45 @@ -3767,7 +3778,7 @@ 報酬の統計値 src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3776,7 +3787,7 @@ (144つのブロック) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3785,7 +3796,7 @@ 最新のブロック src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3798,7 +3809,7 @@ 補正 src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3807,7 +3818,7 @@ ブロードキャストトランザクション src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3982,9 +3993,9 @@ 58 - - blocks - のブロック + + blocks + ブロック src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3993,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + その他 ( ) + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4148,7 +4195,7 @@ Mined blocks - マイニングされたブロック + 採掘されたブロック src/app/components/pool/pool.component.html 141,143 @@ -4269,7 +4316,7 @@ BTC/block - BTC/ブロック + BTC/ブロック src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -4279,7 +4326,7 @@ Avg Tx Fee - 平均トランザクション手数料 + 平均取引手数料 src/app/components/reward-stats/reward-stats.component.html 30 @@ -4531,6 +4578,7 @@ In ~ + あと〜 src/app/components/time/time.component.ts 126 @@ -5539,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5779,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5920,7 +5972,7 @@ サトシ src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6238,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6718,19 +6774,23 @@ lightning.share - nodes - + nodes + ノード src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6738,7 +6798,7 @@ BTC 容量 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6856,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index 762fd754e..ae1ba6c6d 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ ალიანსი src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ მთარგმნელები src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ მოხალისეები src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ პროექტის წევრები src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ პროექტის შემქმნელები src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment სირთულე + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining დარჩა - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks ბლოკი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block ბლოკი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate დაახლოებით - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous წინა - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period ეს პერიოდი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving შემდეგი ჰალვინგი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) ან მინიმუმის 2x ან დაბალ პრიორიტეტული საკომისიო (რომელიც უფრო დაბალია) @@ -3346,7 +3446,7 @@ მაინინგი src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Pools ის რეიტინგი src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Pools ის დომინურობა src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ ჰაშრეიტი და სირთულე src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Lightning ნოდა ყოველ ნეთვორქზე src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Lightning ის შესაძლებლობა src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Lightning ის ნოდა ქვეყნების მიხედვით src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Lightning ის ნოდები მსოფლიოს რუქაზე src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Lightning ის ნოდის ჩანელები მსოფლიო რუქაზე src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ ჰაშრეიტი src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ ანაზღაურების სტატისტიკა src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 ბლოკი) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ ბოლო ბლოკები src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ ცვლილებები src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Broadcast Transaction src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - ბლოკები + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ გაფილტვრა src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ შებრუნება src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ ტრანზაქცია vBytes წამში (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now ახლა - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago წინ - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After შემდეგ - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~-ში - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ მეტის ჩვენება src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ ნაკლების ჩვენება src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ დიაგრამის ჩვენება src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ ტრანსაქცია ვერ მოიძებნა. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ დაელოდეთ mempool-ში რომ გამოჩნდეს... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ ეფექტური საკომისიო src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ REST API service src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ დასასრული src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ აღწერა src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6607,19 +6760,22 @@ lightning.share - nodes - ნოდა + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6627,7 +6783,7 @@ BTC სიმძლავრე src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6745,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index 1d2be3910..c8ba64090 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1486,7 +1486,7 @@ 커뮤니티 연합 src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1495,7 +1495,7 @@ 프로젝트 번역자 src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1504,7 +1504,7 @@ 프로젝트 참여자 목록 src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1513,7 +1513,7 @@ 프로젝트 멤버들 src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1522,7 +1522,7 @@ 프로젝트 관리자 목록 src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1580,7 +1580,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2043,7 +2043,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2092,7 +2092,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2113,7 +2113,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2153,7 +2153,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2179,7 +2179,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2201,7 +2201,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2213,7 +2213,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2295,11 +2295,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2329,7 +2329,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2398,7 +2398,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2437,7 +2437,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2454,7 +2454,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2495,7 +2495,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2523,7 +2523,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2621,6 +2621,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2828,11 +2832,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2872,7 +2876,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3061,13 +3065,17 @@ Difficulty Adjustment 난이도 조정 + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3075,11 +3083,11 @@ Remaining 남은 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3088,11 +3096,11 @@ blocks 블록 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3113,11 +3121,11 @@ block 블록 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3130,11 +3138,11 @@ Estimate 추정 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3143,20 +3151,24 @@ Previous 이전 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period 현재 기간 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3165,11 +3177,99 @@ Next Halving 다음 반감기 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 최소 수수료의 2배 또는 낮은 우선 순위 금액(낮은 금액 선택) @@ -3325,7 +3425,7 @@ 채굴 src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3334,7 +3434,7 @@ 채굴풀 순위 src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3347,7 +3447,7 @@ 채굴풀 도미넌스 src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3359,7 +3459,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3368,7 +3468,7 @@ 라이트닝 src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3377,7 +3477,7 @@ 네트워크당 라이트닝 노드 src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3397,7 +3497,7 @@ Lightning Network Capacity src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3417,7 +3517,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3429,7 +3529,7 @@ Lightning Nodes Per Country src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3445,7 +3545,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3461,7 +3561,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3482,11 +3582,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3515,11 +3615,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3638,7 +3738,7 @@ 보상 관련 데이터 src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3647,7 +3747,7 @@ (144 블록) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3656,7 +3756,7 @@ 최신 블록 src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3669,7 +3769,7 @@ 조정 src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3678,7 +3778,7 @@ 트랜잭션을 비트코인 네트워크에 전송하기 src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3845,9 +3945,8 @@ 58 - - blocks - 블록 + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3856,6 +3955,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4077,7 +4211,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4295,7 +4429,7 @@ 필터 src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4304,7 +4438,7 @@ 뒤집기 src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4313,7 +4447,7 @@ 초당 트랜잭션 vByte (vB / s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4321,196 +4455,187 @@ Just now 방금 전 - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After 이후 - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~ 안에 - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4641,7 +4766,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4659,7 +4784,7 @@ 더 보기 src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4676,7 +4801,7 @@ 숨기기 src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4689,7 +4814,7 @@ 도표 보기 src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4698,7 +4823,7 @@ 잠금 시간 src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4707,7 +4832,7 @@ 트랜잭션을 찾을 수 없음 src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4716,7 +4841,7 @@ 멤풀에 포함될때까지 대기하는 중... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4725,7 +4850,7 @@ 유효 수수료율 src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5164,13 +5289,17 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer REST API service src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5179,11 +5308,11 @@ 엔드포인트 src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5192,11 +5321,11 @@ 설명 src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5204,7 +5333,7 @@ 기본 푸시: 작업: 'want', 데이터 : [ 'blocks', ...] 을 사용하여 푸시하려는 것을 표시할 수 있습니다. 사용 가능: blocks, mempool-blocks, live-2h-chart, 및stats.주소와 관련된 트랜잭션을 푸시:’track-address’: ‘3PbJ…bF9B’을 사용하여 인풋 또는 아웃풋 주소를 포함한 새로운 트랜잭션을 받을 수 있습니다. 트랜잭션들은 행렬로 반환합니다. 새로운 트랜잭션일 경우address-transactions이고, 새롭게 컨펌된 트랜잭션일 경우block-transactions입니다. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5369,6 +5498,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5475,6 +5608,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5589,7 +5730,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5717,7 +5858,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5963,6 +6104,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6011,6 +6160,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6454,25 +6607,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6578,11 +6735,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.lt.xlf b/frontend/src/locale/messages.lt.xlf index f809420b4..d10094194 100644 --- a/frontend/src/locale/messages.lt.xlf +++ b/frontend/src/locale/messages.lt.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Bendruomenės Aljansai src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projekto Vertėjai src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projekto Pagalbininkai src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projekto Nariai src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projekto Prižiūrėtojai src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3767,7 +3767,7 @@ Atlygio statistika src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3776,7 +3776,7 @@ (144 blokai) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3785,7 +3785,7 @@ Naujausi blokai src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3798,7 +3798,7 @@ Koregavimai src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3807,7 +3807,7 @@ Transliuoti Sandorį src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3982,9 +3982,8 @@ 58 - - blocks - blokai + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3993,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5539,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5779,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5920,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6238,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6718,19 +6760,22 @@ lightning.share - nodes - mazgai + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6738,7 +6783,7 @@ BTC talpumas src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6856,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.mk.xlf b/frontend/src/locale/messages.mk.xlf index 7ee9b19ae..9b2cbd58f 100644 --- a/frontend/src/locale/messages.mk.xlf +++ b/frontend/src/locale/messages.mk.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Соработка со Заедницата src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Преведувачи src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Контрибутори src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Членови на проектот src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Одржувачи на проектот src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3778,7 +3778,7 @@ Статистика за награди src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 блока) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Последни блокови src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Промени src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Емитирај ја Трансакцијата src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,8 @@ 58 - - blocks - блока + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4003,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Други () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5586,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5830,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5971,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6289,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6773,23 @@ lightning.share - nodes - нодови + nodes + нодови src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6797,7 @@ BTC капацитет src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6915,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 3786617b7..d4fdbce21 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Samfunnsallianser src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Oversettere src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Bidragsytere til prosjektet src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Prosjektmedlemmer src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Prosjektvedlikeholdere src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Vanskelighetsgradjustering + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Gjenstående - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blokker - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block blokk - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Anslag - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Forrige - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Nåværende periode - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Neste halvering - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Enten 2x av minimum eller lav prioritetsrate (den som er lavest) @@ -3346,7 +3446,7 @@ Utvinning src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Utvinningsgruppe-rangering src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Utvinningsgruppe-dominans src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Hashrate og vanskelighetsgrad src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Lightning-noder per nettverk src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Lightningnettverk-kapasitet src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Lightning-noder per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Lightning-noder per land src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Lightning-noder verdenskart src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Lightning-kanaler Verdenskart src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Belonnings-statistikk src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blokker) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Nyeste blokker src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Justeringer src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Send transaksjon src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - blokker + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Inverter src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Transaksjoner per sekund (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now Akkurat nå - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago siden - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Etter - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Om ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ Vis mer src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ Vis mindre src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ Vis diagram src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ Transaksjon ikke funnet src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ Venter på at den kommer inn i mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ Effektiv avgift src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ REST API-tjeneste src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ Endepunkt src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ Beskrivelse src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Standard push: handling: 'want', data: ['blocks', ...] for å uttrykke hva du vil ha pushet. Tilgjengelig: blocks , mempool-blocks , live-2h-chart , og stats . Push-transaksjoner relatert til adresse: 'track-address': '3PbJ...bF9B' for å motta alle nye transaksjoner som inneholder den adressen som inngang eller utgang. Returnerer en tabell av transaksjoner. adress-transactions for nye mempool-transaksjoner, og block-transactions for nye blokkbekreftede transaksjoner. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6607,19 +6760,22 @@ lightning.share - nodes - noder + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6627,7 +6783,7 @@ BTC-kapasitet src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6745,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ne.xlf b/frontend/src/locale/messages.ne.xlf index 92be31844..1408a0225 100644 --- a/frontend/src/locale/messages.ne.xlf +++ b/frontend/src/locale/messages.ne.xlf @@ -357,11 +357,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +382,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +424,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +449,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +592,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +748,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +773,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +801,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1004,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1052,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1068,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1122,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1144,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1156,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1168,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1200,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1221,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1243,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1263,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1279,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1450,7 @@ Bitcoin समुदायको लागि हाम्रो mempool र blockchain अन्वेषक, लेनदेन शुल्क बजार र बहु-तह इकोसिस्टममा ध्यान केन्द्रित गर्दै, कुनै पनि विश्वसनीय तेस्रो-पक्ष बिना पूर्ण रूपमा स्व-होस्ट गरिएको। src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1458,7 @@ एंटरप्राइज़ प्रायोजक 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,7 +1467,7 @@ समुदाय प्रायोजक ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1464,7 +1476,7 @@ समुदाय एकीकरण src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1473,7 +1485,7 @@ सामुदायिक गठबन्धनहरू src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1482,7 +1494,7 @@ परियोजना अनुवादकहरू src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1491,7 +1503,7 @@ परियोजना योगदानकर्ताहरू src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1500,7 +1512,7 @@ परियोजना सदस्यहरू src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1509,7 +1521,7 @@ परियोजना संरक्षकहरू src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1518,7 +1530,7 @@ विवरण src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1530,7 +1542,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1567,7 +1579,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1583,7 +1595,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1665,7 +1677,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1886,7 +1898,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1899,7 +1911,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1912,7 +1924,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1921,7 +1933,7 @@ एसेट/सम्पत्ति डेटा लोड गर्दा त्रुटि। src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2028,7 +2040,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2045,7 +2057,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2061,7 +2073,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2073,11 +2085,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2085,19 +2097,19 @@ Indexing blocks src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2137,7 +2149,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2163,11 +2175,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2181,11 +2193,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2197,7 +2209,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2215,19 +2227,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2267,27 +2279,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2295,7 +2307,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2309,11 +2321,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2384,7 +2396,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2421,11 +2433,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2442,7 +2454,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2451,15 +2463,15 @@ साइज src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2483,7 +2495,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2495,11 +2507,11 @@ वजन src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2507,11 +2519,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2527,15 +2550,6 @@ shared.block-title - - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee मध्य शुल्क @@ -2545,7 +2559,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2562,11 +2576,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2584,7 +2598,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2597,7 +2611,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2607,6 +2621,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2622,32 +2640,48 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown अज्ञात src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2664,7 +2698,7 @@ शुल्क अवधि src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2677,7 +2711,7 @@ 140 vBytes नेटिव सेगविट ट्रांसेक्शन सरदर को अनुसार src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2701,49 +2735,60 @@ Transaction fee tooltip - - Subsidy + fees: - अनुदान + शुल्क: + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2752,7 +2797,7 @@ बिट्स src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2761,7 +2806,7 @@ मर्कल रुट src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2770,7 +2815,7 @@ कठिनाई src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2786,11 +2831,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2799,7 +2844,7 @@ नोन्स src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2808,32 +2853,41 @@ ब्लक हेडर हेक्स src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details विवरण src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2843,20 +2897,16 @@ डाटा लोड गर्दा त्रुटि भयो। src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2871,7 +2921,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2917,18 +2967,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward इनाम @@ -2992,7 +3030,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3025,13 +3063,17 @@ Difficulty Adjustment कठिनाई समायोजन / डिफीकल्टी एडजस्टमेंट + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3039,11 +3081,11 @@ Remaining बाँकी - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3052,11 +3094,11 @@ blocks ब्लकहरू - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3077,11 +3119,11 @@ block ब्लक - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3094,11 +3136,11 @@ Estimate अनुमान - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3107,20 +3149,24 @@ Previous अघिल्लो - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period वर्तमान अवधि - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3129,11 +3175,99 @@ Next Halving अर्को हल्विंग - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) या त 2x न्यूनतम, वा कम प्राथमिकता दर (जुन कम छ) @@ -3231,7 +3365,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3244,7 +3378,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3256,7 +3390,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3270,7 +3404,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3290,7 +3424,7 @@ माईनिंग src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3299,7 +3433,7 @@ पूल रैंकिंग src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3312,7 +3446,7 @@ पूल सर्वोच्चता src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3325,7 +3459,7 @@ हैसरेट र कठिनाई src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3334,7 +3468,7 @@ लाइटनिंग src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3342,7 +3476,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3363,7 +3497,7 @@ लाइटनिंग नेटवर्क क्षमता src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3384,7 +3518,7 @@ प्रति ISP लाइटनिंग नोडहरू src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3397,7 +3531,7 @@ प्रति देश लाइटनिंग नोड्स src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3414,7 +3548,7 @@ लाइटनिंग नोड्स विश्व नक्सा src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3431,7 +3565,7 @@ लाइटनिङ नोड्स च्यानल विश्व नक्सा src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3452,11 +3586,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3486,11 +3620,11 @@ हसरेट (एमए) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3524,7 +3658,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3550,7 +3684,7 @@ लाइटनिङ एक्सप्लोरर src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3558,20 +3692,12 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation कागजात src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3616,7 +3742,7 @@ इनाम तथ्याङ्क src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3625,7 +3751,7 @@ (144 ब्लकहरू) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3634,7 +3760,7 @@ भर्खरका ब्लकहरू src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3647,10 +3773,36 @@ समायोजनहरू src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + ट्रांसेक्शन प्रसारण गर्नुहोस् + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) पूल भाग्य (1 हप्ता) @@ -3717,7 +3869,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3747,12 +3899,24 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks खाली ब्लकहरू src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3761,7 +3925,7 @@ सबै माईनर्स हरू src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3770,7 +3934,7 @@ पूल भाग्य (1w) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3779,7 +3943,7 @@ पूल गणना (1w) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3788,12 +3952,11 @@ माईनिंग पुलहरू src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - ब्लकहरू + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3802,6 +3965,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4013,24 +4211,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - ट्रांसेक्शन प्रसारण गर्नुहोस् - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex ट्रांसेक्शन हेक्स @@ -4040,7 +4220,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4161,6 +4341,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) vBytes द्वारा मेम्पपुल (sat/vByte) @@ -4188,7 +4432,7 @@ फिल्टर src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4197,7 +4441,7 @@ उल्टो src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4206,7 +4450,7 @@ ट्रांसेक्शन vBytes प्रति सेकेन्ड (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4214,196 +4458,187 @@ Just now भर्खरै - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago पहिले - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After पछि - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~ मा - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4443,7 +4678,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4453,11 +4688,11 @@ पहिलो पटक देखियो src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4473,11 +4708,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4487,7 +4722,7 @@ अनुमानित समय src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4497,7 +4732,7 @@ केहि घण्टामा (वा बढी) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4507,11 +4742,11 @@ वंशज src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4521,7 +4756,7 @@ पुर्खा src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4531,11 +4766,11 @@ प्रवाह src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4545,7 +4780,7 @@ रेखाचित्र लुकाउनुहोस् src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4554,7 +4789,7 @@ थप देखाउनुहोस् src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4571,7 +4806,7 @@ कम देखाउनुहोस् src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4584,7 +4819,7 @@ रेखाचित्र देखाउनुहोस् src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4593,7 +4828,7 @@ लकटाइम src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4602,7 +4837,7 @@ ट्रांसेक्शन फेला परेन। src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4611,7 +4846,7 @@ मेम्पपुल मा देखिन को लागी प्रतिक्षा गर्दै ... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4620,7 +4855,7 @@ प्रभावकारी शुल्क दर src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4768,7 +5003,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4776,7 +5011,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -5026,21 +5261,12 @@ dashboard.latest-transactions - - USD - USD / अमेरिकी डलर - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee न्यूनतम शुल्क src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5050,7 +5276,7 @@ पर्जिंग / सफा src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5060,7 +5286,7 @@ मेमोरी उपयोग src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5069,15 +5295,27 @@ L-BTC in circulation src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5085,11 +5323,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5098,18 +5336,18 @@ विवरण src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5202,7 +5440,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5275,7 +5513,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5315,11 +5557,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5332,11 +5574,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5349,7 +5591,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5357,7 +5599,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5370,7 +5612,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5383,11 +5625,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5395,7 +5645,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5417,6 +5667,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5452,11 +5706,11 @@ लाइटनिंग च्यानल src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5465,11 +5719,11 @@ अन्तिम अपडेट src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5485,11 +5739,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5498,11 +5752,11 @@ बन्द हुने मिति src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5510,7 +5764,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5519,7 +5773,7 @@ ट्रांसेक्शन खोल्दै src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5528,7 +5782,7 @@ बन्द ट्रांसेक्शन src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5540,6 +5794,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open खोल्नु @@ -5554,7 +5829,7 @@ देखाउन कुनै च्यानलहरू छैनन् src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5563,7 +5838,7 @@ उपनाम src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5587,11 +5862,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5600,7 +5875,7 @@ स्थिति src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5609,7 +5884,7 @@ च्यानल आईडी src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5618,11 +5893,11 @@ sats / सैटस src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5666,6 +5941,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity औसत क्षमता @@ -5790,11 +6081,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5843,10 +6134,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5863,12 +6150,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5900,16 +6195,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5942,7 +6241,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5958,11 +6257,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -6000,9 +6299,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6031,6 +6338,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week गत हप्ता प्रतिशत परिवर्तन @@ -6040,11 +6369,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -6057,11 +6386,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6074,7 +6403,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6087,7 +6416,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6100,20 +6429,12 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size सरदर च्यानल साइज src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6121,7 +6442,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6130,7 +6451,7 @@ रङ src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6138,7 +6459,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6150,7 +6471,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6158,7 +6479,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6166,7 +6487,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6175,7 +6496,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6183,7 +6504,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6191,7 +6512,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6200,7 +6521,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6208,7 +6529,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6216,7 +6537,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6225,7 +6546,7 @@ खुल्ला च्यानलहरू src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6234,7 +6555,7 @@ बन्द च्यानलहरू src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6278,7 +6599,7 @@ कुनै जियोलोकेशन डाटा उपलब्ध छैन src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6300,8 +6621,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6311,8 +6632,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6322,8 +6643,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6347,19 +6668,22 @@ lightning.share - nodes - नोडहरू + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6367,7 +6691,7 @@ BTC क्षमता src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6482,11 +6806,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6575,24 +6899,6 @@ 27 - - Top 100 nodes liquidity ranking - शीर्ष 100 नोड्स तरलता रैंकिंग - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - शीर्ष 100 नोड कनेक्टिविटी रैंकिंग - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes सबैभन्दा पुरानो नोड्स diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index c1d10e51c..999a63145 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Community-allianties src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projectvertalers src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projectbijdragers src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projectleden src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projectonderhouders src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Moeilijkheidsaanpassing + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Resterend - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blokken - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Schatting - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Vorige - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Huidige Periode - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Volgende Halvering - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Of 2x het minimum, of het lage prioriteitstarief (welke van beide lager is) @@ -3346,7 +3446,7 @@ Mining src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Poolrankering src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Pooldominatie src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Hashrate & Moeilijkheid src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Lightning Nodes Per Netwerk src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Lightning Netwerk Capaciteit src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Lightning Nodes Per Land src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Lightningnodes Wereldkaart src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Lightningnodekanalen Wereldkaart src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Hashrate (MG) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Beloningstatistieken src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blokken) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Laatste blokken src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Aanpassingen src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Transactie Uitzenden src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - blokken + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Omkeren src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Transactie-vBytes per seconde (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,188 @@ Just now Zojuist - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago geleden - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + Over ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Na - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - In ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4814,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4833,7 @@ Toon meer src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4850,7 @@ Toon minder src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4863,7 @@ Toon diagram src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4872,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4881,7 @@ Transactie niet gevonden. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4890,7 @@ Wachten tot het in de mempool verschijnt... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4899,7 @@ Effectief vergoedingstarief src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5354,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5365,7 @@ REST API service src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5374,11 @@ Eindpunt src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5387,11 @@ Omschrijving src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5399,7 @@ Default push: actie: 'want', data: ['blocks', ...] om uit te drukken wat je gepushed wilt hebben. Beschikbaar: blocks, mempool-blocks, live-2h-chart, en stats.Pushtransacties gerelateerd aan adres: 'track-address': '3PbJ...bF9B' om alle nieuwe transacties met dat adres als invoer of uitvoer te ontvangen. Retourneert een reeks transacties. address-transactions voor nieuwe mempooltransacties, en block-transactions voor nieuwe blokbevestigde transacties. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5574,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5692,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5818,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5959,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6221,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6277,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6758,22 @@ lightning.share - nodes - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6781,7 @@ BTC-capaciteit src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6899,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 7970bfe8b..5e0e5ad44 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Sojusze społecznościowe src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Tłumacze projektu src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Współtwórcy projektu src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Członkowie projektu src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Opiekunowie projektu src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3778,7 +3778,7 @@ Statystyki nagród src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 bloków) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Ostatnie bloki src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Dostosowania src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Rozgłoś transakcję src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,9 @@ 58 - - blocks - bloków + + blocks + bloków src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Inne () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6774,23 @@ lightning.share - nodes - węzłów + nodes + węzłów src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6798,7 @@ pojemność BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 1d7764f84..e6ef0f346 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Alianças da comunidade src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Tradutores do Projeto src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contribuidores do projeto src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membros do Projeto src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Mantenedores do projeto src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3778,7 +3778,7 @@ Estatisticas de recompensas src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 blocos) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Últimos blocos src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Ajustes src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Transmitir Transação src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,8 @@ 58 - - blocks - blocos + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4003,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5585,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5829,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5970,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6288,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6772,22 @@ lightning.share - nodes - nós + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6795,7 @@ Capacidade de BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6913,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ro.xlf b/frontend/src/locale/messages.ro.xlf index 18051fdbe..2dfca47ad 100644 --- a/frontend/src/locale/messages.ro.xlf +++ b/frontend/src/locale/messages.ro.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Alianțe din Comunitate src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traducători ai proiectului src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contribuitori ai proiectului src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membrii Proiectului src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Întreținători ai proiectului src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Ajustarea Dificultății + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Rămas - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blocuri - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block bloc - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimare - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Anterior - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Perioada Curentă - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Înjumătățirea următoare - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 2x minimum sau valoarea Prioritate Scăzută (oricare este mai mică) @@ -3346,7 +3446,7 @@ Minerit src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Clasament Fonduri src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Dominanță Fonduri src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Rată hash & Dificultate src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Noduri Lightning Per Rețea src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Capacitatea rețelei Lightning src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Noduri Lightning Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Noduri Lightning per țară src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Harta lumii cu Noduri Lightning src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Harta lumii cu canale ale nodurilor Lightning src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Rată hash (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Statistici Recompense src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blocuri) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Ultimele blocuri src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Ajustări src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Transmite Tranzacție src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - blocuri + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Filtru src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Inversează src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Tranzacție vBytes pe secundă (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,188 @@ Just now Chiar acum - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago Acum - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + În ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After După - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - În ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4814,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4833,7 @@ Arată mai multe src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4850,7 @@ Arată mai puțin src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4863,7 @@ Arată diagrama src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4872,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4881,7 @@ Tranzacția nu a fost găsită. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4890,7 @@ Se așteaptă să apară în mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4899,7 @@ Rata efectivă a comisionului src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5354,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5365,7 @@ Serviciu REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5374,11 @@ Terminație src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5387,11 @@ Descriere src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5399,7 @@ Trimitere implicită: acțiune: 'want', data: ['blocks', ...] pentru a exprima ce dorești să trimiți. Disponibil: blocks, mempool-blocks, live-2h-chart, și stats.Tranzacții de trimitere pentru adresa: 'track-address': '3PbJ...bF9B' pentru a primi toate tranzacțiile noi care conțin acea adresă ca intrare sau iesire. Returnează un șir de tranzacții. address-transactions pentru tranzacții noi din mempool, și block-transactions pentru tranzacții confirmate din blocuri noi. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5574,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5692,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5818,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5959,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6221,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6277,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6758,22 @@ lightning.share - nodes - noduri + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6781,7 @@ capacitate BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6899,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index d9b9221b7..ef455e2a5 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Обьединения Сообщества src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Переводы src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Участники проекта src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Участники проекта src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Разработчики проекта src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Корректировка сложности + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Осталось - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks блоков - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block блоков - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Приблизительно - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Предыдущий - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Текущий период - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Следующий халвинг - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Введите как минимум ×2 или ставку низкого приоритета (меньшее из двух) @@ -3346,7 +3446,7 @@ Майнинг src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Рейтинг пулов src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Доминация пулов src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Хэшрейт и сложность src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Лайтнинг src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Узлы Лайтнинг на сеть src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Объем сети Лайтнинг src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Узлов Лайтнинг на провайдера src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Узлов Лайтнинг на страну src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Мировая карта узлов Лайтнинг src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Мировая карта лайтнинг-каналов src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Хэшрейт (ср.) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Статистика вознаграждений src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 блока) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Последние блоки src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Корректировки src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Транслировать транзакцию src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - блоки + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Фильтр src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Инвертировать src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Транзакционные vBytes в секунду (vB / s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now Только что - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago назад - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After После - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Через ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ Показать больше src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ Показывай меньше src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ Показать схему src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Время блокировки src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ Транзакция не найдена. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ Ожидаем ее появления в мемпуле ... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ Эффективная комиссионная ставка src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ Служба REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ Конечная точка src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ Описание src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Пуш по умолчанию: действие: 'want', data: ['blocks', ...] , чтобы выразить то, что вы хотите запушить. Доступно: блоки , mempool-blocks , live-2h-chart иstats Пуш-транзакций, связанных с адресом: 'track-address': '3PbJ ... bF9B' для получения всех новых транзакционных входных или выходных данных, относящихся к данному адресу. Предоставляет массив транзакций. транзакций данного адреса, для новых транзакций мемпула и транзакций блока для транзакций, подтвержденных в новом блоке. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ сат src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6757,22 @@ lightning.share - nodes - узлы + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6780,7 @@ Емкость BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6898,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 6c5bfc3bb..0ab3be00c 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -357,11 +357,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +382,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +424,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +449,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +592,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +748,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +773,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +801,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1004,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1052,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1068,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1122,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1144,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1156,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1168,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1200,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1221,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1243,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1263,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1279,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1450,7 @@ Raziskovalec blokov in mempool-a razvit za Bitcoin skupnost, osredotočen na trg omrežnin za transakcije in večplastni ekosistem. Samogostovanje brez zaupanja vrednih tretjih oseb. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1458,7 @@ Sponzorji - podjetja 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,7 +1467,7 @@ Sponzorji - posamezniki ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1463,7 +1475,7 @@ Community Integrations src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1472,7 +1484,7 @@ Zavezništva skupnosti src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1481,7 +1493,7 @@ Prevajalci src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1490,7 +1502,7 @@ Sodelujoči src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1499,7 +1511,7 @@ Člani projekta src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1508,7 +1520,7 @@ Vzdrževalci src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1517,7 +1529,7 @@ O projektu src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1529,7 +1541,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1565,7 +1577,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1581,7 +1593,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1664,7 +1676,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1886,7 +1898,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1899,7 +1911,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1912,7 +1924,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1921,7 +1933,7 @@ Napaka pri nalaganju podatkov o sredstvih. src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2028,7 +2040,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2045,7 +2057,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2061,7 +2073,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2073,11 +2085,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2086,19 +2098,19 @@ Indeksiranje blokov src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2138,7 +2150,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2164,11 +2176,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2182,11 +2194,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2198,7 +2210,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2216,19 +2228,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2268,27 +2280,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2296,7 +2308,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2310,11 +2322,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2384,7 +2396,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2420,11 +2432,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2441,7 +2453,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2450,15 +2462,15 @@ Velikost src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2482,7 +2494,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2494,11 +2506,11 @@ Utež src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2506,11 +2518,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2525,14 +2548,6 @@ shared.block-title - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee Mediana omrežnin @@ -2542,7 +2557,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2559,11 +2574,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2581,7 +2596,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2594,7 +2609,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2604,6 +2619,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2619,31 +2638,47 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2660,7 +2695,7 @@ Razpon omrežnin src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2673,7 +2708,7 @@ Na podlagi povprečne native segwit transakcije (140 vBajtov). src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2697,49 +2732,60 @@ Transaction fee tooltip - - Subsidy + fees: - Novi kovanci + omrežnine: + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2748,7 +2794,7 @@ Bits src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2757,7 +2803,7 @@ Merkle koren src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2766,7 +2812,7 @@ Težavnost src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2782,11 +2828,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2795,7 +2841,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2804,32 +2850,41 @@ Glava bloka (Hex) src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details Podrobnosti src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2839,20 +2894,16 @@ Napaka pri nalaganju podatkov. src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2867,7 +2918,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2913,18 +2964,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward Nagrada @@ -2988,7 +3027,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3021,13 +3060,17 @@ Difficulty Adjustment Prilagoditev težavnosti + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3035,11 +3078,11 @@ Remaining Preostalo - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3048,11 +3091,11 @@ blocks blokov - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3073,11 +3116,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3090,11 +3133,11 @@ Estimate Ocena - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3103,20 +3146,24 @@ Previous Prejšnja - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Trenutno obdobje - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3125,11 +3172,99 @@ Next Halving Naslednja razpolovitev - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Bodisi 2-kratnik najnižje omrežnine ali stopnja nizke prioritete (kar je nižje) @@ -3227,7 +3362,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3240,7 +3375,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3253,7 +3388,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3267,7 +3402,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3287,7 +3422,7 @@ Rudarjenje src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3296,7 +3431,7 @@ Porazdelitev združenj src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3309,7 +3444,7 @@ Zgodovinska porazdelitev združenj src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3321,7 +3456,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3329,7 +3464,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3337,7 +3472,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3357,7 +3492,7 @@ Lightning Network Capacity src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3377,7 +3512,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3389,7 +3524,7 @@ Lightning Nodes Per Country src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3405,7 +3540,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3421,7 +3556,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3442,11 +3577,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3476,11 +3611,11 @@ Procesorska moč (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3516,7 +3651,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3541,7 +3676,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3549,20 +3684,12 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation Dokumentacija src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3607,7 +3734,7 @@ Statistika nagrad src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3616,7 +3743,7 @@ (144 blokov) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3625,7 +3752,7 @@ Najnovejši bloki src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3638,10 +3765,36 @@ Prilagoditve src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + Objava transakcije + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) Sreča združenj (1 teden) @@ -3709,7 +3862,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3739,12 +3892,24 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks Prazni bloki src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3753,7 +3918,7 @@ Skupaj src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3762,7 +3927,7 @@ Sreča združenj (1 teden) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3771,7 +3936,7 @@ Število združenj (1 teden) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3780,12 +3945,11 @@ Rudarska združenja src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - blokov + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3794,6 +3958,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4006,24 +4205,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - Objava transakcije - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex Šestnajstiški zapis @@ -4033,7 +4214,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4153,6 +4334,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) Mempool v vBajtih (sat/vBajt) @@ -4180,7 +4425,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4189,7 +4434,7 @@ Obrni src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4198,7 +4443,7 @@ Pretočnost, vBajtov na sekundo (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4206,196 +4451,187 @@ Just now Pravkar - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago nazaj - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Po - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Čez ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4435,7 +4671,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4445,11 +4681,11 @@ Prejeto src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4465,11 +4701,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4479,7 +4715,7 @@ ETA src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4489,7 +4725,7 @@ V nekaj urah (ali več) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4499,11 +4735,11 @@ Potomec src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4513,7 +4749,7 @@ Prednik src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4522,11 +4758,11 @@ Flow src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4535,7 +4771,7 @@ Hide diagram src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4543,7 +4779,7 @@ Show more src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4559,7 +4795,7 @@ Show less src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4571,7 +4807,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4580,7 +4816,7 @@ Locktime src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4589,7 +4825,7 @@ Transakcije ni mogoče najti. src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4598,7 +4834,7 @@ Čakanje, da se prikaže v mempool-u... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4607,7 +4843,7 @@ Efektivna stopnja omrežnine src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4755,7 +4991,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4763,7 +4999,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -5001,21 +5237,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee Najnižja omrežnina src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5025,7 +5252,7 @@ Prag src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5035,7 +5262,7 @@ Velikost src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5045,16 +5272,28 @@ L-BTC v obtoku src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service REST API storitev src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5063,11 +5302,11 @@ Končna točka src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5076,11 +5315,11 @@ Opis src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 @@ -5088,7 +5327,7 @@ Začetni potisk: action: 'want', data: ['blocks', ...] za izbiro potisnih podatkov. Razpoložljivo: blocks, mempool-blocks, live-2h-chart in stats.Potisk transakcij povezanih z naslovom: 'track-address': '3PbJ...bF9B' za prejem vseh novih transakcij, ki vsebujejo ta naslov v vhodu ali izhodu. Vrne polje transakcij. address-transactions za nove transakcije v mempool-u in block-transactions za potrjene transakcije v novem bloku. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5183,7 +5422,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5251,7 +5490,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5289,11 +5532,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5305,11 +5548,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5321,7 +5564,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5329,7 +5572,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5341,7 +5584,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5353,11 +5596,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5365,7 +5616,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5387,6 +5638,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5421,11 +5676,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5433,11 +5688,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5453,11 +5708,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5465,11 +5720,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5477,7 +5732,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5485,7 +5740,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5493,7 +5748,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5504,6 +5759,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open @@ -5516,7 +5792,7 @@ No channels to display src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5524,7 +5800,7 @@ Alias src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5548,11 +5824,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5560,7 +5836,7 @@ Status src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5568,7 +5844,7 @@ Channel ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5576,11 +5852,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5624,6 +5900,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity @@ -5740,11 +6032,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5792,10 +6084,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5811,12 +6099,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5848,16 +6144,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5888,7 +6188,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5904,11 +6204,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -5942,9 +6242,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -5972,6 +6280,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week @@ -5980,11 +6310,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -5996,11 +6326,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6012,7 +6342,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6024,7 +6354,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6036,19 +6366,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6056,7 +6378,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6064,7 +6386,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6072,7 +6394,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6084,7 +6406,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6092,7 +6414,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6100,7 +6422,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6109,7 +6431,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6117,7 +6439,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6125,7 +6447,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6134,7 +6456,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6142,7 +6464,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6150,7 +6472,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6158,7 +6480,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6166,7 +6488,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6208,7 +6530,7 @@ No geolocation data available src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6230,8 +6552,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6241,8 +6563,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6252,8 +6574,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6276,25 +6598,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6400,11 +6726,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6485,22 +6811,6 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 644b9c248..9d7689760 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1449,7 +1449,7 @@ Our mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, completely self-hosted without any trusted third-parties. - Vår mempool- och blockchainutforskare för bitcoincommunitit, med fokus på marknaden för transaktionsavgifter och multilagerekosystemet, helt självhostad utan betrodda tredjeparttjänster. + Mempool- och blockchainutforskare för bitcoiners, med fokus på marknaden för transaktionsavgifter och flerlagerekosystemet, helt självhostad utan betrodda tredjeparttjänster. src/app/components/about/about.component.html 13,16 @@ -1487,7 +1487,7 @@ Communityallianser src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projektöversättare src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projektbidragare src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projektmedlemmar src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projektunderhållare src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3293,7 +3293,7 @@ Average block time - Average block time + Genomsnittlig blocktid src/app/components/difficulty/difficulty.component.html 42,45 @@ -3778,7 +3778,7 @@ Belöningsstats src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 block) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Senaste blocken src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Justeringar src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Publicera transaktion src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -5791,7 +5791,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5932,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf index 8aea81ea2..a0adc00e4 100644 --- a/frontend/src/locale/messages.th.xlf +++ b/frontend/src/locale/messages.th.xlf @@ -11,6 +11,7 @@ Slide of + สไลด์ จาก node_modules/src/carousel/carousel.ts 175,181 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 30,33 @@ -357,11 +359,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +384,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +426,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +451,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +594,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +775,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +803,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1006,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1054,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1070,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1124,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1146,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1158,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1170,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1265,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1281,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1452,7 @@ ระบบ mempool และระบบสำรวจ blockchain สำหรับคอมมูนิตี้ Bitcoin โดยมุ่งเป้าไปที่ค่าธรรมเนียมการทำธุรกรรมต่างๆบนระบบและระบบนิเวศหลายชั้น อีกทั้งยังสามารถโฮสได้ด้วยตัวเองโดยปราศจากบุคคลที่สาม src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1460,7 @@ ผู้สนับสนุนระดับองค์กร 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,7 +1469,7 @@ ผู้สนับสนุน ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1463,7 +1477,7 @@ Community Integrations src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1472,7 +1486,7 @@ พันธมิตรของเรา src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1481,7 +1495,7 @@ ผู้แปลโปรเจค src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1490,7 +1504,7 @@ ผู้พัฒนาโปรเจค src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1499,7 +1513,7 @@ สมาชิกในโปรเจคนี้ src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1508,7 +1522,7 @@ ผู้ดูแลโปรเจค src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1517,7 +1531,7 @@ เกี่ยวกับ src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1529,11 +1543,12 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 Multisig of + Multisig จาก src/app/components/address-labels/address-labels.component.ts 107 @@ -1565,7 +1580,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1581,7 +1596,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1664,7 +1679,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1886,7 +1901,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1899,7 +1914,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1912,7 +1927,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1921,7 +1936,7 @@ เกิดข้อผิดพลาดในการโหลดข้อมูลสินทรัพย์ src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2028,12 +2043,13 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates At block: + บล็อกที่: src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 188 @@ -2044,11 +2060,12 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 Around block: + ประมาณบล็อกที่: src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 190 @@ -2059,7 +2076,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2071,11 +2088,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2084,19 +2101,19 @@ กำลังจัดเรียงบล็อก src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2136,7 +2153,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2162,11 +2179,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2180,11 +2197,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2196,7 +2213,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2214,19 +2231,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2266,27 +2283,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2294,7 +2311,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2308,11 +2325,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2381,7 +2398,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2416,11 +2433,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2437,7 +2454,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2446,15 +2463,15 @@ ขนาด src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2478,7 +2495,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2490,11 +2507,11 @@ น้ำหนัก src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2502,11 +2519,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2521,14 +2549,6 @@ shared.block-title - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee ค่าธรรมเนียมกลาง @@ -2538,7 +2558,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2555,11 +2575,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2577,7 +2597,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2590,7 +2610,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2600,6 +2620,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2615,31 +2639,47 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2656,7 +2696,7 @@ ช่วงของค่าธรรมเนียม src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2669,7 +2709,7 @@ อิงตามธุรกรรม Segwit ดั้งเดิมที่มีค่าเฉลี่ย 140 vBytes src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2693,49 +2733,60 @@ Transaction fee tooltip - - Subsidy + fees: - ธุรกรรม + ค่าธรรมเนียม: + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2744,7 +2795,7 @@ บิต src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2753,7 +2804,7 @@ Merkle root src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2762,7 +2813,7 @@ ความยาก src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2778,11 +2829,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2791,7 +2842,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2800,32 +2851,41 @@ Hex ส่วนหัวบล็อก src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details รายละเอียด src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2835,20 +2895,16 @@ เกิดข้อผิดพลาดในการโหลดข้อมูล src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2863,7 +2919,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2909,18 +2965,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward ค่าตอบแทน @@ -2984,7 +3028,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3017,13 +3061,17 @@ Difficulty Adjustment การเปลี่ยนแปลงระดับความยาก + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3031,11 +3079,11 @@ Remaining คงเหลือ - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3044,11 +3092,11 @@ blocks บล็อก - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3069,11 +3117,11 @@ block บล็อก - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3086,11 +3134,11 @@ Estimate ประมาณ - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3099,20 +3147,24 @@ Previous ก่อนหน้า - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period ช่วงเวลาปัจจุบัน - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3121,11 +3173,99 @@ Next Halving การลดผลตอบแทนครั้งถัดไป - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 2 เท่าของค่าต่ำสุดหรือความสำคัญต่ำ (อะไรก็ได้ที่ต่ำกว่า) @@ -3221,7 +3361,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3234,7 +3374,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3247,7 +3387,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3261,7 +3401,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3281,7 +3421,7 @@ กำลังขุด src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3290,7 +3430,7 @@ อันดับพูล src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3303,7 +3443,7 @@ การครองระบบพูล src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3315,7 +3455,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3323,7 +3463,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3331,7 +3471,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3351,7 +3491,7 @@ Lightning Network Capacity src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3371,7 +3511,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3383,7 +3523,7 @@ Lightning Nodes Per Country src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3399,7 +3539,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3415,7 +3555,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3436,11 +3576,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3469,11 +3609,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3509,7 +3649,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3534,7 +3674,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3542,20 +3682,12 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation เอกสารคำอภิบาย src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3600,7 +3732,7 @@ สถานะค่าตอบแทน src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3609,7 +3741,7 @@ (144 บล็อก) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3618,7 +3750,7 @@ บล็อกล่าสุด src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3631,10 +3763,36 @@ การเปลี่ยนแปลง src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + ประกาศธุรกรรม + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) @@ -3696,7 +3854,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3725,12 +3883,24 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks บล็อกว่างเปล่า src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3739,7 +3909,7 @@ ผู้ขุดทั้งหมด src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3748,7 +3918,7 @@ ความโชคดีของพูล (1 สัปดาห์) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3757,7 +3927,7 @@ จำนวนผู้ขุดในพูล (1 สัปดาห์) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3766,12 +3936,11 @@ พูลขุด src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - บล็อก + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3780,6 +3949,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -3992,24 +4196,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - ประกาศธุรกรรม - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex hex ของธุรกรรม @@ -4019,7 +4205,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4139,6 +4325,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) ขนาดหน่วยความจำ vBytes (sat/vByte) @@ -4166,7 +4416,7 @@ ตัวกรอง src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4175,7 +4425,7 @@ กลับ src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4184,7 +4434,7 @@ ธุรกรรมต่อวินาที (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4192,196 +4442,187 @@ Just now ตอนนี้ - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago ที่ผ่านมา - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After หลังจาก - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ภายใน ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4421,7 +4662,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4431,11 +4672,11 @@ พบเห็นครั้งแรก src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4451,11 +4692,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4465,7 +4706,7 @@ ETA src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4475,7 +4716,7 @@ ภายในหลายชั่วโมง (หรือมากกว่า) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4485,11 +4726,11 @@ ผู้สืบทอด src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4499,7 +4740,7 @@ บรรพบุรุษ src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4508,11 +4749,11 @@ Flow src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4521,7 +4762,7 @@ Hide diagram src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4529,7 +4770,7 @@ Show more src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4545,7 +4786,7 @@ Show less src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4557,7 +4798,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4566,7 +4807,7 @@ เวลาล็อก src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4575,7 +4816,7 @@ ไม่พบเจอธุรกรรมนี้ src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4584,7 +4825,7 @@ กำลังรอให้ปรากฏใน mempool... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4593,7 +4834,7 @@ อัตราค่าธรรมเนียมที่เหมาะสม src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4741,7 +4982,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4749,7 +4990,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -4987,21 +5228,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee ค่าธรรมเนียมขั้นต่ำ src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5011,7 +5243,7 @@ กำลังล้าง src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5021,7 +5253,7 @@ หน่วยความจำที่ใช้ไป src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5031,15 +5263,27 @@ อุปทานหมุนเวียน L-BTC src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5048,11 +5292,11 @@ ปลายทาง src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5061,11 +5305,11 @@ คำอธิบาย src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 @@ -5073,7 +5317,7 @@ ค่าตอบกลับพื้นฐาน: การกระทำ: 'ต้องการ', ข้อมูล: ['บล็อก', ...] เพื่ออธิบายค่าที่ต้องการตอบกลับ. ที่ใช้งานได้: บล็อก, บล็อก-mempool, ชาตสด-2h, และ สถิติ.ส่งธุรกรรมไปยังแอดเดรส: 'track-address': '3PbJ...bF9B' เพื่อที่จะได้รับธุรกรรมใหม่ทั้งหมดที่มี input/output ของแอดเดรสนั้น. ตอบกลับเป็นอาเรย์ของธุรกรรม. แอดเดรส-ธุรกรรม สำหรับธุรกรรม mempool ใหม่, และ ธุรกรรม-บล็อก สำหรับธุรกรรมที่ถูกยืนยันในบล็อกใหม่ src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5168,7 +5412,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5236,7 +5480,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5274,11 +5522,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5290,11 +5538,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5306,7 +5554,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5314,7 +5562,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5326,7 +5574,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5338,11 +5586,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5350,7 +5606,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5372,6 +5628,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5406,11 +5666,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5418,11 +5678,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5438,11 +5698,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5450,11 +5710,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5462,7 +5722,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5470,7 +5730,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5478,7 +5738,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5489,6 +5749,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open @@ -5501,7 +5782,7 @@ No channels to display src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5509,7 +5790,7 @@ Alias src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5533,11 +5814,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5545,7 +5826,7 @@ Status src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5553,7 +5834,7 @@ Channel ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5561,11 +5842,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5609,6 +5890,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity @@ -5725,11 +6022,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5777,10 +6074,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5796,12 +6089,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5833,16 +6134,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5873,7 +6178,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5889,11 +6194,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -5927,9 +6232,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -5957,6 +6270,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week @@ -5965,11 +6300,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -5981,11 +6316,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -5997,7 +6332,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6009,7 +6344,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6021,19 +6356,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6041,7 +6368,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6049,7 +6376,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6057,7 +6384,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6069,7 +6396,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6077,7 +6404,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6085,7 +6412,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6094,7 +6421,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6102,7 +6429,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6110,7 +6437,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6119,7 +6446,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6127,7 +6454,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6135,7 +6462,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6143,7 +6470,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6151,7 +6478,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6193,7 +6520,7 @@ No geolocation data available src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6215,8 +6542,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6226,8 +6553,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6237,8 +6564,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6261,25 +6588,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6385,11 +6716,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6470,22 +6801,6 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index b74f46bc4..3ef9c25ba 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -11,6 +11,7 @@ Slide of + Slayt 'nin 'i node_modules/src/carousel/carousel.ts 175,181 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 30,33 @@ -357,11 +359,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +384,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +426,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +451,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +594,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +775,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +803,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1006,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1054,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1070,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1124,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1146,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1158,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1170,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1265,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1281,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1452,7 @@ Mempool, üçüncü partilere güvenmek zorunda kalmadan kendi bilgisayarınızda barındırabileceğiniz, Bitcoin ve ikinci katman çözümleri için işlem ücreti piyasasını önünüze sunan açık kaynak kodlu bir blok kaşifi yazılımıdır. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1460,7 @@ Kurumsal sponsorlar src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,7 +1469,7 @@ Topluluk sponsorlarımız src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1464,7 +1478,7 @@ Topluluk İntegrasyonları src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1473,7 +1487,7 @@ Topluluk İşbirlikleri src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1482,7 +1496,7 @@ Proje Çeviricileri src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1491,7 +1505,7 @@ Proje Destekçileri src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1500,7 +1514,7 @@ Proje Üyeleri src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1509,7 +1523,7 @@ Projeyi ayakta tutanlar src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1518,7 +1532,7 @@ Hakkında src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1530,7 +1544,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1567,7 +1581,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1583,7 +1597,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1666,7 +1680,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1888,7 +1902,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1901,7 +1915,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1914,7 +1928,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1923,7 +1937,7 @@ Varlık datasını yüklerken hata oldu src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2030,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2047,7 +2061,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2063,7 +2077,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2075,11 +2089,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2088,19 +2102,19 @@ Bloklar İndeksleniyor src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2121,6 +2135,7 @@ not available + Müsait değil src/app/components/block-overview-graph/block-overview-graph.component.html 5 @@ -2140,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2166,11 +2181,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2184,11 +2199,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2200,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2218,19 +2233,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2270,27 +2285,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2298,7 +2313,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2312,17 +2327,18 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize Audit status + Denetlenme durumu src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 36 @@ -2331,6 +2347,7 @@ Match + Eşleşti src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 38 @@ -2339,6 +2356,7 @@ Removed + Kaldırıldı src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 39 @@ -2347,6 +2365,7 @@ Marginal fee rate + Marjinal Ücret Değeri src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 40 @@ -2359,6 +2378,7 @@ Recently broadcasted + Yakın zamanda yayınlanan src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 41 @@ -2387,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2424,11 +2444,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2445,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2454,15 +2474,15 @@ Boyut src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2486,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2498,11 +2518,11 @@ Ağırlık src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2510,11 +2530,23 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + Ağırlık başına düşen boyut + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2530,15 +2562,6 @@ shared.block-title - - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee Medyan ücret @@ -2548,7 +2571,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2565,11 +2588,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2587,7 +2610,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2600,7 +2623,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2610,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2625,32 +2652,49 @@ Previous Block - - Block health + + Health + Sağlık src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown Bilinmiyor src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2667,7 +2711,7 @@ Ücret aralığı src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2680,7 +2724,7 @@ 140 vbytelık ortalama native segwit ücreti baz alınmıştır src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2704,49 +2748,66 @@ Transaction fee tooltip - - Subsidy + fees: - Ödül + ücretler: + + Subsidy + fees + Ödül + ücretler src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected + Beklenen src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual + Aktüel src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block + Beklenen blok src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block + Gerçekleşen blok src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2755,7 +2816,7 @@ Bit src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2764,7 +2825,7 @@ Merkle kökü src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2773,7 +2834,7 @@ Zorluk src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2789,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2802,7 +2863,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2811,32 +2872,42 @@ Block Başlığı Hex'i src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + Denetleme + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details Detaylar src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2846,20 +2917,16 @@ Veriyi yüklerken hata oluştu src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2872,9 +2939,10 @@ Why is this block empty? + Blok neden boş? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2920,18 +2988,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward Ödüller @@ -2995,7 +3051,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3028,13 +3084,17 @@ Difficulty Adjustment Zorluk Seviyesi + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3042,11 +3102,11 @@ Remaining Kalan - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3055,11 +3115,11 @@ blocks bloklar - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3080,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3097,11 +3157,11 @@ Estimate Tahmini - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3110,20 +3170,24 @@ Previous Önceki - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Şimdiki periyod - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3132,11 +3196,99 @@ Next Halving Bir Sonraki Yarılanma Dönemi - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Minimum önceliğin 2x katı ya da minimum işlem önceliği (hangisi daha düşük ise) @@ -3234,7 +3386,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3247,7 +3399,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3260,7 +3412,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3274,7 +3426,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3294,7 +3446,7 @@ Madencilik src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3303,7 +3455,7 @@ Havuz Sıralaması src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3316,7 +3468,7 @@ Havuz Dominansı src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3329,7 +3481,7 @@ Hash gücü & Zorluk src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3338,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3347,7 +3499,7 @@ Ağ başına düşen Lightning Node'u src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3368,7 +3520,7 @@ Lightning ağı kapasitesi src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3389,7 +3541,7 @@ ISP başına düşen Lightning Node'u src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3402,7 +3554,7 @@ Ülkelere göre Lightning Node'ları src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3419,7 +3571,7 @@ Lightning Node'u Dünya Haritası src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3436,7 +3588,7 @@ Lightning Kanalları Dünya Haritası src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3457,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3491,11 +3643,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3531,7 +3683,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3557,7 +3709,7 @@ Lightning tarayıcı src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3565,21 +3717,12 @@ master-page.lightning - - beta - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation Dökümentasyon src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3624,7 +3767,7 @@ Ödül İstatistikleri src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3633,7 +3776,7 @@ (144 blok) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3642,7 +3785,7 @@ Son bloklar src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3655,10 +3798,36 @@ Düzenlemeler src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + İşlemi Ağa Sal + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) Havuz Şansı (1 hafta) @@ -3726,7 +3895,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3756,12 +3925,25 @@ mining.rank + + Avg Health + Ortalama sağlık + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks Boş Bloklar src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3770,7 +3952,7 @@ Tüm madenciler src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3779,7 +3961,7 @@ Havuzun Talihi (1h) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3788,7 +3970,7 @@ Toplam Havuzlar (1h) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3797,12 +3979,11 @@ Madenci Havuzları src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - blok + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3811,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4024,24 +4240,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - İşlemi Ağa Sal - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex Hex İşlem @@ -4051,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4083,6 +4281,7 @@ Avg Block Fees + Ortalama Blok Ücreti src/app/components/reward-stats/reward-stats.component.html 17 @@ -4095,6 +4294,7 @@ Average fees per block in the past 144 blocks + Son 144 blok için ortalama ücret src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -4103,6 +4303,7 @@ BTC/block + BTC/blok src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -4112,6 +4313,7 @@ Avg Tx Fee + Ortalama gönderi ücreti src/app/components/reward-stats/reward-stats.component.html 30 @@ -4172,6 +4374,78 @@ search-form.search-title + + Bitcoin Block Height + Bitcoin Blok Yüksekliği + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + Bitcoin İşlemi + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + Bitcoin Adresi + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + Bitcoin bloğu + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + Bitcoin adresleri + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + Lightning düğümleri + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + Lightning kanalları + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + "" 'a git; + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) Mempool vByte (sat/vByte) görünümü @@ -4199,7 +4473,7 @@ Filtre src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4208,7 +4482,7 @@ Ters çevir src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4217,7 +4491,7 @@ Saniye başı vBytes (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4225,196 +4499,188 @@ Just now Az önce - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago önce - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + Yaklaşık + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After sonrası - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Yaklaşık ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4429,6 +4695,7 @@ This transaction replaced: + Bu işlem değiştirildi: src/app/components/transaction/transaction.component.html 10,12 @@ -4438,6 +4705,7 @@ Replaced + Değiştirildi src/app/components/transaction/transaction.component.html 36,39 @@ -4454,7 +4722,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4464,11 +4732,11 @@ İlk görüldüğü an src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4484,11 +4752,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4498,7 +4766,7 @@ Tahmini Varış Süresi src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4508,7 +4776,7 @@ Bir kaç saat içinde (veya daha sonra) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4518,11 +4786,11 @@ Azalan src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4532,7 +4800,7 @@ Ata src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4542,11 +4810,11 @@ Akış src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4556,7 +4824,7 @@ Diyagramı kapat src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4565,7 +4833,7 @@ Daha fazla göster src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4582,7 +4850,7 @@ Daha az göster src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4595,7 +4863,7 @@ Diyagramı göster src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4604,7 +4872,7 @@ Kilit Süresi src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4613,7 +4881,7 @@ İşlem bulunamadı. src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4622,7 +4890,7 @@ Mempool'a dahil olmayı bekliyor. src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4631,7 +4899,7 @@ Efektiv işlem ücreti oranı src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4777,17 +5045,19 @@ Show more inputs to reveal fee data + Ücret datasının için daha çok girdi göster src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info remaining + Kalan src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -4935,6 +5205,7 @@ This transaction does not use Taproot + Bu işlem Taproot kullanmıyor src/app/components/tx-features/tx-features.component.html 18 @@ -5037,21 +5308,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee Minimum ücret src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5061,7 +5323,7 @@ Temizleme src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5071,7 +5333,7 @@ Hafıza kullanımı src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5081,16 +5343,29 @@ Dolaşımdaki L-BTC miktarı src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + mempool.space sadece Bitcoin ağı ile ilgili bilgi sağlar. Kayıp gönderilerinize ulaşmanız veya işlemleri hızlandırmanız gibi istekleriniz için size çözüm sağlayamaz. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service REST API servisi src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5099,11 +5374,11 @@ Çıkış Noktası src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5112,11 +5387,11 @@ Tanım src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 @@ -5124,7 +5399,7 @@ Varsayılan ileti: action: 'want', data: ['blocks', ...] iletmek istediğini belirt. Kullanılabilir alanlar: blocks, mempool-blocks, live-2h-chart ve stats. Takip eden adresle ilişkili işlemleri ileterek: 'track-address': '3PbJ...bF9B' bu adresi içeren bütün giriş ve çıkış işlemlerini al. İşlemleri sırala. Yeni mempool işlemleri içinaddress-transactions ve yeni onaylı blok işlemleri için block-transcations kullan. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5221,7 +5496,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5297,12 +5572,17 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels Starting balance + Başlangıç balansı src/app/lightning/channel/channel-close-box/channel-close-box.component.html 6 @@ -5312,6 +5592,7 @@ Closing balance + Kapanış balansı src/app/lightning/channel/channel-close-box/channel-close-box.component.html 12 @@ -5337,11 +5618,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5354,11 +5635,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5371,7 +5652,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5379,7 +5660,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5392,7 +5673,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5405,11 +5686,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5417,7 +5706,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5439,6 +5728,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5475,11 +5768,11 @@ Lightning kanalı src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5488,11 +5781,11 @@ Son güncelleme src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5508,11 +5801,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5521,19 +5814,20 @@ Kapanış tarihi src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date Closed by + Kapayan src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5542,7 +5836,7 @@ Açılış işlemi src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5551,7 +5845,7 @@ Kapanış işlemi src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5563,6 +5857,30 @@ 37 + + Mutually closed + Ortaklaşa kapatıldı + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + Kapanmaya zorlandı + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + Ceza ödeyerek zorla kapatıldı + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open Açık @@ -5577,7 +5895,7 @@ Gösterilecek kanal bulunamadı src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5586,7 +5904,7 @@ Takma ad src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5610,11 +5928,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5623,7 +5941,7 @@ Durum src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5632,7 +5950,7 @@ Kanal ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5641,11 +5959,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5689,6 +6007,24 @@ shared.sats + + avg + ortalama + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + orta + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity Ortalama Kapasite @@ -5817,11 +6153,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5870,10 +6206,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5890,12 +6222,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5927,16 +6267,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5969,7 +6313,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5985,11 +6329,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -6027,9 +6371,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6052,12 +6404,37 @@ Fee distribution + Ücret dağılımı src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 lightning.node-fee-distribution + + Outgoing Fees + Giden ücretler + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + Gelen ücretler + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week Geçen haftaya göre yüzdelik değişim @@ -6067,11 +6444,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -6084,11 +6461,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6101,7 +6478,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6114,7 +6491,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6127,29 +6504,21 @@ country - - No node found for public key "" - "" halka açık anahtar için Node bulunamadı - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size Ortalama kanal büyüklüğü src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg Avg channel distance + Ortalama kanal uzaklığı src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6158,7 +6527,7 @@ Renk src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6167,7 +6536,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6180,73 +6549,81 @@ Sadece Tor üzerinde src/app/lightning/node/node.component.html - 93,95 + 96,98 tor Liquidity ad + Likidite reklamı src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad Lease fee rate + Kiralama ücreti src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate Lease base fee + Kiralama için baz ücret src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee Funding weight + Fonlama ağırlığı src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight Channel fee rate + Kanal ücreti src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate Channel base fee + Kanal baz ücreti src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee Compact lease + Kompakt kiralama src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease TLV extension records + TLV uzatma kayıtları src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6255,7 +6632,7 @@ Açık kanallar src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6264,7 +6641,7 @@ Kapanan kanallar src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6310,7 +6687,7 @@ Geolokasyon datasına ulaşılamıyor src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6324,6 +6701,7 @@ Indexing in progress + İndeksleniyor src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6333,9 +6711,9 @@ 112,107 - - Reachable on Clearnet Only - Sadece clearnet üzerinden ulaşılanlar + + Clearnet and Darknet + Şeffaf İnternet ve Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6345,9 +6723,9 @@ 303,302 - - Reachable on Clearnet and Darknet - Clearnet ve Tor üzerinden ulaşılanlar + + Clearnet Only (IPv4, IPv6) + Sadece Şeffaf İnternet (IPV4, IPV6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6357,9 +6735,9 @@ 295,294 - - Reachable on Darknet Only - Sadece Tor üzerinden ulaşılanlar + + Darknet Only (Tor, I2P, cjdns) + Sadece Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6383,19 +6761,22 @@ lightning.share - nodes - Node'lar + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6403,7 +6784,7 @@ BTC kapasite src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6521,11 +6902,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6591,6 +6972,7 @@ Active nodes + Aktif düğümler src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14,18 @@ -6614,24 +6996,6 @@ 27 - - Top 100 nodes liquidity ranking - Likidite sıralamasına göre en iyi 100 Node - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - Bağlantı sıralamasına göre en iyi 100 Node - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes En eski Node'lar diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 0404aee6e..5794afcc5 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Союзи спільноти src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Перекладачі проекту src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Учасники проекту src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Члени проекту src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Розробники проекту src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Регулювання складності + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Лишається - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks блоків - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block блок - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Приблизно - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Попередня - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Поточний період - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Наступне зменшення винагороди - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Або 2x мініуму, або повільна ставка (що менше) @@ -3346,7 +3446,7 @@ Майнінг src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Рейтинг пулів src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Домінування пулу src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Хешрейт та складність src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Lightning нод на мережу src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Пропускна спроможність Lightning src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Lightning нод на ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Lightning нод на країну src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Мапа Lightning нод src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Мапа Lightning каналів src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Хешрейт (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Статистика нагороди src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 блоки) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Останні блоки src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Регулювання src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Надіслати транзакцію src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - блоків + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Фільтрувати src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Інвертувати src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ vBytes за секунду транзакції (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now Щойно - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago тому - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Після - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Через ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ Показати більше src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ Показати менше src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ Показати діаграму src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Час блокування src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ Транзакція не знайдена. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ Чекаємо її появи в мемпулі... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ Поточна ставка комісії src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ Сервіс REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ Ендпоїнт src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ Опис src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Надсилання за замовчуванням за замовчуванням: action: 'want', data: ['blocks', ...] щоб вказати, що має бути надіслано. Доступно: blocks, mempool-blocks, live-2h-chart та stats.Надіслати транзакції пов'язані з адресою: 'track-address': '3PbJ...bF9B' щоб отримати всі нові транзакції які містять дану адресу у входах чи виходах. Повертає масив транзакцій. address-transactions для нових мемпул транзакцій та block-transactions для нових підтверджених транзакцій. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6757,22 @@ lightning.share - nodes - нод + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6780,7 @@ BTC пропускної спроможності src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6898,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 3fea854cf..5c4ebe759 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Liên minh cộng đồng src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Dịch giả của Dự án src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Người đóng góp dự án src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Thành viên Dự án src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Người bảo trì dự án src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Điều chỉnh Độ khó + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Còn lại - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks khối - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block khối - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Ước tính - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Trước - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Giai đoạn hiện tại - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Halving Tiếp theo - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Hai lần số lượng tối thiểu hoặc Tỷ lệ ưu tiên thấp (tùy theo tỷ lệ nào thấp hơn) @@ -3346,7 +3446,7 @@ Đào src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Xếp hạng pool src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Dominance của các Pool src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Hashrate & độ khó src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Các nút Lightning trên mỗi mạng src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Năng lực mạng Lightning src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Nút Lightning trên mỗi ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Nút Lightning trên mỗi quốc gia src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Bản đồ thế giới nút Lightning src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Bản đồ thế giới các kênh nút Lightning src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Tỷ lệ băm (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Các chỉ số phần thưởng src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 khối) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Khối mới nhất src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Sự điều chỉnh src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Truyền tải Giao dịch src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - khối + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Lọc src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Đảo ngược src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Giao dịch vBytes mỗi giây (vB / s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now Vừa mới đây - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago trước - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Sau - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Trong ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ Hiển thị nhiều hơn src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ Hiển thị ít hơn src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ Hiển thị sơ đồ src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Thời gian khóa src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ Không tìm thấy giao dịch. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ Đang đợi nó xuất hiện trong mempool ... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ Tỷ lệ phí hiệu quả src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ Dịch vụ REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ Điểm cuối src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ Sự miêu tả src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Push mặc định: hành động: 'want', dữ liệu: ['blocks', ...] để thể hiện những gì bạn muốn đẩy. Có sẵn: khối , mempool-khối , live-2h-chart c195a641ez0c195ez0. Đẩy các giao dịch liên quan đến địa chỉ: 'track-address': '3PbJ ... bF9B' a0c95ez0 đầu vào để nhận các giao dịch đầu vào a0c95ez0 a0c95ez0 đó để nhận địa chỉ đầu vào là all95ez0. Trả về một mảng các giao dịch. địa chỉ-giao dịch cho các giao dịch mempool mới và giao dịch khối cho các giao dịch được xác nhận khối mới. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ satoshi src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6757,22 @@ lightning.share - nodes - nút + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6780,7 @@ công suất BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6898,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index e040e7bc9..be88e0b2e 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -691,11 +691,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -715,11 +715,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -744,7 +744,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1380,7 +1380,7 @@ Community Alliances src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1388,7 +1388,7 @@ Project Translators src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1396,7 +1396,7 @@ Project Contributors src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1404,7 +1404,7 @@ Project Members src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1412,7 +1412,7 @@ Project Maintainers src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2056,7 +2056,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2884,7 +2884,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3513,7 +3513,7 @@ Reward stats src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3521,7 +3521,7 @@ (144 blocks) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3529,7 +3529,7 @@ Latest blocks src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3541,7 +3541,7 @@ Adjustments src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3549,7 +3549,7 @@ Broadcast Transaction src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3709,8 +3709,8 @@ 58 - - blocks + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3719,6 +3719,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5144,6 +5179,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5372,7 +5411,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5500,7 +5539,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5802,6 +5841,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6242,25 +6285,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6366,11 +6413,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index d2cda98c6..d2ec0f162 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -749,11 +749,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -774,11 +774,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -804,7 +804,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1073,7 +1073,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1201,11 +1201,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1222,11 +1222,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1244,7 +1244,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1486,7 +1486,7 @@ 社区联盟 src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1495,7 +1495,7 @@ 项目翻译者 src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1504,7 +1504,7 @@ 项目贡献者 src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1513,7 +1513,7 @@ 项目成员 src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1522,7 +1522,7 @@ 项目维护者 src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1580,7 +1580,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2043,7 +2043,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2092,7 +2092,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2113,7 +2113,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2154,7 +2154,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2180,7 +2180,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2202,7 +2202,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2214,7 +2214,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2296,11 +2296,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2330,7 +2330,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2404,7 +2404,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2445,7 +2445,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2462,7 +2462,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2503,7 +2503,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2531,7 +2531,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2629,6 +2629,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2837,11 +2841,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2881,7 +2885,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3069,13 +3073,17 @@ Difficulty Adjustment 难度调整 + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3083,11 +3091,11 @@ Remaining 距离下次调整 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3096,11 +3104,11 @@ blocks 区块 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3121,11 +3129,11 @@ block 区块 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3138,11 +3146,11 @@ Estimate 预估调整量 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3151,20 +3159,24 @@ Previous 之前 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period 当前阶段 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3173,11 +3185,99 @@ Next Halving 距离下次奖励减半 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 最低 2 倍最小值或低优先率(以较低者为准) @@ -3335,7 +3435,7 @@ 挖矿 src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3344,7 +3444,7 @@ 矿池排名 src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3357,7 +3457,7 @@ 矿池优势 src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3370,7 +3470,7 @@ 哈希率与难度 src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3379,7 +3479,7 @@ 闪电网络 src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3388,7 +3488,7 @@ 闪电网络节点网络分布 src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3409,7 +3509,7 @@ 闪电网络容量 src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3430,7 +3530,7 @@ 闪电网络节点按 ISP 排序 src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3443,7 +3543,7 @@ 闪电网络节点按国家或地区排序 src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3460,7 +3560,7 @@ 闪电网络节点全球地图 src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3477,7 +3577,7 @@ 闪电网络频率世界地图 src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3498,11 +3598,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3532,11 +3632,11 @@ 哈希率(MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3656,7 +3756,7 @@ 奖励统计 src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3665,7 +3765,7 @@ (近 144 个区块) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3674,7 +3774,7 @@ 最新区块 src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3687,7 +3787,7 @@ 难度调整 src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3696,7 +3796,7 @@ 广播交易 src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3870,9 +3970,8 @@ 58 - - blocks - 区块 + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3881,6 +3980,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4103,7 +4237,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4318,7 +4452,7 @@ 过滤 src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4327,7 +4461,7 @@ 倒置 src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4336,7 +4470,7 @@ 交易字节/秒 (虚拟字节) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4344,196 +4478,187 @@ Just now 现在 - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago 之前 - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After 之后 - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - 之内 - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4665,7 +4790,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4684,7 +4809,7 @@ 展示更多 src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4701,7 +4826,7 @@ 展示更少 src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4714,7 +4839,7 @@ 显示图表 src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4723,7 +4848,7 @@ 锁定时间 src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4732,7 +4857,7 @@ 交易未找到 src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4741,7 +4866,7 @@ 等待交易出现在内存池 src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4750,7 +4875,7 @@ 有效收费率 src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5201,6 +5326,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5208,7 +5337,7 @@ REST API 服务 src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5217,11 +5346,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5230,11 +5359,11 @@ 描述 src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5242,7 +5371,7 @@ 默认推送:操作: 'want', 数据: ['blocks', ...] 来表达你想要推送的内容。可用字段:blocksmempool-blockslive-2h-chart,和stats推送与地址有关的事务。'track-address': '3PbJ...bF9B' 接收所有包含该地址的新事务作为输入或输出。返回一个交易数组。address-transactions用于新的mempool交易,block-transactions用于新的块确认交易。 src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5417,6 +5546,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5529,6 +5662,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5647,7 +5788,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5784,7 +5925,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6044,6 +6185,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6092,6 +6241,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6558,19 +6711,22 @@ lightning.share - nodes - 节点 + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6578,7 +6734,7 @@ BTC 容量 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6696,11 +6852,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190