Merge branch 'master' into mononaut/liquid-address-table

This commit is contained in:
wiz 2023-02-18 20:34:59 +09:00 committed by GitHub
commit 177fba2178
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 2205 additions and 1245 deletions

View File

@ -610,7 +610,9 @@ class Blocks {
const transactions = await this.$getTransactionsExtended(blockHash, block.height, true); const transactions = await this.$getTransactionsExtended(blockHash, block.height, true);
const blockExtended = await this.$getBlockExtended(block, transactions); const blockExtended = await this.$getBlockExtended(block, transactions);
await blocksRepository.$saveBlockInDatabase(blockExtended); if (Common.indexingEnabled()) {
await blocksRepository.$saveBlockInDatabase(blockExtended);
}
return prepareBlock(blockExtended); return prepareBlock(blockExtended);
} }
@ -714,7 +716,7 @@ class Blocks {
block = await this.$indexBlock(currentHeight); block = await this.$indexBlock(currentHeight);
returnBlocks.push(block); returnBlocks.push(block);
} else if (nextHash != null) { } else if (nextHash != null) {
block = prepareBlock(await bitcoinClient.getBlock(nextHash)); block = await this.$indexBlock(currentHeight);
nextHash = block.previousblockhash; nextHash = block.previousblockhash;
returnBlocks.push(block); returnBlocks.push(block);
} }

View File

@ -13,7 +13,11 @@ class BitfinexApi implements PriceFeed {
public async $fetchPrice(currency): Promise<number> { public async $fetchPrice(currency): Promise<number> {
const response = await query(this.url + currency); const response = await query(this.url + currency);
return response ? parseInt(response['last_price'], 10) : -1; if (response && response['last_price']) {
return parseInt(response['last_price'], 10);
} else {
return -1;
}
} }
public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> { public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> {

View File

@ -13,7 +13,11 @@ class BitflyerApi implements PriceFeed {
public async $fetchPrice(currency): Promise<number> { public async $fetchPrice(currency): Promise<number> {
const response = await query(this.url + currency); const response = await query(this.url + currency);
return response ? parseInt(response['ltp'], 10) : -1; if (response && response['ltp']) {
return parseInt(response['ltp'], 10);
} else {
return -1;
}
} }
public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> { public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> {

View File

@ -13,7 +13,11 @@ class CoinbaseApi implements PriceFeed {
public async $fetchPrice(currency): Promise<number> { public async $fetchPrice(currency): Promise<number> {
const response = await query(this.url + currency); const response = await query(this.url + currency);
return response ? parseInt(response['data']['amount'], 10) : -1; if (response && response['data'] && response['data']['amount']) {
return parseInt(response['data']['amount'], 10);
} else {
return -1;
}
} }
public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> { public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> {

View File

@ -13,7 +13,11 @@ class GeminiApi implements PriceFeed {
public async $fetchPrice(currency): Promise<number> { public async $fetchPrice(currency): Promise<number> {
const response = await query(this.url + currency); const response = await query(this.url + currency);
return response ? parseInt(response['last'], 10) : -1; if (response && response['last']) {
return parseInt(response['last'], 10);
} else {
return -1;
}
} }
public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> { public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> {

View File

@ -23,7 +23,14 @@ class KrakenApi implements PriceFeed {
public async $fetchPrice(currency): Promise<number> { public async $fetchPrice(currency): Promise<number> {
const response = await query(this.url + currency); const response = await query(this.url + currency);
return response ? parseInt(response['result'][this.getTicker(currency)]['c'][0], 10) : -1; const ticker = this.getTicker(currency);
if (response && response['result'] && response['result'][ticker] &&
response['result'][ticker]['c'] && response['result'][ticker]['c'].length > 0
) {
return parseInt(response['result'][ticker]['c'][0], 10);
} else {
return -1;
}
} }
public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> { public async $fetchRecentPrice(currencies: string[], type: 'hour' | 'day'): Promise<PriceHistory> {

View File

@ -130,7 +130,11 @@ class PriceUpdater {
// Compute average price, non weighted // Compute average price, non weighted
prices = prices.filter(price => price > 0); prices = prices.filter(price => price > 0);
this.latestPrices[currency] = Math.round((prices.reduce((partialSum, a) => partialSum + a, 0)) / prices.length); if (prices.length === 0) {
this.latestPrices[currency] = -1;
} else {
this.latestPrices[currency] = Math.round((prices.reduce((partialSum, a) => partialSum + a, 0)) / prices.length);
}
} }
logger.info(`Latest BTC fiat averaged price: ${JSON.stringify(this.latestPrices)}`); logger.info(`Latest BTC fiat averaged price: ${JSON.stringify(this.latestPrices)}`);

View File

@ -17,7 +17,7 @@ export function prepareBlock(block: any): BlockExtended {
extras: { extras: {
coinbaseRaw: block.coinbase_raw ?? block.extras?.coinbaseRaw, coinbaseRaw: block.coinbase_raw ?? block.extras?.coinbaseRaw,
medianFee: block.medianFee ?? block.median_fee ?? block.extras?.medianFee, medianFee: block.medianFee ?? block.median_fee ?? block.extras?.medianFee,
feeRange: block.feeRange ?? block.fee_span, feeRange: block.feeRange ?? block?.extras?.feeRange ?? block.fee_span,
reward: block.reward ?? block?.extras?.reward, reward: block.reward ?? block?.extras?.reward,
totalFees: block.totalFees ?? block?.fees ?? block?.extras?.totalFees, totalFees: block.totalFees ?? block?.fees ?? block?.extras?.totalFees,
avgFee: block?.extras?.avgFee ?? block.avg_fee, avgFee: block?.extras?.avgFee ?? block.avg_fee,

View File

@ -1,7 +1,9 @@
[main] [main]
host = https://www.transifex.com host = https://www.transifex.com
[mempool.frontend-src-locale-messages-xlf--master] [o:mempool:p:mempool:r:frontend-src-locale-messages-xlf--master]
file_filter = frontend/src/locale/messages.<lang>.xlf file_filter = frontend/src/locale/messages.<lang>.xlf
source_file = frontend/src/locale/messages.en-US.xlf
source_lang = en-US source_lang = en-US
type = XLIFF type = XLIFF

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ngb.carousel.slide-number" datatype="html"> <trans-unit id="ngb.carousel.slide-number" datatype="html">
<source> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> of <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </source> <source> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> of <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </source>
<target> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> z <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context>
<context context-type="linenumber">175,181</context> <context context-type="linenumber">175,181</context>
@ -147,6 +148,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ngb.progressbar.value" datatype="html"> <trans-unit id="ngb.progressbar.value" datatype="html">
<source><x id="INTERPOLATION" equiv-text="* The maximal"/></source> <source><x id="INTERPOLATION" equiv-text="* The maximal"/></source>
<target><x id="INTERPOLATION" equiv-text="* The maximal"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context> <context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context>
<context context-type="linenumber">30,33</context> <context context-type="linenumber">30,33</context>
@ -357,7 +359,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,291</context> <context context-type="linenumber">303,304</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -382,7 +384,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">291,292</context> <context context-type="linenumber">304,305</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -424,7 +426,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">40,41</context> <context context-type="linenumber">38,39</context>
</context-group> </context-group>
<note priority="1" from="description">block.hash</note> <note priority="1" from="description">block.hash</note>
</trans-unit> </trans-unit>
@ -449,7 +451,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">44,46</context> <context context-type="linenumber">42,44</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -592,7 +594,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">49,51</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context>
@ -1052,7 +1054,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">246,247</context> <context context-type="linenumber">245,246</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -1530,7 +1532,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">57,60</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="address-label.multisig" datatype="html"> <trans-unit id="address-label.multisig" datatype="html">
@ -1666,7 +1668,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">29,31</context> <context context-type="linenumber">31,33</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context>
@ -1888,7 +1890,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">30,31</context> <context context-type="linenumber">32,33</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ticker header</note> <note priority="1" from="description">Asset ticker header</note>
</trans-unit> </trans-unit>
@ -1901,7 +1903,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">31,34</context> <context context-type="linenumber">33,36</context>
</context-group> </context-group>
<note priority="1" from="description">Asset Issuer Domain header</note> <note priority="1" from="description">Asset Issuer Domain header</note>
</trans-unit> </trans-unit>
@ -1914,7 +1916,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">32,36</context> <context context-type="linenumber">34,38</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ID header</note> <note priority="1" from="description">Asset ID header</note>
</trans-unit> </trans-unit>
@ -1923,7 +1925,7 @@
<target>Chyba při načítání dat aktiv.</target> <target>Chyba při načítání dat aktiv.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">48,53</context> <context context-type="linenumber">50,55</context>
</context-group> </context-group>
<note priority="1" from="description">Asset data load error</note> <note priority="1" from="description">Asset data load error</note>
</trans-unit> </trans-unit>
@ -2121,6 +2123,7 @@
</trans-unit> </trans-unit>
<trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html"> <trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html">
<source>not available</source> <source>not available</source>
<target>není k dispozici</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
@ -2140,7 +2143,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476</context> <context context-type="linenumber">478</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context>
@ -2166,7 +2169,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476,477</context> <context context-type="linenumber">478,479</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2188,7 +2191,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">479,481</context> <context context-type="linenumber">481,483</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context>
@ -2200,7 +2203,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">38,39</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">Transaction fee rate</note> <note priority="1" from="description">Transaction fee rate</note>
<note priority="1" from="meaning">transaction.fee-rate</note> <note priority="1" from="meaning">transaction.fee-rate</note>
@ -2218,11 +2221,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">125,128</context> <context context-type="linenumber">123,126</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -2282,11 +2285,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">481,484</context> <context context-type="linenumber">483,486</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">492,494</context> <context context-type="linenumber">494,496</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2298,7 +2301,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">204,208</context> <context context-type="linenumber">206,210</context>
</context-group> </context-group>
<note priority="1" from="description">sat/vB</note> <note priority="1" from="description">sat/vB</note>
<note priority="1" from="meaning">shared.sat-vbyte</note> <note priority="1" from="meaning">shared.sat-vbyte</note>
@ -2323,6 +2326,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html"> <trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html">
<source>Audit status</source> <source>Audit status</source>
<target>Stav auditu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">36</context> <context context-type="linenumber">36</context>
@ -2331,6 +2335,7 @@
</trans-unit> </trans-unit>
<trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html"> <trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html">
<source>Match</source> <source>Match</source>
<target>Shoda</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">38</context>
@ -2339,6 +2344,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html"> <trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html">
<source>Removed</source> <source>Removed</source>
<target>Odstraněno</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">39</context> <context context-type="linenumber">39</context>
@ -2347,6 +2353,7 @@
</trans-unit> </trans-unit>
<trans-unit id="f0136f1a1d77aa656e0ebd0f3c023118dd2a2776" datatype="html"> <trans-unit id="f0136f1a1d77aa656e0ebd0f3c023118dd2a2776" datatype="html">
<source>Marginal fee rate</source> <source>Marginal fee rate</source>
<target>Mezní sazba poplatku</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">40</context>
@ -2359,6 +2366,7 @@
</trans-unit> </trans-unit>
<trans-unit id="d702ad6f00c620c9658ac1ad8184d5fe5bc099fb" datatype="html"> <trans-unit id="d702ad6f00c620c9658ac1ad8184d5fe5bc099fb" datatype="html">
<source>Recently broadcasted</source> <source>Recently broadcasted</source>
<target>Nedávno odvysílané</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">41</context> <context context-type="linenumber">41</context>
@ -2462,7 +2470,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">50,52</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2510,7 +2518,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">54,56</context> <context context-type="linenumber">52,54</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2548,7 +2556,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">128,129</context> <context context-type="linenumber">126,127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2565,11 +2573,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">133,135</context> <context context-type="linenumber">131,133</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">159,162</context> <context context-type="linenumber">157,160</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2587,7 +2595,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">168,170</context> <context context-type="linenumber">166,168</context>
</context-group> </context-group>
<note priority="1" from="description">block.miner</note> <note priority="1" from="description">block.miner</note>
</trans-unit> </trans-unit>
@ -2600,7 +2608,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.ts</context> <context context-type="sourcefile">src/app/components/block/block.component.ts</context>
<context context-type="linenumber">227</context> <context context-type="linenumber">234</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html"> <trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html">
@ -2625,20 +2633,29 @@
</context-group> </context-group>
<note priority="1" from="description">Previous Block</note> <note priority="1" from="description">Previous Block</note>
</trans-unit> </trans-unit>
<trans-unit id="930c93e0c7afdf0f8d926773d5157c803bdc86e1" datatype="html"> <trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Block health</source> <source>Health</source>
<target>Zdraví</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">56</context>
</context-group> </context-group>
<note priority="1" from="description">block.health</note> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit> </trans-unit>
<trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html"> <trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html">
<source>Unknown</source> <source>Unknown</source>
<target>Neznámo</target> <target>Neznámo</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">69,72</context> <context context-type="linenumber">67,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2667,7 +2684,7 @@
<target>Rozsah poplatků</target> <target>Rozsah poplatků</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">124,125</context> <context context-type="linenumber">122,123</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2680,7 +2697,7 @@
<target>Na základě průměrné transakce nativního segwitu 140 vBytů</target> <target>Na základě průměrné transakce nativního segwitu 140 vBytů</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129,131</context> <context context-type="linenumber">127,129</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context> <context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context>
@ -2709,44 +2726,61 @@
<target>Vytěžené + poplatky:</target> <target>Vytěžené + poplatky:</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">148,151</context> <context context-type="linenumber">146,149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">163,167</context> <context context-type="linenumber">161,165</context>
</context-group> </context-group>
<note priority="1" from="description">Total subsidy and fees in a block</note> <note priority="1" from="description">Total subsidy and fees in a block</note>
<note priority="1" from="meaning">block.subsidy-and-fees</note> <note priority="1" from="meaning">block.subsidy-and-fees</note>
</trans-unit> </trans-unit>
<trans-unit id="26f41d32df1646d45fcb03fe6952fb3eccf60b0f" datatype="html"> <trans-unit id="23fa95fce7b4badf5ad584d4a1712d558266266f" datatype="html">
<source>Projected</source> <source>Expected</source>
<target>Očekávané</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">210,212</context> <context context-type="linenumber">209</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected</note> <note priority="1" from="description">block.expected</note>
</trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">209,210</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">215,217</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit> </trans-unit>
<trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html"> <trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html">
<source>Actual</source> <source>Actual</source>
<target>Aktuální</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">212,216</context> <context context-type="linenumber">211,215</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual</note> <note priority="1" from="description">block.actual</note>
</trans-unit> </trans-unit>
<trans-unit id="a37e529c0d7b39d95861dd019cb78bb9ac9a3c5d" datatype="html"> <trans-unit id="97577daae15cc7f30ab4d0f4f4dfb8045477aefd" datatype="html">
<source>Projected Block</source> <source>Expected Block</source>
<target>Očekávaný blok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">216,218</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected-block</note> <note priority="1" from="description">block.expected-block</note>
</trans-unit> </trans-unit>
<trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html"> <trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html">
<source>Actual Block</source> <source>Actual Block</source>
<target>Aktuální blok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">225,227</context> <context context-type="linenumber">224</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual-block</note> <note priority="1" from="description">block.actual-block</note>
</trans-unit> </trans-unit>
@ -2755,7 +2789,7 @@
<target>Bity</target> <target>Bity</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">250,252</context> <context context-type="linenumber">249,251</context>
</context-group> </context-group>
<note priority="1" from="description">block.bits</note> <note priority="1" from="description">block.bits</note>
</trans-unit> </trans-unit>
@ -2764,7 +2798,7 @@
<target>Merklův kořen</target> <target>Merklův kořen</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">254,256</context> <context context-type="linenumber">253,255</context>
</context-group> </context-group>
<note priority="1" from="description">block.merkle-root</note> <note priority="1" from="description">block.merkle-root</note>
</trans-unit> </trans-unit>
@ -2773,7 +2807,7 @@
<target>Obtížnost</target> <target>Obtížnost</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">265,268</context> <context context-type="linenumber">264,267</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context> <context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context>
@ -2802,7 +2836,7 @@
<target>Nonce</target> <target>Nonce</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">269,271</context> <context context-type="linenumber">268,270</context>
</context-group> </context-group>
<note priority="1" from="description">block.nonce</note> <note priority="1" from="description">block.nonce</note>
</trans-unit> </trans-unit>
@ -2811,16 +2845,26 @@
<target>Hlavička bloku Hex</target> <target>Hlavička bloku Hex</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">273,274</context> <context context-type="linenumber">272,273</context>
</context-group> </context-group>
<note priority="1" from="description">block.header</note> <note priority="1" from="description">block.header</note>
</trans-unit> </trans-unit>
<trans-unit id="ccf00caac258749fa1c5fd488fb15368fa6fce37" datatype="html">
<source>Audit</source>
<target>Audit</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,294</context>
</context-group>
<note priority="1" from="description">Toggle Audit</note>
<note priority="1" from="meaning">block.toggle-audit</note>
</trans-unit>
<trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html"> <trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html">
<source>Details</source> <source>Details</source>
<target>Detaily</target> <target>Detaily</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">284,288</context> <context context-type="linenumber">297,301</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2846,11 +2890,11 @@
<target>Chyba při načítání dat.</target> <target>Chyba při načítání dat.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">303,305</context> <context context-type="linenumber">316,318</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">339,343</context> <context context-type="linenumber">355,359</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
@ -2872,9 +2916,10 @@
</trans-unit> </trans-unit>
<trans-unit id="9f63968580fcea609d6b9e7a5b6ba7180b54e18f" datatype="html"> <trans-unit id="9f63968580fcea609d6b9e7a5b6ba7180b54e18f" datatype="html">
<source>Why is this block empty?</source> <source>Why is this block empty?</source>
<target>Proč je tento blok prázdný?</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">361,367</context> <context context-type="linenumber">377,383</context>
</context-group> </context-group>
<note priority="1" from="description">block.empty-block-explanation</note> <note priority="1" from="description">block.empty-block-explanation</note>
</trans-unit> </trans-unit>
@ -2920,18 +2965,6 @@
</context-group> </context-group>
<note priority="1" from="description">latest-blocks.mined</note> <note priority="1" from="description">latest-blocks.mined</note>
</trans-unit> </trans-unit>
<trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Health</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit>
<trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html"> <trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html">
<source>Reward</source> <source>Reward</source>
<target>Odměna</target> <target>Odměna</target>
@ -2995,7 +3028,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">210,214</context> <context context-type="linenumber">212,216</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.txs</note> <note priority="1" from="description">dashboard.txs</note>
</trans-unit> </trans-unit>
@ -3234,7 +3267,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">237,238</context> <context context-type="linenumber">239,240</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.incoming-transactions</note> <note priority="1" from="description">dashboard.incoming-transactions</note>
</trans-unit> </trans-unit>
@ -3247,7 +3280,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">240,243</context> <context context-type="linenumber">242,245</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.backend-is-synchronizing</note> <note priority="1" from="description">dashboard.backend-is-synchronizing</note>
</trans-unit> </trans-unit>
@ -3260,7 +3293,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">245,250</context> <context context-type="linenumber">247,252</context>
</context-group> </context-group>
<note priority="1" from="description">vB/s</note> <note priority="1" from="description">vB/s</note>
<note priority="1" from="meaning">shared.vbytes-per-second</note> <note priority="1" from="meaning">shared.vbytes-per-second</note>
@ -3274,7 +3307,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">208,209</context> <context context-type="linenumber">210,211</context>
</context-group> </context-group>
<note priority="1" from="description">Unconfirmed count</note> <note priority="1" from="description">Unconfirmed count</note>
<note priority="1" from="meaning">dashboard.unconfirmed</note> <note priority="1" from="meaning">dashboard.unconfirmed</note>
@ -3531,7 +3564,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">51,53</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context> <context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context>
@ -3557,7 +3590,7 @@
<target>Lightning průzkumník</target> <target>Lightning průzkumník</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,47</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context> <context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context>
@ -3565,21 +3598,12 @@
</context-group> </context-group>
<note priority="1" from="description">master-page.lightning</note> <note priority="1" from="description">master-page.lightning</note>
</trans-unit> </trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">45,48</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit>
<trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html"> <trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html">
<source>Documentation</source> <source>Documentation</source>
<target>Dokumentace</target> <target>Dokumentace</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">55,57</context> <context context-type="linenumber">54,56</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/docs/docs.component.html</context> <context context-type="sourcefile">src/app/docs/docs/docs.component.html</context>
@ -4037,7 +4061,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">154,161</context> <context context-type="linenumber">154,162</context>
</context-group> </context-group>
<note priority="1" from="description">Broadcast Transaction</note> <note priority="1" from="description">Broadcast Transaction</note>
<note priority="1" from="meaning">shared.broadcast-transaction</note> <note priority="1" from="meaning">shared.broadcast-transaction</note>
@ -4083,6 +4107,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1d9f405ab98a5f79d98b439de29fc8baca46b97c" datatype="html"> <trans-unit id="1d9f405ab98a5f79d98b439de29fc8baca46b97c" datatype="html">
<source>Avg Block Fees</source> <source>Avg Block Fees</source>
<target>Průměrné poplatky za blok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">17</context> <context context-type="linenumber">17</context>
@ -4095,6 +4120,7 @@
</trans-unit> </trans-unit>
<trans-unit id="a0d4ab5b063e7be1c9ea980f5fd6ce1b5384ad0b" datatype="html"> <trans-unit id="a0d4ab5b063e7be1c9ea980f5fd6ce1b5384ad0b" datatype="html">
<source>Average fees per block in the past 144 blocks</source> <source>Average fees per block in the past 144 blocks</source>
<target>Průměrné poplatky za blok v posledních 144 blocích</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">18,20</context> <context context-type="linenumber">18,20</context>
@ -4103,6 +4129,7 @@
</trans-unit> </trans-unit>
<trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html"> <trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html">
<source>BTC/block</source> <source>BTC/block</source>
<target>BTC/blok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">21,24</context> <context context-type="linenumber">21,24</context>
@ -4112,6 +4139,7 @@
</trans-unit> </trans-unit>
<trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html"> <trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html">
<source>Avg Tx Fee</source> <source>Avg Tx Fee</source>
<target>Prům. poplatek Tx</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@ -4429,6 +4457,7 @@
</trans-unit> </trans-unit>
<trans-unit id="72cfda88d5ab4851cba76abb402cae8f03ab6c6b" datatype="html"> <trans-unit id="72cfda88d5ab4851cba76abb402cae8f03ab6c6b" datatype="html">
<source>This transaction replaced:</source> <source>This transaction replaced:</source>
<target>Tato transakce nahradila:</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">10,12</context> <context context-type="linenumber">10,12</context>
@ -4438,6 +4467,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ed1b6bfe4b7beca445156e6bb92a76d3cdebe945" datatype="html"> <trans-unit id="ed1b6bfe4b7beca445156e6bb92a76d3cdebe945" datatype="html">
<source>Replaced</source> <source>Replaced</source>
<target>Nahrazeno</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">36,39</context> <context context-type="linenumber">36,39</context>
@ -4631,7 +4661,7 @@
<target>Efektivní poplatek</target> <target>Efektivní poplatek</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">489,492</context> <context context-type="linenumber">491,494</context>
</context-group> </context-group>
<note priority="1" from="description">Effective transaction fee rate</note> <note priority="1" from="description">Effective transaction fee rate</note>
<note priority="1" from="meaning">transaction.effective-fee-rate</note> <note priority="1" from="meaning">transaction.effective-fee-rate</note>
@ -4777,6 +4807,7 @@
</trans-unit> </trans-unit>
<trans-unit id="d70397ee91f6c9ec91f1c1dff88126f8f9b7c2c4" datatype="html"> <trans-unit id="d70397ee91f6c9ec91f1c1dff88126f8f9b7c2c4" datatype="html">
<source>Show more inputs to reveal fee data</source> <source>Show more inputs to reveal fee data</source>
<target>Zobrazit další vstupy pro odhalení údajů o poplatcích</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
<context context-type="linenumber">288,291</context> <context context-type="linenumber">288,291</context>
@ -4785,6 +4816,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ea7c261363dc5f6134b7bacba2a1ef97f4ff7859" datatype="html"> <trans-unit id="ea7c261363dc5f6134b7bacba2a1ef97f4ff7859" datatype="html">
<source><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> remaining</source> <source><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> remaining</source>
<target><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> zbývající</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
<context context-type="linenumber">330,331</context> <context context-type="linenumber">330,331</context>
@ -4935,6 +4967,7 @@
</trans-unit> </trans-unit>
<trans-unit id="b0fb884cf71b19e3a4d146146d260ccedd9d50a5" datatype="html"> <trans-unit id="b0fb884cf71b19e3a4d146146d260ccedd9d50a5" datatype="html">
<source>This transaction does not use Taproot</source> <source>This transaction does not use Taproot</source>
<target>Tato transakce nepoužívá Taproot</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">18</context> <context context-type="linenumber">18</context>
@ -5051,7 +5084,7 @@
<target>Minimální poplatek</target> <target>Minimální poplatek</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">201,202</context> <context context-type="linenumber">203,204</context>
</context-group> </context-group>
<note priority="1" from="description">Minimum mempool fee</note> <note priority="1" from="description">Minimum mempool fee</note>
<note priority="1" from="meaning">dashboard.minimum-fee</note> <note priority="1" from="meaning">dashboard.minimum-fee</note>
@ -5061,7 +5094,7 @@
<target>Čištění</target> <target>Čištění</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">202,203</context> <context context-type="linenumber">204,205</context>
</context-group> </context-group>
<note priority="1" from="description">Purgin below fee</note> <note priority="1" from="description">Purgin below fee</note>
<note priority="1" from="meaning">dashboard.purging</note> <note priority="1" from="meaning">dashboard.purging</note>
@ -5071,7 +5104,7 @@
<target>Využití paměti</target> <target>Využití paměti</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">214,215</context> <context context-type="linenumber">216,217</context>
</context-group> </context-group>
<note priority="1" from="description">Memory usage</note> <note priority="1" from="description">Memory usage</note>
<note priority="1" from="meaning">dashboard.memory-usage</note> <note priority="1" from="meaning">dashboard.memory-usage</note>
@ -5081,7 +5114,7 @@
<target>L-BTC v oběhu</target> <target>L-BTC v oběhu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">228,230</context> <context context-type="linenumber">230,232</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note> <note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note>
</trans-unit> </trans-unit>
@ -5090,7 +5123,7 @@
<target>Služba REST API</target> <target>Služba REST API</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.title</note> <note priority="1" from="description">api-docs.title</note>
</trans-unit> </trans-unit>
@ -5099,11 +5132,11 @@
<target>Endpoint</target> <target>Endpoint</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">48,49</context> <context context-type="linenumber">50,51</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">102,105</context> <context context-type="linenumber">104,107</context>
</context-group> </context-group>
<note priority="1" from="description">Api docs endpoint</note> <note priority="1" from="description">Api docs endpoint</note>
</trans-unit> </trans-unit>
@ -5112,11 +5145,11 @@
<target>Popis</target> <target>Popis</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">67,68</context> <context context-type="linenumber">69,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">106,107</context> <context context-type="linenumber">108,109</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html">
@ -5124,7 +5157,7 @@
<target>Výchozí push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>akce: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro vyjádření toho, co chcete pushnout. K dispozici: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> a <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>. <x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Push transakce související s adresou: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro příjem všech nových transakcí obsahujících tuto adresu jako vstup nebo výstup. Vrací pole transakcí. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro nové transakce mempoolu a <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro nové transakce potvrzené blokem.</target> <target>Výchozí push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>akce: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro vyjádření toho, co chcete pushnout. K dispozici: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> a <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>. <x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Push transakce související s adresou: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro příjem všech nových transakcí obsahujících tuto adresu jako vstup nebo výstup. Vrací pole transakcí. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro nové transakce mempoolu a <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> pro nové transakce potvrzené blokem.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">107,108</context> <context context-type="linenumber">109,110</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.websocket.websocket</note> <note priority="1" from="description">api-docs.websocket.websocket</note>
</trans-unit> </trans-unit>
@ -5297,12 +5330,13 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">120,121</context> <context context-type="linenumber">123,124</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.x-channels</note> <note priority="1" from="description">lightning.x-channels</note>
</trans-unit> </trans-unit>
<trans-unit id="4e64e04c01e8f5fc09c41cb8942dcc3af0398b28" datatype="html"> <trans-unit id="4e64e04c01e8f5fc09c41cb8942dcc3af0398b28" datatype="html">
<source>Starting balance</source> <source>Starting balance</source>
<target>Počáteční zůstatek</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context>
<context context-type="linenumber">6</context> <context context-type="linenumber">6</context>
@ -5312,6 +5346,7 @@
</trans-unit> </trans-unit>
<trans-unit id="5c4bfd47a4f4d7cb99912f028494fe2530d36d57" datatype="html"> <trans-unit id="5c4bfd47a4f4d7cb99912f028494fe2530d36d57" datatype="html">
<source>Closing balance</source> <source>Closing balance</source>
<target>Konečný zůstatek</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context>
<context context-type="linenumber">12</context> <context context-type="linenumber">12</context>
@ -5341,7 +5376,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">65,66</context> <context context-type="linenumber">68,69</context>
</context-group> </context-group>
<note priority="1" from="description">status.inactive</note> <note priority="1" from="description">status.inactive</note>
</trans-unit> </trans-unit>
@ -5358,7 +5393,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">66,68</context> <context context-type="linenumber">69,71</context>
</context-group> </context-group>
<note priority="1" from="description">status.active</note> <note priority="1" from="description">status.active</note>
</trans-unit> </trans-unit>
@ -5379,7 +5414,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">68,70</context> <context context-type="linenumber">71,73</context>
</context-group> </context-group>
<note priority="1" from="description">status.closed</note> <note priority="1" from="description">status.closed</note>
</trans-unit> </trans-unit>
@ -5409,7 +5444,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">40,43</context> <context context-type="linenumber">43,46</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context>
@ -5525,12 +5560,13 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">42,43</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.closing_date</note> <note priority="1" from="description">lightning.closing_date</note>
</trans-unit> </trans-unit>
<trans-unit id="1f0b0f2c90de4f3f0eb2c138eed38f4e9ac7a13e" datatype="html"> <trans-unit id="1f0b0f2c90de4f3f0eb2c138eed38f4e9ac7a13e" datatype="html">
<source>Closed by</source> <source>Closed by</source>
<target>Uzavřeno</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">52,54</context>
@ -5577,7 +5613,7 @@
<target>Žádné kanály k zobrazení</target> <target>Žádné kanály k zobrazení</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">29,35</context> <context context-type="linenumber">29,37</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.empty-channels-list</note> <note priority="1" from="description">lightning.empty-channels-list</note>
</trans-unit> </trans-unit>
@ -5586,7 +5622,7 @@
<target>Alias</target> <target>Alias</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">35,37</context> <context context-type="linenumber">38,40</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/group/group.component.html</context> <context context-type="sourcefile">src/app/lightning/group/group.component.html</context>
@ -5623,7 +5659,7 @@
<target>Status</target> <target>Status</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">37,38</context> <context context-type="linenumber">40,41</context>
</context-group> </context-group>
<note priority="1" from="description">status</note> <note priority="1" from="description">status</note>
</trans-unit> </trans-unit>
@ -5632,7 +5668,7 @@
<target>ID kanálu</target> <target>ID kanálu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">41,45</context> <context context-type="linenumber">44,48</context>
</context-group> </context-group>
<note priority="1" from="description">channels.id</note> <note priority="1" from="description">channels.id</note>
</trans-unit> </trans-unit>
@ -5641,11 +5677,11 @@
<target>sats</target> <target>sats</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">60,64</context> <context context-type="linenumber">63,67</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">84,88</context> <context context-type="linenumber">87,91</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
@ -6052,6 +6088,7 @@
</trans-unit> </trans-unit>
<trans-unit id="7b8687bbc13bbf62288689606dcab9784a3eb53b" datatype="html"> <trans-unit id="7b8687bbc13bbf62288689606dcab9784a3eb53b" datatype="html">
<source>Fee distribution</source> <source>Fee distribution</source>
<target>Rozložení poplatků</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@ -6147,6 +6184,7 @@
</trans-unit> </trans-unit>
<trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html"> <trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html">
<source>Avg channel distance</source> <source>Avg channel distance</source>
<target>Průměrná vzdálenost kanálů</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">56,57</context> <context context-type="linenumber">56,57</context>
@ -6186,6 +6224,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e128630e07a4c467f51b246a31c5734d5fb1a2c2" datatype="html"> <trans-unit id="e128630e07a4c467f51b246a31c5734d5fb1a2c2" datatype="html">
<source>Liquidity ad</source> <source>Liquidity ad</source>
<target>Inzerát na likviditu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">138,141</context> <context context-type="linenumber">138,141</context>
@ -6194,6 +6233,7 @@
</trans-unit> </trans-unit>
<trans-unit id="bc84b5a9a70217104a53c7139e30b392be6520b7" datatype="html"> <trans-unit id="bc84b5a9a70217104a53c7139e30b392be6520b7" datatype="html">
<source>Lease fee rate</source> <source>Lease fee rate</source>
<target>Sazba poplatku za pronájem</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">144,147</context> <context context-type="linenumber">144,147</context>
@ -6203,6 +6243,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ee807dd54b4a45eeba284744c64774de1ab5e4f1" datatype="html"> <trans-unit id="ee807dd54b4a45eeba284744c64774de1ab5e4f1" datatype="html">
<source>Lease base fee</source> <source>Lease base fee</source>
<target>Základní poplatek za pronájem</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">152,154</context> <context context-type="linenumber">152,154</context>
@ -6211,6 +6252,7 @@
</trans-unit> </trans-unit>
<trans-unit id="5e348f3d51c3bb283c16572bee1e293ea991cf49" datatype="html"> <trans-unit id="5e348f3d51c3bb283c16572bee1e293ea991cf49" datatype="html">
<source>Funding weight</source> <source>Funding weight</source>
<target>Váha financování</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">158,159</context> <context context-type="linenumber">158,159</context>
@ -6219,6 +6261,7 @@
</trans-unit> </trans-unit>
<trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html"> <trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html">
<source>Channel fee rate</source> <source>Channel fee rate</source>
<target>Sazba poplatku za kanál</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">168,171</context> <context context-type="linenumber">168,171</context>
@ -6228,6 +6271,7 @@
</trans-unit> </trans-unit>
<trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html"> <trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html">
<source>Channel base fee</source> <source>Channel base fee</source>
<target>Základní poplatek za kanál</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">176,178</context> <context context-type="linenumber">176,178</context>
@ -6236,6 +6280,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e8e09fa12864e94f094a2a7c8c97cfdf0cff8aab" datatype="html"> <trans-unit id="e8e09fa12864e94f094a2a7c8c97cfdf0cff8aab" datatype="html">
<source>Compact lease</source> <source>Compact lease</source>
<target>Kompaktní pronájem</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">188,190</context> <context context-type="linenumber">188,190</context>
@ -6244,6 +6289,7 @@
</trans-unit> </trans-unit>
<trans-unit id="aa687f4987e2d4e0010be692d402174962ece70e" datatype="html"> <trans-unit id="aa687f4987e2d4e0010be692d402174962ece70e" datatype="html">
<source>TLV extension records</source> <source>TLV extension records</source>
<target>Záznamy o rozšíření TLV</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">199,202</context> <context context-type="linenumber">199,202</context>
@ -6324,6 +6370,7 @@
</trans-unit> </trans-unit>
<trans-unit id="6391724349488018234" datatype="html"> <trans-unit id="6391724349488018234" datatype="html">
<source>Indexing in progress</source> <source>Indexing in progress</source>
<target>Probíhá indexování</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context> <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
<context context-type="linenumber">121,116</context> <context context-type="linenumber">121,116</context>
@ -6591,6 +6638,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e422817608e8d55e08b45a1da2e118eb42815af4" datatype="html"> <trans-unit id="e422817608e8d55e08b45a1da2e118eb42815af4" datatype="html">
<source>Active nodes</source> <source>Active nodes</source>
<target>Aktivní uzly</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
<context context-type="linenumber">14,18</context> <context context-type="linenumber">14,18</context>

View File

@ -11,6 +11,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ngb.carousel.slide-number" datatype="html"> <trans-unit id="ngb.carousel.slide-number" datatype="html">
<source> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> of <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </source> <source> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> of <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </source>
<target> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> von <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context>
<context context-type="linenumber">175,181</context> <context context-type="linenumber">175,181</context>
@ -147,6 +148,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ngb.progressbar.value" datatype="html"> <trans-unit id="ngb.progressbar.value" datatype="html">
<source><x id="INTERPOLATION" equiv-text="* The maximal"/></source> <source><x id="INTERPOLATION" equiv-text="* The maximal"/></source>
<target><x id="INTERPOLATION" equiv-text="* The maximal"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context> <context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context>
<context context-type="linenumber">30,33</context> <context context-type="linenumber">30,33</context>
@ -357,7 +359,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,291</context> <context context-type="linenumber">303,304</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -382,7 +384,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">291,292</context> <context context-type="linenumber">304,305</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -424,7 +426,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">40,41</context> <context context-type="linenumber">38,39</context>
</context-group> </context-group>
<note priority="1" from="description">block.hash</note> <note priority="1" from="description">block.hash</note>
</trans-unit> </trans-unit>
@ -449,7 +451,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">44,46</context> <context context-type="linenumber">42,44</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -592,7 +594,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">49,51</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context>
@ -1052,7 +1054,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">246,247</context> <context context-type="linenumber">245,246</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -1530,7 +1532,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">57,60</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="address-label.multisig" datatype="html"> <trans-unit id="address-label.multisig" datatype="html">
@ -1666,7 +1668,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">29,31</context> <context context-type="linenumber">31,33</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context>
@ -1888,7 +1890,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">30,31</context> <context context-type="linenumber">32,33</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ticker header</note> <note priority="1" from="description">Asset ticker header</note>
</trans-unit> </trans-unit>
@ -1901,7 +1903,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">31,34</context> <context context-type="linenumber">33,36</context>
</context-group> </context-group>
<note priority="1" from="description">Asset Issuer Domain header</note> <note priority="1" from="description">Asset Issuer Domain header</note>
</trans-unit> </trans-unit>
@ -1914,7 +1916,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">32,36</context> <context context-type="linenumber">34,38</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ID header</note> <note priority="1" from="description">Asset ID header</note>
</trans-unit> </trans-unit>
@ -1923,7 +1925,7 @@
<target>Fehler beim Laden der Daten der Vermögenswerte.</target> <target>Fehler beim Laden der Daten der Vermögenswerte.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">48,53</context> <context context-type="linenumber">50,55</context>
</context-group> </context-group>
<note priority="1" from="description">Asset data load error</note> <note priority="1" from="description">Asset data load error</note>
</trans-unit> </trans-unit>
@ -2121,6 +2123,7 @@
</trans-unit> </trans-unit>
<trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html"> <trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html">
<source>not available</source> <source>not available</source>
<target>nicht verfügbar</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
@ -2140,7 +2143,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476</context> <context context-type="linenumber">478</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context>
@ -2166,7 +2169,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476,477</context> <context context-type="linenumber">478,479</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2188,7 +2191,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">479,481</context> <context context-type="linenumber">481,483</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context>
@ -2200,7 +2203,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">38,39</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">Transaction fee rate</note> <note priority="1" from="description">Transaction fee rate</note>
<note priority="1" from="meaning">transaction.fee-rate</note> <note priority="1" from="meaning">transaction.fee-rate</note>
@ -2218,11 +2221,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">125,128</context> <context context-type="linenumber">123,126</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -2282,11 +2285,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">481,484</context> <context context-type="linenumber">483,486</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">492,494</context> <context context-type="linenumber">494,496</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2298,7 +2301,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">204,208</context> <context context-type="linenumber">206,210</context>
</context-group> </context-group>
<note priority="1" from="description">sat/vB</note> <note priority="1" from="description">sat/vB</note>
<note priority="1" from="meaning">shared.sat-vbyte</note> <note priority="1" from="meaning">shared.sat-vbyte</note>
@ -2323,6 +2326,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html"> <trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html">
<source>Audit status</source> <source>Audit status</source>
<target>Audit Status</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">36</context> <context context-type="linenumber">36</context>
@ -2331,6 +2335,7 @@
</trans-unit> </trans-unit>
<trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html"> <trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html">
<source>Match</source> <source>Match</source>
<target>Treffer</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">38</context>
@ -2339,6 +2344,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html"> <trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html">
<source>Removed</source> <source>Removed</source>
<target>Entfernt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">39</context> <context context-type="linenumber">39</context>
@ -2347,6 +2353,7 @@
</trans-unit> </trans-unit>
<trans-unit id="f0136f1a1d77aa656e0ebd0f3c023118dd2a2776" datatype="html"> <trans-unit id="f0136f1a1d77aa656e0ebd0f3c023118dd2a2776" datatype="html">
<source>Marginal fee rate</source> <source>Marginal fee rate</source>
<target>Grenz-Gebührensatz</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">40</context>
@ -2359,6 +2366,7 @@
</trans-unit> </trans-unit>
<trans-unit id="d702ad6f00c620c9658ac1ad8184d5fe5bc099fb" datatype="html"> <trans-unit id="d702ad6f00c620c9658ac1ad8184d5fe5bc099fb" datatype="html">
<source>Recently broadcasted</source> <source>Recently broadcasted</source>
<target>Jüngst ausgestrahlt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">41</context> <context context-type="linenumber">41</context>
@ -2462,7 +2470,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">50,52</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2510,7 +2518,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">54,56</context> <context context-type="linenumber">52,54</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2548,7 +2556,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">128,129</context> <context context-type="linenumber">126,127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2565,11 +2573,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">133,135</context> <context context-type="linenumber">131,133</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">159,162</context> <context context-type="linenumber">157,160</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2587,7 +2595,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">168,170</context> <context context-type="linenumber">166,168</context>
</context-group> </context-group>
<note priority="1" from="description">block.miner</note> <note priority="1" from="description">block.miner</note>
</trans-unit> </trans-unit>
@ -2600,7 +2608,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.ts</context> <context context-type="sourcefile">src/app/components/block/block.component.ts</context>
<context context-type="linenumber">227</context> <context context-type="linenumber">234</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html"> <trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html">
@ -2625,20 +2633,29 @@
</context-group> </context-group>
<note priority="1" from="description">Previous Block</note> <note priority="1" from="description">Previous Block</note>
</trans-unit> </trans-unit>
<trans-unit id="930c93e0c7afdf0f8d926773d5157c803bdc86e1" datatype="html"> <trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Block health</source> <source>Health</source>
<target>Gesundheit</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">56</context>
</context-group> </context-group>
<note priority="1" from="description">block.health</note> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit> </trans-unit>
<trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html"> <trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html">
<source>Unknown</source> <source>Unknown</source>
<target>Unbekannt</target> <target>Unbekannt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">69,72</context> <context context-type="linenumber">67,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2667,7 +2684,7 @@
<target>Gebührenspanne</target> <target>Gebührenspanne</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">124,125</context> <context context-type="linenumber">122,123</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2680,7 +2697,7 @@
<target>Basierend auf einer durchschnittlichen nativen Segwit-Transaktion von 140 vByte</target> <target>Basierend auf einer durchschnittlichen nativen Segwit-Transaktion von 140 vByte</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129,131</context> <context context-type="linenumber">127,129</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context> <context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context>
@ -2709,44 +2726,61 @@
<target>Subvention + Gebühr</target> <target>Subvention + Gebühr</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">148,151</context> <context context-type="linenumber">146,149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">163,167</context> <context context-type="linenumber">161,165</context>
</context-group> </context-group>
<note priority="1" from="description">Total subsidy and fees in a block</note> <note priority="1" from="description">Total subsidy and fees in a block</note>
<note priority="1" from="meaning">block.subsidy-and-fees</note> <note priority="1" from="meaning">block.subsidy-and-fees</note>
</trans-unit> </trans-unit>
<trans-unit id="26f41d32df1646d45fcb03fe6952fb3eccf60b0f" datatype="html"> <trans-unit id="23fa95fce7b4badf5ad584d4a1712d558266266f" datatype="html">
<source>Projected</source> <source>Expected</source>
<target>Erwartet</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">210,212</context> <context context-type="linenumber">209</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected</note> <note priority="1" from="description">block.expected</note>
</trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">209,210</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">215,217</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit> </trans-unit>
<trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html"> <trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html">
<source>Actual</source> <source>Actual</source>
<target>Tatsächlich</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">212,216</context> <context context-type="linenumber">211,215</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual</note> <note priority="1" from="description">block.actual</note>
</trans-unit> </trans-unit>
<trans-unit id="a37e529c0d7b39d95861dd019cb78bb9ac9a3c5d" datatype="html"> <trans-unit id="97577daae15cc7f30ab4d0f4f4dfb8045477aefd" datatype="html">
<source>Projected Block</source> <source>Expected Block</source>
<target>Erwarteter Block</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">216,218</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected-block</note> <note priority="1" from="description">block.expected-block</note>
</trans-unit> </trans-unit>
<trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html"> <trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html">
<source>Actual Block</source> <source>Actual Block</source>
<target>Tatsächlicher Block</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">225,227</context> <context context-type="linenumber">224</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual-block</note> <note priority="1" from="description">block.actual-block</note>
</trans-unit> </trans-unit>
@ -2755,7 +2789,7 @@
<target>Bits</target> <target>Bits</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">250,252</context> <context context-type="linenumber">249,251</context>
</context-group> </context-group>
<note priority="1" from="description">block.bits</note> <note priority="1" from="description">block.bits</note>
</trans-unit> </trans-unit>
@ -2764,7 +2798,7 @@
<target>Merkle root</target> <target>Merkle root</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">254,256</context> <context context-type="linenumber">253,255</context>
</context-group> </context-group>
<note priority="1" from="description">block.merkle-root</note> <note priority="1" from="description">block.merkle-root</note>
</trans-unit> </trans-unit>
@ -2773,7 +2807,7 @@
<target>Schwierigkeit</target> <target>Schwierigkeit</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">265,268</context> <context context-type="linenumber">264,267</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context> <context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context>
@ -2802,7 +2836,7 @@
<target>Nonce</target> <target>Nonce</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">269,271</context> <context context-type="linenumber">268,270</context>
</context-group> </context-group>
<note priority="1" from="description">block.nonce</note> <note priority="1" from="description">block.nonce</note>
</trans-unit> </trans-unit>
@ -2811,16 +2845,26 @@
<target>Block-Header Hex</target> <target>Block-Header Hex</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">273,274</context> <context context-type="linenumber">272,273</context>
</context-group> </context-group>
<note priority="1" from="description">block.header</note> <note priority="1" from="description">block.header</note>
</trans-unit> </trans-unit>
<trans-unit id="ccf00caac258749fa1c5fd488fb15368fa6fce37" datatype="html">
<source>Audit</source>
<target>Prüfung</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,294</context>
</context-group>
<note priority="1" from="description">Toggle Audit</note>
<note priority="1" from="meaning">block.toggle-audit</note>
</trans-unit>
<trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html"> <trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html">
<source>Details</source> <source>Details</source>
<target>Details</target> <target>Details</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">284,288</context> <context context-type="linenumber">297,301</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2846,11 +2890,11 @@
<target>Fehler beim Laden der Daten.</target> <target>Fehler beim Laden der Daten.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">303,305</context> <context context-type="linenumber">316,318</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">339,343</context> <context context-type="linenumber">355,359</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
@ -2872,9 +2916,10 @@
</trans-unit> </trans-unit>
<trans-unit id="9f63968580fcea609d6b9e7a5b6ba7180b54e18f" datatype="html"> <trans-unit id="9f63968580fcea609d6b9e7a5b6ba7180b54e18f" datatype="html">
<source>Why is this block empty?</source> <source>Why is this block empty?</source>
<target>Weshalb dieser leere Block?</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">361,367</context> <context context-type="linenumber">377,383</context>
</context-group> </context-group>
<note priority="1" from="description">block.empty-block-explanation</note> <note priority="1" from="description">block.empty-block-explanation</note>
</trans-unit> </trans-unit>
@ -2920,18 +2965,6 @@
</context-group> </context-group>
<note priority="1" from="description">latest-blocks.mined</note> <note priority="1" from="description">latest-blocks.mined</note>
</trans-unit> </trans-unit>
<trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Health</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit>
<trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html"> <trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html">
<source>Reward</source> <source>Reward</source>
<target>Belohnung</target> <target>Belohnung</target>
@ -2995,7 +3028,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">210,214</context> <context context-type="linenumber">212,216</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.txs</note> <note priority="1" from="description">dashboard.txs</note>
</trans-unit> </trans-unit>
@ -3234,7 +3267,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">237,238</context> <context context-type="linenumber">239,240</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.incoming-transactions</note> <note priority="1" from="description">dashboard.incoming-transactions</note>
</trans-unit> </trans-unit>
@ -3247,7 +3280,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">240,243</context> <context context-type="linenumber">242,245</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.backend-is-synchronizing</note> <note priority="1" from="description">dashboard.backend-is-synchronizing</note>
</trans-unit> </trans-unit>
@ -3260,7 +3293,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">245,250</context> <context context-type="linenumber">247,252</context>
</context-group> </context-group>
<note priority="1" from="description">vB/s</note> <note priority="1" from="description">vB/s</note>
<note priority="1" from="meaning">shared.vbytes-per-second</note> <note priority="1" from="meaning">shared.vbytes-per-second</note>
@ -3274,7 +3307,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">208,209</context> <context context-type="linenumber">210,211</context>
</context-group> </context-group>
<note priority="1" from="description">Unconfirmed count</note> <note priority="1" from="description">Unconfirmed count</note>
<note priority="1" from="meaning">dashboard.unconfirmed</note> <note priority="1" from="meaning">dashboard.unconfirmed</note>
@ -3531,7 +3564,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">51,53</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context> <context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context>
@ -3557,7 +3590,7 @@
<target>Lightning Explorer</target> <target>Lightning Explorer</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,47</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context> <context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context>
@ -3565,21 +3598,12 @@
</context-group> </context-group>
<note priority="1" from="description">master-page.lightning</note> <note priority="1" from="description">master-page.lightning</note>
</trans-unit> </trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">45,48</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit>
<trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html"> <trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html">
<source>Documentation</source> <source>Documentation</source>
<target>Dokumentation</target> <target>Dokumentation</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">55,57</context> <context context-type="linenumber">54,56</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/docs/docs.component.html</context> <context context-type="sourcefile">src/app/docs/docs/docs.component.html</context>
@ -4037,7 +4061,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">154,161</context> <context context-type="linenumber">154,162</context>
</context-group> </context-group>
<note priority="1" from="description">Broadcast Transaction</note> <note priority="1" from="description">Broadcast Transaction</note>
<note priority="1" from="meaning">shared.broadcast-transaction</note> <note priority="1" from="meaning">shared.broadcast-transaction</note>
@ -4083,6 +4107,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1d9f405ab98a5f79d98b439de29fc8baca46b97c" datatype="html"> <trans-unit id="1d9f405ab98a5f79d98b439de29fc8baca46b97c" datatype="html">
<source>Avg Block Fees</source> <source>Avg Block Fees</source>
<target>Durchschn. Blockgebühren</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">17</context> <context context-type="linenumber">17</context>
@ -4095,6 +4120,7 @@
</trans-unit> </trans-unit>
<trans-unit id="a0d4ab5b063e7be1c9ea980f5fd6ce1b5384ad0b" datatype="html"> <trans-unit id="a0d4ab5b063e7be1c9ea980f5fd6ce1b5384ad0b" datatype="html">
<source>Average fees per block in the past 144 blocks</source> <source>Average fees per block in the past 144 blocks</source>
<target>Durchschnittliche Gebühren pro Block über die letzten 144 Blocks</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">18,20</context> <context context-type="linenumber">18,20</context>
@ -4103,6 +4129,7 @@
</trans-unit> </trans-unit>
<trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html"> <trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html">
<source>BTC/block</source> <source>BTC/block</source>
<target>BTC/Block</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">21,24</context> <context context-type="linenumber">21,24</context>
@ -4112,6 +4139,7 @@
</trans-unit> </trans-unit>
<trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html"> <trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html">
<source>Avg Tx Fee</source> <source>Avg Tx Fee</source>
<target>Durchschn. TX Gebühr</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@ -4429,6 +4457,7 @@
</trans-unit> </trans-unit>
<trans-unit id="72cfda88d5ab4851cba76abb402cae8f03ab6c6b" datatype="html"> <trans-unit id="72cfda88d5ab4851cba76abb402cae8f03ab6c6b" datatype="html">
<source>This transaction replaced:</source> <source>This transaction replaced:</source>
<target>Diese Transaktion ersetzte:</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">10,12</context> <context context-type="linenumber">10,12</context>
@ -4438,6 +4467,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ed1b6bfe4b7beca445156e6bb92a76d3cdebe945" datatype="html"> <trans-unit id="ed1b6bfe4b7beca445156e6bb92a76d3cdebe945" datatype="html">
<source>Replaced</source> <source>Replaced</source>
<target>Ersetzt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">36,39</context> <context context-type="linenumber">36,39</context>
@ -4631,7 +4661,7 @@
<target>Effektiver Gebührensatz</target> <target>Effektiver Gebührensatz</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">489,492</context> <context context-type="linenumber">491,494</context>
</context-group> </context-group>
<note priority="1" from="description">Effective transaction fee rate</note> <note priority="1" from="description">Effective transaction fee rate</note>
<note priority="1" from="meaning">transaction.effective-fee-rate</note> <note priority="1" from="meaning">transaction.effective-fee-rate</note>
@ -4777,6 +4807,7 @@
</trans-unit> </trans-unit>
<trans-unit id="d70397ee91f6c9ec91f1c1dff88126f8f9b7c2c4" datatype="html"> <trans-unit id="d70397ee91f6c9ec91f1c1dff88126f8f9b7c2c4" datatype="html">
<source>Show more inputs to reveal fee data</source> <source>Show more inputs to reveal fee data</source>
<target>Mehr Inputs anzeigen, um Gebührendaten anzuzeigen</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
<context context-type="linenumber">288,291</context> <context context-type="linenumber">288,291</context>
@ -4785,6 +4816,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ea7c261363dc5f6134b7bacba2a1ef97f4ff7859" datatype="html"> <trans-unit id="ea7c261363dc5f6134b7bacba2a1ef97f4ff7859" datatype="html">
<source><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> remaining</source> <source><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> remaining</source>
<target><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> verbleiben</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
<context context-type="linenumber">330,331</context> <context context-type="linenumber">330,331</context>
@ -4935,6 +4967,7 @@
</trans-unit> </trans-unit>
<trans-unit id="b0fb884cf71b19e3a4d146146d260ccedd9d50a5" datatype="html"> <trans-unit id="b0fb884cf71b19e3a4d146146d260ccedd9d50a5" datatype="html">
<source>This transaction does not use Taproot</source> <source>This transaction does not use Taproot</source>
<target>Diese Transaktion verwendet kein Taproot°</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">18</context> <context context-type="linenumber">18</context>
@ -5051,7 +5084,7 @@
<target>Mindestgebühr</target> <target>Mindestgebühr</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">201,202</context> <context context-type="linenumber">203,204</context>
</context-group> </context-group>
<note priority="1" from="description">Minimum mempool fee</note> <note priority="1" from="description">Minimum mempool fee</note>
<note priority="1" from="meaning">dashboard.minimum-fee</note> <note priority="1" from="meaning">dashboard.minimum-fee</note>
@ -5061,7 +5094,7 @@
<target>Streichung</target> <target>Streichung</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">202,203</context> <context context-type="linenumber">204,205</context>
</context-group> </context-group>
<note priority="1" from="description">Purgin below fee</note> <note priority="1" from="description">Purgin below fee</note>
<note priority="1" from="meaning">dashboard.purging</note> <note priority="1" from="meaning">dashboard.purging</note>
@ -5071,7 +5104,7 @@
<target>Speichernutzung</target> <target>Speichernutzung</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">214,215</context> <context context-type="linenumber">216,217</context>
</context-group> </context-group>
<note priority="1" from="description">Memory usage</note> <note priority="1" from="description">Memory usage</note>
<note priority="1" from="meaning">dashboard.memory-usage</note> <note priority="1" from="meaning">dashboard.memory-usage</note>
@ -5081,7 +5114,7 @@
<target>L-BTC im Umlauf</target> <target>L-BTC im Umlauf</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">228,230</context> <context context-type="linenumber">230,232</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note> <note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note>
</trans-unit> </trans-unit>
@ -5090,7 +5123,7 @@
<target>REST-API-Dienst</target> <target>REST-API-Dienst</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.title</note> <note priority="1" from="description">api-docs.title</note>
</trans-unit> </trans-unit>
@ -5099,11 +5132,11 @@
<target>Endpunkt</target> <target>Endpunkt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">48,49</context> <context context-type="linenumber">50,51</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">102,105</context> <context context-type="linenumber">104,107</context>
</context-group> </context-group>
<note priority="1" from="description">Api docs endpoint</note> <note priority="1" from="description">Api docs endpoint</note>
</trans-unit> </trans-unit>
@ -5112,11 +5145,11 @@
<target>Beschreibung</target> <target>Beschreibung</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">67,68</context> <context context-type="linenumber">69,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">106,107</context> <context context-type="linenumber">108,109</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html">
@ -5124,7 +5157,7 @@
<target>Standard Senden: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> um auszudrücken, was gepusht werden soll. Verfügbar: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, und <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Sende Transaktionen bezogen auf die Adresse: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> um alle neuen Transaktionen mit der Adresse als Input oder Output enthalten zu empfangen. Gibt Array von Tansaktionen zurück. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> für neue Mempool-Transaktionen, und <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/></target> <target>Standard Senden: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> um auszudrücken, was gepusht werden soll. Verfügbar: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, und <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Sende Transaktionen bezogen auf die Adresse: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> um alle neuen Transaktionen mit der Adresse als Input oder Output enthalten zu empfangen. Gibt Array von Tansaktionen zurück. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> für neue Mempool-Transaktionen, und <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">107,108</context> <context context-type="linenumber">109,110</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.websocket.websocket</note> <note priority="1" from="description">api-docs.websocket.websocket</note>
</trans-unit> </trans-unit>
@ -5297,12 +5330,13 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">120,121</context> <context context-type="linenumber">123,124</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.x-channels</note> <note priority="1" from="description">lightning.x-channels</note>
</trans-unit> </trans-unit>
<trans-unit id="4e64e04c01e8f5fc09c41cb8942dcc3af0398b28" datatype="html"> <trans-unit id="4e64e04c01e8f5fc09c41cb8942dcc3af0398b28" datatype="html">
<source>Starting balance</source> <source>Starting balance</source>
<target>Anfangsstand</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context>
<context context-type="linenumber">6</context> <context context-type="linenumber">6</context>
@ -5312,6 +5346,7 @@
</trans-unit> </trans-unit>
<trans-unit id="5c4bfd47a4f4d7cb99912f028494fe2530d36d57" datatype="html"> <trans-unit id="5c4bfd47a4f4d7cb99912f028494fe2530d36d57" datatype="html">
<source>Closing balance</source> <source>Closing balance</source>
<target>Schlussstand</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context>
<context context-type="linenumber">12</context> <context context-type="linenumber">12</context>
@ -5341,7 +5376,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">65,66</context> <context context-type="linenumber">68,69</context>
</context-group> </context-group>
<note priority="1" from="description">status.inactive</note> <note priority="1" from="description">status.inactive</note>
</trans-unit> </trans-unit>
@ -5358,7 +5393,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">66,68</context> <context context-type="linenumber">69,71</context>
</context-group> </context-group>
<note priority="1" from="description">status.active</note> <note priority="1" from="description">status.active</note>
</trans-unit> </trans-unit>
@ -5379,7 +5414,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">68,70</context> <context context-type="linenumber">71,73</context>
</context-group> </context-group>
<note priority="1" from="description">status.closed</note> <note priority="1" from="description">status.closed</note>
</trans-unit> </trans-unit>
@ -5409,7 +5444,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">40,43</context> <context context-type="linenumber">43,46</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context>
@ -5525,12 +5560,13 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">42,43</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.closing_date</note> <note priority="1" from="description">lightning.closing_date</note>
</trans-unit> </trans-unit>
<trans-unit id="1f0b0f2c90de4f3f0eb2c138eed38f4e9ac7a13e" datatype="html"> <trans-unit id="1f0b0f2c90de4f3f0eb2c138eed38f4e9ac7a13e" datatype="html">
<source>Closed by</source> <source>Closed by</source>
<target>Geschlossen von</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">52,54</context>
@ -5577,7 +5613,7 @@
<target>Keine Kanäle zum Anzeigen</target> <target>Keine Kanäle zum Anzeigen</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">29,35</context> <context context-type="linenumber">29,37</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.empty-channels-list</note> <note priority="1" from="description">lightning.empty-channels-list</note>
</trans-unit> </trans-unit>
@ -5586,7 +5622,7 @@
<target>Alias</target> <target>Alias</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">35,37</context> <context context-type="linenumber">38,40</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/group/group.component.html</context> <context context-type="sourcefile">src/app/lightning/group/group.component.html</context>
@ -5623,7 +5659,7 @@
<target>Status</target> <target>Status</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">37,38</context> <context context-type="linenumber">40,41</context>
</context-group> </context-group>
<note priority="1" from="description">status</note> <note priority="1" from="description">status</note>
</trans-unit> </trans-unit>
@ -5632,7 +5668,7 @@
<target>Kanal ID</target> <target>Kanal ID</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">41,45</context> <context context-type="linenumber">44,48</context>
</context-group> </context-group>
<note priority="1" from="description">channels.id</note> <note priority="1" from="description">channels.id</note>
</trans-unit> </trans-unit>
@ -5641,11 +5677,11 @@
<target>sats</target> <target>sats</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">60,64</context> <context context-type="linenumber">63,67</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">84,88</context> <context context-type="linenumber">87,91</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
@ -6052,6 +6088,7 @@
</trans-unit> </trans-unit>
<trans-unit id="7b8687bbc13bbf62288689606dcab9784a3eb53b" datatype="html"> <trans-unit id="7b8687bbc13bbf62288689606dcab9784a3eb53b" datatype="html">
<source>Fee distribution</source> <source>Fee distribution</source>
<target>Gebührenverteilung</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@ -6147,6 +6184,7 @@
</trans-unit> </trans-unit>
<trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html"> <trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html">
<source>Avg channel distance</source> <source>Avg channel distance</source>
<target>Durchschn. Kanalentfernung</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">56,57</context> <context context-type="linenumber">56,57</context>
@ -6186,6 +6224,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e128630e07a4c467f51b246a31c5734d5fb1a2c2" datatype="html"> <trans-unit id="e128630e07a4c467f51b246a31c5734d5fb1a2c2" datatype="html">
<source>Liquidity ad</source> <source>Liquidity ad</source>
<target>Liquiditätswerbung</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">138,141</context> <context context-type="linenumber">138,141</context>
@ -6194,6 +6233,7 @@
</trans-unit> </trans-unit>
<trans-unit id="bc84b5a9a70217104a53c7139e30b392be6520b7" datatype="html"> <trans-unit id="bc84b5a9a70217104a53c7139e30b392be6520b7" datatype="html">
<source>Lease fee rate</source> <source>Lease fee rate</source>
<target>Lease Gebührensatz</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">144,147</context> <context context-type="linenumber">144,147</context>
@ -6203,6 +6243,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ee807dd54b4a45eeba284744c64774de1ab5e4f1" datatype="html"> <trans-unit id="ee807dd54b4a45eeba284744c64774de1ab5e4f1" datatype="html">
<source>Lease base fee</source> <source>Lease base fee</source>
<target>Lease Basisgebühr</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">152,154</context> <context context-type="linenumber">152,154</context>
@ -6211,6 +6252,7 @@
</trans-unit> </trans-unit>
<trans-unit id="5e348f3d51c3bb283c16572bee1e293ea991cf49" datatype="html"> <trans-unit id="5e348f3d51c3bb283c16572bee1e293ea991cf49" datatype="html">
<source>Funding weight</source> <source>Funding weight</source>
<target>Finanzierungsgewicht</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">158,159</context> <context context-type="linenumber">158,159</context>
@ -6219,6 +6261,7 @@
</trans-unit> </trans-unit>
<trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html"> <trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html">
<source>Channel fee rate</source> <source>Channel fee rate</source>
<target>Kanal-Gebührenrate</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">168,171</context> <context context-type="linenumber">168,171</context>
@ -6228,6 +6271,7 @@
</trans-unit> </trans-unit>
<trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html"> <trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html">
<source>Channel base fee</source> <source>Channel base fee</source>
<target>Kanal-Basisgebühr</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">176,178</context> <context context-type="linenumber">176,178</context>
@ -6236,6 +6280,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e8e09fa12864e94f094a2a7c8c97cfdf0cff8aab" datatype="html"> <trans-unit id="e8e09fa12864e94f094a2a7c8c97cfdf0cff8aab" datatype="html">
<source>Compact lease</source> <source>Compact lease</source>
<target>Compact_lease</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">188,190</context> <context context-type="linenumber">188,190</context>
@ -6244,6 +6289,7 @@
</trans-unit> </trans-unit>
<trans-unit id="aa687f4987e2d4e0010be692d402174962ece70e" datatype="html"> <trans-unit id="aa687f4987e2d4e0010be692d402174962ece70e" datatype="html">
<source>TLV extension records</source> <source>TLV extension records</source>
<target>LV Erweiterungs-Datensätze</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">199,202</context> <context context-type="linenumber">199,202</context>
@ -6324,6 +6370,7 @@
</trans-unit> </trans-unit>
<trans-unit id="6391724349488018234" datatype="html"> <trans-unit id="6391724349488018234" datatype="html">
<source>Indexing in progress</source> <source>Indexing in progress</source>
<target>Indizierung läuft</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context> <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
<context context-type="linenumber">121,116</context> <context context-type="linenumber">121,116</context>
@ -6591,6 +6638,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e422817608e8d55e08b45a1da2e118eb42815af4" datatype="html"> <trans-unit id="e422817608e8d55e08b45a1da2e118eb42815af4" datatype="html">
<source>Active nodes</source> <source>Active nodes</source>
<target>Aktive Knoten</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
<context context-type="linenumber">14,18</context> <context context-type="linenumber">14,18</context>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ngb.carousel.slide-number" datatype="html"> <trans-unit id="ngb.carousel.slide-number" datatype="html">
<source> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> of <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </source> <source> Slide <x id="INTERPOLATION" equiv-text="true`, will pau"/> of <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </source>
<target> Slajd <x id="INTERPOLATION" equiv-text="true`, will pau"/> z <x id="INTERPOLATION_1" equiv-text="n mouse cursor"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context>
<context context-type="linenumber">175,181</context> <context context-type="linenumber">175,181</context>
@ -147,6 +148,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ngb.progressbar.value" datatype="html"> <trans-unit id="ngb.progressbar.value" datatype="html">
<source><x id="INTERPOLATION" equiv-text="* The maximal"/></source> <source><x id="INTERPOLATION" equiv-text="* The maximal"/></source>
<target><x id="INTERPOLATION" equiv-text="* The maximal"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context> <context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context>
<context context-type="linenumber">30,33</context> <context context-type="linenumber">30,33</context>
@ -357,7 +359,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,291</context> <context context-type="linenumber">303,304</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -382,7 +384,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">291,292</context> <context context-type="linenumber">304,305</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -424,7 +426,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">40,41</context> <context context-type="linenumber">38,39</context>
</context-group> </context-group>
<note priority="1" from="description">block.hash</note> <note priority="1" from="description">block.hash</note>
</trans-unit> </trans-unit>
@ -449,7 +451,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">44,46</context> <context context-type="linenumber">42,44</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -592,7 +594,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">49,51</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context>
@ -1052,7 +1054,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">246,247</context> <context context-type="linenumber">245,246</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -1530,7 +1532,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">57,60</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="address-label.multisig" datatype="html"> <trans-unit id="address-label.multisig" datatype="html">
@ -1666,7 +1668,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">29,31</context> <context context-type="linenumber">31,33</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context>
@ -1888,7 +1890,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">30,31</context> <context context-type="linenumber">32,33</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ticker header</note> <note priority="1" from="description">Asset ticker header</note>
</trans-unit> </trans-unit>
@ -1901,7 +1903,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">31,34</context> <context context-type="linenumber">33,36</context>
</context-group> </context-group>
<note priority="1" from="description">Asset Issuer Domain header</note> <note priority="1" from="description">Asset Issuer Domain header</note>
</trans-unit> </trans-unit>
@ -1914,7 +1916,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">32,36</context> <context context-type="linenumber">34,38</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ID header</note> <note priority="1" from="description">Asset ID header</note>
</trans-unit> </trans-unit>
@ -1923,7 +1925,7 @@
<target>Błąd podczas ładowania danych zasobów.</target> <target>Błąd podczas ładowania danych zasobów.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">48,53</context> <context context-type="linenumber">50,55</context>
</context-group> </context-group>
<note priority="1" from="description">Asset data load error</note> <note priority="1" from="description">Asset data load error</note>
</trans-unit> </trans-unit>
@ -2121,6 +2123,7 @@
</trans-unit> </trans-unit>
<trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html"> <trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html">
<source>not available</source> <source>not available</source>
<target>nie dostępne</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
@ -2140,7 +2143,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476</context> <context context-type="linenumber">478</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context>
@ -2166,7 +2169,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476,477</context> <context context-type="linenumber">478,479</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2188,7 +2191,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">479,481</context> <context context-type="linenumber">481,483</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context>
@ -2200,7 +2203,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">38,39</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">Transaction fee rate</note> <note priority="1" from="description">Transaction fee rate</note>
<note priority="1" from="meaning">transaction.fee-rate</note> <note priority="1" from="meaning">transaction.fee-rate</note>
@ -2218,11 +2221,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">125,128</context> <context context-type="linenumber">123,126</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -2282,11 +2285,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">481,484</context> <context context-type="linenumber">483,486</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">492,494</context> <context context-type="linenumber">494,496</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2298,7 +2301,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">204,208</context> <context context-type="linenumber">206,210</context>
</context-group> </context-group>
<note priority="1" from="description">sat/vB</note> <note priority="1" from="description">sat/vB</note>
<note priority="1" from="meaning">shared.sat-vbyte</note> <note priority="1" from="meaning">shared.sat-vbyte</note>
@ -2323,6 +2326,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html"> <trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html">
<source>Audit status</source> <source>Audit status</source>
<target>Status audytu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">36</context> <context context-type="linenumber">36</context>
@ -2331,6 +2335,7 @@
</trans-unit> </trans-unit>
<trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html"> <trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html">
<source>Match</source> <source>Match</source>
<target>Dopasowanie</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">38</context>
@ -2339,6 +2344,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html"> <trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html">
<source>Removed</source> <source>Removed</source>
<target>Usunięte</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">39</context> <context context-type="linenumber">39</context>
@ -2347,6 +2353,7 @@
</trans-unit> </trans-unit>
<trans-unit id="f0136f1a1d77aa656e0ebd0f3c023118dd2a2776" datatype="html"> <trans-unit id="f0136f1a1d77aa656e0ebd0f3c023118dd2a2776" datatype="html">
<source>Marginal fee rate</source> <source>Marginal fee rate</source>
<target>Marginalna stopa opłat</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">40</context>
@ -2359,6 +2366,7 @@
</trans-unit> </trans-unit>
<trans-unit id="d702ad6f00c620c9658ac1ad8184d5fe5bc099fb" datatype="html"> <trans-unit id="d702ad6f00c620c9658ac1ad8184d5fe5bc099fb" datatype="html">
<source>Recently broadcasted</source> <source>Recently broadcasted</source>
<target>Ostatnio rozgłoszone</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">41</context> <context context-type="linenumber">41</context>
@ -2462,7 +2470,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">50,52</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2510,7 +2518,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">54,56</context> <context context-type="linenumber">52,54</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2548,7 +2556,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">128,129</context> <context context-type="linenumber">126,127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2565,11 +2573,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">133,135</context> <context context-type="linenumber">131,133</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">159,162</context> <context context-type="linenumber">157,160</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2587,7 +2595,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">168,170</context> <context context-type="linenumber">166,168</context>
</context-group> </context-group>
<note priority="1" from="description">block.miner</note> <note priority="1" from="description">block.miner</note>
</trans-unit> </trans-unit>
@ -2600,7 +2608,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.ts</context> <context context-type="sourcefile">src/app/components/block/block.component.ts</context>
<context context-type="linenumber">227</context> <context context-type="linenumber">234</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html"> <trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html">
@ -2625,20 +2633,29 @@
</context-group> </context-group>
<note priority="1" from="description">Previous Block</note> <note priority="1" from="description">Previous Block</note>
</trans-unit> </trans-unit>
<trans-unit id="930c93e0c7afdf0f8d926773d5157c803bdc86e1" datatype="html"> <trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Block health</source> <source>Health</source>
<target>Zdrowie</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">56</context>
</context-group> </context-group>
<note priority="1" from="description">block.health</note> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit> </trans-unit>
<trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html"> <trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html">
<source>Unknown</source> <source>Unknown</source>
<target>Nieznany</target> <target>Nieznany</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">69,72</context> <context context-type="linenumber">67,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2667,7 +2684,7 @@
<target>Zakres opłat</target> <target>Zakres opłat</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">124,125</context> <context context-type="linenumber">122,123</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2680,7 +2697,7 @@
<target>Na podstawie przeciętnej transakcji w natywnym segwit o długości 140 vBajtów</target> <target>Na podstawie przeciętnej transakcji w natywnym segwit o długości 140 vBajtów</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129,131</context> <context context-type="linenumber">127,129</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context> <context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context>
@ -2709,44 +2726,61 @@
<target>Subsydium + opłaty:</target> <target>Subsydium + opłaty:</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">148,151</context> <context context-type="linenumber">146,149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">163,167</context> <context context-type="linenumber">161,165</context>
</context-group> </context-group>
<note priority="1" from="description">Total subsidy and fees in a block</note> <note priority="1" from="description">Total subsidy and fees in a block</note>
<note priority="1" from="meaning">block.subsidy-and-fees</note> <note priority="1" from="meaning">block.subsidy-and-fees</note>
</trans-unit> </trans-unit>
<trans-unit id="26f41d32df1646d45fcb03fe6952fb3eccf60b0f" datatype="html"> <trans-unit id="23fa95fce7b4badf5ad584d4a1712d558266266f" datatype="html">
<source>Projected</source> <source>Expected</source>
<target>Prognoza</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">210,212</context> <context context-type="linenumber">209</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected</note> <note priority="1" from="description">block.expected</note>
</trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">209,210</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">215,217</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit> </trans-unit>
<trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html"> <trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html">
<source>Actual</source> <source>Actual</source>
<target>Wartość aktualna</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">212,216</context> <context context-type="linenumber">211,215</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual</note> <note priority="1" from="description">block.actual</note>
</trans-unit> </trans-unit>
<trans-unit id="a37e529c0d7b39d95861dd019cb78bb9ac9a3c5d" datatype="html"> <trans-unit id="97577daae15cc7f30ab4d0f4f4dfb8045477aefd" datatype="html">
<source>Projected Block</source> <source>Expected Block</source>
<target>Prognozowany blok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">216,218</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected-block</note> <note priority="1" from="description">block.expected-block</note>
</trans-unit> </trans-unit>
<trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html"> <trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html">
<source>Actual Block</source> <source>Actual Block</source>
<target>Rzeczywisty blok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">225,227</context> <context context-type="linenumber">224</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual-block</note> <note priority="1" from="description">block.actual-block</note>
</trans-unit> </trans-unit>
@ -2755,7 +2789,7 @@
<target>Bity</target> <target>Bity</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">250,252</context> <context context-type="linenumber">249,251</context>
</context-group> </context-group>
<note priority="1" from="description">block.bits</note> <note priority="1" from="description">block.bits</note>
</trans-unit> </trans-unit>
@ -2764,7 +2798,7 @@
<target>Korzeń Merkle'a</target> <target>Korzeń Merkle'a</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">254,256</context> <context context-type="linenumber">253,255</context>
</context-group> </context-group>
<note priority="1" from="description">block.merkle-root</note> <note priority="1" from="description">block.merkle-root</note>
</trans-unit> </trans-unit>
@ -2773,7 +2807,7 @@
<target>Trudność</target> <target>Trudność</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">265,268</context> <context context-type="linenumber">264,267</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context> <context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context>
@ -2802,7 +2836,7 @@
<target>Unikalna liczba</target> <target>Unikalna liczba</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">269,271</context> <context context-type="linenumber">268,270</context>
</context-group> </context-group>
<note priority="1" from="description">block.nonce</note> <note priority="1" from="description">block.nonce</note>
</trans-unit> </trans-unit>
@ -2811,16 +2845,26 @@
<target>Nagłówek bloku w postaci szesnastkowej</target> <target>Nagłówek bloku w postaci szesnastkowej</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">273,274</context> <context context-type="linenumber">272,273</context>
</context-group> </context-group>
<note priority="1" from="description">block.header</note> <note priority="1" from="description">block.header</note>
</trans-unit> </trans-unit>
<trans-unit id="ccf00caac258749fa1c5fd488fb15368fa6fce37" datatype="html">
<source>Audit</source>
<target>Audyt</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,294</context>
</context-group>
<note priority="1" from="description">Toggle Audit</note>
<note priority="1" from="meaning">block.toggle-audit</note>
</trans-unit>
<trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html"> <trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html">
<source>Details</source> <source>Details</source>
<target>Szczegóły</target> <target>Szczegóły</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">284,288</context> <context context-type="linenumber">297,301</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2846,11 +2890,11 @@
<target>Błąd ładowania danych.</target> <target>Błąd ładowania danych.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">303,305</context> <context context-type="linenumber">316,318</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">339,343</context> <context context-type="linenumber">355,359</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
@ -2872,9 +2916,10 @@
</trans-unit> </trans-unit>
<trans-unit id="9f63968580fcea609d6b9e7a5b6ba7180b54e18f" datatype="html"> <trans-unit id="9f63968580fcea609d6b9e7a5b6ba7180b54e18f" datatype="html">
<source>Why is this block empty?</source> <source>Why is this block empty?</source>
<target>Czemu ten blok jest pusty?</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">361,367</context> <context context-type="linenumber">377,383</context>
</context-group> </context-group>
<note priority="1" from="description">block.empty-block-explanation</note> <note priority="1" from="description">block.empty-block-explanation</note>
</trans-unit> </trans-unit>
@ -2920,18 +2965,6 @@
</context-group> </context-group>
<note priority="1" from="description">latest-blocks.mined</note> <note priority="1" from="description">latest-blocks.mined</note>
</trans-unit> </trans-unit>
<trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Health</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit>
<trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html"> <trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html">
<source>Reward</source> <source>Reward</source>
<target>Nagroda</target> <target>Nagroda</target>
@ -2995,7 +3028,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">210,214</context> <context context-type="linenumber">212,216</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.txs</note> <note priority="1" from="description">dashboard.txs</note>
</trans-unit> </trans-unit>
@ -3234,7 +3267,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">237,238</context> <context context-type="linenumber">239,240</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.incoming-transactions</note> <note priority="1" from="description">dashboard.incoming-transactions</note>
</trans-unit> </trans-unit>
@ -3247,7 +3280,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">240,243</context> <context context-type="linenumber">242,245</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.backend-is-synchronizing</note> <note priority="1" from="description">dashboard.backend-is-synchronizing</note>
</trans-unit> </trans-unit>
@ -3260,7 +3293,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">245,250</context> <context context-type="linenumber">247,252</context>
</context-group> </context-group>
<note priority="1" from="description">vB/s</note> <note priority="1" from="description">vB/s</note>
<note priority="1" from="meaning">shared.vbytes-per-second</note> <note priority="1" from="meaning">shared.vbytes-per-second</note>
@ -3274,7 +3307,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">208,209</context> <context context-type="linenumber">210,211</context>
</context-group> </context-group>
<note priority="1" from="description">Unconfirmed count</note> <note priority="1" from="description">Unconfirmed count</note>
<note priority="1" from="meaning">dashboard.unconfirmed</note> <note priority="1" from="meaning">dashboard.unconfirmed</note>
@ -3531,7 +3564,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">51,53</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context> <context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context>
@ -3557,7 +3590,7 @@
<target>Eksplorator Lightning</target> <target>Eksplorator Lightning</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,47</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context> <context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context>
@ -3565,21 +3598,12 @@
</context-group> </context-group>
<note priority="1" from="description">master-page.lightning</note> <note priority="1" from="description">master-page.lightning</note>
</trans-unit> </trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">45,48</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit>
<trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html"> <trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html">
<source>Documentation</source> <source>Documentation</source>
<target>Dokumentacja</target> <target>Dokumentacja</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">55,57</context> <context context-type="linenumber">54,56</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/docs/docs.component.html</context> <context context-type="sourcefile">src/app/docs/docs/docs.component.html</context>
@ -4037,7 +4061,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">154,161</context> <context context-type="linenumber">154,162</context>
</context-group> </context-group>
<note priority="1" from="description">Broadcast Transaction</note> <note priority="1" from="description">Broadcast Transaction</note>
<note priority="1" from="meaning">shared.broadcast-transaction</note> <note priority="1" from="meaning">shared.broadcast-transaction</note>
@ -4083,6 +4107,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1d9f405ab98a5f79d98b439de29fc8baca46b97c" datatype="html"> <trans-unit id="1d9f405ab98a5f79d98b439de29fc8baca46b97c" datatype="html">
<source>Avg Block Fees</source> <source>Avg Block Fees</source>
<target>Średnie opłaty bloku</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">17</context> <context context-type="linenumber">17</context>
@ -4095,6 +4120,7 @@
</trans-unit> </trans-unit>
<trans-unit id="a0d4ab5b063e7be1c9ea980f5fd6ce1b5384ad0b" datatype="html"> <trans-unit id="a0d4ab5b063e7be1c9ea980f5fd6ce1b5384ad0b" datatype="html">
<source>Average fees per block in the past 144 blocks</source> <source>Average fees per block in the past 144 blocks</source>
<target>Średnie opłaty na blok w ciągu ostatnich 144 bloków</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">18,20</context> <context context-type="linenumber">18,20</context>
@ -4103,6 +4129,7 @@
</trans-unit> </trans-unit>
<trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html"> <trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html">
<source>BTC/block</source> <source>BTC/block</source>
<target>BTC/blok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">21,24</context> <context context-type="linenumber">21,24</context>
@ -4112,6 +4139,7 @@
</trans-unit> </trans-unit>
<trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html"> <trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html">
<source>Avg Tx Fee</source> <source>Avg Tx Fee</source>
<target>Średnia stopa opłat</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@ -4429,6 +4457,7 @@
</trans-unit> </trans-unit>
<trans-unit id="72cfda88d5ab4851cba76abb402cae8f03ab6c6b" datatype="html"> <trans-unit id="72cfda88d5ab4851cba76abb402cae8f03ab6c6b" datatype="html">
<source>This transaction replaced:</source> <source>This transaction replaced:</source>
<target>Ta transakcja zastąpiła:</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">10,12</context> <context context-type="linenumber">10,12</context>
@ -4438,6 +4467,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ed1b6bfe4b7beca445156e6bb92a76d3cdebe945" datatype="html"> <trans-unit id="ed1b6bfe4b7beca445156e6bb92a76d3cdebe945" datatype="html">
<source>Replaced</source> <source>Replaced</source>
<target>Zastąpiona</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">36,39</context> <context context-type="linenumber">36,39</context>
@ -4631,7 +4661,7 @@
<target>Efektywny poziom opłaty</target> <target>Efektywny poziom opłaty</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">489,492</context> <context context-type="linenumber">491,494</context>
</context-group> </context-group>
<note priority="1" from="description">Effective transaction fee rate</note> <note priority="1" from="description">Effective transaction fee rate</note>
<note priority="1" from="meaning">transaction.effective-fee-rate</note> <note priority="1" from="meaning">transaction.effective-fee-rate</note>
@ -4777,6 +4807,7 @@
</trans-unit> </trans-unit>
<trans-unit id="d70397ee91f6c9ec91f1c1dff88126f8f9b7c2c4" datatype="html"> <trans-unit id="d70397ee91f6c9ec91f1c1dff88126f8f9b7c2c4" datatype="html">
<source>Show more inputs to reveal fee data</source> <source>Show more inputs to reveal fee data</source>
<target>Pokaż więcej wejść by ujawnić dane o opłatach</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
<context context-type="linenumber">288,291</context> <context context-type="linenumber">288,291</context>
@ -4785,6 +4816,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ea7c261363dc5f6134b7bacba2a1ef97f4ff7859" datatype="html"> <trans-unit id="ea7c261363dc5f6134b7bacba2a1ef97f4ff7859" datatype="html">
<source><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> remaining</source> <source><x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/> remaining</source>
<target>pozostało <x id="INTERPOLATION" equiv-text="remaining&lt;/ng-template&gt;"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
<context context-type="linenumber">330,331</context> <context context-type="linenumber">330,331</context>
@ -4935,6 +4967,7 @@
</trans-unit> </trans-unit>
<trans-unit id="b0fb884cf71b19e3a4d146146d260ccedd9d50a5" datatype="html"> <trans-unit id="b0fb884cf71b19e3a4d146146d260ccedd9d50a5" datatype="html">
<source>This transaction does not use Taproot</source> <source>This transaction does not use Taproot</source>
<target>Ta transakcja nie używa Taproot</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">18</context> <context context-type="linenumber">18</context>
@ -5051,7 +5084,7 @@
<target>Minimalna opłata</target> <target>Minimalna opłata</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">201,202</context> <context context-type="linenumber">203,204</context>
</context-group> </context-group>
<note priority="1" from="description">Minimum mempool fee</note> <note priority="1" from="description">Minimum mempool fee</note>
<note priority="1" from="meaning">dashboard.minimum-fee</note> <note priority="1" from="meaning">dashboard.minimum-fee</note>
@ -5061,7 +5094,7 @@
<target>Próg odrzucenia</target> <target>Próg odrzucenia</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">202,203</context> <context context-type="linenumber">204,205</context>
</context-group> </context-group>
<note priority="1" from="description">Purgin below fee</note> <note priority="1" from="description">Purgin below fee</note>
<note priority="1" from="meaning">dashboard.purging</note> <note priority="1" from="meaning">dashboard.purging</note>
@ -5071,7 +5104,7 @@
<target>Zużycie pamięci</target> <target>Zużycie pamięci</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">214,215</context> <context context-type="linenumber">216,217</context>
</context-group> </context-group>
<note priority="1" from="description">Memory usage</note> <note priority="1" from="description">Memory usage</note>
<note priority="1" from="meaning">dashboard.memory-usage</note> <note priority="1" from="meaning">dashboard.memory-usage</note>
@ -5081,7 +5114,7 @@
<target>L-BTC w obiegu</target> <target>L-BTC w obiegu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">228,230</context> <context context-type="linenumber">230,232</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note> <note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note>
</trans-unit> </trans-unit>
@ -5090,7 +5123,7 @@
<target>Usługa REST API</target> <target>Usługa REST API</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.title</note> <note priority="1" from="description">api-docs.title</note>
</trans-unit> </trans-unit>
@ -5099,11 +5132,11 @@
<target>Końcówka</target> <target>Końcówka</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">48,49</context> <context context-type="linenumber">50,51</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">102,105</context> <context context-type="linenumber">104,107</context>
</context-group> </context-group>
<note priority="1" from="description">Api docs endpoint</note> <note priority="1" from="description">Api docs endpoint</note>
</trans-unit> </trans-unit>
@ -5112,11 +5145,11 @@
<target>Opis</target> <target>Opis</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">67,68</context> <context context-type="linenumber">69,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">106,107</context> <context context-type="linenumber">108,109</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html">
@ -5124,7 +5157,7 @@
<target>Domyślny push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> aby wyrazić co chcesz wysłać. Dostępne: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> i <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Wysłanie transakcji związanych z adresem: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> aby otrzymać wszystkie nowe transakcje zawierające ten adres jako wejście lub wyjście. Zwraca tablicę transakcji. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> dla nowych transakcji mempool, i <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> dla nowo potwierdzonych transakcji w bloku.</target> <target>Domyślny push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> aby wyrazić co chcesz wysłać. Dostępne: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> i <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Wysłanie transakcji związanych z adresem: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> aby otrzymać wszystkie nowe transakcje zawierające ten adres jako wejście lub wyjście. Zwraca tablicę transakcji. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> dla nowych transakcji mempool, i <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> dla nowo potwierdzonych transakcji w bloku.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">107,108</context> <context context-type="linenumber">109,110</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.websocket.websocket</note> <note priority="1" from="description">api-docs.websocket.websocket</note>
</trans-unit> </trans-unit>
@ -5297,12 +5330,13 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">120,121</context> <context context-type="linenumber">123,124</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.x-channels</note> <note priority="1" from="description">lightning.x-channels</note>
</trans-unit> </trans-unit>
<trans-unit id="4e64e04c01e8f5fc09c41cb8942dcc3af0398b28" datatype="html"> <trans-unit id="4e64e04c01e8f5fc09c41cb8942dcc3af0398b28" datatype="html">
<source>Starting balance</source> <source>Starting balance</source>
<target>Saldo początkowe</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context>
<context context-type="linenumber">6</context> <context context-type="linenumber">6</context>
@ -5312,6 +5346,7 @@
</trans-unit> </trans-unit>
<trans-unit id="5c4bfd47a4f4d7cb99912f028494fe2530d36d57" datatype="html"> <trans-unit id="5c4bfd47a4f4d7cb99912f028494fe2530d36d57" datatype="html">
<source>Closing balance</source> <source>Closing balance</source>
<target>Saldo końcowe</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-close-box/channel-close-box.component.html</context>
<context context-type="linenumber">12</context> <context context-type="linenumber">12</context>
@ -5341,7 +5376,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">65,66</context> <context context-type="linenumber">68,69</context>
</context-group> </context-group>
<note priority="1" from="description">status.inactive</note> <note priority="1" from="description">status.inactive</note>
</trans-unit> </trans-unit>
@ -5358,7 +5393,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">66,68</context> <context context-type="linenumber">69,71</context>
</context-group> </context-group>
<note priority="1" from="description">status.active</note> <note priority="1" from="description">status.active</note>
</trans-unit> </trans-unit>
@ -5379,7 +5414,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">68,70</context> <context context-type="linenumber">71,73</context>
</context-group> </context-group>
<note priority="1" from="description">status.closed</note> <note priority="1" from="description">status.closed</note>
</trans-unit> </trans-unit>
@ -5409,7 +5444,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">40,43</context> <context context-type="linenumber">43,46</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context>
@ -5525,12 +5560,13 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">42,43</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.closing_date</note> <note priority="1" from="description">lightning.closing_date</note>
</trans-unit> </trans-unit>
<trans-unit id="1f0b0f2c90de4f3f0eb2c138eed38f4e9ac7a13e" datatype="html"> <trans-unit id="1f0b0f2c90de4f3f0eb2c138eed38f4e9ac7a13e" datatype="html">
<source>Closed by</source> <source>Closed by</source>
<target>Zamknięty przez</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">52,54</context>
@ -5577,7 +5613,7 @@
<target>Brak kanałów do wyświetlenia</target> <target>Brak kanałów do wyświetlenia</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">29,35</context> <context context-type="linenumber">29,37</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.empty-channels-list</note> <note priority="1" from="description">lightning.empty-channels-list</note>
</trans-unit> </trans-unit>
@ -5586,7 +5622,7 @@
<target>Alias</target> <target>Alias</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">35,37</context> <context context-type="linenumber">38,40</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/group/group.component.html</context> <context context-type="sourcefile">src/app/lightning/group/group.component.html</context>
@ -5623,7 +5659,7 @@
<target>Stan</target> <target>Stan</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">37,38</context> <context context-type="linenumber">40,41</context>
</context-group> </context-group>
<note priority="1" from="description">status</note> <note priority="1" from="description">status</note>
</trans-unit> </trans-unit>
@ -5632,7 +5668,7 @@
<target>ID kanału</target> <target>ID kanału</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">41,45</context> <context context-type="linenumber">44,48</context>
</context-group> </context-group>
<note priority="1" from="description">channels.id</note> <note priority="1" from="description">channels.id</note>
</trans-unit> </trans-unit>
@ -5641,11 +5677,11 @@
<target>sats</target> <target>sats</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">60,64</context> <context context-type="linenumber">63,67</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">84,88</context> <context context-type="linenumber">87,91</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
@ -6052,6 +6088,7 @@
</trans-unit> </trans-unit>
<trans-unit id="7b8687bbc13bbf62288689606dcab9784a3eb53b" datatype="html"> <trans-unit id="7b8687bbc13bbf62288689606dcab9784a3eb53b" datatype="html">
<source>Fee distribution</source> <source>Fee distribution</source>
<target>Rozkład opłat</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@ -6147,6 +6184,7 @@
</trans-unit> </trans-unit>
<trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html"> <trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html">
<source>Avg channel distance</source> <source>Avg channel distance</source>
<target>Średnia odległość kanałów</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">56,57</context> <context context-type="linenumber">56,57</context>
@ -6186,6 +6224,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e128630e07a4c467f51b246a31c5734d5fb1a2c2" datatype="html"> <trans-unit id="e128630e07a4c467f51b246a31c5734d5fb1a2c2" datatype="html">
<source>Liquidity ad</source> <source>Liquidity ad</source>
<target>Reklama płynności</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">138,141</context> <context context-type="linenumber">138,141</context>
@ -6194,6 +6233,7 @@
</trans-unit> </trans-unit>
<trans-unit id="bc84b5a9a70217104a53c7139e30b392be6520b7" datatype="html"> <trans-unit id="bc84b5a9a70217104a53c7139e30b392be6520b7" datatype="html">
<source>Lease fee rate</source> <source>Lease fee rate</source>
<target>Stawka opłat dzierżawy</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">144,147</context> <context context-type="linenumber">144,147</context>
@ -6203,6 +6243,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ee807dd54b4a45eeba284744c64774de1ab5e4f1" datatype="html"> <trans-unit id="ee807dd54b4a45eeba284744c64774de1ab5e4f1" datatype="html">
<source>Lease base fee</source> <source>Lease base fee</source>
<target>Opłata bazowa dzierżawy</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">152,154</context> <context context-type="linenumber">152,154</context>
@ -6211,6 +6252,7 @@
</trans-unit> </trans-unit>
<trans-unit id="5e348f3d51c3bb283c16572bee1e293ea991cf49" datatype="html"> <trans-unit id="5e348f3d51c3bb283c16572bee1e293ea991cf49" datatype="html">
<source>Funding weight</source> <source>Funding weight</source>
<target>Blok finansujący</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">158,159</context> <context context-type="linenumber">158,159</context>
@ -6219,6 +6261,7 @@
</trans-unit> </trans-unit>
<trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html"> <trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html">
<source>Channel fee rate</source> <source>Channel fee rate</source>
<target>Stawka opłat kanału</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">168,171</context> <context context-type="linenumber">168,171</context>
@ -6228,6 +6271,7 @@
</trans-unit> </trans-unit>
<trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html"> <trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html">
<source>Channel base fee</source> <source>Channel base fee</source>
<target>Opłata bazowa kanału</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">176,178</context> <context context-type="linenumber">176,178</context>
@ -6236,6 +6280,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e8e09fa12864e94f094a2a7c8c97cfdf0cff8aab" datatype="html"> <trans-unit id="e8e09fa12864e94f094a2a7c8c97cfdf0cff8aab" datatype="html">
<source>Compact lease</source> <source>Compact lease</source>
<target>Kompaktowa dzierżawa</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">188,190</context> <context context-type="linenumber">188,190</context>
@ -6244,6 +6289,7 @@
</trans-unit> </trans-unit>
<trans-unit id="aa687f4987e2d4e0010be692d402174962ece70e" datatype="html"> <trans-unit id="aa687f4987e2d4e0010be692d402174962ece70e" datatype="html">
<source>TLV extension records</source> <source>TLV extension records</source>
<target>Rekordy rozszerzeń TLV</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">199,202</context> <context context-type="linenumber">199,202</context>
@ -6324,6 +6370,7 @@
</trans-unit> </trans-unit>
<trans-unit id="6391724349488018234" datatype="html"> <trans-unit id="6391724349488018234" datatype="html">
<source>Indexing in progress</source> <source>Indexing in progress</source>
<target>Indeksowanie w toku</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context> <context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
<context context-type="linenumber">121,116</context> <context context-type="linenumber">121,116</context>
@ -6591,6 +6638,7 @@
</trans-unit> </trans-unit>
<trans-unit id="e422817608e8d55e08b45a1da2e118eb42815af4" datatype="html"> <trans-unit id="e422817608e8d55e08b45a1da2e118eb42815af4" datatype="html">
<source>Active nodes</source> <source>Active nodes</source>
<target>Aktywne węzły</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
<context context-type="linenumber">14,18</context> <context context-type="linenumber">14,18</context>

View File

@ -359,7 +359,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,291</context> <context context-type="linenumber">303,304</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -384,7 +384,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">291,292</context> <context context-type="linenumber">304,305</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -426,7 +426,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">40,41</context> <context context-type="linenumber">38,39</context>
</context-group> </context-group>
<note priority="1" from="description">block.hash</note> <note priority="1" from="description">block.hash</note>
</trans-unit> </trans-unit>
@ -451,7 +451,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">44,46</context> <context context-type="linenumber">42,44</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -594,7 +594,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">49,51</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context>
@ -1054,7 +1054,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">246,247</context> <context context-type="linenumber">245,246</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -1532,7 +1532,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">57,60</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="address-label.multisig" datatype="html"> <trans-unit id="address-label.multisig" datatype="html">
@ -1668,7 +1668,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">29,31</context> <context context-type="linenumber">31,33</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context>
@ -1890,7 +1890,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">30,31</context> <context context-type="linenumber">32,33</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ticker header</note> <note priority="1" from="description">Asset ticker header</note>
</trans-unit> </trans-unit>
@ -1903,7 +1903,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">31,34</context> <context context-type="linenumber">33,36</context>
</context-group> </context-group>
<note priority="1" from="description">Asset Issuer Domain header</note> <note priority="1" from="description">Asset Issuer Domain header</note>
</trans-unit> </trans-unit>
@ -1916,7 +1916,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">32,36</context> <context context-type="linenumber">34,38</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ID header</note> <note priority="1" from="description">Asset ID header</note>
</trans-unit> </trans-unit>
@ -1925,7 +1925,7 @@
<target>Fel vid inläsning av assets-data.</target> <target>Fel vid inläsning av assets-data.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">48,53</context> <context context-type="linenumber">50,55</context>
</context-group> </context-group>
<note priority="1" from="description">Asset data load error</note> <note priority="1" from="description">Asset data load error</note>
</trans-unit> </trans-unit>
@ -2143,7 +2143,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476</context> <context context-type="linenumber">478</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context>
@ -2169,7 +2169,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476,477</context> <context context-type="linenumber">478,479</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2191,7 +2191,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">479,481</context> <context context-type="linenumber">481,483</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context>
@ -2203,7 +2203,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">38,39</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">Transaction fee rate</note> <note priority="1" from="description">Transaction fee rate</note>
<note priority="1" from="meaning">transaction.fee-rate</note> <note priority="1" from="meaning">transaction.fee-rate</note>
@ -2221,11 +2221,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">125,128</context> <context context-type="linenumber">123,126</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -2285,11 +2285,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">481,484</context> <context context-type="linenumber">483,486</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">492,494</context> <context context-type="linenumber">494,496</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2301,7 +2301,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">204,208</context> <context context-type="linenumber">206,210</context>
</context-group> </context-group>
<note priority="1" from="description">sat/vB</note> <note priority="1" from="description">sat/vB</note>
<note priority="1" from="meaning">shared.sat-vbyte</note> <note priority="1" from="meaning">shared.sat-vbyte</note>
@ -2470,7 +2470,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">50,52</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2518,7 +2518,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">54,56</context> <context context-type="linenumber">52,54</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2556,7 +2556,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">128,129</context> <context context-type="linenumber">126,127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2573,11 +2573,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">133,135</context> <context context-type="linenumber">131,133</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">159,162</context> <context context-type="linenumber">157,160</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2595,7 +2595,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">168,170</context> <context context-type="linenumber">166,168</context>
</context-group> </context-group>
<note priority="1" from="description">block.miner</note> <note priority="1" from="description">block.miner</note>
</trans-unit> </trans-unit>
@ -2608,7 +2608,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.ts</context> <context context-type="sourcefile">src/app/components/block/block.component.ts</context>
<context context-type="linenumber">227</context> <context context-type="linenumber">234</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html"> <trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html">
@ -2633,21 +2633,29 @@
</context-group> </context-group>
<note priority="1" from="description">Previous Block</note> <note priority="1" from="description">Previous Block</note>
</trans-unit> </trans-unit>
<trans-unit id="930c93e0c7afdf0f8d926773d5157c803bdc86e1" datatype="html"> <trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Block health</source> <source>Health</source>
<target>Blockhälsa</target> <target>Hälsa</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">56</context>
</context-group> </context-group>
<note priority="1" from="description">block.health</note> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit> </trans-unit>
<trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html"> <trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html">
<source>Unknown</source> <source>Unknown</source>
<target>Okända</target> <target>Okända</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">69,72</context> <context context-type="linenumber">67,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2676,7 +2684,7 @@
<target>Avgiftspann</target> <target>Avgiftspann</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">124,125</context> <context context-type="linenumber">122,123</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2689,7 +2697,7 @@
<target>Baserat på en genomsnittlig native segwit-transaktion på 140 vBytes</target> <target>Baserat på en genomsnittlig native segwit-transaktion på 140 vBytes</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129,131</context> <context context-type="linenumber">127,129</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context> <context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context>
@ -2718,48 +2726,61 @@
<target>Subvention + avgifter:</target> <target>Subvention + avgifter:</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">148,151</context> <context context-type="linenumber">146,149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">163,167</context> <context context-type="linenumber">161,165</context>
</context-group> </context-group>
<note priority="1" from="description">Total subsidy and fees in a block</note> <note priority="1" from="description">Total subsidy and fees in a block</note>
<note priority="1" from="meaning">block.subsidy-and-fees</note> <note priority="1" from="meaning">block.subsidy-and-fees</note>
</trans-unit> </trans-unit>
<trans-unit id="26f41d32df1646d45fcb03fe6952fb3eccf60b0f" datatype="html"> <trans-unit id="23fa95fce7b4badf5ad584d4a1712d558266266f" datatype="html">
<source>Projected</source> <source>Expected</source>
<target>Projekterad</target> <target>Förväntat</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">210,212</context> <context context-type="linenumber">209</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected</note> <note priority="1" from="description">block.expected</note>
</trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">209,210</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">215,217</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit> </trans-unit>
<trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html"> <trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html">
<source>Actual</source> <source>Actual</source>
<target>Faktiskt</target> <target>Faktiskt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">212,216</context> <context context-type="linenumber">211,215</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual</note> <note priority="1" from="description">block.actual</note>
</trans-unit> </trans-unit>
<trans-unit id="a37e529c0d7b39d95861dd019cb78bb9ac9a3c5d" datatype="html"> <trans-unit id="97577daae15cc7f30ab4d0f4f4dfb8045477aefd" datatype="html">
<source>Projected Block</source> <source>Expected Block</source>
<target>Projekterat block</target> <target>Förväntat block</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">216,218</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected-block</note> <note priority="1" from="description">block.expected-block</note>
</trans-unit> </trans-unit>
<trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html"> <trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html">
<source>Actual Block</source> <source>Actual Block</source>
<target>Faktiskt block</target> <target>Faktiskt block</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">225,227</context> <context context-type="linenumber">224</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual-block</note> <note priority="1" from="description">block.actual-block</note>
</trans-unit> </trans-unit>
@ -2768,7 +2789,7 @@
<target>Bitar</target> <target>Bitar</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">250,252</context> <context context-type="linenumber">249,251</context>
</context-group> </context-group>
<note priority="1" from="description">block.bits</note> <note priority="1" from="description">block.bits</note>
</trans-unit> </trans-unit>
@ -2777,7 +2798,7 @@
<target>Merkle root</target> <target>Merkle root</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">254,256</context> <context context-type="linenumber">253,255</context>
</context-group> </context-group>
<note priority="1" from="description">block.merkle-root</note> <note priority="1" from="description">block.merkle-root</note>
</trans-unit> </trans-unit>
@ -2786,7 +2807,7 @@
<target>Svårighet</target> <target>Svårighet</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">265,268</context> <context context-type="linenumber">264,267</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context> <context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context>
@ -2815,7 +2836,7 @@
<target>Nonce</target> <target>Nonce</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">269,271</context> <context context-type="linenumber">268,270</context>
</context-group> </context-group>
<note priority="1" from="description">block.nonce</note> <note priority="1" from="description">block.nonce</note>
</trans-unit> </trans-unit>
@ -2824,16 +2845,26 @@
<target>Block Header Hex</target> <target>Block Header Hex</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">273,274</context> <context context-type="linenumber">272,273</context>
</context-group> </context-group>
<note priority="1" from="description">block.header</note> <note priority="1" from="description">block.header</note>
</trans-unit> </trans-unit>
<trans-unit id="ccf00caac258749fa1c5fd488fb15368fa6fce37" datatype="html">
<source>Audit</source>
<target>Granskning</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,294</context>
</context-group>
<note priority="1" from="description">Toggle Audit</note>
<note priority="1" from="meaning">block.toggle-audit</note>
</trans-unit>
<trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html"> <trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html">
<source>Details</source> <source>Details</source>
<target>Detaljer</target> <target>Detaljer</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">284,288</context> <context context-type="linenumber">297,301</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2859,11 +2890,11 @@
<target>Fel vid laddning av data.</target> <target>Fel vid laddning av data.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">303,305</context> <context context-type="linenumber">316,318</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">339,343</context> <context context-type="linenumber">355,359</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
@ -2888,7 +2919,7 @@
<target>Varför är blocket tomt?</target> <target>Varför är blocket tomt?</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">361,367</context> <context context-type="linenumber">377,383</context>
</context-group> </context-group>
<note priority="1" from="description">block.empty-block-explanation</note> <note priority="1" from="description">block.empty-block-explanation</note>
</trans-unit> </trans-unit>
@ -2934,19 +2965,6 @@
</context-group> </context-group>
<note priority="1" from="description">latest-blocks.mined</note> <note priority="1" from="description">latest-blocks.mined</note>
</trans-unit> </trans-unit>
<trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Health</source>
<target>Hälsa</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit>
<trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html"> <trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html">
<source>Reward</source> <source>Reward</source>
<target>Belöning</target> <target>Belöning</target>
@ -3010,7 +3028,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">210,214</context> <context context-type="linenumber">212,216</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.txs</note> <note priority="1" from="description">dashboard.txs</note>
</trans-unit> </trans-unit>
@ -3249,7 +3267,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">237,238</context> <context context-type="linenumber">239,240</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.incoming-transactions</note> <note priority="1" from="description">dashboard.incoming-transactions</note>
</trans-unit> </trans-unit>
@ -3262,7 +3280,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">240,243</context> <context context-type="linenumber">242,245</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.backend-is-synchronizing</note> <note priority="1" from="description">dashboard.backend-is-synchronizing</note>
</trans-unit> </trans-unit>
@ -3275,7 +3293,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">245,250</context> <context context-type="linenumber">247,252</context>
</context-group> </context-group>
<note priority="1" from="description">vB/s</note> <note priority="1" from="description">vB/s</note>
<note priority="1" from="meaning">shared.vbytes-per-second</note> <note priority="1" from="meaning">shared.vbytes-per-second</note>
@ -3289,7 +3307,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">208,209</context> <context context-type="linenumber">210,211</context>
</context-group> </context-group>
<note priority="1" from="description">Unconfirmed count</note> <note priority="1" from="description">Unconfirmed count</note>
<note priority="1" from="meaning">dashboard.unconfirmed</note> <note priority="1" from="meaning">dashboard.unconfirmed</note>
@ -3546,7 +3564,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">51,53</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context> <context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context>
@ -3572,7 +3590,7 @@
<target>Lightningutforskare</target> <target>Lightningutforskare</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,47</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context> <context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context>
@ -3580,21 +3598,12 @@
</context-group> </context-group>
<note priority="1" from="description">master-page.lightning</note> <note priority="1" from="description">master-page.lightning</note>
</trans-unit> </trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>beta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">45,48</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit>
<trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html"> <trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html">
<source>Documentation</source> <source>Documentation</source>
<target>Dokumentation</target> <target>Dokumentation</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">55,57</context> <context context-type="linenumber">54,56</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/docs/docs.component.html</context> <context context-type="sourcefile">src/app/docs/docs/docs.component.html</context>
@ -4052,7 +4061,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">154,161</context> <context context-type="linenumber">154,162</context>
</context-group> </context-group>
<note priority="1" from="description">Broadcast Transaction</note> <note priority="1" from="description">Broadcast Transaction</note>
<note priority="1" from="meaning">shared.broadcast-transaction</note> <note priority="1" from="meaning">shared.broadcast-transaction</note>
@ -4652,7 +4661,7 @@
<target>Effektiv avgiftssats</target> <target>Effektiv avgiftssats</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">489,492</context> <context context-type="linenumber">491,494</context>
</context-group> </context-group>
<note priority="1" from="description">Effective transaction fee rate</note> <note priority="1" from="description">Effective transaction fee rate</note>
<note priority="1" from="meaning">transaction.effective-fee-rate</note> <note priority="1" from="meaning">transaction.effective-fee-rate</note>
@ -5075,7 +5084,7 @@
<target>Minimumavgift</target> <target>Minimumavgift</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">201,202</context> <context context-type="linenumber">203,204</context>
</context-group> </context-group>
<note priority="1" from="description">Minimum mempool fee</note> <note priority="1" from="description">Minimum mempool fee</note>
<note priority="1" from="meaning">dashboard.minimum-fee</note> <note priority="1" from="meaning">dashboard.minimum-fee</note>
@ -5085,7 +5094,7 @@
<target>Förkastar</target> <target>Förkastar</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">202,203</context> <context context-type="linenumber">204,205</context>
</context-group> </context-group>
<note priority="1" from="description">Purgin below fee</note> <note priority="1" from="description">Purgin below fee</note>
<note priority="1" from="meaning">dashboard.purging</note> <note priority="1" from="meaning">dashboard.purging</note>
@ -5095,7 +5104,7 @@
<target>Minnesanvändning</target> <target>Minnesanvändning</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">214,215</context> <context context-type="linenumber">216,217</context>
</context-group> </context-group>
<note priority="1" from="description">Memory usage</note> <note priority="1" from="description">Memory usage</note>
<note priority="1" from="meaning">dashboard.memory-usage</note> <note priority="1" from="meaning">dashboard.memory-usage</note>
@ -5105,7 +5114,7 @@
<target>L-BTC i cirkulation</target> <target>L-BTC i cirkulation</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">228,230</context> <context context-type="linenumber">230,232</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note> <note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note>
</trans-unit> </trans-unit>
@ -5114,7 +5123,7 @@
<target>REST API service</target> <target>REST API service</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.title</note> <note priority="1" from="description">api-docs.title</note>
</trans-unit> </trans-unit>
@ -5123,11 +5132,11 @@
<target>Slutpunkt</target> <target>Slutpunkt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">48,49</context> <context context-type="linenumber">50,51</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">102,105</context> <context context-type="linenumber">104,107</context>
</context-group> </context-group>
<note priority="1" from="description">Api docs endpoint</note> <note priority="1" from="description">Api docs endpoint</note>
</trans-unit> </trans-unit>
@ -5136,11 +5145,11 @@
<target>Beskrivning</target> <target>Beskrivning</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">67,68</context> <context context-type="linenumber">69,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">106,107</context> <context context-type="linenumber">108,109</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html">
@ -5148,7 +5157,7 @@
<target>Standard push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för att uttrycka vad du vill ha pushat. Tillgängligt: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, och <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Pusha transaktioner relaterat till address: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för att ta emot alla nya transaktioner innehållandes den addressen som input eller output. Returnerar en lista av transaktioner. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för nya mempooltransaktioner, och <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för nya blockbekräftade transaktioner.</target> <target>Standard push: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> action: 'want', data: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för att uttrycka vad du vill ha pushat. Tillgängligt: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>, och <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>.<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>Pusha transaktioner relaterat till address: <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/> 'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för att ta emot alla nya transaktioner innehållandes den addressen som input eller output. Returnerar en lista av transaktioner. <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för nya mempooltransaktioner, och <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/> för nya blockbekräftade transaktioner.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">107,108</context> <context context-type="linenumber">109,110</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.websocket.websocket</note> <note priority="1" from="description">api-docs.websocket.websocket</note>
</trans-unit> </trans-unit>
@ -5321,7 +5330,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">120,121</context> <context context-type="linenumber">123,124</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.x-channels</note> <note priority="1" from="description">lightning.x-channels</note>
</trans-unit> </trans-unit>
@ -5367,7 +5376,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">65,66</context> <context context-type="linenumber">68,69</context>
</context-group> </context-group>
<note priority="1" from="description">status.inactive</note> <note priority="1" from="description">status.inactive</note>
</trans-unit> </trans-unit>
@ -5384,7 +5393,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">66,68</context> <context context-type="linenumber">69,71</context>
</context-group> </context-group>
<note priority="1" from="description">status.active</note> <note priority="1" from="description">status.active</note>
</trans-unit> </trans-unit>
@ -5405,7 +5414,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">68,70</context> <context context-type="linenumber">71,73</context>
</context-group> </context-group>
<note priority="1" from="description">status.closed</note> <note priority="1" from="description">status.closed</note>
</trans-unit> </trans-unit>
@ -5435,7 +5444,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">40,43</context> <context context-type="linenumber">43,46</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context>
@ -5551,7 +5560,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">42,43</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.closing_date</note> <note priority="1" from="description">lightning.closing_date</note>
</trans-unit> </trans-unit>
@ -5604,7 +5613,7 @@
<target>Inga kanaler att visa</target> <target>Inga kanaler att visa</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">29,35</context> <context context-type="linenumber">29,37</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.empty-channels-list</note> <note priority="1" from="description">lightning.empty-channels-list</note>
</trans-unit> </trans-unit>
@ -5613,7 +5622,7 @@
<target>Alias</target> <target>Alias</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">35,37</context> <context context-type="linenumber">38,40</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/group/group.component.html</context> <context context-type="sourcefile">src/app/lightning/group/group.component.html</context>
@ -5650,7 +5659,7 @@
<target>Status</target> <target>Status</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">37,38</context> <context context-type="linenumber">40,41</context>
</context-group> </context-group>
<note priority="1" from="description">status</note> <note priority="1" from="description">status</note>
</trans-unit> </trans-unit>
@ -5659,7 +5668,7 @@
<target>Kanal-ID</target> <target>Kanal-ID</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">41,45</context> <context context-type="linenumber">44,48</context>
</context-group> </context-group>
<note priority="1" from="description">channels.id</note> <note priority="1" from="description">channels.id</note>
</trans-unit> </trans-unit>
@ -5668,11 +5677,11 @@
<target>sats</target> <target>sats</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">60,64</context> <context context-type="linenumber">63,67</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">84,88</context> <context context-type="linenumber">87,91</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>

View File

@ -147,6 +147,7 @@
</trans-unit> </trans-unit>
<trans-unit id="ngb.progressbar.value" datatype="html"> <trans-unit id="ngb.progressbar.value" datatype="html">
<source><x id="INTERPOLATION" equiv-text="* The maximal"/></source> <source><x id="INTERPOLATION" equiv-text="* The maximal"/></source>
<target><x id="INTERPOLATION" equiv-text="* The maximal"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context> <context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context>
<context context-type="linenumber">30,33</context> <context context-type="linenumber">30,33</context>
@ -357,7 +358,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,291</context> <context context-type="linenumber">303,304</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -382,7 +383,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">291,292</context> <context context-type="linenumber">304,305</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -424,7 +425,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">40,41</context> <context context-type="linenumber">38,39</context>
</context-group> </context-group>
<note priority="1" from="description">block.hash</note> <note priority="1" from="description">block.hash</note>
</trans-unit> </trans-unit>
@ -449,7 +450,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">44,46</context> <context context-type="linenumber">42,44</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -592,7 +593,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">49,51</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context> <context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context>
@ -1052,7 +1053,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">246,247</context> <context context-type="linenumber">245,246</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -1530,7 +1531,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">57,60</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="address-label.multisig" datatype="html"> <trans-unit id="address-label.multisig" datatype="html">
@ -1666,7 +1667,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">29,31</context> <context context-type="linenumber">31,33</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context> <context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context>
@ -1888,7 +1889,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">30,31</context> <context context-type="linenumber">32,33</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ticker header</note> <note priority="1" from="description">Asset ticker header</note>
</trans-unit> </trans-unit>
@ -1901,7 +1902,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">31,34</context> <context context-type="linenumber">33,36</context>
</context-group> </context-group>
<note priority="1" from="description">Asset Issuer Domain header</note> <note priority="1" from="description">Asset Issuer Domain header</note>
</trans-unit> </trans-unit>
@ -1914,7 +1915,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">32,36</context> <context context-type="linenumber">34,38</context>
</context-group> </context-group>
<note priority="1" from="description">Asset ID header</note> <note priority="1" from="description">Asset ID header</note>
</trans-unit> </trans-unit>
@ -1923,7 +1924,7 @@
<target>加载资产数据时出错。</target> <target>加载资产数据时出错。</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/assets/assets.component.html</context> <context context-type="sourcefile">src/app/components/assets/assets.component.html</context>
<context context-type="linenumber">48,53</context> <context context-type="linenumber">50,55</context>
</context-group> </context-group>
<note priority="1" from="description">Asset data load error</note> <note priority="1" from="description">Asset data load error</note>
</trans-unit> </trans-unit>
@ -2121,6 +2122,7 @@
</trans-unit> </trans-unit>
<trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html"> <trans-unit id="86c50fc2171298179283e3c9b6d79b57b821599b" datatype="html">
<source>not available</source> <source>not available</source>
<target>不可用</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-graph/block-overview-graph.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
@ -2140,7 +2142,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476</context> <context context-type="linenumber">478</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context>
@ -2166,7 +2168,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">476,477</context> <context context-type="linenumber">478,479</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2188,7 +2190,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">479,481</context> <context context-type="linenumber">481,483</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-box/channel-box.component.html</context>
@ -2200,7 +2202,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">38,39</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">Transaction fee rate</note> <note priority="1" from="description">Transaction fee rate</note>
<note priority="1" from="meaning">transaction.fee-rate</note> <note priority="1" from="meaning">transaction.fee-rate</note>
@ -2218,11 +2220,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">125,128</context> <context context-type="linenumber">123,126</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context> <context context-type="sourcefile">src/app/components/blockchain-blocks/blockchain-blocks.component.html</context>
@ -2282,11 +2284,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">481,484</context> <context context-type="linenumber">483,486</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">492,494</context> <context context-type="linenumber">494,496</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@ -2298,7 +2300,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">204,208</context> <context context-type="linenumber">206,210</context>
</context-group> </context-group>
<note priority="1" from="description">sat/vB</note> <note priority="1" from="description">sat/vB</note>
<note priority="1" from="meaning">shared.sat-vbyte</note> <note priority="1" from="meaning">shared.sat-vbyte</note>
@ -2323,6 +2325,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html"> <trans-unit id="1a8035ac608b083c29407327290b7cc9d6cbb95d" datatype="html">
<source>Audit status</source> <source>Audit status</source>
<target>审计情况</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">36</context> <context context-type="linenumber">36</context>
@ -2331,6 +2334,7 @@
</trans-unit> </trans-unit>
<trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html"> <trans-unit id="180092a6b8a6151a05f4a7552a2fb75fd159dfa8" datatype="html">
<source>Match</source> <source>Match</source>
<target>匹配</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">38</context>
@ -2339,6 +2343,7 @@
</trans-unit> </trans-unit>
<trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html"> <trans-unit id="1aa4883bc4f1352f7a0bdd94810a9bf6dc22bd02" datatype="html">
<source>Removed</source> <source>Removed</source>
<target>已移除</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context> <context context-type="sourcefile">src/app/components/block-overview-tooltip/block-overview-tooltip.component.html</context>
<context context-type="linenumber">39</context> <context context-type="linenumber">39</context>
@ -2462,7 +2467,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">50,52</context> <context context-type="linenumber">48,50</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2510,7 +2515,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">54,56</context> <context context-type="linenumber">52,54</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2548,7 +2553,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">128,129</context> <context context-type="linenumber">126,127</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2565,11 +2570,11 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">133,135</context> <context context-type="linenumber">131,133</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">159,162</context> <context context-type="linenumber">157,160</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2587,7 +2592,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">168,170</context> <context context-type="linenumber">166,168</context>
</context-group> </context-group>
<note priority="1" from="description">block.miner</note> <note priority="1" from="description">block.miner</note>
</trans-unit> </trans-unit>
@ -2600,7 +2605,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.ts</context> <context context-type="sourcefile">src/app/components/block/block.component.ts</context>
<context context-type="linenumber">227</context> <context context-type="linenumber">234</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html"> <trans-unit id="bdf0e930eb22431140a2eaeacd809cc5f8ebd38c" datatype="html">
@ -2625,20 +2630,29 @@
</context-group> </context-group>
<note priority="1" from="description">Previous Block</note> <note priority="1" from="description">Previous Block</note>
</trans-unit> </trans-unit>
<trans-unit id="930c93e0c7afdf0f8d926773d5157c803bdc86e1" datatype="html"> <trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Block health</source> <source>Health</source>
<target>健康度</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">58,61</context> <context context-type="linenumber">56</context>
</context-group> </context-group>
<note priority="1" from="description">block.health</note> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit> </trans-unit>
<trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html"> <trans-unit id="e5d8bb389c702588877f039d72178f219453a72d" datatype="html">
<source>Unknown</source> <source>Unknown</source>
<target>未知</target> <target>未知</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">69,72</context> <context context-type="linenumber">67,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context> <context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
@ -2667,7 +2681,7 @@
<target>费用范围</target> <target>费用范围</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">124,125</context> <context context-type="linenumber">122,123</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
@ -2680,7 +2694,7 @@
<target>基于平均140字节的本地segwit交易</target> <target>基于平均140字节的本地segwit交易</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">129,131</context> <context context-type="linenumber">127,129</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context> <context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context>
@ -2709,44 +2723,57 @@
<target>奖励+手续费:</target> <target>奖励+手续费:</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">148,151</context> <context context-type="linenumber">146,149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">163,167</context> <context context-type="linenumber">161,165</context>
</context-group> </context-group>
<note priority="1" from="description">Total subsidy and fees in a block</note> <note priority="1" from="description">Total subsidy and fees in a block</note>
<note priority="1" from="meaning">block.subsidy-and-fees</note> <note priority="1" from="meaning">block.subsidy-and-fees</note>
</trans-unit> </trans-unit>
<trans-unit id="26f41d32df1646d45fcb03fe6952fb3eccf60b0f" datatype="html"> <trans-unit id="23fa95fce7b4badf5ad584d4a1712d558266266f" datatype="html">
<source>Projected</source> <source>Expected</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">210,212</context> <context context-type="linenumber">209</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected</note> <note priority="1" from="description">block.expected</note>
</trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>测试</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">209,210</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">215,217</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit> </trans-unit>
<trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html"> <trans-unit id="1da6d9283e3222148d76c10c8e37abeeb66c93cb" datatype="html">
<source>Actual</source> <source>Actual</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">212,216</context> <context context-type="linenumber">211,215</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual</note> <note priority="1" from="description">block.actual</note>
</trans-unit> </trans-unit>
<trans-unit id="a37e529c0d7b39d95861dd019cb78bb9ac9a3c5d" datatype="html"> <trans-unit id="97577daae15cc7f30ab4d0f4f4dfb8045477aefd" datatype="html">
<source>Projected Block</source> <source>Expected Block</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">216,218</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<note priority="1" from="description">block.projected-block</note> <note priority="1" from="description">block.expected-block</note>
</trans-unit> </trans-unit>
<trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html"> <trans-unit id="6efa73f0d6f0844a1e0c341c9b88323f51852d91" datatype="html">
<source>Actual Block</source> <source>Actual Block</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">225,227</context> <context context-type="linenumber">224</context>
</context-group> </context-group>
<note priority="1" from="description">block.actual-block</note> <note priority="1" from="description">block.actual-block</note>
</trans-unit> </trans-unit>
@ -2755,7 +2782,7 @@
<target>字节</target> <target>字节</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">250,252</context> <context context-type="linenumber">249,251</context>
</context-group> </context-group>
<note priority="1" from="description">block.bits</note> <note priority="1" from="description">block.bits</note>
</trans-unit> </trans-unit>
@ -2764,7 +2791,7 @@
<target>哈希树</target> <target>哈希树</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">254,256</context> <context context-type="linenumber">253,255</context>
</context-group> </context-group>
<note priority="1" from="description">block.merkle-root</note> <note priority="1" from="description">block.merkle-root</note>
</trans-unit> </trans-unit>
@ -2773,7 +2800,7 @@
<target>难度</target> <target>难度</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">265,268</context> <context context-type="linenumber">264,267</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context> <context context-type="sourcefile">src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html</context>
@ -2802,7 +2829,7 @@
<target>随机数</target> <target>随机数</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">269,271</context> <context context-type="linenumber">268,270</context>
</context-group> </context-group>
<note priority="1" from="description">block.nonce</note> <note priority="1" from="description">block.nonce</note>
</trans-unit> </trans-unit>
@ -2811,16 +2838,25 @@
<target>区块头字节</target> <target>区块头字节</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">273,274</context> <context context-type="linenumber">272,273</context>
</context-group> </context-group>
<note priority="1" from="description">block.header</note> <note priority="1" from="description">block.header</note>
</trans-unit> </trans-unit>
<trans-unit id="ccf00caac258749fa1c5fd488fb15368fa6fce37" datatype="html">
<source>Audit</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">290,294</context>
</context-group>
<note priority="1" from="description">Toggle Audit</note>
<note priority="1" from="meaning">block.toggle-audit</note>
</trans-unit>
<trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html"> <trans-unit id="5f32c623f92bf3ca31202cc6281d4abd5febaf6a" datatype="html">
<source>Details</source> <source>Details</source>
<target>明细</target> <target>明细</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">284,288</context> <context context-type="linenumber">297,301</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
@ -2846,11 +2882,11 @@
<target>加载数据时出错。</target> <target>加载数据时出错。</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">303,305</context> <context context-type="linenumber">316,318</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">339,343</context> <context context-type="linenumber">355,359</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context> <context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
@ -2874,7 +2910,7 @@
<source>Why is this block empty?</source> <source>Why is this block empty?</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">361,367</context> <context context-type="linenumber">377,383</context>
</context-group> </context-group>
<note priority="1" from="description">block.empty-block-explanation</note> <note priority="1" from="description">block.empty-block-explanation</note>
</trans-unit> </trans-unit>
@ -2920,18 +2956,6 @@
</context-group> </context-group>
<note priority="1" from="description">latest-blocks.mined</note> <note priority="1" from="description">latest-blocks.mined</note>
</trans-unit> </trans-unit>
<trans-unit id="d2bcd3296d2850de762fb943060b7e086a893181" datatype="html">
<source>Health</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/blocks-list/blocks-list.component.html</context>
<context context-type="linenumber">18,19</context>
</context-group>
<note priority="1" from="description">latest-blocks.health</note>
</trans-unit>
<trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html"> <trans-unit id="12f86e6747a5ad39e62d3480ddc472b1aeab5b76" datatype="html">
<source>Reward</source> <source>Reward</source>
<target>奖励</target> <target>奖励</target>
@ -2995,7 +3019,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">210,214</context> <context context-type="linenumber">212,216</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.txs</note> <note priority="1" from="description">dashboard.txs</note>
</trans-unit> </trans-unit>
@ -3234,7 +3258,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">237,238</context> <context context-type="linenumber">239,240</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.incoming-transactions</note> <note priority="1" from="description">dashboard.incoming-transactions</note>
</trans-unit> </trans-unit>
@ -3247,7 +3271,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">240,243</context> <context context-type="linenumber">242,245</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.backend-is-synchronizing</note> <note priority="1" from="description">dashboard.backend-is-synchronizing</note>
</trans-unit> </trans-unit>
@ -3260,7 +3284,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">245,250</context> <context context-type="linenumber">247,252</context>
</context-group> </context-group>
<note priority="1" from="description">vB/s</note> <note priority="1" from="description">vB/s</note>
<note priority="1" from="meaning">shared.vbytes-per-second</note> <note priority="1" from="meaning">shared.vbytes-per-second</note>
@ -3274,7 +3298,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">208,209</context> <context context-type="linenumber">210,211</context>
</context-group> </context-group>
<note priority="1" from="description">Unconfirmed count</note> <note priority="1" from="description">Unconfirmed count</note>
<note priority="1" from="meaning">dashboard.unconfirmed</note> <note priority="1" from="meaning">dashboard.unconfirmed</note>
@ -3531,7 +3555,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">52,54</context> <context context-type="linenumber">51,53</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context> <context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context>
@ -3557,7 +3581,7 @@
<target>闪电网络浏览器</target> <target>闪电网络浏览器</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,47</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context> <context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context>
@ -3565,21 +3589,12 @@
</context-group> </context-group>
<note priority="1" from="description">master-page.lightning</note> <note priority="1" from="description">master-page.lightning</note>
</trans-unit> </trans-unit>
<trans-unit id="7cbedd89f60daafaf0e56363900d666a4e02ffb1" datatype="html">
<source>beta</source>
<target>测试</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">45,48</context>
</context-group>
<note priority="1" from="description">beta</note>
</trans-unit>
<trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html"> <trans-unit id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7" datatype="html">
<source>Documentation</source> <source>Documentation</source>
<target>文档</target> <target>文档</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context> <context context-type="sourcefile">src/app/components/master-page/master-page.component.html</context>
<context context-type="linenumber">55,57</context> <context context-type="linenumber">54,56</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/docs/docs.component.html</context> <context context-type="sourcefile">src/app/docs/docs/docs.component.html</context>
@ -4037,7 +4052,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">154,161</context> <context context-type="linenumber">154,162</context>
</context-group> </context-group>
<note priority="1" from="description">Broadcast Transaction</note> <note priority="1" from="description">Broadcast Transaction</note>
<note priority="1" from="meaning">shared.broadcast-transaction</note> <note priority="1" from="meaning">shared.broadcast-transaction</note>
@ -4103,6 +4118,7 @@
</trans-unit> </trans-unit>
<trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html"> <trans-unit id="0705223420d290a218e4ed83bd4d904454a9cee8" datatype="html">
<source>BTC/block</source> <source>BTC/block</source>
<target>BTC/块</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">21,24</context> <context context-type="linenumber">21,24</context>
@ -4112,6 +4128,7 @@
</trans-unit> </trans-unit>
<trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html"> <trans-unit id="cf3a97b1c1546b843411cfe101bc55ba2ac46bac" datatype="html">
<source>Avg Tx Fee</source> <source>Avg Tx Fee</source>
<target>平均单笔交易费率</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context> <context context-type="sourcefile">src/app/components/reward-stats/reward-stats.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@ -4631,7 +4648,7 @@
<target>有效收费率</target> <target>有效收费率</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">489,492</context> <context context-type="linenumber">491,494</context>
</context-group> </context-group>
<note priority="1" from="description">Effective transaction fee rate</note> <note priority="1" from="description">Effective transaction fee rate</note>
<note priority="1" from="meaning">transaction.effective-fee-rate</note> <note priority="1" from="meaning">transaction.effective-fee-rate</note>
@ -5051,7 +5068,7 @@
<target>最低费用</target> <target>最低费用</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">201,202</context> <context context-type="linenumber">203,204</context>
</context-group> </context-group>
<note priority="1" from="description">Minimum mempool fee</note> <note priority="1" from="description">Minimum mempool fee</note>
<note priority="1" from="meaning">dashboard.minimum-fee</note> <note priority="1" from="meaning">dashboard.minimum-fee</note>
@ -5061,7 +5078,7 @@
<target>吹扫中</target> <target>吹扫中</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">202,203</context> <context context-type="linenumber">204,205</context>
</context-group> </context-group>
<note priority="1" from="description">Purgin below fee</note> <note priority="1" from="description">Purgin below fee</note>
<note priority="1" from="meaning">dashboard.purging</note> <note priority="1" from="meaning">dashboard.purging</note>
@ -5071,7 +5088,7 @@
<target>内存占用</target> <target>内存占用</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">214,215</context> <context context-type="linenumber">216,217</context>
</context-group> </context-group>
<note priority="1" from="description">Memory usage</note> <note priority="1" from="description">Memory usage</note>
<note priority="1" from="meaning">dashboard.memory-usage</note> <note priority="1" from="meaning">dashboard.memory-usage</note>
@ -5081,7 +5098,7 @@
<target>流通中的L-BTC</target> <target>流通中的L-BTC</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">228,230</context> <context context-type="linenumber">230,232</context>
</context-group> </context-group>
<note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note> <note priority="1" from="description">dashboard.lbtc-pegs-in-circulation</note>
</trans-unit> </trans-unit>
@ -5090,7 +5107,7 @@
<target>REST API 服务</target> <target>REST API 服务</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">41,42</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.title</note> <note priority="1" from="description">api-docs.title</note>
</trans-unit> </trans-unit>
@ -5099,11 +5116,11 @@
<target>Endpoint</target> <target>Endpoint</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">48,49</context> <context context-type="linenumber">50,51</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">102,105</context> <context context-type="linenumber">104,107</context>
</context-group> </context-group>
<note priority="1" from="description">Api docs endpoint</note> <note priority="1" from="description">Api docs endpoint</note>
</trans-unit> </trans-unit>
@ -5112,11 +5129,11 @@
<target>描述</target> <target>描述</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">67,68</context> <context context-type="linenumber">69,70</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">106,107</context> <context context-type="linenumber">108,109</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html"> <trans-unit id="a706b1ded7506620b153dbcdea8108e6691bbbd9" datatype="html">
@ -5124,7 +5141,7 @@
<target>默认推送:<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>操作: 'want', 数据: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>来表达你想要推送的内容。可用字段:<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/><x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/><x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>,和<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>。<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>推送与地址有关的事务。<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>接收所有包含该地址的新事务作为输入或输出。返回一个交易数组。<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>用于新的mempool交易<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>用于新的块确认交易。</target> <target>默认推送:<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>操作: 'want', 数据: ['blocks', ...] <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>来表达你想要推送的内容。可用字段:<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/><x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>mempool-blocks<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/><x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>live-2h-chart<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>,和<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>stats<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>。<x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/><x id="LINE_BREAK" ctype="lb" equiv-text="Push transa"/>推送与地址有关的事务。<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/><x id="INTERPOLATION" equiv-text="'track-ad"/>'track-address': '3PbJ...bF9B' <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>接收所有包含该地址的新事务作为输入或输出。返回一个交易数组。<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>address-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>用于新的mempool交易<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&gt;"/>block-transactions<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&gt;"/>用于新的块确认交易。</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
<context context-type="linenumber">107,108</context> <context context-type="linenumber">109,110</context>
</context-group> </context-group>
<note priority="1" from="description">api-docs.websocket.websocket</note> <note priority="1" from="description">api-docs.websocket.websocket</note>
</trans-unit> </trans-unit>
@ -5297,7 +5314,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">120,121</context> <context context-type="linenumber">123,124</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.x-channels</note> <note priority="1" from="description">lightning.x-channels</note>
</trans-unit> </trans-unit>
@ -5341,7 +5358,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">65,66</context> <context context-type="linenumber">68,69</context>
</context-group> </context-group>
<note priority="1" from="description">status.inactive</note> <note priority="1" from="description">status.inactive</note>
</trans-unit> </trans-unit>
@ -5358,7 +5375,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">66,68</context> <context context-type="linenumber">69,71</context>
</context-group> </context-group>
<note priority="1" from="description">status.active</note> <note priority="1" from="description">status.active</note>
</trans-unit> </trans-unit>
@ -5379,7 +5396,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">68,70</context> <context context-type="linenumber">71,73</context>
</context-group> </context-group>
<note priority="1" from="description">status.closed</note> <note priority="1" from="description">status.closed</note>
</trans-unit> </trans-unit>
@ -5409,7 +5426,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">40,43</context> <context context-type="linenumber">43,46</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/node-statistics/node-statistics.component.html</context>
@ -5525,7 +5542,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">39,40</context> <context context-type="linenumber">42,43</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.closing_date</note> <note priority="1" from="description">lightning.closing_date</note>
</trans-unit> </trans-unit>
@ -5577,7 +5594,7 @@
<target>没有可展示的频道</target> <target>没有可展示的频道</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">29,35</context> <context context-type="linenumber">29,37</context>
</context-group> </context-group>
<note priority="1" from="description">lightning.empty-channels-list</note> <note priority="1" from="description">lightning.empty-channels-list</note>
</trans-unit> </trans-unit>
@ -5586,7 +5603,7 @@
<target>备注</target> <target>备注</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">35,37</context> <context context-type="linenumber">38,40</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/group/group.component.html</context> <context context-type="sourcefile">src/app/lightning/group/group.component.html</context>
@ -5623,7 +5640,7 @@
<target>状态</target> <target>状态</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">37,38</context> <context context-type="linenumber">40,41</context>
</context-group> </context-group>
<note priority="1" from="description">status</note> <note priority="1" from="description">status</note>
</trans-unit> </trans-unit>
@ -5632,7 +5649,7 @@
<target>频道 ID</target> <target>频道 ID</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">41,45</context> <context context-type="linenumber">44,48</context>
</context-group> </context-group>
<note priority="1" from="description">channels.id</note> <note priority="1" from="description">channels.id</note>
</trans-unit> </trans-unit>
@ -5641,11 +5658,11 @@
<target>sats</target> <target>sats</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">60,64</context> <context context-type="linenumber">63,67</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
<context context-type="linenumber">84,88</context> <context context-type="linenumber">87,91</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context> <context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
@ -6219,6 +6236,7 @@
</trans-unit> </trans-unit>
<trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html"> <trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html">
<source>Channel fee rate</source> <source>Channel fee rate</source>
<target>频道费率</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">168,171</context> <context context-type="linenumber">168,171</context>
@ -6228,6 +6246,7 @@
</trans-unit> </trans-unit>
<trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html"> <trans-unit id="4e6d03f01a59434dee25104fe9478041db186ca8" datatype="html">
<source>Channel base fee</source> <source>Channel base fee</source>
<target>频道基础费率</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context> <context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
<context context-type="linenumber">176,178</context> <context context-type="linenumber">176,178</context>

View File

@ -48,9 +48,9 @@ BITCOIN_MAINNET_ENABLE=ON
BITCOIN_MAINNET_MINFEE_ENABLE=ON BITCOIN_MAINNET_MINFEE_ENABLE=ON
BITCOIN_TESTNET_ENABLE=ON BITCOIN_TESTNET_ENABLE=ON
BITCOIN_SIGNET_ENABLE=ON BITCOIN_SIGNET_ENABLE=ON
LN_BITCOIN_MAINNET_ENABLE=ON BITCOIN_MAINNET_LIGHTNING_ENABLE=ON
LN_BITCOIN_TESTNET_ENABLE=ON BITCOIN_TESTNET_LIGHTNING_ENABLE=ON
LN_BITCOIN_SIGNET_ENABLE=ON BITCOIN_SIGNET_LIGHTNING_ENABLE=ON
BISQ_MAINNET_ENABLE=ON BISQ_MAINNET_ENABLE=ON
ELEMENTS_LIQUID_ENABLE=ON ELEMENTS_LIQUID_ENABLE=ON
ELEMENTS_LIQUIDTESTNET_ENABLE=ON ELEMENTS_LIQUIDTESTNET_ENABLE=ON
@ -230,9 +230,9 @@ MYSQL_GROUP=mysql
MEMPOOL_MAINNET_USER='mempool' MEMPOOL_MAINNET_USER='mempool'
MEMPOOL_TESTNET_USER='mempool_testnet' MEMPOOL_TESTNET_USER='mempool_testnet'
MEMPOOL_SIGNET_USER='mempool_signet' MEMPOOL_SIGNET_USER='mempool_signet'
LN_MEMPOOL_MAINNET_USER='mempool_mainnet_lightning' MEMPOOL_MAINNET_LIGHTNING_USER='mempool_mainnet_lightning'
LN_MEMPOOL_TESTNET_USER='mempool_testnet_lightning' MEMPOOL_TESTNET_LIGHTNING_USER='mempool_testnet_lightning'
LN_MEMPOOL_SIGNET_USER='mempool_signet_lightning' MEMPOOL_SIGNET_LIGHTNING_USER='mempool_signet_lightning'
MEMPOOL_LIQUID_USER='mempool_liquid' MEMPOOL_LIQUID_USER='mempool_liquid'
MEMPOOL_LIQUIDTESTNET_USER='mempool_liquidtestnet' MEMPOOL_LIQUIDTESTNET_USER='mempool_liquidtestnet'
MEMPOOL_BISQ_USER='mempool_bisq' MEMPOOL_BISQ_USER='mempool_bisq'
@ -240,9 +240,9 @@ MEMPOOL_BISQ_USER='mempool_bisq'
MEMPOOL_MAINNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_MAINNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
MEMPOOL_TESTNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_TESTNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
MEMPOOL_SIGNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_SIGNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
LN_MEMPOOL_MAINNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_MAINNET_LIGHTNING_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
LN_MEMPOOL_TESTNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_TESTNET_LIGHTNING_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
LN_MEMPOOL_SIGNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_SIGNET_LIGHTNING_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
MEMPOOL_LIQUID_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_LIQUID_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
MEMPOOL_LIQUIDTESTNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_LIQUIDTESTNET_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
MEMPOOL_BISQ_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}') MEMPOOL_BISQ_PASS=$(head -150 /dev/urandom | ${MD5} | awk '{print $1}')
@ -827,21 +827,21 @@ else
fi fi
if grep LN-Mainnet $tempfile >/dev/null 2>&1;then if grep LN-Mainnet $tempfile >/dev/null 2>&1;then
LN_BITCOIN_MAINNET_ENABLE=ON BITCOIN_MAINNET_LIGHTNING_ENABLE=ON
else else
LN_BITCOIN_MAINNET_ENABLE=OFF BITCOIN_MAINNET_LIGHTNING_ENABLE=OFF
fi fi
if grep LN-Testnet $tempfile >/dev/null 2>&1;then if grep LN-Testnet $tempfile >/dev/null 2>&1;then
LN_BITCOIN_TESTNET_ENABLE=ON BITCOIN_TESTNET_LIGHTNING_ENABLE=ON
else else
LN_BITCOIN_TESTNET_ENABLE=OFF BITCOIN_TESTNET_LIGHTNING_ENABLE=OFF
fi fi
if grep LN-Signet $tempfile >/dev/null 2>&1;then if grep LN-Signet $tempfile >/dev/null 2>&1;then
LN_BITCOIN_SIGNET_ENABLE=ON BITCOIN_SIGNET_LIGHTNING_ENABLE=ON
else else
LN_BITCOIN_SIGNET_ENABLE=OFF BITCOIN_SIGNET_LIGHTNING_ENABLE=OFF
fi fi
if grep Liquid $tempfile >/dev/null 2>&1;then if grep Liquid $tempfile >/dev/null 2>&1;then
@ -1756,7 +1756,7 @@ if [ "${BITCOIN_MAINNET_ENABLE}" = ON -o "${BITCOIN_TESTNET_ENABLE}" = ON -o "${
osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME}/mainnet && git checkout ${MEMPOOL_LATEST_RELEASE}" osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME}/mainnet && git checkout ${MEMPOOL_LATEST_RELEASE}"
fi fi
if [ "${LN_BITCOIN_MAINNET_ENABLE}" = ON ];then if [ "${BITCOIN_MAINNET_LIGHTNING_ENABLE}" = ON ];then
echo "[*] Creating Mempool instance for Lightning Network on Bitcoin Mainnet" echo "[*] Creating Mempool instance for Lightning Network on Bitcoin Mainnet"
osSudo "${MEMPOOL_USER}" git config --global advice.detachedHead false osSudo "${MEMPOOL_USER}" git config --global advice.detachedHead false
osSudo "${MEMPOOL_USER}" git clone --branch "${MEMPOOL_REPO_BRANCH}" "${MEMPOOL_REPO_URL}" "${MEMPOOL_HOME}/mainnet-lightning" osSudo "${MEMPOOL_USER}" git clone --branch "${MEMPOOL_REPO_BRANCH}" "${MEMPOOL_REPO_URL}" "${MEMPOOL_HOME}/mainnet-lightning"
@ -1774,7 +1774,7 @@ if [ "${BITCOIN_TESTNET_ENABLE}" = ON ];then
osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME}/testnet && git checkout ${MEMPOOL_LATEST_RELEASE}" osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME}/testnet && git checkout ${MEMPOOL_LATEST_RELEASE}"
fi fi
if [ "${LN_BITCOIN_TESTNET_ENABLE}" = ON ];then if [ "${BITCOIN_TESTNET_LIGHTNING_ENABLE}" = ON ];then
echo "[*] Creating Mempool instance for Lightning Network on Bitcoin Testnet" echo "[*] Creating Mempool instance for Lightning Network on Bitcoin Testnet"
osSudo "${MEMPOOL_USER}" git config --global advice.detachedHead false osSudo "${MEMPOOL_USER}" git config --global advice.detachedHead false
osSudo "${MEMPOOL_USER}" git clone --branch "${MEMPOOL_REPO_BRANCH}" "${MEMPOOL_REPO_URL}" "${MEMPOOL_HOME}/testnet-lightning" osSudo "${MEMPOOL_USER}" git clone --branch "${MEMPOOL_REPO_BRANCH}" "${MEMPOOL_REPO_URL}" "${MEMPOOL_HOME}/testnet-lightning"
@ -1792,7 +1792,7 @@ if [ "${BITCOIN_SIGNET_ENABLE}" = ON ];then
osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME}/signet && git checkout ${MEMPOOL_LATEST_RELEASE}" osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME}/signet && git checkout ${MEMPOOL_LATEST_RELEASE}"
fi fi
if [ "${LN_BITCOIN_SIGNET_ENABLE}" = ON ];then if [ "${BITCOIN_SIGNET_LIGHTNING_ENABLE}" = ON ];then
echo "[*] Creating Mempool instance for Lightning Network on Bitcoin Signet" echo "[*] Creating Mempool instance for Lightning Network on Bitcoin Signet"
osSudo "${MEMPOOL_USER}" git config --global advice.detachedHead false osSudo "${MEMPOOL_USER}" git config --global advice.detachedHead false
osSudo "${MEMPOOL_USER}" git clone --branch "${MEMPOOL_REPO_BRANCH}" "${MEMPOOL_REPO_URL}" "${MEMPOOL_HOME}/signet-lightning" osSudo "${MEMPOOL_USER}" git clone --branch "${MEMPOOL_REPO_BRANCH}" "${MEMPOOL_REPO_URL}" "${MEMPOOL_HOME}/signet-lightning"
@ -1852,13 +1852,13 @@ create database mempool_signet;
grant all on mempool_signet.* to '${MEMPOOL_SIGNET_USER}'@'localhost' identified by '${MEMPOOL_SIGNET_PASS}'; grant all on mempool_signet.* to '${MEMPOOL_SIGNET_USER}'@'localhost' identified by '${MEMPOOL_SIGNET_PASS}';
create database mempool_mainnet_lightning; create database mempool_mainnet_lightning;
grant all on mempool_mainnet_lightning.* to '${LN_MEMPOOL_MAINNET_USER}'@'localhost' identified by '${LN_MEMPOOL_MAINNET_PASS}'; grant all on mempool_mainnet_lightning.* to '${MEMPOOL_MAINNET_LIGHTNING_USER}'@'localhost' identified by '${MEMPOOL_MAINNET_LIGHTNING_PASS}';
create database mempool_testnet_lightning; create database mempool_testnet_lightning;
grant all on mempool_testnet_lightning.* to '${LN_MEMPOOL_TESTNET_USER}'@'localhost' identified by '${LN_MEMPOOL_TESTNET_PASS}'; grant all on mempool_testnet_lightning.* to '${MEMPOOL_TESTNET_LIGHTNING_USER}'@'localhost' identified by '${MEMPOOL_TESTNET_LIGHTNING_PASS}';
create database mempool_signet_lightning; create database mempool_signet_lightning;
grant all on mempool_signet_lightning.* to '${LN_MEMPOOL_SIGNET_USER}'@'localhost' identified by '${LN_MEMPOOL_SIGNET_PASS}'; grant all on mempool_signet_lightning.* to '${MEMPOOL_SIGNET_LIGHTNING_USER}'@'localhost' identified by '${MEMPOOL_SIGNET_LIGHTNING_PASS}';
create database mempool_liquid; create database mempool_liquid;
grant all on mempool_liquid.* to '${MEMPOOL_LIQUID_USER}'@'localhost' identified by '${MEMPOOL_LIQUID_PASS}'; grant all on mempool_liquid.* to '${MEMPOOL_LIQUID_USER}'@'localhost' identified by '${MEMPOOL_LIQUID_PASS}';
@ -1878,12 +1878,12 @@ declare -x MEMPOOL_TESTNET_USER="${MEMPOOL_TESTNET_USER}"
declare -x MEMPOOL_TESTNET_PASS="${MEMPOOL_TESTNET_PASS}" declare -x MEMPOOL_TESTNET_PASS="${MEMPOOL_TESTNET_PASS}"
declare -x MEMPOOL_SIGNET_USER="${MEMPOOL_SIGNET_USER}" declare -x MEMPOOL_SIGNET_USER="${MEMPOOL_SIGNET_USER}"
declare -x MEMPOOL_SIGNET_PASS="${MEMPOOL_SIGNET_PASS}" declare -x MEMPOOL_SIGNET_PASS="${MEMPOOL_SIGNET_PASS}"
declare -x LN_MEMPOOL_MAINNET_USER="${LN_MEMPOOL_MAINNET_USER}" declare -x MEMPOOL_MAINNET_LIGHTNING_USER="${MEMPOOL_MAINNET_LIGHTNING_USER}"
declare -x LN_MEMPOOL_MAINNET_PASS="${LN_MEMPOOL_MAINNET_PASS}" declare -x MEMPOOL_MAINNET_LIGHTNING_PASS="${MEMPOOL_MAINNET_LIGHTNING_PASS}"
declare -x LN_MEMPOOL_TESTNET_USER="${LN_MEMPOOL_TESTNET_USER}" declare -x MEMPOOL_TESTNET_LIGHTNING_USER="${MEMPOOL_TESTNET_LIGHTNING_USER}"
declare -x LN_MEMPOOL_TESTNET_PASS="${LN_MEMPOOL_TESTNET_PASS}" declare -x MEMPOOL_TESTNET_LIGHTNING_PASS="${MEMPOOL_TESTNET_LIGHTNING_PASS}"
declare -x LN_MEMPOOL_SIGNET_USER="${LN_MEMPOOL_SIGNET_USER}" declare -x MEMPOOL_SIGNET_LIGHTNING_USER="${MEMPOOL_SIGNET_LIGHTNING_USER}"
declare -x LN_MEMPOOL_SIGNET_PASS="${LN_MEMPOOL_SIGNET_PASS}" declare -x MEMPOOL_SIGNET_LIGHTNING_PASS="${MEMPOOL_SIGNET_LIGHTNING_PASS}"
declare -x MEMPOOL_LIQUID_USER="${MEMPOOL_LIQUID_USER}" declare -x MEMPOOL_LIQUID_USER="${MEMPOOL_LIQUID_USER}"
declare -x MEMPOOL_LIQUID_PASS="${MEMPOOL_LIQUID_PASS}" declare -x MEMPOOL_LIQUID_PASS="${MEMPOOL_LIQUID_PASS}"
declare -x MEMPOOL_LIQUIDTESTNET_USER="${MEMPOOL_LIQUIDTESTNET_USER}" declare -x MEMPOOL_LIQUIDTESTNET_USER="${MEMPOOL_LIQUIDTESTNET_USER}"

View File

@ -98,12 +98,12 @@ build_backend()
-e "s!__MEMPOOL_TESTNET_PASS__!${MEMPOOL_TESTNET_PASS}!" \ -e "s!__MEMPOOL_TESTNET_PASS__!${MEMPOOL_TESTNET_PASS}!" \
-e "s!__MEMPOOL_SIGNET_USER__!${MEMPOOL_SIGNET_USER}!" \ -e "s!__MEMPOOL_SIGNET_USER__!${MEMPOOL_SIGNET_USER}!" \
-e "s!__MEMPOOL_SIGNET_PASS__!${MEMPOOL_SIGNET_PASS}!" \ -e "s!__MEMPOOL_SIGNET_PASS__!${MEMPOOL_SIGNET_PASS}!" \
-e "s!__LN_MEMPOOL_MAINNET_USER__!${LN_MEMPOOL_MAINNET_USER}!" \ -e "s!__MEMPOOL_MAINNET_LIGHTNING_USER__!${MEMPOOL_MAINNET_LIGHTNING_USER}!" \
-e "s!__LN_MEMPOOL_MAINNET_PASS__!${LN_MEMPOOL_MAINNET_PASS}!" \ -e "s!__MEMPOOL_MAINNET_LIGHTNING_PASS__!${MEMPOOL_MAINNET_LIGHTNING_PASS}!" \
-e "s!__LN_MEMPOOL_TESTNET_USER__!${LN_MEMPOOL_TESTNET_USER}!" \ -e "s!__MEMPOOL_TESTNET_LIGHTNING_USER__!${MEMPOOL_TESTNET_LIGHTNING_USER}!" \
-e "s!__LN_MEMPOOL_TESTNET_PASS__!${LN_MEMPOOL_TESTNET_PASS}!" \ -e "s!__MEMPOOL_TESTNET_LIGHTNING_PASS__!${MEMPOOL_TESTNET_LIGHTNING_PASS}!" \
-e "s!__LN_MEMPOOL_SIGNET_USER__!${LN_MEMPOOL_SIGNET_USER}!" \ -e "s!__MEMPOOL_SIGNET_LIGHTNING_USER__!${MEMPOOL_SIGNET_LIGHTNING_USER}!" \
-e "s!__LN_MEMPOOL_SIGNET_PASS__!${LN_MEMPOOL_SIGNET_PASS}!" \ -e "s!__MEMPOOL_SIGNET_LIGHTNING_PASS__!${MEMPOOL_SIGNET_LIGHTNING_PASS}!" \
-e "s!__MEMPOOL_LIQUID_USER__!${MEMPOOL_LIQUID_USER}!" \ -e "s!__MEMPOOL_LIQUID_USER__!${MEMPOOL_LIQUID_USER}!" \
-e "s!__MEMPOOL_LIQUID_PASS__!${MEMPOOL_LIQUID_PASS}!" \ -e "s!__MEMPOOL_LIQUID_PASS__!${MEMPOOL_LIQUID_PASS}!" \
-e "s!__MEMPOOL_LIQUIDTESTNET_USER__!${LIQUIDTESTNET_USER}!" \ -e "s!__MEMPOOL_LIQUIDTESTNET_USER__!${LIQUIDTESTNET_USER}!" \

View File

@ -43,8 +43,8 @@
"ENABLED": true, "ENABLED": true,
"HOST": "127.0.0.1", "HOST": "127.0.0.1",
"PORT": 3306, "PORT": 3306,
"DATABASE": "mempool_mainnet_lightning", "USERNAME": "__MEMPOOL_MAINNET_LIGHTNING_USER__",
"USERNAME": "mempool_mainnet_lightning", "PASSWORD": "__MEMPOOL_MAINNET_LIGHTNING_PASS__",
"PASSWORD": "mempool_mainnet_lightning" "PASSWORD": "mempool_mainnet_lightning"
} }
} }

View File

@ -38,8 +38,8 @@
"ENABLED": true, "ENABLED": true,
"HOST": "127.0.0.1", "HOST": "127.0.0.1",
"PORT": 3306, "PORT": 3306,
"USERNAME": "mempool_signet_lightning", "USERNAME": "__MEMPOOL_SIGNET_LIGHTNING_USER__",
"PASSWORD": "mempool_signet_lightning", "PASSWORD": "__MEMPOOL_SIGNET_LIGHTNING_PASS__",
"DATABASE": "mempool_signet_lightning" "DATABASE": "mempool_signet_lightning"
} }
} }

View File

@ -38,8 +38,8 @@
"ENABLED": true, "ENABLED": true,
"HOST": "127.0.0.1", "HOST": "127.0.0.1",
"PORT": 3306, "PORT": 3306,
"USERNAME": "mempool_testnet_lightning", "USERNAME": "__MEMPOOL_TESTNET_LIGHTNING_USER__",
"PASSWORD": "mempool_testnet_lightning", "PASSWORD": "__MEMPOOL_TESTNET_LIGHTNING_PASS__",
"DATABASE": "mempool_testnet_lightning" "DATABASE": "mempool_testnet_lightning"
} }
} }